﻿@font-face {
    font-family: 'Delivery';
    src: url('../fonts/delivery/delivery/web/delivery_w_rg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Delivery Italic';
    src: url('../fonts/delivery/delivery/web/delivery_w_it.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Delivery Bold';
    src: url('../fonts/delivery/delivery/web/delivery_w_bd.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Delivery Bold Italic';
    src: url('../fonts/delivery/delivery/web/delivery_w_bdit.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Delivery Light';
    src: url('../fonts/delivery/delivery/web/delivery_w_lt.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Delivery Ligth Italic';
    src: url('../fonts/delivery/delivery/web/delivery_w_ltit.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'Delivery Condensed Light';
    src: url('../fonts/delivery/delivery/web/delivery_w_cdlt.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-stretch: condensed;
}
@font-face {
    font-family: 'Delivery Condensed Black';
    src: url('../fonts/delivery/delivery/web/delivery_w_cdblk.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-stretch: condensed;
}

.dhl-tr-spinner.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    display: none;
}

body.loading-dhl .dhl-tr-spinner.backdrop {
    display: flex; /* normalde gizliydi, aktif olunca göster */
}

.dhl-tr-spinner .spinner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 10px solid #9c9998;
    border-top-color: #d40511;
    border-left-color: #d40511;
    border-right-color: #d40511;
    animation: spin 1.5s linear infinite
}

.dhl-tr-spinner .spinner-logo {
    position: absolute;
    width: 50px;
    height: 50px;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    pointer-events: none
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.header-navbar.navbar-light {
    background-image: linear-gradient(90deg, #fc0, #fc0 30%, rgba(255, 204, 0, .65) 80%, rgba(255, 204, 0, .3)) !important;
}

.header-navbar.navbar-light.navbar-horizontal {
    background-image: linear-gradient(90deg, #fc0, #fc0 30%, rgba(255, 204, 0, .65) 80%, rgba(255, 204, 0, .3)) !important;
}

.header-navbar.navbar-light .navbar-nav li {
    line-height: 1;
}

.header-navbar.navbar-light .navbar-nav .active.nav-link {
    background-image: linear-gradient(90deg, #fc0, #fc0 30%, rgba(255, 204, 0, .65) 80%, rgba(255, 204, 0, .3)) !important;
    height: 66px !important;
}

.btn-DHL {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    /* Renk değişkenleri */
    --variant-textColor: #D40511;
    --variant-outlinedColor: #D40511;
    --variant-outlinedBorder: rgba(212, 5, 17, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #D40511;
    color: var(--variant-containedColor);
    background-color: var(--variant-containedBg);
    font-family: "Delivery Bold", Calibri, Arial, sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0px;
    text-transform: none;
    height: 40px;
    min-width: 40px;
    box-shadow: none !important;
    outline: 0px;
    margin: 0px;
    text-decoration: none;
    padding: 6px 16px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-DHL:hover {
    background-color: #b3040e; /* D40511 koyu tonu */
    text-decoration-color: #fff !important;
    color: #fff !important; /* Hover'da da beyaz yazı */
    text-decoration: none !important;
}

