@media only screen and (max-width: 750px) {
    .ipad-margin {
        margin-left: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .loginBtn {
        padding: 3px !important;
    }
    .joinBtn {
        padding-left: 10px !important;
        margin-bottom: 10px !important;
    }

    .cartHide{
        display: none !important;
    }

    .cartMobile{
        display: inline !important;
    }

}

.padding-top{
    padding-top: 100px;
}
@media (min-width: 330px) and (max-width: 1024px) {
    .padding-top{
        padding-top: 100px !important;
    }
}

.mobile-navbar {
    display: none;
    position: fixed;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1024px) {
    .website-navbar {
        display: none;
    }
    .mobile-navbar {
        display: block;
    }
}
nav {
    font-family: "Manrope", sans-serif !important;
}
.website-navbar {
    position: fixed;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

.website-nav-scroll {
    background-color: white;
    box-shadow: 0px 3px 6px #00000029;
}

.new-container {
    width: 90%;
    margin: auto;
}
.nav-link {
    text-decoration: none;
    color: black;
    color: inherit;
    font-family: "Manrope", sans-serif !important;
    font-weight: 500;
}
.nav-link:hover {
    transition: all 0.3s;
    color: #0082cb !important;
}
.language {
    background-color: #f0f0f0;
    padding: 3px 1px;
    border-radius: 40px;
    cursor: pointer;
    width: fit-content;
}

.lang {
    border-radius: 40px;
    background-color: #f0f0f0;
    font-family: geekexpressbold;
    padding: 3px 4px;
    width: 100%;
}

.selected-lang {
    border-radius: 40px;
    /* background-color: #EBBE00; */
    background-color: #007bc1;
    color: #f0f0f0;
    font-family: geekexpressbold;
    padding: 3px 10px;
    width: 100%;
}

.header-container {
    background-color: transparent !important;
}

.profile-picture-icon {
    width: 34px;
    height: 34px;
}

.dropdown-menu {
    background-color: white;
    border: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
}

.discount-banner {
    font-family: Manrope;
    /*background-color: black;*/
    /*width: 100%;*/
    /*height: 70px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 25px;
    background-image: url('{{ asset("img/homePageImages/background-bts.svg") }}');
    background-size: cover;
    width: 100%;
}

@media (max-width: 830px) {
    .discount-banner {
        background-image: url('{{ asset("img/homePageImages/tablet-background-bts.svg") }}');
    }
}

@media (max-width: 576px) {
    .discount-banner {
        background-image: url('{{ asset("img/homePageImages/mobile-background-bts.svg") }}');
    }
}

@media (max-width: 400px) {
    .discount-banner {
        background-image: url('{{ asset("img/homePageImages/mobile-background-bts-2.svg") }}');
    }

    .discount-label {
        letter-spacing: 0px;
        padding: 0px 10px 0px 10px;
    }
}

.discount-label {
    background: #f8cd1a;
    display: inline-block;
    border-radius: 30px;
    color: black;
    font-weight: 1000;
    line-height: normal;
    font-style: normal;
    padding: 1px 10px 1px 10px;
}
.discount-sentence {
    color: white;
    font-weight: 100;
}

@media (max-width: 768px) {
    .discount-label {
        padding: 5px 10px;
    }
    .discount-sentence {
        font-size: 12px;
    }
}
