* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48
}

.material-symbols-outlined.filled {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48
}

#cookieNotice {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    height: 40vh;
    padding: 15px;
    background-color: #C7E4E2;
    color: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 30px;
    z-index: 90;
}

#cookieNotice p {
    font-size: 14px;
    font-weight: 300;
    color: #3D3D3D;
    width: fit-content;
    max-width: 300px;
}

#cookieNotice a {
    font-size: 14px;
    font-weight: 600;
    color: #3D3D3D;
    text-decoration: underline;
}

#cookieNotice .accept {
    background-color: #ef9b12;
    color: #FFF;
}

#cookieNotice .decline {
    background-color: transparent;
    color: #FF3A31;
}

header input {
    border: 1px solid #ef9b12;
}

.search {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 0px;
    position: relative;
}

.search input {
    border-radius: 5px 0px 0px 5px;
    background-color: #FFF;
    border: 0px;
    box-shadow: 0px 12px 20px 5px #E6EBED;
}

.search button {
    background: #FFF;
    color: #ef9b12;
    border-radius: 0px 5px 5px 0px;
    transition: color 0.3s ease-out;
    position: relative;
    z-index: 1;
    display: inline-block
}

.search button:before {
    background: #FFF;
    background-image: linear-gradient(135deg, #ef9b1294 0%, #ef9b12 86%);
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    border-radius: 0px 5px 5px 0px;
}

.search button:hover:before {
    opacity: 1;
}

.search button:hover {
    color: #fff;
}

#proId {
    display: none;
}

.backend {
    display: none;
}

.tile .close-btn {
    background-color: #FF3A31 !important;
    color: #FFF !important;
    padding: 5px 10px;
}

#promoCode {
    text-transform: uppercase;
}

#promoCode::placeholder {
    text-transform: none;
}

.hidden {
    display: none;
}

.bg-gray {
    background-color: #3D3D3D !important;
}

.bg-yellow {
    background-color: #E88025 !important;
}

.bg-red {
    background-color: #FF3A31 !important;
}

.policy {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    box-shadow: 0px 0px 20px 6px #ef9b1269;
}

@media screen and (max-width: 1500px) {
    #cookieNotice {
        bottom: 60px;
    }
}