body {
    margin: 0;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin-top: 0;
}

img {
    max-width: 100%;
}
/* !! */

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
}

.my-custom-container {
    width: 70% !important;
    margin: 0 auto;
}

/* NAVBAR */

.custom-logo {
    width: 15% !important;
    display: flex;
    align-items: end;
    gap: 10px;
    padding-left: 10px;
}

.logo1 {
    width: 20%;
}

.logo2 {
    width: 75%;
}

.input-search {
    width: 100%;
    padding: 0px 15px;
    border: 2px solid var(--color-primary);
    border-radius: 30px;
    background: transparent;
    color: #757575;
    font-size: 14px;
    height: 33px;
}

    .input-search::placeholder {
        color: #757575;
    }

    .input-search:focus {
        outline: none;
    }

.position-relative {
    position: relative;
}

.searching-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #212529;
    font-size: 15px;
    cursor: pointer;
}

    .searching-btn .fa-search {
        font-size: 15px;
    }

.custom-search {
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-bar {
    width: 70%;
}

.search-icon {
    font-size: 20px;
    color: #212529;
}

.user-img {
    width: 24px;
}

.search-bar-parent {
    width: 70% !important;
    padding-right: 2px;
}

.user-form {
    width: 15%;
    text-align: end;
    padding-right: 10px;
}

/* NAVBAR END */

    .card-scroll::-webkit-scrollbar {
        width: 8px;
    }

    /* Track */
    .card-scroll::-webkit-scrollbar-track {
        background: #fff;
    }

    /* Handle */
    .card-scroll::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 25px;
    }

        /* Handle on hover */
        .card-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--color-primary);
        }

.banner {
    background-image: linear-gradient( 94.31deg, rgba(0, 0, 0, 0.469463) 8.05%, rgba(0, 0, 0, 0.469463) 135.78% ), url("./image/checkout/bg-img.jfif");
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    height: 100vh;
}

.custom-checkout-button {
    background: white;
    border-radius: 15px;
    box-shadow: 0px 0px 7px 2px #00000040;
    color: var(--color-primary) !important;
    font-weight: 700;
    border: none;
    padding: 10px 0;
    width: 80%;
    height: 41px;
    font-size: 15px !important;
}

    .custom-checkout-button:hover {
        background: white;
    }

.custom-search-button {
    background: var(--color-primary);
    border-radius: 15px;
    box-shadow: 0px 0px 7px 2px #00000040;
    color: white !important;
    font-weight: 700;
    border: none;
    padding: 10px 0;
    width: 80%;
    height: 44px;
    font-size: 14px !important;
}

    .custom-search-button:hover,
    .custom-search-button:active {
        background: var(--color-primary) !important;
        color: white !important;
    }

.terms {
    font-size: 12px;
    font-weight: 500;
}

/* FOOTER */

.footer-section {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
}

.size-footer {
    font-size: 25px;
}

.size-2024 {
    font-size: 15px;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    flex-wrap: wrap;
}

    .footer-nav a {
        font-size: 13px;
        color: white;
        padding: 0 15px;
        text-decoration: none;
    }

        .footer-nav a:not(:last-child) {
            border-right: 1px solid white;
        }

        .footer-nav a:hover {
            text-decoration: underline;
        }

/* FOOTER END */

/* _____________MEDIA ____________________ */

@media only screen and (min-width: 1px) and (max-width: 319px) {
    
    .user-form {
        display: none;
    }

    .my-custom-container {
        width: 100% !important;
        padding-left: 5px;
        padding-right: 5px;
    }

    .input-search {
        font-size: 12px;
    }

    .search-bar {
        width: 98%;
    }

    .search-icon {
        font-size: 18px;
    }

    .user-img {
        width: 20px;
    }

    .custom-logo {
        width: 40% !important;
    }

    .footer-nav a {
        font-size: 10px;
    }

    .size-footer {
        font-size: 18px;
    }

    .size-2024 {
        font-size: 12px;
    }

    .footer-nav a:nth-child(3),
    .footer-nav a:nth-child(5) {
        border-right: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 425px) {
   

    .user-form {
        display: none;
    }

    .my-custom-container {
        width: 99% !important;
        padding-left: 10px;
        padding-right: 10px;
        overflow-x: hidden;
    }

    .input-search {
        font-size: 12px;
    }

    .search-bar {
        width: 98%;
    }

    .search-icon {
        font-size: 18px;
    }

    .user-img {
        width: 20px;
    }

    .custom-logo {
        width: 45% !important;
    }

    .footer-nav a {
        font-size: 10px;
    }

    .size-footer {
        font-size: 18px;
    }

    .size-2024 {
        font-size: 12px;
    }

    .footer-nav a:nth-child(3),
    .footer-nav a:nth-child(6) {
        border-right: none;
    }
}

@media only screen and (min-width: 426px) and (max-width: 600px) {
  
    .user-form {
        display: none;
    }

    .my-custom-container {
        width: 100% !important;
        padding-left: 10px;
        padding-right: 10px;
    }

    .input-search {
        font-size: 12px;
    }

    .search-bar {
        width: 98%;
    }

    .search-icon {
        font-size: 18px;
    }

    .user-img {
        width: 20px;
    }

    .custom-logo {
        width: 35% !important;
    }
}

@media only screen and (min-width: 601px) and (max-width: 768px) {
    .user-form {
        display: none;
    }

    .search-bar {
        width: 98%;
    }

    .w-95 {
        width: 95%;
    }

    .my-custom-container {
        width: 100% !important;
        padding-left: 5px;
        padding-right: 5px;
    }

    .flex-direction {
        flex-direction: column;
    }

    .hidden {
        display: none;
    }

    .custom-logo {
        width: 30% !important;
    }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
    .user-form {
        display: none;
    }

    .my-custom-container {
        width: 100% !important;
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1199px) {
    .my-custom-container {
        width: 90% !important;
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
}

@media only screen and (min-width: 1301px) and (max-width: 1440px) {
}
