/*=============== BASE ===============*/

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: inherit;
}


::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f4f4f4;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #25a0d5;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0d82b4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    background-color: #ffffff;
    color: #0d0e0f;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}
.wrapper {
    max-width: 1170px;
    width: min(100% - 30px);
    margin: 0 auto;
}

.new-wrapper {
    max-width: 1170px;
    width: min(100% - 30px);
    margin: 0 auto;
}

.main {
    margin-top: 40px;
    position: relative;

@media (max-width: 1022px) {
    margin-top: 80px;

&.main-no-margin {
     margin-top: 0;
 }
}

@media (max-width: 767px) {
    margin-top: -40px;

&.main-no-margin {
     margin-top: 0;
 }
}
}

/* Main-Content */
.main-content {
    width: calc(100% - 260px);
    margin-left: auto;

@media (max-width: 1022px) {
    width: 100%;

&.padding-top-new {
     padding-top: 80px;
 }
}

@media (max-width: 767px) {
&.padding-top-new {
    padding-top: 295px;
}
}
}

/* Header */
.header {
    padding: 0px 30px 0 0;
    height: 40px;
    background: #000000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;

@media (max-width: 1022px) {
    flex-direction: column;
    align-items: unset;
    height: unset;
    padding-right: 0;
}

&.header-absolute {
     position: absolute;
 }

@media (max-width: 767px) {
    padding-bottom: 16px;
    gap: 16px;
    position: relative;
}

.header-top {
    display: flex;

@media (max-width: 1022px) {
    justify-content: space-between;
    border-bottom: 1px solid #2d2d2d;
}

@media (max-width: 767px) {
    order: 2;
    padding: 0 15px;
    border-bottom: 0;

}
}

.header-logo {
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;

& .header-logo-image {
      height: 100px;

& img {
      width: 200px;
      height: 100%;
  }
}

@media (min-width: 768px) {
    display: none;
}
}

.header-home-link {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8a8a8a;
    width: 40px;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    transition: all 300ms;
    text-decoration: none;

@media (max-width: 767px) {
    display: none;
}

&:hover {
     color: #ffffff;
 }
}

.header-home-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8a8a8a;
    padding: 0 16px;
    font-size: 18px;
    height: 24px;
    text-align: center;
    transition: all 300ms;
    text-decoration: none;
    border-right: 1px solid #2d2d2d;

@media (min-width: 768px) {
    display: none;
}
}

.header-hamburger {
    display: none;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border: 0;
    background-color: transparent;
    cursor: pointer;

&:focus,
&:focus-visible,
&:focus-within {
     outline: none;
 }

@media (max-width: 1022px) {
&.mobile {
    display: flex;
}
}
}

.header-search {
    position: relative;
    width: 220px;

@media (max-width: 1022px) {
    width: 290px;
}

& > input {
      background: transparent;
      border-color: transparent;
      font-style: italic;
      line-height: 1.55em;
      width: 100%;
      padding: 10px 30px 10px 5px;
      border-left: 1px solid #2d2d2d;
      border-right: 1px solid #2d2d2d;
      border-top: 0;
      border-bottom: 0;
      color: #898989;
      vertical-align: middle;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      font-size: 13px;
      font-weight: 600;
      font-family: inherit;

@media (max-width: 767px) {
    border: 1px solid #2d2d2d;
}

&::placeholder {
     color: #898989;
     font-style: italic;
 }

&:focus,
&:focus-visible,
&:focus-within {
     outline: none;
     border-right: 1px solid #575555;
     border-left: 1px solid #575555;
 }
}

& .header-search-icon {
      position: absolute;
      top: 2px;
      right: 10px;
      width: 12px;
      height: 12px;
      font-size: 12px;
      color: #898989;
      cursor: pointer;
      padding: 10px 0;
  }
}

& .header-menu {
      flex: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-left: 16px;

@media (max-width: 1022px) {
    background-color: #000000;
    width: 100%;
}

@media (max-width: 767px) {
    padding: 0 15px;
    justify-content: center;
    align-items: center;
}
}

& .header-filled-btn {
      display: none;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 8px 10px;
      gap: 6px;
      min-width: 214px;
      height: 24px;
      background: #25a0d5;
      color: #ffffff;
      border-radius: 4px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;

&.desktop {
     display: flex;

@media (max-width: 767px) {
    display: none;
}
}

& span {
      font-weight: 700;
  }

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

& .header-filled-mobile-btn {
      display: none;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 8px 10px;
      gap: 6px;
      min-width: 214px;
      height: 24px;
      background: #25a0d5;
      color: #ffffff;
      border-radius: 4px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      order: 3;
      margin: 0 auto;
      white-space: preserve nowrap;

@media (max-width: 767px) {
    display: flex;
}

& span {
      font-weight: 700;
  }

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

& .header-actions {
      display: flex;
      align-items: center;
      height: 100%;

@media (max-width: 767px) {
    height: 24px;
    justify-content: center;
}
}

& .header-link {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 16px;
      height: 40px;
      font-size: 13px;
      font-weight: 600;
      transition: all 300ms ease;
      color: #898989;
      text-decoration: none;
      border-right: 1px solid #2d2d2d;

@media (max-width: 767px) {
    height: 24px;
    display: none;
}

&:hover {
     color: #ffffff;
 }
}

& .header-dropdown {
      padding: 0 16px;
      border-right: 1px solid #2d2d2d;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;

@media (max-width: 767px) {
    height: 24px;
}

& .header-dropdown-text {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      color: #898989;
      cursor: pointer;
      height: 100%;

@media (max-width: 767px) {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

&:hover {
     color: #ffffff;
 }
}

.header-dropdown-content {
    display: none;
    position: absolute;
    top: 101%;
    right: -1px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    gap: 10px;
    width: 105px;
    height: 82px;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    opacity: 0;
}

& .header-dropdown-link {
      font-size: 16px;
      font-weight: 600;
      color: #8a8a8a;
      transition: all 300ms;
      text-decoration: none;

&:hover {
     color: #25a0d5;
     font-weight: 700;
 }
}

/* Desktop: show on hover */
@media (hover: hover) and (pointer: fine) {
&:hover .header-dropdown-content {
    display: flex;
    opacity: 1;
}
}

&.active .header-dropdown-content {
     display: flex;
     opacity: 1;
 }
}

.fade-in-top {
    -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

& .header-login {
      padding: 0 16px;
      border-right: 1px solid #2d2d2d;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;

@media (max-width: 767px) {
    height: 24px;
}

& .header-login-text {
      display: none;
      justify-content: center;
      align-items: center;
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      color: #898989;
      cursor: pointer;
      height: 100%;

@media (max-width: 767px) {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

@media (max-width: 768px) {
&.desktop {
    display: none;
}

&.mobile {
     display: flex;
 }
}

@media (min-width: 767px) {
&.mobile {
    display: none;
}

&.desktop {
     display: flex;
 }
}

&:hover {
     color: #ffffff;
 }
}

.header-login-form {
    display: none;
    position: absolute;
    top: 101%;
    right: -1px;
    flex-direction: column;
    padding: 16px 20px;
    gap: 22px;
    width: 290px;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 2px;

@media (max-width: 767px) {
    width: 200px;
    gap: 16px;
    padding: 16px;
}

& .header-login-field {
      display: flex;
      flex-direction: column;
      gap: 8px;

& > label {
      font-weight: 400;
      font-size: 16px;
      line-height: 22px;
      display: flex;
      align-items: center;
      color: #8a8a8a;
  }

& > input {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 9px 12px;
      gap: 10px;
      width: 100%;
      height: 44px;
      border: 1px solid #e4e4e4;
      border-radius: 2px;
      font-size: 16px;
      font-weight: 400;
      color: #0d0e0f;
      transition: all 300ms;

&:focus,
&:focus-visible,
&:focus-within {
     outline: none;
     border-color: #25a0d5;
 }
}

& .header-forgot-link {
      font-size: 14px;
      text-decoration: none;
      color: #0d0e0f;
      font-weight: 600;
      transition: all 300ms;
      text-align: right;

&:hover {
     color: #25a0d5;
 }
}
}

& .header-login-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

& .header-login-outline-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 6px;
      width: 100%;
      height: 40px;
      background: #ffffff;
      color: #25a0d5;
      border-radius: 4px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     color: #ffffff;
     font-weight: 500;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

& .header-login-filled-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 10px;
      width: 100%;
      height: 40px;
      background: #25a0d5;
      color: #ffffff;
      border-radius: 3px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     font-weight: 500;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}
}

/* Desktop: show on hover */
@media (hover: hover) and (pointer: fine) {
&:hover .header-login-form {
    display: flex;
    opacity: 1;
}
}

&.active .header-login-form {
     display: block;
     opacity: 1;
     transform: translateY(0);
     pointer-events: auto;
 }
}

& .header-cart {
      padding: 0 16px;
      border-right: 0;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      transition: all 300ms;

@media (max-width: 767px) {
    height: 24px;
}

& .header-cart-text {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4px;
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      color: #ffffff;
      cursor: pointer;
      height: 100%;
      transition: all 300ms;

& > i {
      color: #25a0d5;
  }
}

& .header-cart-dropdown {
      display: none;
      position: absolute;
      top: 101%;
      right: 4px;
      padding: 32px 0;
      padding-bottom: 0;
      width: 470px;
      background: #ffffff;
      border: 1px solid #e4e4e4;
      border-radius: 2px;
      opacity: 0;
      overflow: hidden;

& .header-cart-actions {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-bottom: 28px;
      padding: 0 28px;

& .header-cart-outline-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 6px;
      width: 100%;
      height: 40px;
      background: #ffffff;
      color: #25a0d5;
      border-radius: 4px;
      border: 1px solid #25a0d5;
      transition: all 300ms;
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     color: #ffffff;
     font-weight: 500;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

& .header-cart-filled-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 10px;
      width: 100%;
      height: 40px;
      background: #25a0d5;
      color: #ffffff;
      border-radius: 3px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     font-weight: 500;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}
}

& .header-cart-top {
      padding: 0 28px;
      padding-bottom: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;

& .header-cart-top-heading {
      font-size: 20px;
      font-weight: 800;
      color: #0d0e0f;
  }

& .header-cart-top-price {
      display: flex;
      align-items: flex-end;
      gap: 4px;

& .header-cart-top-price-currency {
      font-size: 19px;
      font-weight: 700;
      line-height: 100%;
      color: #25a0d5;
  }

& .header-cart-top-price-value {
      font-size: 22px;
      font-weight: 700;
      line-height: 100%;
      color: #25a0d5;
  }
}
}

& .header-cart-body {
      max-height: 500px;
      height: fit-content;
      overflow-y: auto;
      padding-right: 10px;
      padding-left: 28px;
      margin-right: 8px;

& .header-cart-item {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: #0d0e0f;
      text-decoration: none;
      padding: 16px 0;
      border-bottom: 1px solid #e4e4e4;

&:first-child {
     padding-top: 0;
 }

&:last-child {
     border-bottom: none;
 }

&:hover {
& .header-cart-name {
      color: #25a0d5;
  }
}

& .header-cart-image {
      width: 95px;
      height: 95px;
      object-fit: cover;
      border: 1px solid #e4e4e4;
      box-shadow: 0px 4px 8px rgba(124, 124, 124, 0.08);
      border-radius: 4px;
  }

& .header-cart-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;

& .header-cart-name {
      font-size: 16px;
      font-weight: 600;
      color: #0d0e0f;
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

& .header-cart-price {
      font-size: 16px;
      font-weight: 600;
      color: #25a0d5;
  }

& .header-cart-desc {
      display: flex;
      align-items: center;
      gap: 12px;

.header-cart-quantity {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #8a8a8a;
}

.header-cart-desc-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;

.header-cart-desc-currency {
    font-size: 18px;
    font-weight: 700;
}

.header-cart-desc-value {
    font-size: 20px;
    font-weight: 700;
}
}
}
}
}
}

& .header-cart-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 12px;
      padding: 60px 28px 90px;

& .header-cart-empty-title {
      font-size: 24px;
      font-weight: 700;
      color: #25a0d5;
  }

& .header-cart-empty-text {
      font-size: 20px;
      font-weight: 400;
      color: #8a8a8a;
  }
}
}

@media (min-width: 768px) {
&:hover .header-cart-dropdown {
    display: block;
    opacity: 1;
}
}
}
}

/* Sidebar */
.sidebar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 260px;
    background-color: #1d1d1e;
    z-index: 999;
    transition: left 0.3s ease-in-out;
    padding-bottom: 30px;
}

@media (max-width: 1022px) {
    .sidebar {
        top: 0;
        left: -100%;
    }

    .sidebar.active {
        left: 0;
        z-index: 9999999;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999999;
    }

    .overlay.active {
        display: block;
    }
}

.sidebar-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;

& img {
      width: 200px;

@media (max-width: 767px) {
    display: none;
}
}
}

.sidebar-close-btn {
    display: none;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;

&:focus,
&:focus-visible,
&:focus-within {
     outline: none;
 }

@media (max-width: 1022px) {
    display: flex;
}

@media (max-width: 767px) {
    top: 10px;
}
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 55px;
    background-color: #1d1d1e;

.sidebar-main-links {
    display: flex;
    flex-direction: column;

.sidebar-main-link {
    height: 36px;
    display: flex;
    text-decoration: none;
    align-items: center;
    border-top: 1px solid #2d2d2d;
    border-left: 3px solid transparent;
    font-size: 13px;
    padding-left: 30px;

    color: #d2d2d2;
    transition: all 300ms;

&:last-child {
     border-bottom: 1px solid #2d2d2d;
 }

&:hover {
     color: #ffffff;
     border-left: 3px solid #eb8f8f;
 }
}
}

.sidebar-middle-links {
    display: flex;
    flex-direction: column;

.sidebar-middle-link-title {
    padding-left: 30px;
    padding-bottom: 16px;
    font-weight: 400;
    font-size: 13px;
    color: #595b5c;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.sidebar-middle-link {
    height: 36px;
    display: flex;
    text-decoration: none;
    align-items: center;
    border-top: 1px solid #2d2d2d;
    font-size: 13px;
    padding-left: 32px;

    color: #d2d2d2;
    transition: all 300ms;

&:last-child {
     border-bottom: 1px solid #2d2d2d;
 }

&:hover {
     color: #ffffff;
     text-shadow: -1px 0px 1px #ffffff;
     font-weight: 500;
 }
}
}
}

/* Blogs */
.blogs {
    padding-top: 80px;

@media (max-width: 767px) {
    padding-top: 40px;
}

.blogs-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;

@media (max-width: 767px) {
    margin-bottom: 40px;
}

.blogs-categories-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0d0e0f;
    text-transform: uppercase;

@media (max-width: 767px) {
    font-size: 20px;
    font-weight: 500;
}
}

.blogs-slider {
    position: relative;

&::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 34px;
     height: 46px;
     background: linear-gradient(
             270deg,
             #ffffff 25%,
             rgba(255, 255, 255, 0) 100%
     );
     z-index: 2;

@media (min-width: 767px) {
    display: none;
}
}

.blogs-categories-outline-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 6px;
    width: 100%;
    height: 44px;
    background: #ffffff;
    color: #25a0d5;
    border-radius: 4px;
    border: 2px solid #25a0d5;
    transition: all 300ms;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     color: #ffffff;
     font-weight: 600;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

.swiper {
    width: calc(100% - 76px);
    height: 100%;
    margin-left: 0;

@media (max-width: 767px) {
    width: 100%;
}
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -36px;
}

.swiper-button-next {
    width: 52px;
    height: 44px;
    background-color: #25a0d5;
    color: #ffffff;
    border-radius: 4px;
    transition: all 300ms;
    border: 1px solid #25a0d5;

@media (max-width: 767px) {
    display: none;
}

&:focus,
&:focus-visible {
     outline: none;
     border-color: #0d82b4;
 }

&:hover {
     background-color: #0d82b4;
 }
}

.swiper-button-next:after {
    content: '';
    background-image: url('/assets/svg/arrow-long-right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 14px;
    font-family: inherit;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #e4e4e4;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #25a0d5;
}
}
}

.blogs-cards {
    display: flex;
    justify-content: space-between;
    gap: 32px 20px;
    flex-wrap: wrap;

@media (max-width: 767px) {
    flex-direction: column;
    gap: 20px;
}

.blogs-card {

    flex: 1 1 33.333%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: unset;

@media (min-width: 767px) {
    max-width: 50%;
}

@media (max-width: 767px) {
    flex: 1 1 100%;
}

.blogs-card-image {
    height: 300px;

@media (max-width: 767px) {
    height: 200px;
}

& img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 4px;
  }
}

.blogs-card-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;

@media (max-width: 767px) {
    gap: 8px;
}

& .blogs-card-tag {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 4px 12px;
      gap: 6px;
      width: fit-content;
      height: 30px;
      background: #25a0d5;
      border-radius: 4px;
      font-size: 16px;
      font-weight: 400;
      color: #ffffff;

@media (max-width: 767px) {
    font-size: 14px;
}
}
}

.blogs-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0d0e0f;
    text-transform: uppercase;
    margin-top: 4px;
}
}
}

.blogs-filled-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 10px;
    gap: 10px;
    width: 320px;
    height: 46px;
    background: #25a0d5;
    color: #ffffff;
    border-radius: 3px;
    border: 2px solid #25a0d5;
    transition: all 300ms;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 60px;
    cursor: pointer;

@media (max-width: 767px) {
    margin-top: 40px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}
}

/* Blogs-Detail */
.blogs-detail {
    margin: 60px 0 0;
   /* display: flex;
    flex-direction: column;*/

    max-width: 815px;
    width: 100%;

@media (max-width: 767px) {
    margin: 40px 0 0;
}

.blogs-detail-header {
    display: flex;
    flex-direction: column;
    gap: 24px;

@media (max-width: 767px) {
    gap: 16px;
}

.blogs-detail-title {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #0d0e0f;

@media (max-width: 767px) {
    font-size: 24px;
}
}

.blogs-detail-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;

@media (max-width: 767px) {
    gap: 8px;
}

& .blogs-detail-tag {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 4px 12px;
      gap: 6px;
      width: fit-content;
      height: 30px;
      background: #25a0d5;
      border-radius: 4px;
      font-size: 16px;
      font-weight: 400;
      color: #ffffff;

@media (max-width: 767px) {
    font-size: 14px;
}
}
}
}

.blogs-detail-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #0d0e0f;

@media (max-width: 767px) {
    font-size: 16px;
}
}

.blogs-detail-article {
    display: flex;
    flex-direction: column;
    gap: 16px;

.blogs-detail-article-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0d0e0f;

@media (max-width: 767px) {
    font-size: 20px;
}
}

.blogs-detail-article-desc {
    display: flex;
    flex-direction: column;
    gap: 8px;

.blogs-detail-article-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #0d0e0f;

@media (max-width: 767px) {
    font-size: 16px;
}
}
}
}
}

.blogs-like {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 80px;

@media (max-width: 767px) {
    margin-top: 40px;
    gap: 30px;
}

.blogs-like-title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0d0e0f;
    text-transform: uppercase;

@media (max-width: 767px) {
    font-size: 20px;
    font-weight: 500;
}
}

.blogs-cards {
.blogs-card {
    flex: 1 1 24%;
}
}
}

/* Trusted Partners */
.partners {
    padding-top: 80px;

@media (max-width: 767px) {
    padding-top: 40px;
}

.partners-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.partners-card {
    flex: 1 1 33.333%;
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    gap: 24px;
    border: 2px solid #e4e4e4;
    border-radius: 6px;

@media (max-width: 767px) {
    flex: 1 1 100%;
}

@media (max-width: 767px) {
    padding: 16px;
    gap: 16px;
}

.partners-card-header {
    display: flex;
    flex-direction: column;
    gap: 12px;

@media (max-width: 767px) {
    gap: 8px;
}

.partners-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    color: #0d0e0f;
    text-transform: uppercase;

@media (max-width: 767px) {
    font-size: 24px;
}
}

.partners-card-image {
    width: 250px;
    margin: 0 auto;

@media (max-width: 767px) {
    width: 156px;
}
}
}

.partners-card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;

@media (max-width: 767px) {
    gap: 4px;
}

.partners-card-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0d0e0f;
    font-size: 16px;

& span {
      font-weight: 700;
      color: #25a0d5;
  }
}
}

.partners-card-text {
    font-size: 18px;
    color: #0d0e0f;

@media (max-width: 767px) {
    font-size: 16px;
}
}
}
}

/* Checkbox */
.checkbox-label {
    display: block;
    position: relative;
    padding-left: 24px;
    line-height: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 300ms;

&:hover {
     color: #25a0d5;
     /*font-weight: 600;*/
 }

& .checkmark:after {
      left: 5.5px;
      top: 2px;
      width: 4px;
      height: 8px;
      border: solid #ffffff;
      border-width: 0 2px 2px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  }

& .checkbox-input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;

&:checked ~ .checkmark {
     background-color: #25a0d5;
     border-color: #25a0d5;
 }

&:checked ~ .checkmark:after {
     display: block;
 }
}

& .checkmark {
      position: absolute;
      top: 2px;
      left: 0;
      height: 16px;
      width: 16px;
      background-color: #ffffff;
      border: 1px solid #8a8a8a;
      border-radius: 2px;

&:after {
     content: '';
     position: absolute;
     display: none;
 }
}
}

/* Filters */
.filters {
    padding-top: 40px;

& .filters-toggle-outline-btn {
      display: none;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 9px 10px;
      gap: 6px;
      width: fit-content;
      height: 48px;
      background: #ffffff;
      color: #25a0d5;
      border-radius: 4px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      font-weight: 500;
      text-decoration: none;
      cursor: pointer;
      margin-bottom: 24px;

@media (max-width: 767px) {
    width: 100%;
    display: flex;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     color: #ffffff;

& svg > path {
      stroke: #ffffff;
  }
}

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

.filters-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;

@media (max-width: 767px) {
    flex-direction: column;
}

& .filters-top-filled-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 9px 10px;
      gap: 6px;
      width: fit-content;
      height: 40px;
      background: #25a0d5;
      color: #ffffff;
      border-radius: 3px 3px 0 0;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;

@media (max-width: 767px) {
    width: 100%;
    border-radius: 3px;
    font-size: 14px;
}

& span {
      font-weight: 700;

@media (max-width: 767px) {
    display: block;
    margin-left: 20px;
}
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

& .filters-top-outline-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 9px 10px;
      gap: 6px;
      width: fit-content;
      height: 40px;
      background: #ffffff;
      color: #25a0d5;
      border-radius: 3px 3px 0 0;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;

@media (max-width: 767px) {
    width: 100%;
    font-size: 14px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     color: #ffffff;

& svg > path {
      stroke: #ffffff;
  }
}

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}
}

.filters-wrapper {
    display: none;

@media (min-width: 768px) {
    display: block;
}

&.open {
     display: block;
 }

.filters-box {
    display: flex;
    flex-direction: row;
    padding: 20px 0;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    row-gap: 20px;
    flex-wrap: wrap;

@media (max-width: 767px) {
    row-gap: 0;
    padding: 0;
}

& .filters-box-item {
      flex: 1 1 220px;
      /* height: 264px; */
      display: flex;
      flex-direction: column;
      /* justify-content: space-between; */
      gap: 16px;
      padding: 0 32px;
      border-right: 1px solid #e4e4e4;
      position: relative;

@media (max-width: 1131px) {
&:nth-child(4) {
    border-right: 0;
}
}

@media (max-width: 911px) {
&:nth-child(4) {
    border-right: 1px solid #e4e4e4;
}

&:nth-child(3) {
     border-right: 0;
 }
}

@media (max-width: 767px) {
    flex: 1 1 40%;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
    height: 213px;

&:nth-child(2) {
     border-right: 0;
 }

&:nth-child(4) {
     border-right: 0;
 }

&:nth-child(3) {
     border-right: 1px solid #e4e4e4;
 }

&::after {
     content: '';
     position: absolute;
     bottom: -20px;
     left: 50%;
     width: calc(100% - 20px);
     transform: translateX(-50%);
     margin: 0 auto;
     height: 1px;
     background-color: #e4e4e4;
 }

&:last-child::after {
     display: none;
 }
}

&:last-child {
     border-right: 0;
 }

& .filters-title {
      font-size: 16px;
      font-weight: 700;
      line-height: 27px;
      text-transform: uppercase;
  }

& .filters-content {
      display: flex;
      flex-direction: column;
      gap: 14px;
      /*height: 180px;*/
      overflow-y: auto;
      padding-right: 6px;
      scrollbar-width: thin;
      scrollbar-color: #25a0d5 #e4e4e4;

&.show {
     /*height: 316px;*/
     overflow-y: auto;

@media (max-width: 767px) {
    height: auto;
}
}

&::-webkit-scrollbar {
     width: 6px;
     border-radius: 10px;
 }

&::-webkit-scrollbar-track {
     background: #e4e4e4;
     border-radius: 10px;
 }

&::-webkit-scrollbar-thumb {
     background-color: #25a0d5;
     border-radius: 10px;
 }

& .filters-content-item {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
  }
}

.filters-collapsed .filters-content-item:nth-child(n + 6) {
    display: none;

@media (max-width: 767px) {
    display: flex;
}
}

& .filters-ghost-btn {
      font-size: 14px;
      font-weight: 700;
      color: #25a0d5;
      border: 0;
      text-align: left;
      background-color: transparent;
      cursor: pointer;

@media (max-width: 767px) {
    display: none;
}

&:hover {
     color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
 }
}
}
}
}

.filters-bottom {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;

.filters-bottom-result {
    font-size: 16px;
    font-weight: 400;
    color: #8a8a8a;

@media (max-width: 767px) {
    font-size: 14px;
}
}

.filters-sort-dropdown {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #0d0e0f;

& .filters-sort-icon {
      transition: all 300ms;
  }

& span {
      color: #25a0d5;
  }

&.active {
.filters-sort-icon {
    transform: rotate(90deg);
}

& .filters-sort-dropdown-content {
      opacity: 1;
      visibility: visible;
  }
}

& .filters-sort-dropdown-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 14px 20px;
      gap: 10px;
      position: absolute;
      width: 190px;
      right: 0;
      top: 32px;
      z-index: 15;
      background: #ffffff;
      backdrop-filter: blur(10px);
      border-radius: 2px;
      border: 1px solid #e4e4e4;
      opacity: 0;
      visibility: hidden;
      transition: all 300ms;

& .filters-sort-dropdown-item {
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      transition: all 300ms;
      color: #8a8a8a;
      cursor: pointer;

&:hover {
     color: #25a0d5;
 }

&.active {
     color: #25a0d5;
     font-weight: 700;
 }
}
}
}
}
}

/* Products */
.products {
    margin-top: 40px;
}

.products-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.products-header-filled-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 10px;
    gap: 10px;
    width: 320px;
    height: 46px;
    background: #25a0d5;
    color: #ffffff;
    border-radius: 3px;
    border: 2px solid #25a0d5;
    transition: all 300ms;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

.products-header-tagline {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;

@media (max-width: 767px) {
    margin-top: 4px;
    font-size: 16px;
}

& span {
      font-size: 24px;
      font-weight: 700;
      color: #25a0d5;

@media (max-width: 767px) {
    font-size: 22px;
}
}
}

.products-header-text {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #25a0d5;
}

.products-content {
    margin-top: 50px;
}

.products-title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    line-height: 33px;
    font-weight: 500;
    color: #ffffff;
    padding: 16px 20px;
    background: linear-gradient(90deg, #145774 0%, #25a0d5 100%);
    border-radius: 8px;
    text-transform: uppercase;

@media (max-width: 767px) {
    padding: 8px 12px;
    font-size: 20px;
    line-height: 28px;
}
}

.products-cards {
    margin-top: 30px;
    display: grid;
    /*justify-content: space-between;*/
    grid-template-columns: repeat(auto-fit, minmax(175px, 277px));
    gap: 20px;

@media (max-width: 767px) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(158px, 158px));
    gap: 10px;
    margin-top: 24px;
}
}

.products-card {
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.products-card-header {
    width: 100%;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    padding: 5px 0px;
    height: 32px;
    background: #f4f4f4;
    position: relative;
    cursor: pointer;
    transition: all 300ms;
    z-index: 10;

@media (max-width: 767px) {
    height: 29px;
}

& .products-card-header-dropdown {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 8px;

@media (max-width: 767px) {
    gap: 4px;
}

& .products-card-header-text {
      font-size: 14px;
      color: #25a0d5;

& span {
      font-weight: 600;
  }

@media (max-width: 767px) {
    font-size: 11px;
}
}

& .products-card-header-icon {
      transition: all 300ms;

@media (max-width: 767px) {
    height: 9px;
}
}
}

&.active {
.products-card-header-icon {
    transform: rotate(90deg);
}

& .products-card-header-dropdown-content {
      opacity: 1;
      visibility: visible;
  }

& ~ .products-card-content {
      position: relative;
  }

& ~ .products-card-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.57);
      backdrop-filter: blur(7px);
      z-index: 5;
      pointer-events: none;
  }
}

& .products-card-header-dropdown-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 16px 10px;
      gap: 12px;
      position: absolute;
      width: 100%;
      left: 0;
      top: 32px;
      z-index: 15;
      background: #ffffff;
      backdrop-filter: blur(10px);
      border-radius: 0 0 12px 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      opacity: 0;
      visibility: hidden;
      transition: all 300ms;

@media (max-width: 767px) {
    top: 29px;
}

& .products-card-header-dropdown-item {
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      transition: all 300ms;
      cursor: pointer;

@media (max-width: 767px) {
    font-size: 14px;
}

&:hover {
     color: #25a0d5;
 }

&.active {
     color: #25a0d5;
     font-weight: 700;
 }
}
}
}

.products-card-content {
    cursor: pointer;
    transition: all 300ms;
    position: relative;
    z-index: 1;

&:hover .products-card-body-hover {
     visibility: visible;
     opacity: 1;
 }
}

.products-card-body {
    width: 100%;
    height: 250px;
    position: relative;
    padding-top: 8px;

@media (max-width: 767px) {
    height: 153px;
}

& .products-card-body-hover {
      position: absolute;
      inset: 0;
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      padding: 12px;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.57);
      backdrop-filter: blur(3.5px);
      z-index: 3;
      visibility: hidden;
      opacity: 0;
      transition: all 300ms;

@media (max-width: 767px) {
    padding: 8px;
    gap: 6px;
    padding-top: 16px;
}

& .products-card-body-hover-tag {
      position: absolute;
      top: 8px;
      right: 0;
      text-align: center;
      padding: 1px 16px 2px;
      background: #25a0d5;
      border-radius: 3px 0px 0px 3px;
      font-size: 16px;
      font-weight: 400;
      color: #ffffff;
      z-index: 5;

@media (max-width: 767px) {
    font-size: 14px;
    padding: 2px 12px;
}
}

& .products-card-outline-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 9px 10px;
      gap: 10px;
      width: 100%;
      height: 40px;
      background: #ffffff;
      color: #25a0d5;
      border-radius: 3px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      margin: 0 auto;
      cursor: pointer;

@media (max-width: 767px) {
    font-size: 14px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     color: #ffffff;

& svg > path {
      fill: #ffffff;
      stroke: #ffffff;
  }
}

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

& .products-card-filled-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 9px 10px;
      gap: 10px;
      width: 100%;
      height: 40px;
      background: #25a0d5;
      color: #ffffff;
      border-radius: 3px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      margin: 0 auto;
      cursor: pointer;

@media (max-width: 767px) {
    font-size: 14px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}
}

& .products-card-body-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      z-index: 2;
      position: relative;

& .products-card-body-tag {
      position: absolute;
      top: 0;
      right: 0;
      text-align: center;
      padding: 1px 16px 2px;
      background: #25a0d5;
      border-radius: 3px 0px 0px 3px;
      font-size: 16px;
      font-weight: 400;
      color: #ffffff;
      z-index: 5;

@media (max-width: 767px) {
    font-size: 14px;
    padding: 2px 12px;
}
}

& .products-card-body-flags {
      display: flex;
      gap: 4px;
      align-items: center;
      padding-left: 12px;

@media (max-width: 767px) {
    flex-direction: column;
    padding-left: 8px;
}

& img {
      width: 40px;

@media (max-width: 767px) {
    width: 29px;
}
}
}
}

& .products-card-body-image {
      position: absolute;
      inset: 0;
      display: block;
      width: 250px;
      height: 100%;
      margin: 0 auto;
      object-fit: cover;

@media (max-width: 767px) {
    width: 153px;
}
}
}

.products-card-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 12px 20px;

@media (max-width: 767px) {
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
}

& .products-card-footer-info {
      display: flex;
      flex-direction: column;
      gap: 4px;

@media (max-width: 767px) {
    gap: 0;
}

& .products-card-name {
      font-size: 20px;
      font-weight: 700;
      line-height: 27px;

@media (max-width: 767px) {
    font-size: 16px;
    line-height: 24px;
}
}

& .products-card-company {
      font-size: 18px;
      font-weight: 600;
      line-height: 25px;
      color: #8a8a8a;

@media (max-width: 767px) {
    font-size: 14px;
    line-height: 18px;
}
}
}

& .products-card-details {
      font-size: 16px;
      font-weight: 400;
      line-height: 22px;
      color: #8a8a8a;
      margin-top: 2px;

@media (max-width: 767px) {
    margin-top: 0;
    font-size: 14px;
    line-height: 18px;
}
}

& .products-card-pricing {
      display: flex;
      gap: 12px;
      margin-top: 4px;

@media (max-width: 767px) {
    margin-top: 0;
}

& .products-card-pricing-original {
      font-weight: 700;
      font-size: 24px;
      line-height: 33px;
      display: flex;
      align-items: center;
      gap: 2px;
      color: #25a0d5;

@media (max-width: 767px) {
    font-size: 20px;
    line-height: 29px;
}
}

& .products-card-pricing-discounted {
      font-weight: 600;
      font-size: 16px;
      line-height: 22px;
      display: flex;
      align-items: center;
      gap: 2px;
      color: #8a8a8a;
      position: relative;
      align-self: flex-start;

@media (max-width: 767px) {
    font-size: 14px;
    line-height: 18px;
}

&:before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 120%;
     height: 1px;
     background: #8a8a8a;
 }
}
}
}

/* Footer */
.footer {
    padding-top: 50px;
    padding-bottom: 20px;
    border-top: 1px solid #e4e4e4;
    background-color: #ffffff;

@media (max-width: 767px) {
    padding-top: 40px;
    padding-bottom: 10px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 24px;

@media (max-width: 767px) {
    flex-direction: column;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 24px;

&.footer-item-start {
     width: 395px;

@media (max-width: 767px) {
    width: 100%;
}
}

&.footer-item-middle {
     width: 244px;

@media (max-width: 767px) {
    width: 100%;
}
}

&.footer-item-end {
     width: 244px;

@media (max-width: 767px) {
    width: 100%;
}
}

.footer-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #8a8a8a;
    text-transform: uppercase;
}

.footer-item-links {
    display: flex;
    justify-content: space-between;
    gap: 24px;

.footer-item-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-item-link {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #0d0e0f;
    transition: all 300ms;

&:hover {
     color: #25a0d5;
 }
}
}

.footer-item-images {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 24px;
    column-gap: 40px;

.footer-item-image {
    width: 97px;
}
}
}
}

.footer-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

@media (max-width: 767px) {
    margin-top: 50px;
}

.footer-text {
    font-size: 12px;
    font-weight: 400;
    color: #8a8a8a;
}

.footer-link {
    font-size: 12px;
    font-weight: 400;
    color: #8a8a8a;
    transition: all 300ms;
    text-decoration: none;

&:hover {
     color: #25a0d5;
 }
}
}
}

/* FAQ */
.faq {
    margin: 80px 0;

@media (max-width: 767px) {
    margin: 40px 0;
}

.faqs-title {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 33px;

@media (max-width: 767px) {
    font-size: 20px;
}
}

.faq-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 6px;

@media (max-width: 767px) {
    margin-top: 24px;
}
}
}

.faq-item {
    padding: 22px 60px;
    background: #f9f9f9;
    transition: all 300ms;
    border-radius: 4px;

@media (max-width: 767px) {
    padding: 20px;
}

&:hover {
     background: #eeeeee;
 }
}

.faq-question {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: transparent;
    color: #0d0e0f;
    border-radius: 3px;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    border: 0;
    cursor: pointer;
    transition: all 300ms;

@media (max-width: 767px) {
    font-size: 18px;
    gap: 12px;
}

& span {
      display: block;
      width: 80%;

@media (max-width: 767px) {
    width: 100%;
}
}

&:focus,
&:focus-visible,
&:focus-within {
     outline: none;
 }
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 18px;
    color: #898989;
    width: 80%;

@media (max-width: 767px) {
    width: 100%;
}
}

.faq-answer.open {
    max-height: 200px;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-top: 16px;
}

/* Prods */
.prods {
    padding: 80px 0;
}

.prods-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.prods-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;

@media (max-width: 1200px) {
    flex-direction: column;
}
}

.prods-header-images {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 8px;

@media (max-width: 1200px) {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    max-width: 360px;
}
}

.prods-header-image-main {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 1px solid #e4e4e4;
    filter: drop-shadow(0px 4px 8px rgba(124, 124, 124, 0.08));
    border-radius: 4px;

@media (max-width: 767px) {
    height: 360px;
}
}

.prods-header-select {
    display: flex;
    gap: 8px;
}

.prods-header-select-image {
    width: 120px;
    height: 120px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;

@media (max-width: 767px) {
    width: 84px;
    height: 84px;
}
}

.prods-header-select-image:hover {
    border-color: #25a0d5;
    box-shadow: 0 2px 8px rgba(37, 160, 213, 0.2);
}

.prods-header-select-image.selected {
    border-color: #25a0d5;
    border-width: 2px;
    box-shadow: 0 2px 12px rgba(37, 160, 213, 0.3);
}

.prods-header-info {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 30px;

@media (max-width: 1200px) {
    width: 100%;
}

@media (max-width: 767px) {
    gap: 24px;
}
}

.prods-header-info-item {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #e4e4e4;

&:first-child {
     padding-top: 0;
 }

&:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }
}

.prods-header-info-item-title {
    width: 116px;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    color: #8a8a8a;
}

.prods-header-info-item-value {
    flex: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
}

.prods-header-pricing {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;

@media (max-width: 767px) {
    gap: 16px;
}
}

/* Warehouse Dropdown Styles */
.warehouse-dropdown {
    position: relative;
    flex: 1;
}

.warehouse-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12.5px 16px;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms;
    width: 100%;
}

.warehouse-dropdown-header-left {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 8px;
}

.warehouse-dropdown-header-left-content {
    display: flex;
    align-items: center;
    gap: 4px;
}

.warehouse-dropdown-header.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
}

.warehouse-dropdown.error .warehouse-dropdown-icon {
    color: #d92323;
}

.warehouse-dropdown-text {
    font-size: 16px;
    font-weight: 600;
    color: #25a0d5;
    text-align: left;
}

.warehouse-dropdown.error .warehouse-dropdown-text {
    color: #d92323;
}

.warehouse-dropdown-value {
    font-size: 16px;
    font-weight: 600;
    color: #25a0d5;
}

.warehouse-dropdown.error .warehouse-dropdown-value {
    color: #d92323;
}

.warehouse-dropdown.error svg > path {
    stroke: #d92323;
}

.warehouse-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 300ms;
}

.warehouse-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    border-top: 1px solid #e4e4e4;
}

.warehouse-dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 300ms;
    font-size: 16px;
    font-weight: 600;
    color: #8a8a8a;
}

.warehouse-dropdown-item:last-child {
    border-bottom: none;
}

.warehouse-dropdown-item:hover {
    background: #f9f9f9;
    color: #25a0d5;
}

.warehouse-dropdown-item.selected {
    color: #25a0d5;
    background: #f9f9f9;
}

.products-card-price {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 4px;

@media (max-width: 767px) {
    margin-top: 0;
}

& .products-card-price-original {
      display: flex;
      gap: 2px;

& .products-card-price-original-currency {
      font-size: 26px;
      line-height: 40px;
      font-weight: 700;
      align-self: flex-end;

@media (max-width: 767px) {
    font-size: 24px;
    line-height: 32px;
}
}

& .products-card-price-original-value {
      font-size: 38px;
      line-height: 48px;
      font-weight: 700;

@media (max-width: 767px) {
    font-size: 32px;
    line-height: 40px;
}
}
}

& .products-card-price-discounted {
      display: flex;
      gap: 2px;
      color: #8a8a8a;
      position: relative;

& .products-card-price-discounted-currency {
      font-size: 18px;
      line-height: 32px;
      font-weight: 600;
  }

& .products-card-price-discounted-value {
      font-size: 20px;
      line-height: 30px;
      font-weight: 600;

@media (max-width: 767px) {
    font-size: 18px;
    line-height: 32px;
}
}

&:before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 120%;
     height: 1px;
     background: #8a8a8a;
 }
}
}

.prods-header-count {
    display: flex;
    align-items: center;
    gap: 16px;
}

.prods-header-count-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;

&:hover > svg > path {
     stroke: #0d0e0f;
 }
}

.prods-header-count-value {
    font-size: 24px;
    line-height: 32px;
}

.prods-header-warehouse {
    display: flex;
    align-items: center;
    gap: 32px;
}

.prods-header-tooltip {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 300ms;
    cursor: pointer;

&:hover > svg path {
     stroke: #0d0e0f;
 }

&:hover .prods-header-tooltip-text {
     color: #0d0e0f;
 }

& .prods-header-tooltip-text {
      font-size: 16px;
      line-height: 20px;
      color: #8a8a8a;
      font-weight: 600;

@media (max-width: 767px) {
    display: none;
}
}
}

/* Warehouse Tooltip Styles */
.warehouse-tooltip-content {
    font-family: 'Open Sans', sans-serif;
    max-width: 400px;
}

.warehouse-tooltip-content-text {
    font-size: 13px;
    line-height: 20px;
    color: #8a8a8a;
    font-weight: 600;
}

/* Tippy.js Custom Theme */
.tippy-box[data-theme~='light-border'] {
    background-color: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    padding: 10px;
    box-shadow: none;
}

.tippy-content {
    padding: 0;
}

.prods-header-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prods-header-btns {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.prods-header-outline-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 10px;
    gap: 10px;
    width: 100%;
    height: 46px;
    background: #ffffff;
    color: #25a0d5;
    border-radius: 3px;
    border: 2px solid #25a0d5;
    transition: all 300ms;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
    cursor: pointer;

@media (max-width: 767px) {
    font-size: 14px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     color: #ffffff;

& svg > path {
      fill: #ffffff;
      stroke: #ffffff;
  }
}

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

.prods-header-filled-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 10px;
    gap: 10px;
    width: 100%;
    height: 46px;
    background: #25a0d5;
    color: #ffffff;
    border-radius: 3px;
    border: 2px solid #25a0d5;
    transition: all 300ms;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
    cursor: pointer;

@media (max-width: 767px) {
    font-size: 14px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

.prods-header-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.prods-header-tag {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 12px;
    gap: 6px;
    background: #dddddd;
    border-radius: 4px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
}

/* Prods Details */
.prods-details {
    display: flex;
    justify-content: space-between;
    gap: 32px;

@media (max-width: 1200px) {
    flex-direction: column;
}
}

.prods-details-info {
    flex: 0 1 800px;
    display: flex;
    flex-direction: column;
    gap: 50px;

@media (max-width: 1200px) {
    width: 100%;
    order: 2;
}
}

.prods-details-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.prods-details-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #0d0e0f;
    text-transform: uppercase;

@media (max-width: 767px) {
    font-size: 20px;
    line-height: 28px;
}
}

.prods-details-info-item {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #e4e4e4;

&:first-child {
     padding-top: 0;
 }

&:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }
}

.prods-details-info-item-title {
    width: 116px;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    color: #8a8a8a;
}

.prods-details-info-item-value {
    flex: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
}

.prods-details-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.prods-details-content-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    color: #0d0e0f;
    text-transform: uppercase;
}

.prods-details-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prods-details-text {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    color: #0d0e0f;

@media (max-width: 767px) {
    font-size: 16px;
    line-height: 24px;
}
}

.prods-details-listing {
    list-style: none;
    padding: 0;
    margin: 0;

& .prods-details-listing-item {
      font-size: 18px;
      line-height: 25px;
      font-weight: 400;
      color: #0d0e0f;

@media (max-width: 767px) {
    font-size: 16px;
    line-height: 24px;
}
}
}

.prods-details-btns {
    width: 250px;
    display: flex;
    flex-direction: column;

@media (max-width: 1200px) {
    width: 100%;
    order: 1;
}
}

.prods-details-outline-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 10px;
    gap: 10px;
    width: 100%;
    height: 46px;
    background: #ffffff;
    color: #25a0d5;
    border-radius: 3px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid #25a0d5;
    transition: all 300ms;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
    cursor: pointer;

@media (max-width: 767px) {
    font-size: 14px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     color: #ffffff;

& svg > path {
      stroke: #ffffff;
  }
}

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

.prods-details-filled-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 10px;
    gap: 10px;
    width: 100%;
    height: 46px;
    background: #25a0d5;
    color: #ffffff;
    border-radius: 3px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid #25a0d5;
    transition: all 300ms;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
    cursor: pointer;

@media (max-width: 767px) {
    font-size: 14px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

/* Prods Like */
.prods-like {
    display: flex;
    flex-direction: column;
    gap: 50px;

@media (max-width: 767px) {
    gap: 30px;
}

.prods-like-title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0d0e0f;
    text-transform: uppercase;

@media (max-width: 767px) {
    font-size: 20px;
    font-weight: 500;
}
}

.products-cards {
    margin-top: 0;
}
}

/* Hero */
.hero {
    height: 160px;
    background-image: url('/assets/images/bg-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    position: relative;
    top: -2px;

@media (max-width: 767px) {
    height: 190px;
}
}

.hero-content {
    max-width: 1140px;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding-top: 64px;
    padding-bottom: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;

@media (max-width: 767px) {
    align-items: center;
    padding-bottom: 24px;
}
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-links {
    display: flex;
    align-items: center;
    align-self: flex-end;

@media (max-width: 767px) {
    align-self: center;
}
}

.hero-link {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 300ms;
    padding-right: 8px;
    padding-left: 8px;
    border-right: 1px solid #ffffff;

&:last-child {
     padding-right: 0;
     border-right: none;
     padding-left: 8px;
 }

&:hover {
     color: #25a0d5;
 }
}

/* Checkout */
.checkout {
    padding: 80px 0;
}

.checkout-content {
    display: flex;
    flex-direction: column;
    gap: 70px;

@media (max-width: 767px) {
    gap: 40px;
}
}

.checkout-table {
    display: flex;
    flex-direction: column;
    gap: 40px;

@media (max-width: 1279px) {
    gap: 28px;
}
}

.checkout-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 0;

@media (max-width: 1279px) {
    display: none;
}
}

.checkout-table-heading {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #8a8a8a;

&:first-child {
     flex: 0 1 560px;
 }

&:nth-child(2) {
     flex: 0 1 80px;
     text-align: center;
 }

&:nth-child(3) {
     flex: 0 1 160px;
     text-align: center;
 }

&:nth-child(4) {
     flex: 0 1 80px;
     text-align: center;
 }

&:nth-child(5) {
     flex: 0 1 24px;
     text-align: right;
 }
}

.checkout-table-body {
@media (max-width: 1279px) {
    display: none;
}
}

.checkout-table-body.mobile {
    display: block;
    border-bottom: 1px solid #e4e4e4;

&:first-child {
     padding-top: 0;
 }

@media (min-width: 1280px) {
    display: none;
}
}

.checkout-mobile-table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 28px;
    gap: 12px;
}

.checkout-mobile-table-item-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 28px;

& .prods-header-tooltip.mobile {
      position: relative;
      top: 10px;
  }

& .checkout-mobile-header-warehouse {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 0 1 400px;

& .warehouse-dropdown {
.warehouse-dropdown-header {
    gap: 6px;
    padding: 9px 10px;
}

& .warehouse-dropdown-value {
      font-size: 14px;
      line-height: 130%;
  }

& .warehouse-dropdown-text {
      font-size: 14px;
      line-height: 130%;
  }

.warehouse-dropdown-item {
    padding: 9px 10px;
    font-size: 14px;
}
}

& .warehouse-mobile-dropdown-errors {
      display: none;
      flex-direction: column;
      gap: 8px;

& .warehouse-mobile-dropdown-error {
      font-weight: 600;
      font-size: 14px;
      line-height: 130%;
      color: #d92323;
  }
}

& .warehouse-mobile-dropdown-errors.error {
      display: flex;
  }
}
}

.checkout-mobile-table-warehouse {
    display: flex;
    justify-content: space-between;
    gap: 12px;

& .checkout-mobile-table-warehouse-image {
      width: 64px;
      height: 64px;
      border: 1px solid #e4e4e4;
      filter: drop-shadow(0px 4px 8px rgba(124, 124, 124, 0.08));
      border-radius: 4px;
  }

& .checkout-mobile-table-warehouse-content {
      display: flex;
      flex-direction: column;
  }

& .checkout-mobile-table-warehouse-title {
      font-weight: 600;
      font-size: 16px;
      line-height: 130%;
      margin-bottom: 6px;
  }

.checkout-mobile-table-total {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    color: #8a8a8a;

& .checkout-mobile-table-currency {
      font-size: 13px;
      line-height: 130%;
      font-weight: 600;
  }

& .checkout-mobile-table-cost {
      font-size: 16px;
      line-height: 130%;
      font-weight: 600;
  }

&.error {
     color: #d92323;
 }
}
}

.checkout-mobile-table-action {
    flex: 0 1 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: all 300ms;
    cursor: pointer;

& svg > path {
      transition: all 300ms;
  }

&:hover svg > path {
     stroke: #d92323;
 }
}

.checkout-mobile-table-quantity {
    display: flex;
    align-items: center;
    gap: 16px;
}

.checkout-mobile-table-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;

& .checkout-mobile-table-currency {
      font-size: 17px;
      line-height: 130%;
      font-weight: 600;
  }

& .checkout-mobile-table-cost {
      font-size: 20px;
      line-height: 130%;
      font-weight: 600;
  }
}

.checkout-table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    gap: 20px;
    border-bottom: 1px solid #e4e4e4;

&:first-child {
     padding-top: 0;
 }
}

.checkout-table-warehouse {
    flex: 0 1 560px;
    display: flex;
    gap: 20px;

& .checkout-table-warehouse-image {
      width: 95px;
      height: 95px;
      border: 1px solid #e4e4e4;
      filter: drop-shadow(0px 4px 8px rgba(124, 124, 124, 0.08));
      border-radius: 4px;
  }

& .checkout-table-warehouse-content {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
  }

& .checkout-table-warehouse-title {
      font-weight: 600;
      font-size: 20px;
      line-height: 130%;
      margin-bottom: 8px;
  }

& .checkout-header-warehouse {
      display: flex;
      align-items: center;
      gap: 16px;
  }

& .warehouse-dropdown-errors {
      display: none;
      flex-direction: column;
      gap: 8px;

& .warehouse-dropdown-error {
      font-weight: 600;
      font-size: 14px;
      line-height: 130%;
      color: #d92323;
  }
}

& .warehouse-dropdown-errors.error {
      display: flex;
  }
}

.checkout-table-price {
    flex: 0 1 80px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;

& .checkout-table-currency {
      font-size: 17px;
      line-height: 130%;
      font-weight: 600;
  }

& .checkout-table-cost {
      font-size: 20px;
      line-height: 130%;
      font-weight: 600;
  }
}

.checkout-table-quantity {
    flex: 0 1 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

.prods-header-count-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;

&:hover > svg > path {
     stroke: #0d0e0f;
 }
}

.prods-header-count-value {
    font-size: 24px;
    line-height: 32px;
}
}

.checkout-table-total {
    flex: 0 1 80px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;

& .checkout-table-currency {
      font-size: 17px;
      line-height: 130%;
      font-weight: 600;
  }

& .checkout-table-cost {
      font-size: 20px;
      line-height: 130%;
      font-weight: 600;
  }

&.error {
     color: #d92323;
 }
}

.checkout-table-action {
    flex: 0 1 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: all 300ms;
    cursor: pointer;

& svg > path {
      transition: all 300ms;
  }

&:hover svg > path {
     stroke: #d92323;
 }
}

/* Checkout Receipt */
.checkout-receipt {
    display: flex;
    justify-content: space-between;
    gap: 28px;

@media (max-width: 1022px) {
    flex-direction: column;
    gap: 40px;
}
}

.checkout-receipt-code {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 8px;

@media (max-width: 1022px) {
    width: 100%;
}

& .checkout-receipt-field {
      display: flex;

& > input {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 9px 12px;
      gap: 10px;
      flex: 1;
      height: 44px;
      border: 1px solid #e4e4e4;
      border-right: none;
      border-radius: 2px 0 0 2px;
      font-size: 16px;
      font-weight: 400;
      color: #0d0e0f;
      transition: all 300ms;

&:focus,
&:focus-visible,
&:focus-within {
     outline: none;
     border-color: #25a0d5;
 }
}

& .checkout-receipt-filled-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 10px;
      width: 180px;
      height: 44px;
      background: #25a0d5;
      color: #ffffff;
      border-radius: 2px;
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

@media (max-width: 767px) {
    width: 150px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     font-weight: 500;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}
}

.checkout-receipt-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #8a8a8a;
}
}

.checkout-receipt-total {
    width: 40%;

@media (max-width: 1022px) {
    width: 100%;
}

.checkout-receipt-total-top {
    padding-bottom: 16px;
    border-bottom: 1px solid #e4e4e4;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-receipt-total-top-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;

& .checkout-receipt-total-top-title {
      font-weight: 600;
      font-size: 16px;
      line-height: 130%;
      color: #8a8a8a;
  }

& .checkout-receipt-total-shipping {
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      flex-direction: column;
  }

& .checkout-receipt-total-top-text {
      display: flex;
      gap: 4px;
      align-items: flex-end;

& .checkout-receipt-total-top-text-cost {
      font-weight: 600;
      font-size: 18px;
      line-height: 25px;
  }

& .checkout-receipt-total-top-text-currency {
      font-size: 16px;
      line-height: 25px;
      font-weight: 600;
  }
}

& .checkout-receipt-total-top-text-info {
      font-size: 14px;
      font-weight: 600;
      line-height: 19px;
      color: #8a8a8a;
  }
}

.checkout-receipt-total-bottom {
    padding-top: 16px;

& .checkout-receipt-total-bottom-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;

& .checkout-receipt-total-bottom-title {
      font-weight: 800;
      font-size: 20px;
      line-height: 130%;
  }

& .checkout-receipt-total-bottom-text {
      display: flex;
      gap: 4px;
      align-items: flex-end;
      color: #25a0d5;
  }

& .checkout-receipt-total-bottom-text-cost {
      font-weight: 700;
      font-size: 22px;
      line-height: 28px;
  }

& .checkout-receipt-total-bottom-text-currency {
      font-size: 19px;
      line-height: 28px;
      font-weight: 700;
  }
}
}
}

/* Checkout Credit */
.checkout-credit {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;

@media (max-width: 1022px) {
    width: 100%;
}
}

.checkout-credit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

@media (max-width: 767px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

& .checkout-credit-info {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;

& .checkout-credit-title {
      font-family: 'Oswald';
      font-style: normal;
      font-weight: 700;
      font-size: 18px;
      line-height: 27px;
      text-transform: uppercase;
  }

& .checkout-credit-price {
      display: flex;
      gap: 4px;
      align-items: flex-end;

& .checkout-credit-price-currency {
      font-weight: 700;
      font-size: 19px;
      line-height: 30px;
      color: #25a0d5;
  }

& .checkout-credit-price-text {
      font-weight: 700;
      font-size: 22px;
      line-height: 30px;
      color: #25a0d5;
  }
}
}

& .checkout-credit-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 10px;
      width: 180px;
      height: 44px;
      background: #25a0d5;
      color: #ffffff;
      border-radius: 2px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}
}

.checkout-credit-body {
    display: flex;
    flex-direction: column;
    gap: 12px;

& .checkout-credit-body-text {
      font-weight: 400;
      font-size: 16px;
      line-height: 130%;
      color: #8a8a8a;

& > span {
      color: #25a0d5;
      font-weight: 700;
  }
}
}

/* Generic Select Dropdown Styles */
.generic-select-dropdown {
    position: relative;
    width: calc(50% - 12px);

@media (max-width: 1022px) {
    width: 100%;
}
}

.generic-select-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 12px;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    cursor: pointer;
    transition: all 200ms ease;
    width: 100%;
}

.generic-select-dropdown.error {
& .generic-select-header {
      border-color: #d92323;

&:hover {
     border-color: #d92323;
 }
}
}

.generic-select-header:hover {
    border-color: #25a0d5;
}

.generic-select-header-left {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 8px;
}

.generic-select-header-left-content {
    display: flex;
    align-items: center;
    gap: 6px;
}

.generic-select-text {
    font-size: 16px;
    font-weight: 400;
    color: #757575;
    text-align: left;
}

.generic-select-value {
    font-size: 16px;
    font-weight: 400;
    color: #25a0d5;
}

.generic-select-chevron {
    transition: transform 200ms ease;
}

.generic-select-header.active .generic-select-chevron {
    transform: rotate(90deg);
}

.generic-select-menu {
    position: absolute;
    top: 115%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 200ms ease;
}

.generic-select-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.generic-select-item {
    padding: 9px 12px;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid #f0f0f0;
}

.generic-select-item:last-child {
    border-bottom: none;
}

.generic-select-item:hover {
    background: #f8f9fa;
    color: #25a0d5;
}

.generic-select-item.selected {
    color: #25a0d5;
    background: #f0f8ff;
    font-weight: 400;
}

/* Checkout Form */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 70px;

@media (max-width: 767px) {
    gap: 40px;
}
}

.checkout-form-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-form-info-fields {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;

@media (max-width: 1022px) {
    flex-direction: column;
    gap: 16px;
}

& .checkout-form-info-field {
      width: calc(50% - 12px);
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 9px 12px;
      gap: 10px;
      height: 44px;
      border: 1px solid #e4e4e4;
      border-radius: 2px;
      font-size: 16px;
      font-weight: 400;
      color: #0d0e0f;
      transition: all 300ms;

@media (max-width: 1022px) {
    width: 100%;
}

&.full-width {
     width: 100%;
 }

&.error {
     border-color: #d92323;
 }

&:focus,
&:focus-visible,
&:focus-within {
     outline: none;
     border-color: #25a0d5;
 }
}
}

/* Textarea with Character Counter Styles */
.textarea-container {
    position: relative;
    width: 100%;
}

.checkout-form-textarea {
    display: flex;
    width: 100%;
    min-height: 170px;
    padding: 9px 12px;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    background: #ffffff;
    font-size: 16px;
    line-height: 130%;
    color: #0d0e0f;
    resize: vertical;
    transition: all 200ms ease;

&.error {
     border-color: #d92323;
 }

&:focus,
&:focus-visible,
&:focus-within {
     outline: none;
     border-color: #25a0d5;
 }
}

.checkout-form-textarea::placeholder {
    color: #757575;
}

.textarea-counter {
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 14px;
    color: #8a8a8a;
    background: #ffffff;
    padding: 2px 6px;
    border-radius: 2px;
    pointer-events: none;
}

/* Checkout Form Shipping Method */
.checkout-form-shipping {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 50%;

@media (max-width: 767px) {
    width: 100%;
    gap: 24px;
}
}

.checkout-form-shipping-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;

@media (max-width: 767px) {
    font-size: 18px;
    line-height: 28px;
}
}

.checkout-form-shipping-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-form-shipping-option {
    position: relative;
}

.checkout-form-shipping-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-form-shipping-label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
    transition: all 300ms;
    height: 100%;

@media (max-width: 767px) {
    padding: 16px;
}
}

.checkout-form-shipping-label::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #8a8a8a;
    border-radius: 50%;
    background: #ffffff;
}

.checkout-form-shipping-radio:checked + .checkout-form-shipping-label::before {
    border-color: #25a0d5;
}

.checkout-form-shipping-radio:checked + .checkout-form-shipping-label::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 30px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25a0d5;
}

.checkout-form-shipping-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-form-shipping-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #0d0e0f;
    margin-left: 32px;

@media (max-width: 767px) {
    font-size: 18px;
    line-height: 24px;
}
}

.checkout-form-shipping-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #8a8a8a;
    display: flex;
    flex-direction: column;
    gap: 6px;

@media (max-width: 767px) {
    font-size: 16px;
    line-height: 24px;
}
}

.checkout-form-shipping-delivery {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #0d0e0f;

@media (max-width: 767px) {
    font-size: 16px;
    line-height: 24px;
}
}

.checkout-form-shipping-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    color: #25a0d5;

& .checkout-form-shipping-price-currency {
      font-size: 16px;
      line-height: 28px;
      font-weight: 700;
  }

& .checkout-form-shipping-price-value {
      font-size: 18px;
      line-height: 28px;
      font-weight: 700;
  }
}

/* Checkout Form Payment Method */
.checkout-form-payment {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.checkout-form-payment-box {
    display: flex;
    flex-direction: column;
    gap: 32px;

@media (max-width: 767px) {
    gap: 24px;
}
}

.checkout-form-payment-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;

@media (max-width: 767px) {
    font-size: 18px;
    line-height: 28px;
}
}

.checkout-form-payment-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;

@media (max-width: 767px) {
    flex-direction: column;
    gap: 16px;
}
}

.checkout-form-payment-option {
    position: relative;
    width: 50%;

@media (max-width: 767px) {
    width: 100%;
}
}

.checkout-form-payment-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-form-payment-label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
    transition: all 300ms;
    height: 100%;
}

.checkout-form-payment-label::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #8a8a8a;
    border-radius: 50%;
    background: #ffffff;
}

.checkout-form-payment-radio:checked + .checkout-form-payment-label::before {
    border-color: #25a0d5;
}

.checkout-form-payment-radio:checked + .checkout-form-payment-label::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 30px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25a0d5;
}

.checkout-form-payment-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-form-payment-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #0d0e0f;
    margin-left: 32px;

@media (max-width: 767px) {
    font-size: 18px;
    line-height: 24px;
}
}

.checkout-form-payment-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #8a8a8a;
    display: flex;
    flex-direction: column;
    gap: 6px;

@media (max-width: 767px) {
    font-size: 16px;
    line-height: 24px;
}

& strong {
      color: #0d0e0f;
  }
}

/* Checkout Form Account Password */
.checkout-form-account {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 50%;

@media (max-width: 767px) {
    width: 100%;
}
}

.checkout-form-account-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
}

.checkout-form-account-field {
    display: flex;
    align-items: center;
}

.checkout-form-account-input {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 9px 12px;
    gap: 10px;
    flex: 1;
    height: 44px;
    border: 1px solid #e4e4e4;

    border-radius: 2px 0 0 2px;
    font-size: 16px;
    font-weight: 400;
    color: #0d0e0f;
    transition: all 300ms;

&:focus,
&:focus-visible,
&:focus-within {
     outline: none;
     border-color: #25a0d5;
 }
}

.checkout-form-account-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 180px;
    height: 44px;
    background: #25a0d5;
    color: #ffffff;
    border-radius: 2px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border: 2px solid #25a0d5;
    transition: all 300ms;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;

@media (max-width: 767px) {
    width: 150px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

/* Checkout Form Submission */
.checkout-form-submission {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 50%;

@media (max-width: 767px) {
    width: 100%;
}
}

.checkout-form-errors-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    color: #d92323;

@media (max-width: 767px) {
    text-align: center;
}
}

.checkout-form-submit-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 320px;
    height: 46px;
    background: #25a0d5;
    color: #ffffff;
    border-radius: 2px;
    border: 2px solid #25a0d5;
    transition: all 300ms;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;

@media (max-width: 767px) {
    margin: 0 auto;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

/* Modals Page Triggers */
.modal-checkout-triggers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-checkout-trigger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #25a0d5;
    color: #ffffff;
    border: none;
    width: fit-content;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;

&:hover {
     background: #0d82b4;
 }
}

/* Empty-Checkout */
.empty-checkout {
    padding-top: 350px;
    padding-bottom: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

@media (max-width: 1022px) {
    padding-top: 250px;
    padding-bottom: 250px;
}

@media (max-width: 767px) {
    padding-top: 200px;
    padding-bottom: 200px;
}

& .empty-checkout-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 12px;

& .empty-checkout-title {
      font-weight: 700;
      font-size: 24px;
      line-height: 33px;
      display: flex;
      align-items: center;
      text-align: center;
      color: #25a0d5;
  }

& .empty-checkout-text {
      font-weight: 400;
      font-size: 20px;
      line-height: 27px;
      color: #8a8a8a;
  }
}

.empty-checkout-filled-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 320px;
    height: 46px;
    background: #25a0d5;
    color: #ffffff;
    border-radius: 2px;
    border: 2px solid #25a0d5;
    transition: all 300ms;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    margin-top: 32px;

@media (max-width: 767px) {
    margin: 32px auto 0;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}
}

/*=============== CHECKOUT MODAL ===============*/

.modal-checkout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;

&.active {
     display: flex;
     opacity: 1;
 }
}

.modal-checkout-content {
    background: #ffffff;
    border-radius: 8px;
    width: calc(100% - 32px);
    max-width: 1170px;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    padding: 50px 0;
    position: relative;

@media (max-width: 767px) {
    padding: 16px 0;
}

.modal-checkout.active & {
    transform: scale(1);
}

.checkout-table {
    gap: 20px;
}

.checkout-table-header {
    padding: 0 60px;
}

.checkout-table-body {
    max-height: 380px;
    height: fit-content;
    overflow-y: auto;
    padding-left: 60px;
    padding-right: 30px;
    margin-right: 30px;

@media (max-width: 767px) {
    padding-left: 16px;
    padding-right: 16px;
    margin-right: 0;
}
}

.checkout-table-item {
    padding: 24px 0;

&:first-child {
     padding-top: 0;
 }
}


.checkout-mobile-table-item {
    padding-bottom: 14px;
}

.checkout-receipt {
    align-items: flex-end;
    gap: 20px;
    padding: 0 60px;

@media (max-width: 767px) {
    padding: 0 16px;
    align-items: center;
}
}

& .checkout-receipt-actions {
      display: flex;
      gap: 8px;
      align-items: center;

@media (max-width: 767px) {
    order: 2;
    gap: 16px;
}

& .checkout-receipt-outline-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 6px;
      width: 200px;
      height: 40px;
      background: #ffffff;
      color: #25a0d5;
      border-radius: 4px;
      border: 1px solid #25a0d5;
      transition: all 300ms;
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

@media (max-width: 767px) {
    width: 130px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     color: #ffffff;
     font-weight: 500;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

& .checkout-receipt-filled-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 10px;
      width: 200px;
      height: 40px;
      background: #25a0d5;
      color: #ffffff;
      border-radius: 3px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

@media (max-width: 767px) {
    width: 170px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}
}
}

.modal-checkout-close-btn {
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    right: 0;
    transition: background-color 0.2s ease;

&:hover {
     background-color: #f5f5f5;
 }
}

/* Empty Cart Modal Styles */
.modal-checkout-empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 16px;
    text-align: center;
}

.modal-checkout-empty-cart-content {
    max-width: 600px;
}

.modal-checkout-empty-cart-title {
    font-size: 24px;
    font-weight: 700;
    color: #25a0d5;
    margin: 0 0 12px 0;
}

.modal-checkout-empty-cart-text {
    font-size: 20px;
    color: #8a8a8a;
}

.modal-checkout-empty-cart-footer {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 0 16px;
    align-items: center;

@media (max-width: 767px) {
    order: 2;
    gap: 16px;
}

& .checkout-receipt-outline-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 6px;
      width: 200px;
      height: 40px;
      background: #ffffff;
      color: #25a0d5;
      border-radius: 4px;
      border: 1px solid #25a0d5;
      transition: all 300ms;
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

@media (max-width: 767px) {
    width: 130px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     color: #ffffff;
     font-weight: 500;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

& .checkout-receipt-filled-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 10px;
      width: 200px;
      height: 40px;
      background: #25a0d5;
      color: #ffffff;
      border-radius: 3px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

@media (max-width: 767px) {
    width: 170px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}
}

/*=============== LOGOUT MODAL ===============*/
.modal-logout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;

&.active {
     display: flex;
     opacity: 1;
 }
}

.modal-logout-content {
    background: #ffffff;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    padding: 40px;
    text-align: center;

@media (max-width: 767px) {
    padding: 24px;
}

.modal-logout.active & {
    transform: scale(1);
}
}

.modal-logout-close-btn {
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    right: 0;
    transition: background-color 0.2s ease;

&:hover {
     background-color: #f5f5f5;
 }
}

.modal-logout-body {
    padding-bottom: 24px;
}

.modal-logout-title {
    font-size: 24px;
    font-weight: 700;
    color: #25a0d5;
    margin: 0 0 12px 0;
}

.modal-logout-text {
    font-size: 18px;
    color: #8a8a8a;
}

.modal-logout-footer {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;

& .modal-cancel-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 6px;
      width: 200px;
      height: 40px;
      background: #ffffff;
      color: #25a0d5;
      border-radius: 4px;
      border: 1px solid #25a0d5;
      transition: all 300ms;
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

@media (max-width: 767px) {
    width: 140px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
     color: #ffffff;
     font-weight: 500;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}

& .modal-logout-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px;
      gap: 10px;
      width: 200px;
      height: 40px;
      background: #25a0d5;
      color: #ffffff;
      border-radius: 3px;
      border: 2px solid #25a0d5;
      transition: all 300ms;
      font-size: 16px;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;

@media (max-width: 767px) {
    width: 140px;
}

&:hover {
     background: #0d82b4;
     border-color: #0d82b4;
 }

&:focus,
&:focus-visible {
     outline: none;
     border-color: #25a0d5;
 }
}
}


.parent_div {
    display: flex;
    align-items: stretch;
}



.top_region {
    background-color: #f0f0f0;
    margin: 10px 10px 0 0;
    padding: 12px 20px;
    flex-basis: 24%;
    border-radius: 10px
}

@media (max-width: 767px) {

    .parent_div {
        display: grid;
        grid-template-columns: repeat(2, 1fr);


    }

}

.top_region:hover {
    background-color: #eaeaea
}

.tooltip2{
    display: none;
}


/*SLIDER*/

#home-slideshow .slides {
    margin-bottom: 0px;
}

#home-slideshow .slides li img {
    width: 100%;
}

.home-slideshow-wrapper {
    width: 100%;
    margin-bottom: 60px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.home-slideshow {
    position: relative;
}

.caption-text {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff !important;
    text-transform: uppercase;
}

.caption01-text-1,
.caption01-text-2,
.caption01-text-3,
.caption01-text-4,
.caption01-text-5 {
    margin-top: 0px;
    font-size: 20px;
    font-weight: 600;
}

.caption01-text-1 span {
    position: relative;
}

.caption01-text-1 span:before,
.caption01-text-1 span:after {
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    content: '';
    border-top: 3px double #fff;
}

.caption01-text-1 span:before {
    left: -40%;
    margin-left: -20px;
}

.caption01-text-1 span:after {
    right: -40%;
    margin-right: -20px;
}

.caption02-text-1,
.caption02-text-2,
.caption02-text-3,
.caption02-text-4,
.caption02-text-5 {
    margin-top: 100px;
    font-size: 140px;
    font-family: Oswald;
}

.caption02-text-3 {
    margin-top: 115px;
}

.caption02-text-3 span {
    position: relative;
    -ms-transform: skew(-7deg, 0deg);
    /* IE 9 */
    -webkit-transform: skew(-7deg, 0deg);
    /* Safari */
    transform: skew(-7deg, 0deg);
    /* Standard syntax */
    transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    /* IE 9 */
    -webkit-transform: rotate(7deg);
    /* Safari and Chrome */
}

.caption02-text-3 span:before,
.caption02-text-3 span:after {
    position: absolute;
    width: 100%;
    height: 1px;
    content: '';
    left: 0;
    border-top: 3px double #fff;
}

.caption02-text-3 span:before {
    top: 0;
    margin-top: 30px;
}

.caption02-text-3 span:after {
    bottom: 0;
    margin-bottom: 30px;
}



#home-slideshow .slides {
    margin-bottom: 0
}

#home-slideshow .slides li img {
    width: 100%
}

.home-slideshow-wrapper {
    width: 100%;
    margin-bottom: 60px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden
}

.home-slideshow {
    position: relative
}

.caption-text {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff !important;
    text-transform: uppercase
}

.caption01-text-1,
.caption01-text-2,
.caption01-text-3,
.caption01-text-4,
.caption01-text-5 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600
}

.caption01-text-1 span {
    position: relative
}

.caption01-text-1 span:after,
.caption01-text-1 span:before {
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    content: '';
    border-top: 3px double #fff
}

.caption01-text-1 span:before {
    left: -40%;
    margin-left: -20px
}

.caption01-text-1 span:after {
    right: -40%;
    margin-right: -20px
}

.caption02-text-1,
.caption02-text-2,
.caption02-text-3,
.caption02-text-4,
.caption02-text-5 {
    margin-top: 100px;
    font-size: 140px;
    font-family: Oswald
}

.caption02-text-3 {
    margin-top: 115px
}

.caption02-text-3 span {
    position: relative;
    -ms-transform: skew(-7deg, 0deg);
    -webkit-transform: skew(-7deg, 0deg);
    transform: skew(-7deg, 0deg);
    transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    -webkit-transform: rotate(7deg)
}

.caption02-text-3 span:after,
.caption02-text-3 span:before {
    position: absolute;
    width: 100%;
    height: 1px;
    content: '';
    left: 0;
    border-top: 3px double #fff
}

.caption02-text-3 span:before {
    top: 0;
    margin-top: 30px
}

.caption02-text-3 span:after {
    bottom: 0;
    margin-bottom: 30px
}

.caption02-text-2 span {
    position: relative
}

.caption02-text-2 span:after,
.caption02-text-2 span:before {
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    content: '';
    border-top: 3px double #fff
}

.caption02-text-2 span:before {
    left: -110px
}

.caption02-text-2 span:after {
    right: -110px
}

.caption02-text-4 span {
    position: relative
}

.caption02-text-4 span:after,
.caption02-text-4 span:before {
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    content: '';
    border-top: 3px double #fff
}

.caption02-text-4 span:before {
    left: -110px
}

.caption02-text-4 span:after {
    right: -110px
}

.caption03-text-1,
.caption03-text-2,
.caption03-text-3,
.caption03-text-4,
.caption03-text-5 {
    text-align: center
}

.caption03-text-1 span,
.caption03-text-2 span,
.caption03-text-3 span,
.caption03-text-4 span,
.caption03-text-5 span {
    margin-top: 230px;
    padding: 20px 35px;
    width: 270px !important;
    left: 50% !important;
    background-color: transparent;
    border: 2px solid #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    zoom: 1
}

.home-slideshow .jemiz-control-nav {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -40px;
    z-index: 2
}

@media (max-width:1920px) {
    .caption-text {
        top: 30%
    }
}

@media (max-width:1600px) {
    .caption-text {
        top: 23%
    }
}

@media (max-width:1366px) {
    .caption-text {
        top: 17%
    }
}

@media (max-width:1199px) {
    .caption02-text-3 span:before {
        margin-top: 20px
    }
    .caption02-text-3 span:after {
        margin-bottom: 20px
    }
}

@media (max-width:1024px) {
    .caption-text {
        top: 15%
    }
    .caption02-text-1,
    .caption02-text-2,
    .caption02-text-3,
    .caption02-text-4,
    .caption02-text-5 {
        font-size: 110px
    }
    .caption03-text-1 span,
    .caption03-text-2 span,
    .caption03-text-3 span,
    .caption03-text-4 span,
    .caption03-text-5 span {
        margin-top: 200px
    }
}

@media (max-width:850px) {
    .caption-text {
        top: 10%
    }
    .caption02-text-1,
    .caption02-text-2,
    .caption02-text-3,
    .caption02-text-4,
    .caption02-text-5 {
        font-size: 90px
    }
    .caption02-text-1,
    .caption02-text-2,
    .caption02-text-3,
    .caption02-text-4,
    .caption02-text-5 {
        margin-top: 80px
    }
    .caption03-text-1 span,
    .caption03-text-2 span,
    .caption03-text-3 span,
    .caption03-text-4 span,
    .caption03-text-5 span {
        margin-top: 155px
    }
}

@media (max-width:736px) {
    .caption-text {
        top: 14%
    }
    .caption02-text-3 span:after,
    .caption02-text-3 span:before {
        display: none
    }
}

@media (max-width:667px) {
    .caption-text {
        top: 10%
    }
}

@media (max-width:630px) {
    .caption-text {
        top: 15%
    }
    .caption02-text-1,
    .caption02-text-2,
    .caption02-text-3,
    .caption02-text-4,
    .caption02-text-5 {
        margin-top: 50px;
        font-size: 55px
    }
    .caption03-text-1 span,
    .caption03-text-2 span,
    .caption03-text-3 span,
    .caption03-text-4 span,
    .caption03-text-5 span {
        margin-top: 105px
    }
}

@media (max-width:568px) {
    .caption-text {
        top: 13%
    }
}

@media (max-width:535px) {
    .caption01-text-1,
    .caption01-text-2,
    .caption01-text-3,
    .caption01-text-4,
    .caption01-text-5 {
        font-size: 12px
    }
    .caption02-text-1,
    .caption02-text-2,
    .caption02-text-3,
    .caption02-text-4,
    .caption02-text-5 {
        font-size: 30px;
        margin-top: 30px
    }
    .caption03-text-1 span,
    .caption03-text-2 span,
    .caption03-text-3 span,
    .caption03-text-4 span,
    .caption03-text-5 span {
        padding: 10px 15px;
        width: 200px !important;
        font-size: 12px !important
    }
    .caption03-text-1 span,
    .caption03-text-2 span,
    .caption03-text-3 span,
    .caption03-text-4 span,
    .caption03-text-5 span {
        margin-top: 70px
    }
}

@media (max-width:480px) {
    .home-slideshow-wrapper {
        margin-bottom: 30px
    }
}

@media (max-width:375px) {
    .caption-text {
        top: 12%
    }
}

@media (max-width:360px) {
    .caption03-text-1 span,
    .caption03-text-2 span,
    .caption03-text-3 span,
    .caption03-text-4 span,
    .caption03-text-5 span {
        padding: 5px 15px;
        width: auto !important;
        font-size: 10px !important;
        margin-top: 65px !important
    }
}


.home-slideshow .jemiz-control-nav {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -40px;
    z-index: 2;
}

.jemiz-control-paging {
    list-style: none;
    margin-right: 40px;
}




.jemiz-control-paging li a {
    color: transparent;
    width: 16px;
    height: 16px;
    margin: 10px 0;
    display: block;
    background-color: transparent;
    border-radius: 50%;
    border-color: #fff;
    border-style: solid;
    border-width: 1px;
}

.jemiz-control-paging li a:hover,
.jemiz-control-paging li a.jemiz-active:hover,
.jemiz-control-paging li a.jemiz-active {
    border-width: 3px;
    background-color: #eb8f8f;
    cursor: pointer;
}

.jemiz-control-paging li a.jemiz-active:hover {
    cursor: default;
}


.regionmodal{
    max-width: 800px;
    font-size: 13px;

}

.regionmodal a{
    font-weight: 700;
    color: #25a0d5;
    text-decoration: none;
}


.error_div_text {
    color: red;
    font-size: 11px;
    padding: 4px 0
}




.btn-33{
    width: 70px;
    height: 30px;
    background-color: #25a0d5;
    color: #ffffff;
    border-radius: 4px;
    transition: all 300ms;
    border: 1px solid #25a0d5;
}






.btn {
    border-width: 2px;
    border-style: solid;
    padding: 0px 15px;
    line-height: 32px;
    background: #fff;
    font-size: 12px !important;
    text-transform: uppercase;
    border-radius: 0;
    font-weight: 700;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.btn {
    border-radius: 10px !important;
    border-width: 1px !important;
}


.btn-3 {
    color: #3f3f3f;
    border-color: #3f3f3f;
    background-color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}


.btn-3 i {
    color: #3f3f3f;
}

.btn-3:hover {
    color: #ffffff;
    border-color: #3f3f3f;
    background-color: #3f3f3f;
}

.btn-3:hover i {
    color: #ffffff;
}




.regions_div{
    width:50%;
}

.regions_div .checkout-form-info-field{
    width:100%;
}


@media (max-width:736px) {
    .regions_div{
        width:100%;
    }

    .regions_div .checkout-form-info-field{
        width:100%;
    }
}





.partners-card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.partners-card-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0d0e0f;
    font-size: 16px;
}
.partners-card-item span {
      font-weight: 700;
      color: #25a0d5;
  }




.header-forgot-link2 {
    font-size: 14px;
    text-decoration: none;
    color: #0d0e0f;
    font-weight: 600;
    transition: all 300ms;
    text-align: right;
}

.header-forgot-link2:hover {
     color: #25a0d5;
 }




.bobustbl td{
    border: none;
    border-radius: 10px;
}



.bobustbl  th {
    background-color: #3f3f3f;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 13px 20px;
}

.bobustbl  td {
    min-height: 70px;
    height: 70px;
    vertical-align: middle;
    border: 1px solid #ebebeb;
    padding: 20px;
}

.bobustbl table tr:nth-child(odd) {
    background-color: #f6f6f6;
}

.col-md-2 {
    width: 16.66666667%
}



@media (min-width: 992px) {
    .col-md-2  {
        float: left;
    }
}


.header-forgot-link2{
    text-align: left;
}


.blogs-detail ul{
    padding: 30px;
}

.blogs-detail ol{
    padding: 30px;
}

.blogs-detail-title{
    margin-bottom: 30px;
}



.prods-details-content ul{
    padding: 30px;
}

.prods-details-content ol{
    padding: 30px;
}

