﻿@charset "UTF-8";

.inline_block,
.primary_btn,
.breadcrumb_menu li,
.notification:before,
.main_menu li,
.login_modal_trigger,
.footer_link li,
.menu_toggle_icon {
    display: inline-block;
    display: inline;
    zoom: 1;
    vertical-align: top;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:focus {
    outline: none;
}

.clearfix,
.full_width {
    zoom: 1;
}

.clearfix:before,
.full_width:before,
.clearfix:after,
.full_width:after {
    content: "";
    display: table;
}

.clearfix:after,
.full_width:after {
    clear: both;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

::-moz-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

::-moz-placeholder {
    opacity: 1;
}

img::-moz-selection {
    background: transparent;
}

img::selection {
    background: transparent;
}

img::-moz-selection {
    background: transparent;
}

body {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

img,
a img {
    vertical-align: top;
    outline: none;
    border: none;
}

body {
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

body,
td,
th,
select,
input,
textarea {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.3;
    color: #000000;
    -webkit-font-s;moothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #e42312;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #e42312;
}

a:active {
    text-decoration: none;
}

.wrap {
    max-width: 1300px;
    margin: auto;
  
}

.hide {
    visibility: hidden;
    display: none;
}

.svg_hidden {
    display: none;
}

.white_bg {
    background: #fff !important;
}

.full_bg,
.login_sheet_image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header {
    background: #fff;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.09);
    min-height: 76px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 4;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.header .wrap {
    height: 100%;
    display: flex;
    align-items: center;
}

.header_left {
    display: flex;
    align-items: center;
}

.header_right {
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.main_app_content {
    padding-top: 90px;
}

.app_wrapper {
    display: flex;
    flex: 1 1 0%;
    min-height: 0;
    transition: left 0.2s ease-in-out;
    position: relative;
}

.app_navigation {
    width: 250px;
    position: fixed;
    top: 0;
    height: 100%;
    background: #e42312;
    display: none;
    z-index: 6;
    padding: 1.2rem;
    align-items: center;
    justify-content: center;
}

.app_content {
    flex-direction: column;
    flex: 2 0 0;
    position: relative;
    overflow: auto;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.btn-primary {
    background-color: #0077be;
    border: none;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: white;
    display: inline-block;
}

.menu_toggle {
    cursor: pointer;
    display: none;
    align-items: center;
    height: 70px;
    margin-left: 1.5rem;
}

.menu_toggle_icon {
    width: 26px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.menu_toggle_icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    background: #e42312;
}

.menu_toggle_icon span:nth-child(1) {
    top: 0;
}

.menu_toggle_icon span:nth-child(2),
.menu_toggle_icon span:nth-child(3) {
    top: 7px;
    width: 100%;
}

.menu_toggle_icon span:nth-child(4) {
    top: 14px;
}

.menu_toggle_label {
    margin-left: 8px;
    font-size: 12px;
    color: #e42312;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav_open {
    overflow: hidden;
}

.nav_open .app_navigation {
    display: flex;
}

.nav_open .app_content {
    transform: translate3d(250px, 0, 0);
    overflow: hidden;
}

.nav_open .header {
    z-index: 10;
}

.nav_open .menu_overlay {
    visibility: visible;
    opacity: 1;
}

.nav_open .menu_toggle .menu_toggle_icon span:nth-child(1) {
    top: 6px;
    width: 0;
    left: 50%;
}

.nav_open .menu_toggle .menu_toggle_icon span:nth-child(2) {
    transform: rotate(45deg);
}

.nav_open .menu_toggle .menu_toggle_icon span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav_open .menu_toggle .menu_toggle_icon span:nth-child(4) {
    top: 6px;
    width: 0;
    left: 50%;
}

.footer {
    background: #0077be;
    padding: 30px 0;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
}

.footer_grid {
    display: flex;
    flex-direction: row-reverse;
}

.footer_grid_left {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.footer_grid_right {
    display: flex;
    align-items: center;
}

.footer_link {
    list-style-type: none;
}

.cart-icon {
    position: relative;
    display: inline-block;
    margin-right: 20px; /* Adjust based on your layout */
}

.cart-icon img {
    width: 24px; /* Adjust the size of the icon */
    height: 24px;
}

.cart-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    width: 300px; /* Adjust the width as needed */
}

.cart-dropdown.active {
    display: block;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h5 {
    font-weight: bold;
    margin-bottom: 5px;
}

.cart-item-details p {
    font-size: 14px;
    color: #666;
}

.cart-item-details button {
    background-color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}

.cart-item-details button:hover {
    background-color: #f0f0f0;
}

.total-cost-container {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ccc;
}

.total-cost-container span {
    font-weight: bold;
    font-size: 18px;
}

.cart-item-details p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.cart-item-details p span {
    font-weight: bold;
}

.cart-total {
    margin-top: 10px;
    text-align: right;
}

.checkout-button {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.checkout-button:hover {
    background-color: #0056b3;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1;
}

/* Cart bounce animation */
@keyframes cartBounce {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(0.9);
    }
    75% {
        transform: scale(1.15);
    }
}

.cart-icon.bounce {
    animation: cartBounce 0.5s ease-in-out;
}

.cart-icon.bounce .cart-count {
    animation: cartBounce 0.5s ease-in-out;
}

.footer_link li {
    margin-left: 2rem;
}

.footer_link li a {
    display: block;
    color: #fff;
    text-transform: uppercase;
}

.footer_link li a:hover {
    text-decoration: underline;
    color: #fff;
}

.main_body {
    min-height: calc(100vh - 77px);
    background: #f7f7f7;
    padding: 76px 0 70px 0;
}

.main_body.login_screen {
    display: flex;
    align-items: center;
    padding: 130px 0 70px 0;
}

.main_body.login_screen .wrap {
    width: 100%;
}

.login_modal {
    position: relative;
}

.login_modal_trigger,
.header-right .styled_select {
    cursor: pointer;
    padding: 9px 36px 9px 40px;
    color: #000000;
    background: transparent;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    position: relative;
    font-size: 0.85rem;
}

.login_modal_trigger:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -9px;
    height: 18px;
    width: 18px;
    background: url("../images/avatar-icon.svg") no-repeat center center;
}

.login_modal_trigger:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -4px;
    height: 8px;
    width: 14px;
    background-size: 12px;
    background: url("../images/caret-down.svg") no-repeat center center;
}

.main_menu {
    list-style-type: none;
    margin-bottom: 0;
}

.main_menu li {
    margin-right: 1.5rem;
}

.main_menu li a {
    font-weight: bold;
    color: #000000;
}

.main_menu li a:hover {
    color: #0077be;
}

.dropdown-menu {
    position: absolute;
    display: none;
    min-width: 180px;
    z-index: 999;
    text-align: left;
    list-style: none;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.dropdown-menu > li {
    display: block;
    border-bottom: #f0f4fa solid 1px;
}

.dropdown-menu > li:last-of-type {
    border: none;
}

.dropdown-menu > li a {
    padding: 11px 18px;
    font-size: 13px;
    transition: all 0.3s ease-in;
    color: #000000;
    display: flex;
    opacity: 0.8;
    align-items: center;
}

.dropdown-menu > li a img {
    margin-right: 10px;
    width: 12px;
}

.dropdown-menu > li a:hover {
    background-color: #f0f4fa;
    opacity: 1;
}

.dropdown-menu.show {
    display: block;
}

.login_sheet {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 7rem;
    align-items: center;
}

.login_sheet_image {
    height: 100%;
    border-radius: 20px;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.login_sheet_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section_title {
    margin-bottom: 2rem;
}

.section_title h2 {
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 8px;
}

.form_group {
    margin-bottom: 40px;
    position: relative;
}

.form_group input[type="text"],
.form_group input[type="number"],
.form_group input[type="email"],
.form_group input[type="tel"],
.form_group input[type="date"],
.form_group input[type="submit"],
.form_group input[type="url"],
.form_group input[type="color"],
.form_group input[type="password"],
.form_group input[type="file"],
.form_group input[type="reset"],
.form_group textarea {
    width: 100%;
    background: #fff;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 10px;
    -webkit-appearance: none;
    border: #d9d9d9 solid 1px;
    height: 48px;
}

.form_group input[type="text"]:focus,
.form_group input[type="number"]:focus,
.form_group input[type="email"]:focus,
.form_group input[type="tel"]:focus,
.form_group input[type="date"]:focus,
.form_group input[type="submit"]:focus,
.form_group input[type="url"]:focus,
.form_group input[type="color"]:focus,
.form_group input[type="password"]:focus,
.form_group input[type="file"]:focus,
.form_group input[type="reset"]:focus,
.form_group textarea:focus {
    border-color: #50b5ff;
    outline: 0;
}

.form_group input[type="text"].error,
.form_group input[type="number"].error,
.form_group input[type="email"].error,
.form_group input[type="tel"].error,
.form_group input[type="date"].error,
.form_group input[type="submit"].error,
.form_group input[type="url"].error,
.form_group input[type="color"].error,
.form_group input[type="password"].error,
.form_group input[type="file"].error,
.form_group input[type="reset"].error,
.form_group textarea.error {
    border-color: #fc2249;
}

.form_group input[type="file"] > input[type="button"] {
    border: none !important;
    height: 48px !important;
    margin-top: -12px !important;
    padding: 10px 20px !important;
    margin-left: -20px !important;
    background: #dadada !important;
}

.form_group input[type="file"] > span {
    margin-left: 10px !important;
}
.form_grid_col .input-group {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}
.form_grid_col .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    text-align: center;
    white-space: nowrap;
    background-color: #e8e8e8;
    border: 1px solid #d9d9d9;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.form_grid_col input.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #d9d9d9;
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s;
}
.form_group .form_label,
.input-group .form_label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}
.input-group .form_label {
    width: 100%;
}
.form_group .form_label span {
    color: #e42312;
}
.input-group .form-control {
    height: 48px;
}
.form_grid_col
    .input-group
    > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
        .valid-feedback
    ):not(.invalid-tooltip):not(.invalid-feedback) {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.form_grid_col .input-group input {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.form_grid_col .input-group input {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}
.form_group label.error {
    color: red;
    margin-top: 10px;
    display: block;
    font-size: 13px;
}

.form_group input[type="submit"] {
    background: #e42312;
    border: 0;
    text-transform: uppercase;
    transition: all 0.3s ease-in;
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.form_group input[type="submit"]:hover {
    background: #0077be;
    color: #fff;
}

.form_group input[type="submit"]:focus {
    background: #0077be;
    border: 0;
    color: #fff;
}

.form_group input[type="reset"] {
    background: transparent;
    border: 1px solid #000;
    transition: all 0.3s ease-in;
    border-radius: 10px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}

.form_group input[type="reset"]:hover {
    background: #000;
    color: #fff;
}

.form_group input[type="reset"]:focus {
    background: #000;
    color: #fff;
    border: 0;
}

.form_group textarea {
    height: 105px;
    resize: none;
}

.form_group.has_error label.placeholder {
    color: #fc5a5a;
}

.form_group.has_error input[type="text"],
.form_group.has_error input[type="email"],
.form_group.has_error input[type="password"] {
    border-color: #fc5a5a;
}

.styled_select {
    width: 100%;
    overflow: hidden;
    height: 48px;
    background: #fff url(../images/select_bg.svg) no-repeat right center;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
}

.styled_select select {
    background: 0 0;
    width: 100%;
    padding: 5px 5px 5px 20px;
    border: 0;
    height: 48px;
    margin: 0;
    font-size: 13px;
    -moz-appearance: window;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    outline: 0;
    background: transparent;
}
.header_right .styled_select_2 select {
    cursor: pointer;
    padding: 9px 9px;
    color: #000000;
    background: transparent;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    position: relative;
    max-width: 160px;
    margin-right: 1rem;
    font-size: 0.85rem;
}

.styled_select select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.styled_select.is-invalid {
    border-color: #dc3545;
}

.styled_select.is-invalid + .invalid-feedback {
    display: block;
}

.utility_links {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.utility_links li a {
    display: block;
    color: #000;
    text-decoration: underline;
}

.utility_links li a:hover {
    color: #e42312;
    text-decoration: none;
}
.label-flex {
    display: flex;
    justify-content: space-between;
}
.label-flex a {
    color: #0077be;
    font-size: 0.9rem;
}
.form_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
}

.action_btn {
    display: grid;
    grid-template-columns: 1fr 160px;
    grid-column-gap: 20px;
}

.notification {
    position: relative;
    padding: 15px;
    padding-left: 40px;
    margin-bottom: 2rem;
    font-size: 13px;
    background: rgba(0, 119, 190, 0.1);
    border-left: 3px solid #0077be;
    border-radius: 10px;
    color: #000;
    display: flex;
    align-items: center;
    border-radius: 10px;
}

.notification:before {
    content: "";
    position: absolute;
    left: 12px;
    top: 12px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000 url("../images/exclamation.svg") no-repeat center center;
}

.notification.info {
    background: rgba(0, 119, 190, 0.1);
    border-left-color: #0077be;
    color: #0077be;
}

.notification.info:before {
    background-color: #0077be;
}

.notification.warning {
    background-color: #ffdabc;
    border-left-color: #d3792f;
    color: #d3792f;
}

.notification.warning:before {
    background-color: #d3792f;
}

.notification.error {
    background-color: #fce8e8;
    border-color: #ef5454;
    color: #ed3c3c;
}

.notification.error:before {
    background-color: #ed3c3c;
}

.notification.success {
    background-color: rgba(43, 174, 73, 0.1607843137);
    border-color: #2cb34a;
    color: #2cb34a;
}

.notification.success:before {
    background-color: #2cb34a;
}

.notification_link {
    margin-left: 15px;
    font-weight: bold;
    text-decoration: underline;
}

/* Alert Toast Notifications (custom - avoids Bootstrap .toast conflict) */
#alert-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 420px;
    width: calc(100% - 40px);
    pointer-events: none;
}

@media (max-width: 480px) {
    #alert-toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }
}

.alert-toast {
    position: relative;
    padding: 16px 40px 16px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    line-height: 1.5;
    pointer-events: auto;
    animation: alertToastSlideIn 0.3s ease-out;
    opacity: 1;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    display: block !important;
}

.alert-toast.alert-toast-hiding {
    opacity: 0;
    transform: translateX(100%);
}

@keyframes alertToastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-toast-close:hover {
    opacity: 1;
}

.alert-toast-content {
    word-break: break-word;
}

.alert-toast-error-list {
    margin: 8px 0 0 0;
    padding-left: 20px;
    list-style-type: disc;
}

.alert-toast-error-list li {
    margin-bottom: 4px;
}

.alert-toast-error-list li:last-child {
    margin-bottom: 0;
}

.alert-toast-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.alert-toast-error .alert-toast-close {
    color: #991b1b;
}

.alert-toast-success {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.alert-toast-success .alert-toast-close {
    color: #166534;
}

.alert-toast-info {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.alert-toast-info .alert-toast-close {
    color: #1e40af;
}

.alert-toast-warning {
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.alert-toast-warning .alert-toast-close {
    color: #92400e;
}

.section {
    padding: 3rem 0;
}

.section_heading {
    font-weight: bold;
    font-size: 1.786em;
    margin-bottom: 20px;
}

.section_heading span {
    color: #0077be;
}

.breadcrumb {
    padding: 25px 0;
    background: #fff;
    border-bottom: #f0f0f0 solid 1px;
    margin-bottom: 0;
}

.breadcrumb_menu {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.breadcrumb_menu li {
    margin-right: 12px;
    padding-right: 12px;
    font-weight: bold;
    color: #0077be;
    position: relative;
}

.breadcrumb_menu li:after {
    content: "";
    background: url("../images/left-charet.svg") no-repeat center center;
    position: absolute;
    right: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    margin-top: -2px;
}

.breadcrumb_menu li:last-of-type:after {
    display: none;
}

.breadcrumb_menu li a {
    color: #000;
}

.breadcrumb_menu li a:hover {
    color: #0077be;
}

.buy_grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    grid-column-gap: 3rem;
}

.buy_grid_cart {
    grid-column: 2;
    grid-row: 1;
}

.buy_grid_cart_items {
    border: #d9d9d9 solid 1px;
    border-radius: 10px;
    padding: 30px;
    position: sticky;
    top: 2rem;
    background: #fff;
}

.buy_grid_cart_items h4 {
    font-weight: bold;
    font-size: 1.571em;
    color: #0077be;
    margin-bottom: 1rem;
}

.buy_grid_cart_items table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
}

.buy_grid_cart_items table td,
.buy_grid_cart_items table th {
    padding: 8px 0;
}

.buy_grid_cart_items table tr td:last-of-type {
    text-align: right;
}

.buy_grid_cart_items table tbody tr:last-of-type td {
    padding-bottom: 20px;
}

.buy_grid_cart_items table tfoot td {
    border-top: rgba(0, 0, 0, 0.12) solid 1px;
    font-weight: bold;
    font-size: 1.286em;
    padding: 16px 0 0;
}

.step-steps {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    padding-top: 25px;
    margin-bottom: 3rem;
}

.step-steps:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: #0077be;
}

.step-steps li {
    position: relative;
}

.step-steps li:before {
    content: "";
    position: absolute;
    left: 0;
    top: -25px;
    width: 100%;
    height: 2px;
    background: #e42312;
    display: none;
}

.step-steps li:after {
    content: "";
    position: absolute;
    left: 0;
    top: -31px;
    width: 14px;
    height: 14px;
    background: url("../images/in-active-dot.svg") no-repeat center center;
}

.step-steps li.active:before {
    display: block;
}

.step-steps li.active:after {
    background-image: url("../images/active-dot.svg");
}

.step-steps li h4 {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.form_title {
    font-size: 2.143em;
    font-weight: normal;
    margin-bottom: 2rem;
}

.step-content .step-tab-panel {
    display: none;
}

.step-content .step-tab-panel.active {
    display: block;
}

.payment_instructions {
    margin-left: 20px;
    margin-bottom: 3rem;
    font-size: 1.071em;
}

.payment_instructions li {
    margin-bottom: 10px;
}

.step-footer {
    display: grid;
    grid-template-columns: 1fr 150px;
    grid-gap: 20px;
    max-width: 50%;
}

.step-footer button {
    width: 100%;
    background: #e42312;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    height: 48px;
}

.step-footer button:hover {
    background: #0077be;
}

.step-footer button.back_btn {
    background: transparent;
    border: #000 solid 1px;
    color: #000;
}

.step-footer button.back_btn:hover {
    background: #000;
    color: #fff;
}

.success_overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    visibility: hidden;
    opacity: 0;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease-in;
}

.success_overlay.show {
    visibility: visible;
    opacity: 1;
}

.success_overlay_content {
    width: 700px;
    background: #fff;
    padding: 3rem;
    text-align: center;
    border-radius: 20px;
}

.success_overlay_content h3 {
    font-weight: bold;
    font-size: 2.286em;
    margin-bottom: 15px;
}

.success_overlay_content p {
    font-size: 1rem;
    margin-bottom: 2rem;
}
.success_overlay_content .primary_btn.blue_btn {
    background-color: #0277bd;
}
.success_overlay_content .primary_btn {
    font-weight: 400;
}
.success_overlay_content .primary_btn:nth-child(1):hover {
    background-color: #e42312;
}
.success_overlay_content ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    font-weight: 600;
    justify-content: center;
    flex-wrap: wrap;
}
.primary_btn {
    background: #e42312;
    padding: 16px 40px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    border-radius: 10px;
    -webkit-appearance: none;
    border: none;
}

.primary_btn:hover {
    background: #0077be;
    color: #fff;
}

.main_body.header-banner {
    background: linear-gradient(
        76deg,
        rgba(0, 119, 190, 0.34) 5.11%,
        rgba(239, 37, 19, 0.13) 74.91%,
        rgba(10, 163, 255, 0.18) 92.7%
    );
    padding-top: 77px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.main_body.header-banner .header-banner-content {
    display: grid;
    grid-template-columns: 60% 40%;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main_body.header-banner .header-banner-content h1 {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 126.488%;
    text-transform: uppercase;
    max-width: 23ch;
    color: #ffffff;
}

.main_body.header-banner .header-banner-content h1 span {
    color: #def3ff;
}

.main_body.header-banner .header-banner-content p {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    max-width: 50ch;
    line-height: 146.49%;
    margin-top: 1rem;
    color: #ffffff;
}

.main_body.header-banner .header-banner-content div:nth-child(2) {
    display: flex;
    justify-content: center;
}

.bg-white {
    background-color: #fff;
}

.products-section h2 span {
    color: #0077be;
}

.products-section .product-card {
    border: 1px solid #dfdede;
    border-radius: 10px;
    margin-right: 1rem;
}

.products-section .product-card .product-card-img {
    /* height: 242x; */
    background-color: #ffffff;
}

.products-section .product-card .product-card-img img {
    width: 100%;
    height: 320px;
    object-fit: contain;
}
.products-section .product-card.unavailable .product-card-img img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}
.products-section .product-card .product-card-content {
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 1.5rem 1.2rem;
}

.products-section .product-card .product-card-content .product-card-buy {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16.38px;
    font-weight: 700;
}

.products-section
    .product-card
    .product-card-content
    .product-card-buy
    div
    .product-card-desc {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 0.3rem;
}

.products-section .product-card .product-card-content .product-card-buy div h3 {
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.products-section .product-card .product-card-content .product-card-buy a {
    border: 1.5px solid #e42312;
    border-radius: 10px;
    padding: 0.425rem 0.7rem;
    font-weight: 700;
    font-size: 0.8rem;
}
.products-section
    .product-card
    .product-card-content
    .product-card-buy
    a:hover {
    background-color: #e42312;
    color: #fff;
    transition: all 0.3s ease-in;
}

.products-section
    .product-card.unavailable
    .product-card-content
    .product-card-buy
    a {
    background-color: #dedcdc;
    border: none;
    color: #000000;
}
.products-section
    .product-card.unavailable
    .product-card-content
    .product-card-buy
    a:hover {
    background-color: black;
    color: #ffffff;
}
.product-card {
    position: relative;
}
.products-section .products-grid .product-card.product-card.unavailable {
    position: relative;
    overflow: visible;
}
.products-section .product-card.unavailable .product-card-img {
    position: relative;
}
.products-section .product-card.unavailable .product-card-img::after {
    content: " ";
    position: absolute;
    background: black;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    overflow: hidden;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.banner-slider .banner-slider-bg .banner-slide-content {
    position: relative;
}

.banner-slider .banner-slider-bg .banner-slide-content img {
    height: 370px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner-slider .banner-slider-bg .banner-slide-content .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* Adjust the alpha (last value) for darkness */
    z-index: 1;
    /* Ensure the overlay is on top of the image */
}

.banner-slider .banner-slider-bg .banner-slide-content .overlay-text {
    position: absolute;
    top: 50%;
    left: 46%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #fff;
    width: 80%;
    /* Adjust the width as needed */
    z-index: 2;
    /* Ensure the text is on top of the overlay */
}

.banner-slider .banner-slider-bg .banner-slide-content .section_title {
    margin-bottom: 0;
}

.banner-slider .banner-slider-bg .banner-slide-content p {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
    max-width: 80ch;
    line-height: 146.49%;
    margin-top: 1rem;
}

.banner-slider .slick-dots {
    text-align: left;
    color: #fff;
    bottom: 10%;
    padding-left: 5rem;
}

.banner-slider .slick-dots li button:before {
    color: #fff !important;
    font-size: 10px;
}

.products-section .products-filter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    align-items: center;
}

.products-section .products-filter h2 {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.products-section .products-filter .styled_select {
    max-width: 100%;
    width: auto;
    margin-bottom: 1rem;
    background-color: transparent;
}

.products-section .products-filter .styled_select select {
    min-width: 240px;
}

.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
}

.products-section .products-grid .product-card {
    margin-right: 0;
    overflow: hidden;
    background-color: #fff;
}

.load-more-btn {
    text-align: center;
    margin-top: 4rem;
}

.load-more-btn a {
    background-color: #0077be;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    padding: 1rem 2rem;
}

.load-more-btn a:hover {
    background-color: #000;
    color: #fff;
}

.main_body.single-product-page {
    padding-bottom: 0;
}

.slick-dots li button {
    background: #e42312;
    border: 3px;
}

.product-info {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.product-info .product-info-grid {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 2rem 3rem;
}

.product-info .product-info-grid .product-info-slider {
    max-width: 100%;
}

.product-info .product-info-grid .product-info-slider div img {
    border-radius: 10px;
    width: 100%;
    max-height: 400px;
    -o-object-fit: contain;
    object-fit: contain;
}

.product-info .product-info-grid .product-info-slider .slick-prev,
.product-info .product-info-grid .product-info-slider .slick-next {
    z-index: 1;
    color: #fff;
    background: #fff;
    border-radius: 50px;
    width: 48px;
    height: 48px;
    border-radius: 26px;
    background: #f2f4f7;
    box-shadow: 0px 1.625px 3.25px 0px rgba(16, 24, 40, 0.06),
        0px 1.625px 4.875px 0px rgba(16, 24, 40, 0.1);
}

.product-info .product-info-grid .product-info-slider .slick-prev {
    left: -13px;
}

.product-info .product-info-grid .product-info-slider .slick-next {
    right: -13px;
}

.product-info .product-info-grid .product-info-slider .slick-prev:before,
.product-info .product-info-grid .product-info-slider .slick-next:before {
    color: #565656;
    opacity: 1;
    font-size: 27px;
    display: none;
}

.product-info .product-info-grid .product-info-slider .slick-prev {
    background-image: url(../images/arrow-left-red.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.product-info .product-info-grid .product-info-slider .slick-next {
    background-image: url(../images/arrow-right-red.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.product-info .product-info-grid .product-info-content h1 {
    font-size: 1.875rem;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.product-info .product-info-grid .product-info-content p {
    font-size: 1rem;
    font-family: Helvetica, Arial, sans-serif;
    margin-top: 1rem;
}

.product-info .product-info-grid .product-info-select {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 2rem 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-info .product-info-grid .product-info-select-cards {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 2rem 1rem;
    /* display: flex; */
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-info
    .product-info-grid
    .product-info-select
    .product-select-container {
    width: 47%;
}

.product-info
    .product-info-grid
    .product-info-select
    .product-select-container
    label {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.product-info
    .product-info-grid
    .product-info-select
    .product-select-container
    .styled_select {
    margin-top: 0.5rem;
}

.product-info .product-info-grid .product-info-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.product-info .product-info-grid .product-info-total h3,
.product-info .product-info-grid .product-info-total #price_container {
    font-size: 1.7rem;
    font-family: Helvetica, Arial, sans-serif;
    color: #000;
    font-weight: 700;
}

.product-info .product-info-grid .product-info-total h3 span,
.product-info .product-info-grid .product-info-total #price_container span {
    font-size: 1rem;
    color: #667085;
    font-weight: 400;
}

.product-info .product-info-grid .product-info-total a {
    background-color: #0077be;
    color: #fff;
    border-radius: 10px;
    padding: 1rem 3rem;
    font-weight: 700;
}

.product-info .product-info-grid .product-info-total a:hover {
    background-color: #000;
    color: #fff;
}

.footer-spacing {
    margin-top: 4rem;
}

.grid-404 {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 2rem 4rem;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.grid-404 img {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    -o-object-position: left;
    object-position: left;
}

.grid-404 .col-2-404 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.grid-404 .col-2-404 h2 {
    font-size: 3.2rem;
    color: #0077be;
    font-weight: 700;
}

.grid-404 .col-2-404 p {
    font-size: 1.175rem;
    font-weight: 700;
    margin: 0rem 0 2rem 0;
}

.red-btn {
    background-color: #e42312;
    color: #fff;
    padding: 1rem;
    max-width: 100%;
    width: 150px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.025rem;
}

.red-btn:hover {
    color: #fff;
}

/***********************
Spinner
************************/
.loading-container {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 1rem;
}
.loading {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #0277bd #0277bd transparent #0277bd;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loading::after,
.loading::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #ff3d00 #ff3d00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

#loading {
    display: none;
}

#confirm_payment {
    display: none;
}

.loading::before {
    width: 32px;
    height: 32px;
    border-color: #0277bd #0277bd transparent transparent;
    animation: rotation 1.5s linear infinite;
}

.loading_check_otp {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #0277bd #0277bd transparent #0277bd;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loading_check_otp::after,
.loading_check_otp::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #ff3d00 #ff3d00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

.loading_check_otp::before {
    width: 32px;
    height: 32px;
    border-color: #0277bd #0277bd transparent transparent;
    animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.invalid-feedback {
    color: #e42312;
    font-size: 0.8rem;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
    overflow: hidden;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
    font-family: "slick";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/slick.eot");
    src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"),
        url("../fonts/slick.woff") format("woff"),
        url("../fonts/slick.ttf") format("truetype"),
        url("../fonts/slick.svg#slick") format("svg");
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: "←";
}

[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: "→";
}

[dir="rtl"] .slick-next:before {
    content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "•";
    text-align: center;
    opacity: 0.25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: black;
}

@media only screen and (max-width: 1366px) {
    .wrap {
        max-width: none;
        padding: 0 2rem;
    }

    .login_sheet {
        grid-column-gap: 5rem;
    }
}

@media only screen and (max-width: 1280px) {
    .login_sheet {
        grid-column-gap: 3rem;
    }
}

@media only screen and (max-width: 960px) {
    .wrap {
        padding: 0 1.5rem;
    }

    .login_sheet {
        display: block;
    }

    .login_sheet_image {
        display: none;
    }

    .section {
        padding: 2rem 0;
    }

    .buy_grid {
        display: block;
    }

    .buy_grid_cart {
        margin-bottom: 3rem;
    }

    .buy_grid_cart_items {
        padding: 1.5rem;
    }

    .step-footer {
        grid-template-columns: 1fr 130px;
    }

    .products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .main_body.header-banner {
        padding-top: 9rem;
        padding-bottom: 5rem;
    }

    .main_body.header-banner .header-banner-content {
        grid-template-columns: auto;
        justify-content: flex-start;
    }

    .main_body.header-banner .header-banner-content div:nth-child(2) img {
        display: none;
    }

    .grid-404 {
        grid-template-columns: auto;
    }

    .grid-404 .col-1-404 {
        order: 2;
    }

    .grid-404 .col-2-404 {
        align-items: center;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    .wrap {
        padding: 0 1.2rem;
    }

    .form_grid {
        grid-column-gap: 1.2rem;
    }

    .section_title h2 {
        font-size: 1.6em;
        margin-bottom: 5px;
    }

    .section_heading {
        font-size: 1.4em;
    }

    .step-footer {
        grid-template-columns: 1fr 150px;
        max-width: none;
    }

    .success_overlay {
        padding: 1.2rem;
    }

    .success_overlay_content {
        padding: 2rem;
        width: 100%;
    }

    .success_overlay_content h3 {
        font-size: 1.8em;
        margin-bottom: 1.5rem;
    }

    .success_overlay_content p {
        font-size: 1em;
        margin-bottom: 1.5rem;
    }
    .success_overlay_content .success_buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .form_title {
        font-size: 1.8em;
    }

    .buy_grid_cart_items h4 {
        font-size: 1.271em;
    }

    .step-steps li h4 {
        font-size: 13px;
        margin-bottom: 0;
    }

    .step-steps li p {
        font-size: 13px;
    }

    .main_body.header-banner .header-banner-content h1 {
        font-size: 2.5rem;
    }

    .main_body.header-banner .header-banner-content p {
        font-size: 1rem;
    }

    .banner-slider .banner-slider-content h2 {
        font-size: 2.5rem;
    }

    .banner-slider .banner-slider-content p {
        font-size: 1rem;
    }

    .products-section
        .product-card
        .product-card-content
        .product-card-buy
        div
        h3 {
        margin-right: 0.8rem;
    }

    .products-section .product-card .product-card-content .product-card-buy a {
        margin-top: 1rem;
    }

    .product-info .product-info-grid {
        grid-template-columns: 100%;
    }

    .product-info .product-info-grid .product-info-slider div img {
        width: 100%;
    }

    .product-info .product-info-grid .product-info-select {
        flex-direction: column;
    }

    .product-info
        .product-info-grid
        .product-info-select
        .product-select-container {
        width: auto;
    }

    .product-info
        .product-info-grid
        .product-info-select
        .product-select-container:nth-child(1) {
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 600px) {
    .products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media only screen and (max-width: 500px) {
    .form_group {
        margin-bottom: 30px;
    }

    .form_grid {
        display: block;
    }

    .main_body {
        padding: 76px 0 30px 0;
    }

    .main_body.login_screen {
        padding: 100px 0 30px 0;
    }

    .main_menu {
        display: none;
    }

    .login_modal_trigger {
        width: 40px;
        height: 40px;
        background: url("../images/avatar-icon.svg") no-repeat center center;
        font-size: 0;
        border-radius: 50%;
        padding: 0;
        background-size: 36px;
        border: 0;
    }

    .login_modal_trigger:before,
    .login_modal_trigger:after {
        display: none;
    }

    .footer {
        padding: 20px 0;
    }

    .footer_link li {
        margin-left: 1.5rem;
    }

    .footer_grid {
        display: block;
        text-align: center;
    }

    .footer_grid_left {
        display: block;
        margin-bottom: 15px;
    }

    .footer_grid_right {
        display: block;
    }

    .action_btn {
        display: block;
    }

    .step-footer {
        grid-template-columns: repeat(1, 1fr);
    }

    .buy_grid_cart_items {
        padding: 1.2rem;
    }

    .form_title {
        font-size: 1.6em;
    }

    .success_overlay_content {
        padding: 1.5rem;
    }

    .success_overlay_content h3 {
        font-size: 1.5em;
        margin-bottom: 5px;
    }

    .main_body.header-banner .header-banner-content h1 {
        font-size: 1.8rem;
    }

    .banner-slider .banner-slider-content h2 {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 330px) {
    .footer_link li {
        margin-left: 0;
        display: block;
        margin-bottom: 7px;
    }

    .products-section .product-card .product-card-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .products-section .products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media print {
    * {
        background: transparent !important;
        color: black !important;
        text-shadow: none !important;
        filter: none !important;
        -ms-filter: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

.bg-image {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
}
.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-banner .wrap {
    display: flex;
    width: 100%;
    height: 100%;
}
.header-banner .wrap .header-banner-content {
    width: 100%;
}
.products-section .product-card .product-card-content .product-card-buy h3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16.38px;
    font-weight: 700;
}
.product-card-desc {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.3;
    color: #000000;
    -webkit-font-smoothing: antialiased;
}
.main_body.header-banner .header-banner-content {
    display: grid;
    grid-template-columns: 60% 40%;
    justify-content: center;
    align-items: center;
    position: relative;
}
.cart-item-holder img {
    width: 140px;
    height: 140px;
    object-fit: fill;
    border-radius: 5px;
}
.cart-item-holder {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
}
.cart-item-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cart-item-header h3 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
}
.cart-item-top {
    display: flex;
}
.cart-item-delete {
    display: flex;
    justify-content: space-between;
}
/*# sourceMappingURL=main.css.map */
