body {
  position: relative;
  background-color: var(--backgroundColor);
}
body.loading {
  pointer-events: none;
  overflow: hidden;
  user-select: none !important;
}
body.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1001;
}
body.loading::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px;
  border: 4px solid var(--mainColor);
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1002;
}
a {
  text-decoration: none !important;
  color: #000;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.full-description ul {
  list-style: disc;
  padding-left: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
[data-bs-toggle="tooltip"] {
  cursor: pointer;
}
.custom-tooltip.show {
  opacity: 1 !important;
}
.custom-tooltip .tooltip-inner {
  background-color: #fff;
  color: #333;
  opacity: 1;
}
.custom-tooltip .tooltip-arrow:before {
  border-top-color: #fff !important;
}
button.btn-close {
  box-shadow: none;
}
input.form-control:focus {
  box-shadow: none !important;
  border: 1px solid var(--mainColor);
}
.global-message {
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 20px;
  transform: translateY(100px);
  z-index: 9999;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--whiteColor);
  background-color: #333;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.15s ease;
  user-select: none !important;
  pointer-events: none;
}
.global-message.success {
  background-color: #4caf50;
}
.global-message.error {
  background-color: #f44336;
}
.global-message.show {
  transform: translateY(0);
}
.no-appearance {
  -moz-appearance: textfield;
  appearance: none;
}
.no-appearance::-webkit-outer-spin-button,
.no-appearance::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.change-input-type {
  cursor: pointer;
  user-select: none;
}
.primary-button {
  border-radius: 6px;
  border: 1px solid var(--mainColor);
  background-color: var(--mainColor);
  color: var(--whiteColor) !important;
}
.primary-button:hover,
.primary-button:disabled {
  background-color: var(--mainHoverColor);
}
.primary-outline-button {
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}
.primary-outline-button:hover,
.primary-outline-button:active {
  border-color: transparent;
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.secondary-button {
  border: none;
  padding: 10px 24px;
  border-radius: 12px;
  background-color: var(--secondaryColor);
  color: var(--secondaryTextColor);
  font-size: 16px;
}
.secondary-button:hover {
  opacity: 0.8;
}
.layout-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header.header .nav-gap {
  column-gap: 39px;
}
header.header nav:first-child {
  padding: 15px 0;
  background-color: var(--grayColor);
}
header.header .navbar-nav {
  column-gap: 40px;
}
header.header .navbar-nav .nav-item .nav-link {
  padding: 0;
  color: #4a4a4a;
  font-size: 13px;
  font-weight: 600;
  line-height: 14.3px;
}
header.header .catalog-btn,
header.header .profile-btn {
  border-radius: 50px;
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 16.5px;
  display: flex;
  align-items: center;
  column-gap: 8px;
}
header.header .main-search-container {
  flex: 1;
}
header.header .main-search-container > input {
  border-radius: 10px;
  background-color: var(--grayColor);
  box-shadow: none;
  border: none;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 14.3px;
}
header.header .main-search-container > span {
  background-color: var(--grayColor);
  padding: 0;
  border-radius: 10px;
  border: none;
}
header.header .main-search-container > span button {
  border-radius: 10px;
  padding: 10px 12.5px;
  display: flex;
  align-items: center;
  z-index: 1000;
}
header.header .main-search-container > span button img {
  width: 20px;
  height: 20px;
}
header.header .navigation {
  align-items: center;
  column-gap: 26px;
}
header.header .navigation .nav-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: var(--navBtnColor);
}
header.header .navigation .nav-btn > div {
  width: 25px;
  height: 25px;
}
header.header .navigation .nav-btn > div img {
  width: 100%;
  height: 100%;
}
header.header .navigation .nav-btn.has-notification > div {
  position: relative;
}
header.header .navigation .nav-btn.has-notification > div::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--mainColor);
  top: 0;
  right: 0;
}
header.header .profile-btn {
  border-radius: 7px;
}
header.header .mobile-menu-btn img {
  filter: invert(64%) sepia(27%) saturate(883%) hue-rotate(102deg) brightness(94%) contrast(104%);
}
header .navbar-btn {
  height: 30px;
}
header .navbar-btn span {
  color: #4a4a4a;
  font-size: 13px;
  font-weight: 400;
  line-height: 14.3px;
}
header .navbar-btn.location-btn {
  background-color: #fff;
  padding: 8px 11px;
  border-radius: 7px;
  margin-right: 10px;
  border: none;
  column-gap: 8px;
}
header .navbar-btn.dropdown-toggle {
  background-color: #fff;
  padding: 8px;
  border-radius: 7px;
  column-gap: 3px;
}
header .navbar-btn.dropdown-toggle:after {
  content: none;
}
header .dropdown-menu {
  min-width: auto;
  font-size: 14px;
  overflow: hidden;
}
header .dropdown-menu .dropdown-item {
  cursor: pointer;
}
header .dropdown-menu .dropdown-item.active,
header .dropdown-menu .dropdown-item:active {
  background-color: var(--mainColor);
}
header .main-logo {
  display: inline-block;
  width: 221px;
}
header .main-logo img {
  width: 100%;
  height: auto;
}
header:not(.header) {
  padding-top: 20px;
}
header:not(.header) .navbar-btn {
  height: 40px;
}
header:not(.header) .navbar-btn span {
  font-size: 18px;
}
header:not(.header) .navbar-btn.dropdown-toggle {
  padding: 10px 16px;
  background-color: var(--grayColor);
}
header:not(.header) .dropdown-menu {
  font-size: 16px;
}
main {
  flex: 1;
  padding: 50px 0;
}
main .swiper-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100%;
}
main .swiper-container * {
  user-select: none !important;
}
main .swiper-container .swiper {
  width: 100%;
  height: 100%;
  max-height: 100%;
}
main .swiper-container .swiper .swiper-wrapper .swiper-slide {
  max-height: 480px;
  position: relative;
}
main .swiper-container .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
main .swiper-container .swiper .swiper-button-next,
main .swiper-container .swiper .swiper-button-prev {
  --swiper-navigation-sides-offset: 24px;
  color: var(--mainColor);
  top: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
main .swiper-container .swiper .swiper-button-next:hover,
main .swiper-container .swiper .swiper-button-prev:hover {
  opacity: 1;
}
main .swiper-container .swiper:hover .swiper-button-next,
main .swiper-container .swiper:hover .swiper-button-prev {
  opacity: 1;
}
main .swiper-container .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
main .swiper-container .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--mainColor);
  opacity: 1;
}
main .swiper-container .swiper.category-swiper .swiper-button-next,
main .swiper-container .swiper.brand-swiper .swiper-button-next,
main .swiper-container .swiper.category-swiper .swiper-button-prev,
main .swiper-container .swiper.brand-swiper .swiper-button-prev {
  color: var(--blackColor);
}
main .top-banner {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
main .top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .breadcrumb .breadcrumb-item a:hover {
  color: var(--mainColor);
}
main .section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main .section-title:first-child {
  font-weight: 600;
}
main .frame-list {
  display: flex;
  flex-wrap: nowrap;
  --itemPerLine: 6;
  --gap: 0px;
  gap: var(--gap);
}
main .frame-list li {
  flex: 0 0 auto;
  width: calc((100% - calc((var(--itemPerLine) - 1) * 24px)) / var(--itemPerLine));
}
main .frame-list .frame-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--grayColor);
  border-radius: 20px;
  padding: 20px;
}
main .frame-list .frame-item:hover {
  background-color: var(--grayHoverColor);
}
main .frame-list .frame-item .frame-name {
  min-height: 48px;
  max-height: 48px;
  overflow: hidden;
  text-align: start;
  margin: 0;
}
main .frame-list .frame-item .thumbnail-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 85%;
  max-width: 85%;
  min-height: 150px;
  max-height: 150px;
}
main .frame-list .frame-item .thumbnail-container img {
  max-width: 100%;
  max-height: 100%;
}
main .product-view .quantity-selection {
  max-width: 150px;
}
main .product-view .quantity-selection input {
  box-shadow: none;
  transition: none;
  border: none;
}
main .product-view .quantity-selection input:focus {
  z-index: 1;
  border-color: var(--mainColor);
}
main .product-view .actions {
  display: flex;
  column-gap: 12px;
}
main .product-view .actions button:not(.btn) {
  border: none;
  padding: 0;
}
main .product-view .actions button:not(.btn).add-to-favorite {
  background-color: transparent;
  color: #4a4a4a;
}
main .product-view .actions button:not(.btn).add-to-favorite:hover,
main .product-view .actions button:not(.btn).add-to-favorite.active {
  color: var(--mainColor);
}
main .product-view .actions button:not(.btn).add-to-favorite:hover img,
main .product-view .actions button:not(.btn).add-to-favorite.active img {
  filter: invert(60%) sepia(85%) saturate(343%) hue-rotate(102deg) brightness(92%) contrast(92%);
}
main .product-view .actions button:not(.btn).add-to-cart {
  flex: 1;
  padding: 6px 0;
}
main:not(.index-page) .frame-list {
  flex-wrap: wrap;
  --gap: 24px;
}
main .product-list {
  row-gap: var(--bs-gutter-x);
}
main .product-list .product-item {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  background-color: var(--grayColor);
  padding: 12px;
  border-radius: 8px;
}
main .product-list .product-item .thumbnail-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
main .product-list .product-item .thumbnail-card.discount {
  position: relative;
}
main .product-list .product-item .thumbnail-card.discount::before {
  content: attr(data-discount);
  position: absolute;
  left: 0;
  top: 0;
  width: fit-content;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 10px;
}
main .product-list .product-item .thumbnail-card .thumbnail-container {
  width: 144px;
  height: 144px;
}
main .product-list .product-item .thumbnail-card .thumbnail-container img {
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
main .product-list .product-item .product-info p {
  margin: 0;
}
main .product-list .product-item .product-info p.title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  height: calc(2 * 1.5em);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
main .product-list .product-item .product-info p.category {
  font-size: 14px;
  color: #abadb3;
  font-weight: 400;
  line-height: 1.5em;
  height: calc(1 * 1.5em);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
main .product-list .product-item .product-info p.price span {
  display: block;
  font-size: 16px;
  color: #444;
  font-weight: 700;
}
main .product-list .product-item .product-info p.price span.old-price {
  font-size: 12px;
  line-height: 12px;
  min-height: 12px;
  font-weight: 600;
  color: #999;
  text-decoration: line-through;
  text-decoration-color: #999;
  text-decoration-thickness: 1px;
}
main.login-page {
  margin-top: 120px;
  background-color: var(--backgroundColor);
}
main.login-page .register-options {
  width: fit-content;
  min-width: 400px;
  margin: 0 auto;
}
main.login-page .register-options .title {
  margin: 0;
  color: #33424f;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
main.login-page .register-options .individual {
  gap: 10px;
  margin-top: 42px;
}
main.login-page .register-options .individual a {
  width: 264px;
  height: 296px;
  padding: 31px 37px;
  border-radius: 10px;
  background: #f2f5fe;
}
main.login-page .register-options .individual a img {
  max-height: 158px;
}
main.login-page .register-options .individual a h5 {
  color: #1c3755;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin: 0;
}
main.login-page .register-options .company {
  margin-top: 30px;
}
main.login-page .register-options .company h5 {
  color: #595959;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
main.login-page .register-options .company a {
  margin-top: 17px;
  padding: 19px 23px;
  border-radius: 8px;
  background: #f2f5fe;
}
main.login-page .register-options .company a .text {
  gap: 17px;
}
main.login-page .register-options .company a img {
  height: 28px;
}
main.login-page .register-options a {
  transition: all 0.3s;
  border: 1px solid transparent;
}
main.login-page .register-options a h5 {
  margin: 0;
  transition: color 0.3s;
}
main.login-page .register-options a:hover {
  border: 1px solid #ff6600;
}
main.login-page .register-options a:hover h5 {
  color: #ff6600 !important;
}
main.login-page .register-options a:hover .angle-right {
  filter: invert(44%) sepia(27%) saturate(6168%) hue-rotate(3deg) brightness(105%) contrast(104%);
}
main.login-page .register-options .form {
  margin-top: 35px;
}
main.login-page .register-options .form .form-label {
  color: #595959;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 15px;
}
main.login-page .register-options .form .group .box {
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: 1px solid #d0d0d0;
  overflow: hidden;
  transition: all 0.3s;
}
main.login-page .register-options .form .group .box:focus-within {
  border-color: var(--mainColor);
}
main.login-page .register-options .form .group .box span {
  display: flex;
  color: #1c3755;
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  border-right: 1px solid #d0d0d0;
  padding: 0 12px;
  background-color: var(--grayColor);
  height: 100%;
  align-items: center;
}
main.login-page .register-options .form .group .box input {
  border: none;
  flex: 1;
  padding-left: 20px;
  color: #1c3755;
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  -moz-appearance: textfield;
  appearance: textfield;
}
main.login-page .register-options .form .group .box input *::-webkit-inner-spin-button,
main.login-page .register-options .form .group .box input *::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
main.login-page .register-options .form .group .box input:focus-visible {
  outline: none;
}
main.login-page .register-options .form .group .box input::placeholder {
  color: #d0d0d0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
main.login-page .register-options .form .group .box input:disabled {
  background-color: transparent;
  color: #d0d0d0;
  font-weight: 400;
}
main.login-page .register-options .form .lds-spinner {
  color: #1c3755;
  display: inline-block;
  position: relative;
  width: 65px;
  height: 77px;
}
main.login-page .register-options .form .lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
main.login-page .register-options .form .lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 29px;
  left: 39px;
  width: 2px;
  height: 6px;
  border-radius: 1px;
  background: #1c3755;
}
main.login-page .register-options .form .lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
main.login-page .register-options .form .lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
main.login-page .register-options .form .lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
main.login-page .register-options .form .lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
main.login-page .register-options .form .lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
main.login-page .register-options .form .lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
main.login-page .register-options .form .lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
main.login-page .register-options .form .lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
main.login-page .register-options .form .lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
main.login-page .register-options .form .lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
main.login-page .register-options .form .lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
main.login-page .register-options .form .lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
main.login-page .register-options .form .company-name {
  margin-top: 15px;
  height: 45px;
  line-height: 45px;
  padding: 0 17px;
  border-radius: 5px;
  background: #d4dce4;
  color: #1c3755;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
main.login-page .register-options .form .email {
  margin-top: 30px;
}
main.login-page .register-options .form .btn {
  margin-top: 67px;
  width: 100%;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  border-color: transparent;
  padding: 0;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
main.login-page .register-options .complete-register {
  margin-top: 53px;
}
main.login-page .register-options .complete-register .group {
  margin-bottom: 15px;
}
main.login-page .register-options .complete-register .group .box {
  padding: 0 11px 0 17px;
  column-gap: 12px;
}
main.login-page .register-options .complete-register .group .box input {
  padding: 0;
}
main.login-page .register-options .complete-register .invalid-feedback {
  margin-top: 20px;
  gap: 22px;
}
main.login-page .register-options .complete-register .invalid-feedback .feedback {
  max-width: 204px;
  color: #a6a6a6;
  font-size: 11px;
  font-weight: 400;
  line-height: 140%;
}
main.login-page .register-options .complete-register .invalid-feedback .status {
  flex: 1;
}
main.login-page .register-options .complete-register .invalid-feedback .status .progress {
  height: 6px;
  border-radius: 3px;
}
main.login-page .register-options .complete-register .invalid-feedback .status .progress .progress-bar {
  background-color: #e8503a;
}
main.login-page .register-options .complete-register .invalid-feedback .status .hint {
  margin-top: 8px;
  color: #e8503a;
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
  line-height: 12px;
}
main.login-page .register-options .complete-register .invalid-feedback .status.weak .progress .progress-bar {
  background-color: #e8503a;
}
main.login-page .register-options .complete-register .invalid-feedback .status.weak .hint {
  color: #e8503a;
}
main.login-page .register-options .complete-register .invalid-feedback .status.medium .progress .progress-bar {
  background-color: #fe893a;
}
main.login-page .register-options .complete-register .invalid-feedback .status.medium .hint {
  color: #fe893a;
}
main.login-page .register-options .complete-register .invalid-feedback .status.strong .progress .progress-bar {
  background-color: #29be10;
}
main.login-page .register-options .complete-register .invalid-feedback .status.strong .hint {
  color: #29be10;
}
main.login-page .register-options.registration-proof .form {
  margin-top: 35px;
}
main.login-page .register-options.registration-proof .form .user-name input:disabled {
  color: #d0d0d0;
  font-weight: 400;
}
main.login-page .register-options.registration-proof .form .upload-file {
  margin-top: 20px;
}
main.login-page .register-options.registration-proof .form .upload-file .box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 156px;
}
main.login-page .register-options.registration-proof .form .upload-file .box .upload {
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #0275ff;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #0275ff;
}
main.login-page .register-options.registration-proof .form .upload-file .box .upload.selected-file {
  background: #dae3fe;
  border-color: #dae3fe;
  color: #1c3755;
}
main.login-page .register-options.registration-proof .form .upload-file .box .upload img {
  width: 15px;
}
main.login-page .register-options.registration-proof .form .upload-file .box .upload .text {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
main.login-page .register-options.registration-proof .form .btn {
  margin-top: 30px;
}
main.login-page .register-options.upload-id-card,
main.login-page .register-options.upload-passport {
  min-width: 630px;
}
main.login-page .register-options.upload-id-card .form,
main.login-page .register-options.upload-passport .form {
  margin-top: 40px;
}
main.login-page .register-options.upload-id-card .form .content,
main.login-page .register-options.upload-passport .form .content {
  width: 100%;
  gap: 30px;
}
main.login-page .register-options.upload-id-card .form .content .left,
main.login-page .register-options.upload-passport .form .content .left,
main.login-page .register-options.upload-id-card .form .content .right,
main.login-page .register-options.upload-passport .form .content .right {
  flex: 1;
}
main.login-page .register-options.upload-id-card .form .content .phone,
main.login-page .register-options.upload-passport .form .content .phone {
  color: #1c3755;
  font-size: 18px;
  font-weight: 500;
}
main.login-page .register-options.upload-id-card .form .content .phone .box input::placeholder,
main.login-page .register-options.upload-passport .form .content .phone .box input::placeholder {
  font-size: 18px;
}
main.login-page .register-options.upload-id-card .form .content .position .btn,
main.login-page .register-options.upload-passport .form .content .position .btn {
  margin-top: 0;
  height: 45px;
  line-height: 45px;
  background-color: transparent;
  border-radius: 5px;
  border: 1px solid #d0d0d0;
  color: #d0d0d0;
  text-align: left;
  padding: 0 24px;
}
main.login-page .register-options.upload-id-card .form .content .position .btn:after,
main.login-page .register-options.upload-passport .form .content .position .btn:after {
  content: none;
}
main.login-page .register-options.upload-id-card .form .content .position .btn .content,
main.login-page .register-options.upload-passport .form .content .position .btn .content {
  font-size: 18px;
  font-weight: 400;
  gap: 10px;
}
main.login-page .register-options.upload-id-card .form .content .position .btn .content img,
main.login-page .register-options.upload-passport .form .content .position .btn .content img {
  width: 20px;
  height: 20px;
}
main.login-page .register-options.upload-id-card .form .content .position .btn .angle,
main.login-page .register-options.upload-passport .form .content .position .btn .angle {
  width: 14px;
  height: 14px;
  transition: all 0.3s;
}
main.login-page .register-options.upload-id-card .form .content .position .btn.show .angle,
main.login-page .register-options.upload-passport .form .content .position .btn.show .angle {
  transform: rotate(180deg);
}
main.login-page .register-options.upload-id-card .form .content .position .btn.selected,
main.login-page .register-options.upload-passport .form .content .position .btn.selected {
  color: #1c3755;
}
main.login-page .register-options.upload-id-card .form .content .position .dropdown-menu,
main.login-page .register-options.upload-passport .form .content .position .dropdown-menu {
  top: 5px !important;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d0d0d0;
  background: #fff;
  box-shadow: 4px 4px 30px 0 rgba(0, 0, 0, 0.25);
  padding: 0;
  overflow: hidden;
}
main.login-page .register-options.upload-id-card .form .content .position .dropdown-menu a,
main.login-page .register-options.upload-passport .form .content .position .dropdown-menu a {
  padding: 13px 25px;
  gap: 10px;
  color: #1c3755;
  font-size: 18px;
  font-style: normal;
  line-height: 100%;
}
main.login-page .register-options.upload-id-card .form .content .position .dropdown-menu a img,
main.login-page .register-options.upload-passport .form .content .position .dropdown-menu a img {
  width: 20px;
  height: 20px;
}
main.login-page .register-options.upload-id-card .form .content .position .dropdown-menu a:hover,
main.login-page .register-options.upload-passport .form .content .position .dropdown-menu a:hover {
  border-color: #fdf2e8;
  background-color: #fdf2e8;
  color: #fe893a;
}
main.login-page .register-options.upload-id-card .form .content .position .dropdown-menu a:hover img,
main.login-page .register-options.upload-passport .form .content .position .dropdown-menu a:hover img {
  filter: invert(59%) sepia(48%) saturate(785%) hue-rotate(334deg) brightness(100%) contrast(103%);
}
main.login-page .register-options.upload-id-card .form .content .upload-file,
main.login-page .register-options.upload-passport .form .content .upload-file {
  margin-top: 30px;
}
main.login-page .register-options.upload-id-card .form .content .upload-file .box,
main.login-page .register-options.upload-passport .form .content .upload-file .box {
  padding: 6px;
  min-height: 178px;
  border-radius: 5px;
  border: 1px solid #d0d0d0;
}
main.login-page .register-options.upload-id-card .form .content .upload-file .box .background,
main.login-page .register-options.upload-passport .form .content .upload-file .box .background {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: #f1f7ff;
  gap: 27px;
}
main.login-page .register-options.upload-id-card .form .content .upload-file .box .background .description,
main.login-page .register-options.upload-passport .form .content .upload-file .box .background .description {
  margin-top: 30px;
  color: #595959;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
main.login-page .register-options.upload-id-card .form .content .upload-file .box .background .upload,
main.login-page .register-options.upload-passport .form .content .upload-file .box .background .upload {
  line-height: 100%;
  padding: 7px 8px;
  border-radius: 4px;
  border: 1px solid #0275ff;
  gap: 5px;
}
main.login-page .register-options.upload-id-card .form .content .upload-file .box .background .upload .icon,
main.login-page .register-options.upload-passport .form .content .upload-file .box .background .upload .icon {
  width: 12px;
  height: 12px;
}
main.login-page .register-options.upload-id-card .form .content .upload-file .box .background .upload .text,
main.login-page .register-options.upload-passport .form .content .upload-file .box .background .upload .text {
  color: #0275ff;
  font-size: 10px;
  font-weight: 400;
}
main.login-page .register-options.upload-id-card .form .content .upload-file .box img,
main.login-page .register-options.upload-passport .form .content .upload-file .box img {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
main.login-page .register-options.upload-id-card .form .btn[type="submit"],
main.login-page .register-options.upload-passport .form .btn[type="submit"] {
  margin-top: 30px;
}
main.login-page .register-options.upload-passport .form {
  margin-top: 36px;
}
main.login-page .register-options.upload-passport .form .type-of-truck > div {
  gap: 38px;
}
main.login-page .register-options.upload-passport .form .type-of-truck .description {
  margin-bottom: 27px;
  color: #595959;
  font-size: 18px;
  line-height: 120%;
}
main.login-page .register-options.upload-passport .form .type-of-truck .form-check {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
main.login-page .register-options.upload-passport .form .type-of-truck .form-check input {
  width: 20px;
  height: 20px;
  box-shadow: none;
}
main.login-page .register-options.upload-passport .form .content {
  margin-top: 40px;
}
main.login-page .register-options.upload-passport .form .content .group {
  margin: 0;
}
main.login-page .register-options.face-id {
  width: 400px;
}
main.login-page .register-options.face-id img {
  width: 141px;
  height: 141px;
}
main.login-page .register-options.face-id .title {
  margin-top: 60px;
  color: #33424f;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
}
main.login-page .register-options.face-id .description {
  max-width: 263px;
  margin-top: 12px;
  color: #4a4a4a;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 130%;
}
main.login-page .register-options.face-id .btn {
  margin-top: 60px;
  padding: 16px 0;
  width: 100%;
  border-radius: 5px;
  background: #fe893a;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  border: none;
}
main.login-page .register-options.add-employee .group {
  margin-bottom: 0;
}
main.login-page .register-options.add-employee .group.user-name {
  margin-bottom: 25px;
}
main.login-page .register-options.add-employee label {
  margin-bottom: 20px;
  color: #595959;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}
main.login-page .register-options.add-employee .btn {
  margin-top: 40px;
}
main.login-page .register-options.driver .agreement {
  margin-top: 120px;
  max-width: 400px;
  color: #595959;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
main.login-page .register-options.driver .agreement a {
  color: #0275ff;
  font-weight: 500;
  border: none;
}
main.login-page .register-options.driver .description {
  margin-top: 44px;
  max-width: 400px;
  color: #696969;
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  text-align: center;
}
main.login-page .register-options.driver .description .phone {
  font-weight: 600;
}
main.login-page .register-options.driver .resend {
  margin-top: 32px;
  text-align: center;
  color: #696969;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
}
main.login-page .register-options.driver .resend .time {
  color: var(--mainColor);
  font-weight: 600;
}
main.login-page .register-options.driver .resend .resend-sms {
  margin: 0;
  padding: 0;
  height: fit-content;
  background-color: transparent;
  color: var(--mainColor);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
}
main.login-page .register-options.driver .input-group {
  margin-top: 43px;
  gap: 24px;
}
main.login-page .register-options.driver .input-group input {
  max-width: 62px;
  border: none;
  border-bottom: 2px solid var(--mainColor);
  outline: none;
  padding: 0 0 20px 0;
  color: #1c3755;
  font-size: 55px;
  font-weight: 700;
  text-align: center;
  line-height: 101%;
}
main.login-page .register-options.driver .input-group input:disabled {
  background-color: transparent;
}
main.login-page .register-options.driver .btn {
  margin-top: 30px;
}
main.login-page .register-options.login label {
  color: #595959;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
main.login-page .register-options.login .btn {
  margin-top: 20px;
}
main.login-page .register-options.login .forget-password {
  line-height: 100%;
}
main.login-page .register-options.login .forget-password a {
  color: #2e83e9;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  border: none;
}
main.login-page .register-options.login .password {
  margin-bottom: 19px;
}
main.login-page .register-options.login .register-link {
  margin-top: 52px;
  text-align: center;
  color: #595959;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
main.login-page .register-options.login .register-link a {
  color: #2e83e9;
  font-weight: 700;
  line-height: 125%;
  border: none;
}
main.login-page .register-options.login .register-link a:hover {
  border: none;
}
main.login-page .verify-email .description {
  margin-top: 65px;
  max-width: 320px;
  color: #6f6f6f;
  font-size: 20px;
  line-height: 160%;
}
main.login-page .verify-email .email {
  margin-top: 40px;
  color: #1c3755;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
main.login-page .verify-email .buttons {
  margin-top: 130px;
  gap: 9px;
}
main.login-page .verify-email .buttons .btn {
  height: 51px;
  padding: 16px 28px;
  color: #33424f;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  border-radius: 5px;
  border: none;
}
main.login-page .verify-email .buttons .btn .time {
  color: var(--mainColor);
  display: none;
}
main.login-page .verify-email .buttons .btn.resend {
  min-width: 229px;
  background: #fe893a;
  color: #fff;
}
main.login-page .verify-email .buttons .btn.resend:disabled {
  background: rgba(254, 137, 58, 0.2);
  color: #33424f;
}
main.login-page .verify-email .buttons .btn.resend:disabled .time {
  display: inline-block;
}
main.login-page .verify-email .buttons .btn.change-email {
  background: #d8e1f4;
}
main.login-page .verify-email .buttons .btn:disabled {
  opacity: 1;
}
main.login-page .under-review {
  max-width: 500px;
  margin: 0 auto;
  padding: 50px 60px;
  text-align: center;
}
main.login-page .under-review img {
  width: 100%;
}
main.login-page .under-review .title {
  margin-top: 26px;
  color: var(--mainColor);
  font-size: 25px;
  font-weight: 600;
}
main.login-page .under-review .sub-title {
  margin-top: 18px;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
}
main.login-page .under-review .description {
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 300;
}
main.login-page .under-review .btn {
  margin-top: 43px;
  padding: 14px 54px;
  border-radius: 45px;
  border: 1px solid #fe893a;
  gap: 10px;
  color: #fe893a;
  font-size: 18px;
  font-weight: 500;
}
main.product-list-page .filter-part {
  row-gap: 16px;
}
main.product-list-page .filter {
  display: flex;
  row-gap: 10px;
  flex-direction: column;
}
main.product-list-page .filter .title {
  color: #9597a0;
  margin: 0;
}
main.product-list-page .filter .filter-property-list {
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-right: 6px !important;
}
main.product-list-page .filter .filter-property-list::-webkit-scrollbar {
  width: 5px;
  background-color: var(--grayColor);
}
main.product-list-page .filter .filter-property-list::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
  border-radius: 3px;
}
main.product-list-page .filter .filter-property-list .filter-option {
  font-size: 12px;
  display: inline-block;
  border-radius: 16px;
  padding: 6px 12px;
  color: var(--mainColor);
  background-color: #fff;
  box-shadow: #f0f0f0 0px 0px 0px 1px inset;
  cursor: pointer;
}
main.product-list-page .filter .filter-property-list .filter-option:hover {
  background-color: var(--grayHoverColor);
}
main.product-list-page .filter .filter-property-list .filter-option.active,
main.product-list-page .filter .filter-property-list .filter-option:active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
main.product-list-page .filter .filter-property-list .filter-option.active:hover,
main.product-list-page .filter .filter-property-list .filter-option:active:hover {
  background-color: var(--mainHoverColor);
}
main.product-list-page .filter .price-box .divider {
  font-size: 20px;
  font-weight: 600;
  color: #8e979f;
}
main.product-list-page .filter .price-box .input-group {
  position: relative;
}
main.product-list-page .filter .price-box .input-group::before {
  content: attr(data-abs-text);
  font-size: 12px;
  font-weight: 400;
  color: #9a9ca2;
  position: absolute;
  top: 4px;
  left: 12px;
  z-index: 6;
}
main.product-list-page .filter .price-box .input-group .form-control {
  padding: 20px 12px 4px;
  font-size: 18px;
}
main.product-list-page .filter .form-check {
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid transparent;
  user-select: none !important;
  cursor: pointer;
}
main.product-list-page .filter .form-check * {
  cursor: pointer;
}
main.product-list-page .filter .form-check .form-check-input {
  box-shadow: none;
  width: 18px;
  height: 18px;
}
main.product-list-page .filter .form-check .form-check-input:checked {
  background-color: var(--mainColor);
}
main.product-list-page .filter .form-check .form-check-input:focus,
main.product-list-page .filter .form-check .form-check-input:checked {
  border-color: var(--mainColor);
}
main.product-list-page .filter .form-check label {
  font-size: 14px;
  font-weight: 500;
}
main.product-list-page .product-list-not-found > * {
  display: flex;
  align-items: center;
  justify-content: center;
}
main.product-list-page .product-list-not-found > *.title * {
  font-weight: 700;
}
main.product-list-page .product-list-not-found > * img {
  max-height: 100%;
  max-width: 100%;
}
main.product-list-page .product-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.product-list-page .product-list-header .products-found {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
main.product-list-page .product-list-header .product-list-sort .dropdown-toggle {
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  min-width: 196px;
}
main.product-list-page .product-list-header .product-list-sort .dropdown-menu .active,
main.product-list-page .product-list-header .product-list-sort .dropdown-menu :active {
  background-color: var(--mainColor);
}
main.product-page .product-title {
  color: black;
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  word-wrap: break-word;
}
main.product-page .product-info .image-section {
  max-height: 800px;
  height: 800px;
  display: flex;
  flex-direction: row;
  column-gap: 24px;
}
main.product-page .product-info .image-section .product-swiper-container * {
  user-select: none !important;
}
main.product-page .product-info .image-section .product-swiper-container .swiper {
  width: 100%;
  height: 100%;
  max-height: 100%;
}
main.product-page .product-info .image-section .product-swiper-container .swiper .swiper-button-next,
main.product-page .product-info .image-section .product-swiper-container .swiper .swiper-button-prev {
  color: var(--mainColor);
  top: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
main.product-page .product-info .image-section .product-swiper-container .swiper .swiper-button-next:hover,
main.product-page .product-info .image-section .product-swiper-container .swiper .swiper-button-prev:hover {
  opacity: 1;
}
main.product-page .product-info .image-section .product-swiper-container .swiper:hover .swiper-button-next,
main.product-page .product-info .image-section .product-swiper-container .swiper:hover .swiper-button-prev {
  opacity: 1;
}
main.product-page .product-info .image-section .product-swiper-container .swiper:hover .swiper-button-next.swiper-button-disabled,
main.product-page .product-info .image-section .product-swiper-container .swiper:hover .swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
}
main.product-page .product-info .image-section .product-image-scroll-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow-y: auto;
  row-gap: 16px;
  max-width: 70px;
  padding-right: 10px;
}
main.product-page .product-info .image-section .product-image-scroll-container::-webkit-scrollbar {
  width: 2px;
  background-color: var(--grayColor);
}
main.product-page .product-info .image-section .product-image-scroll-container::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
  border-radius: 3px;
}
main.product-page .product-info .image-section .product-image-scroll-container .product-image {
  height: fit-content;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cad3df;
  cursor: pointer;
}
main.product-page .product-info .image-section .product-image-scroll-container .product-image.active,
main.product-page .product-info .image-section .product-image-scroll-container .product-image:hover {
  border-color: var(--mainColor);
}
main.product-page .product-info .image-section .product-image-scroll-container .product-image img {
  width: auto;
  max-width: 100%;
}
main.product-page .product-info .image-section .product-primary-image {
  width: 100%;
  height: fit-content;
  flex: 1;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}
main.product-page .product-info .image-section .product-primary-image img {
  width: auto;
  max-width: 100%;
}
main.product-page .product-info .price-section {
  background-color: var(--grayColor);
  padding: 20px;
  border-radius: 10px;
}
main.product-page .product-info .price-section .price {
  color: black;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
}
main.product-page .product-info .price-section .price .old-price {
  font-size: 24px;
  font-weight: 600;
  color: #999;
  text-decoration: line-through;
  text-decoration-color: #999;
  text-decoration-thickness: 2px;
}
main.product-page .product-info .price-section .actions {
  display: flex;
  column-gap: 16px;
  align-items: center;
  justify-content: space-between;
}
main.product-page .product-info .price-section .actions button:not(.btn) {
  border: none;
}
main.product-page .product-info .price-section .actions button.add-to-cart {
  flex: 1;
  padding: 10px 0;
  font-size: 14px;
  border-radius: 5px;
}
main.product-page .product-info .price-section .actions button.add-to-favorite {
  width: 25px;
  height: 25px;
}
main.product-page .product-info .price-section .actions .to-cart-link {
  display: flex;
  align-items: center;
  column-gap: 6px;
  padding: 6px 40px;
}
main.product-page .product-info .price-section .shipping-info * {
  margin-bottom: 0;
}
main.product-page .product-info .price-section .shipping-info span {
  font-size: 12px;
}
main.product-page .product-info .price-section .shipping-info i {
  font-size: 14px;
}
main.product-page .product-info .product-select-item .select-sku-item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
main.product-page .product-info .product-select-item .select-sku-item a {
  padding: 4px 16px;
  border: 1px solid #cad3df;
  border-radius: 32px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
main.product-page .product-info .product-select-item .select-sku-item a img {
  max-width: 100%;
  max-height: 100%;
}
main.product-page .product-info .product-select-item .select-sku-item a:not(.out-of-stock).active,
main.product-page .product-info .product-select-item .select-sku-item a:not(.out-of-stock):hover {
  border-color: var(--mainColor);
  color: var(--mainColor);
}
main.product-page .product-info .product-select-item .select-sku-item a.out-of-stock {
  position: relative;
  overflow: hidden;
  cursor: no-drop;
}
main.product-page .product-info .product-select-item .select-sku-item a.out-of-stock:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: rotate(-45deg);
  height: 0.1px;
  background-color: #1b1b1b;
}
main.product-page .product-info .product-select-item .select-sku-item.color-option a {
  overflow: hidden;
  padding: 0;
  width: 60px;
  height: 60px;
  border-radius: 12px;
}
main.product-page .nav-tabs {
  border: none;
}
main.product-page .nav-tabs .nav-item {
  flex: 1;
  text-align: center;
}
main.product-page .nav-tabs .nav-item .nav-link {
  border: none;
  border-bottom: 3px solid var(--secondaryColor);
  color: #9597a0;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}
main.product-page .nav-tabs .nav-item .nav-link.active {
  border-color: var(--mainColor);
  color: #000;
}
main.product-page .tab-content .specifications .specification-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
}
main.product-page .tab-content .specifications .specification-list .specification {
  flex: 1;
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  border-radius: 4px;
  align-items: center;
  column-gap: 20px;
}
main.product-page .tab-content .specifications .specification-list .specification span:first-child {
  text-align: left;
}
main.product-page .tab-content .specifications .specification-list .specification span:last-child {
  text-align: right;
}
main.product-page .tab-content .specifications .specification-list .specification:nth-child(4n),
main.product-page .tab-content .specifications .specification-list .specification:nth-child(4n + 1) {
  background-color: var(--grayColor);
}
main.product-page .tab-content .specifications .specification-list .specification:nth-child(4n + 2),
main.product-page .tab-content .specifications .specification-list .specification:nth-child(4n-1) {
  background-color: transparent;
}
main.product-page .tab-content .full-description {
  height: fit-content;
}
main.product-page .tab-content .full-description iframe {
  min-height: 900px;
  max-height: 900px;
}
main.product-page .tab-content .full-description iframe::-webkit-scrollbar {
  width: 5px;
  background-color: var(--grayColor);
}
main.product-page .tab-content .full-description iframe::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
  border-radius: 3px;
}
main.product-page .tab-content .full-description img {
  width: 100%;
  max-width: 100%;
}
main.profile-page {
  background-color: var(--secondaryBackgroundColor);
}
main.profile-page + footer {
  background-color: var(--backgroundColor);
}
main.profile-page .profile-card {
  background-color: var(--backgroundColor);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
}
main.profile-page .profile-card:last-child {
  margin-bottom: 0;
}
main.profile-page .profile-navigation ul {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
main.profile-page .profile-navigation ul li a {
  display: flex;
  align-items: center;
  column-gap: 12px;
  border-radius: 16px;
  padding: 12px 20px;
  width: 100%;
  height: 100%;
}
main.profile-page .profile-navigation ul li a span,
main.profile-page .profile-navigation ul li a img {
  color: #595959;
}
main.profile-page .profile-navigation ul li a img {
  max-width: 25px;
}
main.profile-page .profile-navigation ul li:last-child {
  position: relative;
}
main.profile-page .profile-navigation ul li:last-child a span {
  color: #e75b62;
}
main.profile-page .profile-navigation ul li:last-child::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #f1f2f8;
  left: 0;
  right: 0;
  top: -6px;
}
main.profile-page .profile-navigation ul li.active a,
main.profile-page .profile-navigation ul li:hover a {
  background-color: #f1f2f8;
}
main.profile-page .cart-page table input[type="checkbox"] {
  box-shadow: none;
}
main.profile-page .cart-page table input[type="checkbox"]:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
main.profile-page .cart-page table tr td.image-box a .img-container {
  max-width: 100px;
}
main.profile-page .cart-page table tr td.image-box a .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.profile-page .cart-page table tr td:nth-child(2) {
  max-width: 500px;
}
main.profile-page .order-page .image-scroll-container {
  display: flex;
  width: 100%;
  overflow-x: auto;
  column-gap: 15px;
}
main.profile-page .order-page .image-scroll-container::-webkit-scrollbar,
main.profile-page .order-page .image-scroll-container::-webkit-scrollbar-thumb {
  display: none;
}
main.check-out-page .card {
  margin-bottom: 24px;
  overflow: hidden;
}
main.check-out-page .paycard {
  background-image: url("/images/card-bg.png");
}
main.check-out-page .form-check-label {
  cursor: pointer;
  user-select: none;
}
main.check-out-page .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  box-shadow: none;
}
main.check-out-page input::placeholder {
  color: #aea9b4;
}
main .pagination .page-link {
  box-shadow: none;
}
main .pagination .active > .page-link {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
main .pagination li:not(.active) > .page-link {
  color: var(--mainColor);
}
footer {
  background-color: var(--secondaryBackgroundColor);
}
footer .footer-form {
  margin-bottom: 16px;
}
footer .footer-form input:focus {
  box-shadow: none;
  border-color: var(--mainColor);
}
footer .footer-form input,
footer .footer-form label {
  padding: 10px 12px !important;
  height: 40px !important;
  min-height: 20px !important;
}
footer .footer-form button {
  height: 40px;
  width: 100%;
}
footer .footer-title {
  font-weight: 600;
  color: #212427;
  font-size: 18px;
}
footer .footer-sub-title {
  font-size: 12px;
  line-height: 16px;
  color: #606971;
}
footer ul {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
footer ul li {
  list-style: none;
}
footer ul.social-links {
  flex-direction: row;
  column-gap: 16px;
}
footer ul:not(.social-links) a {
  font-size: 14px;
  color: #606971;
}
footer ul:not(.social-links) a:hover {
  color: var(--mainColor);
}
.modal.message-modal .modal-dialog {
  max-width: 532px;
}
.modal.message-modal .modal-dialog .modal-content {
  padding: 81px 100px 117px 100px;
}
.modal.message-modal .modal-dialog .modal-content .modal-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal.message-modal .modal-dialog .modal-content .modal-body img {
  width: 174px;
}
.modal.message-modal .modal-dialog .modal-content .modal-body .title {
  margin-top: 44px;
  max-width: 331px;
  color: #121212;
  font-size: 30px;
  text-align: center;
}
.modal.message-modal .modal-dialog .modal-content .modal-body .description {
  margin-top: 26px;
  color: #595959;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .layout-wrapper {
    padding-bottom: 70px;
  }
  header:not(.header) .navbar-btn span {
    font-size: 16px;
  }
  header:not(.header) .navbar-btn.dropdown-toggle {
    padding: 8px 14px;
    background-color: var(--grayColor);
  }
  main {
    padding: 20px 0;
  }
  main.product-page .product-info {
    row-gap: 30px;
  }
  main.product-page .product-info .image-section {
    max-height: 100%;
    height: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    column-gap: 0;
    flex-wrap: wrap;
  }
  main.product-page .product-info .image-section .product-swiper-container .swiper .swiper-button-next,
  main.product-page .product-info .image-section .product-swiper-container .swiper .swiper-button-prev {
    opacity: 1;
  }
  main.product-page .product-info .image-section .product-image-scroll-container {
    flex-direction: row;
    max-width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    row-gap: 0;
    column-gap: 16px;
    max-height: 70px;
    height: 70px;
    padding: 0;
  }
  main.product-page .product-info .image-section .product-image-scroll-container .product-image {
    width: fit-content;
    min-width: fit-content;
    height: 100%;
    max-height: 100%;
  }
  main.product-page .product-info .image-section .product-image-scroll-container .product-image img {
    height: 100%;
    max-height: 100%;
  }
  main.product-page .product-info .image-section .product-image-scroll-container::-webkit-scrollbar {
    display: none;
  }
  main.product-page .product-info .image-section .product-image-scroll-container::-webkit-scrollbar-thumb {
    display: none;
  }
  main.product-page .product-info .image-section .product-primary-image img {
    height: auto;
    width: 100%;
  }
  main.product-page .nav-tabs .nav-item .nav-link {
    padding: 8px;
    font-size: 16px;
    border-bottom: 2px solid var(--secondaryColor);
  }
  main.product-page .nav-tabs .nav-item .nav-link.active {
    border-color: var(--mainColor);
    color: #000;
  }
  main.product-page .tab-content .specifications .specification-list {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 50px;
  }
  main.product-page .tab-content .specifications .specification-list .specification:nth-child(odd) {
    background-color: var(--grayColor);
  }
  main.product-page .tab-content .specifications .specification-list .specification:nth-child(even) {
    background-color: transparent;
  }
  main.login-page {
    margin-top: 70px;
  }
  main.login-page .register-options {
    width: 100%;
    min-width: auto;
  }
  main:not(.index-page) .frame-list li {
    --itemPerLine: 2;
  }
  main.profile-page:not(.menu-page) {
    background-color: transparent;
  }
  main.profile-page:not(.menu-page) .profile-card {
    padding-top: 0;
    padding-bottom: 0;
  }
  main.profile-page.menu-page .profile-card {
    border-radius: 8px;
  }
  main.profile-page.menu-page .profile-card a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--mainColor);
  }
  main.profile-page.menu-page .profile-card a span {
    color: #212427;
  }
  main.check-out-page .card {
    margin-bottom: 20px;
  }
  footer {
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 9.5px 6px 20px 6px;
    border-top: 0.5px solid #a8a8a8;
  }
  footer .mobile-tab-bar {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .mobile-tab-bar li {
    width: 20%;
  }
  footer .mobile-tab-bar li a {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    align-items: center;
    position: relative;
    color: #a8a8a8;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
  footer .mobile-tab-bar li a.active {
    color: var(--mainColor);
  }
  body.pwa-view .layout-wrapper {
    padding-bottom: 90px;
  }
  body.pwa-view footer {
    padding: 9.5px 6px 40px 6px;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
