* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  overflow-x: hidden;
  color: var(--clr-black);
  font-family: var(--font-roboto-condensed);
  background-color: var(--clr-white);
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

b,
strong {
  font-weight: bold;
  font-size: inherit;
  color: inherit;
}

span {
  font-size: inherit;
  color: inherit;
}

a {
  color: var(--clr-black);
  text-decoration: none;
}

a:hover {
  color: var(--clr-black);
  text-decoration: none;
}

td {
  padding: 10px;
}

ul,
ol {
  padding-left: 25px;
  list-style: none;
}

ul.list {
  list-style: circle;
}

ul li {
  position: relative;
}

ul.primary li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 8px;
  left: -15px;
  background-color: var(--clr-primary);
}

ul.secondary {
  padding: 0;
}

ul.secondary li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 8px;
  left: -15px;
  display: none;
  background-color: var(--clr-secondary);
}

ol {
  counter-reset: li;
}

ol.primary li::before {
  color: var(--clr-primary);
}

ol li {
  position: relative;
  counter-increment: li;
}

ol li::before {
  content: counter(li) ".";
}

li,
p {
  line-height: 24px;
}

h1 {
  display: block;
  all: unset;
}

h1::after {
  display: none;
}

.btn-primary {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn-primary:hover {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}

h3 {
  font-weight: bold;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}

/***** Header *****/
.header {
  position: relative;
  -webkit-box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.2);
}

.header__top {
  background-color: var(--clr-black-600);
  padding-left: 310px;
  padding-right: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 1600px) {
  .header__top {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1190px) {
  .header__top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 580px) {
  .header__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 580px) {
  .header__phone {
    padding-top: 15px;
  }
}

.header__mail {
  padding: 15px 0 15px 35px;
  margin: 0 0 0 35px;
}

@media (max-width: 1190px) {
  .header__mail {
    padding-right: 0;
    margin-right: 0;
  }
}

@media (max-width: 580px) {
  .header__mail {
    padding-left: 0;
    margin-left: 0;
  }
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: var(--clr-white);
}

.header.fixed .header__top {
  display: none;
}

.header__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 310px;
  background-color: var(--clr-primary);
}

@media (max-width: 1750px) {
  .header__bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1190px) {
  .header__bottom {
    padding: 20px;
  }
}

.header__bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 580px) {
  .header__logo img {
    width: 190px;
  }
}

.header__cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 45px;
  margin-left: 45px;
  border-left: 2px solid var(--clr-white);
}

@media (max-width: 1180px) {
  .header__cart {
    margin-left: 0;
    padding-left: 0;
    border-left: unset;
  }
}

.header__cart--basket {
  position: relative;
  cursor: pointer;
}

.header__cart--basket svg {
  display: block;
}

.header__cart--count {
  font-size: 13px;
  color: var(--clr-black);
  background-color: var(--clr-white);
  width: 19px;
  height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 15px;
}

.header__login--button {
  margin-left: 30px;
  width: 155px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-color: var(--clr-white);
}

.header__login--button:hover {
  color: var(--clr-black);
}

@media (max-width: 580px) {
  .header__login--button {
    margin-left: 42px;
    background-image: url(/CMS/site/images/eshop5/login-icon.svg);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    font-size: 0;
    min-width: 50px;
    max-width: 50px;
    height: 38px;
  }
}

@media (max-width: 1180px) {
  .header__menu {
    margin-bottom: 0;
    position: absolute;
    top: 6px;
    right: 20px;
  }
}

.header__menu .main-menu ul {
  max-width: initial;
}

.header__menu .main-menu ul::after {
  display: none;
}

.header__menu .main-menu ul li {
  float: none;
}

.header__menu .main-menu ul li.hasChildren::before {
  content: "";
  border: 4px solid transparent;
  border-top-color: var(--clr-secondary);
  z-index: 2;
  height: 0;
  width: 0;
  position: absolute;
  right: 0px;
  top: 8px;
  display: none;
}

@media (max-width: 1023px) {
  .header__menu .main-menu ul li.hasChildren::before {
    display: none;
  }
}

.header__menu .main-menu ul li ul {
  background-color: unset;
  border-radius: 0;
  border: unset;
  left: 0;
  visibility: hidden;
}

.header__menu .main-menu ul li ul li {
  padding: 9px 20px 9px 20px;
  background-color: #fff;
}

.header__menu .main-menu ul li ul li:hover {
  background-color: #fff;
}

.header__menu .main-menu ul li ul li.hasChildren::before {
  right: 20px;
  top: 15px;
}

.header__menu .main-menu ul li ul li.active a {
  color: var(--clr-secondary);
}

.header__menu .main-menu ul li ul li::before {
  display: none;
}

.header__menu .main-menu ul li ul li a {
  font-size: 16px;
  padding: 0;
  white-space: nowrap;
  width: 100%;
  color: var(--clr-black);
}

.header__menu .main-menu ul li ul li a:hover {
  color: var(--clr-primary);
}

.header__menu .main-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  max-width: 100%;
}

.header__menu .main-menu > ul > li {
  margin-right: 45px;
}

.header__menu .main-menu > ul > li.hasChildren {
  padding-right: 0;
}

.header__menu .main-menu > ul > li.hasChildren i {
  display: none;
}

.header__menu .main-menu > ul > li.menu-close-icon {
  display: none;
}

.header__menu .main-menu > ul > li.active, .header__menu .main-menu > ul > li:hover {
  background-color: unset;
}

.header__menu .main-menu > ul > li.active > a, .header__menu .main-menu > ul > li:hover > a {
  font-weight: 700;
  text-decoration: underline;
}

.header__menu .main-menu > ul > li.active > a::before, .header__menu .main-menu > ul > li:hover > a::before {
  opacity: 1;
}

.header__menu .main-menu > ul > li:nth-last-child(2) {
  margin-right: 0;
}

.header__menu .main-menu > ul > li:hover ul {
  left: 0;
  top: 68px;
  visibility: visible;
}

.header__menu .main-menu > ul > li::before {
  display: none;
}

.header__menu .main-menu > ul > li > a {
  margin: 0;
  font-size: 20px;
  color: var(--clr-white);
  position: relative;
  overflow: visible;
  font-weight: 700;
}

.header__menu .main-menu > ul > li > a::after, .header__menu .main-menu > ul > li > a::before {
  display: none;
}

.header__menu .main-menu > ul > li > a::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  opacity: 0;
  background: var(--clr-primary);
  left: -12px;
  top: 7px;
}

/***** Footer *****/
.footer {
  position: relative;
  -webkit-box-shadow: 0 -4px 5px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 -4px 5px -4px rgba(0, 0, 0, 0.2);
}

.footer__wrapper {
  padding: 40px 20px;
  border-top: 1px solid var(--clr-primary);
  background-color: var(--clr-primary);
}

.footer_address {
  color: var(--clr-white);
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
  }
}

.footer__column {
  padding: 0 20px;
}

@media (max-width: 1080px) {
  .footer__column {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 500px) {
  .footer__column {
    padding: 0;
  }
}

.footer__column.column-1, .footer__column.column-2 {
  max-width: 255px;
  width: 100%;
}

@media (max-width: 1080px) {
  .footer__column.column-1, .footer__column.column-2 {
    max-width: 100%;
  }
}

@media (min-width: 1081px) {
  .footer__column.column-3 {
    text-align: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

@media (max-width: 1080px) {
  .footer__logo {
    text-align: center;
  }
}

.footer__menu .main-menu ul {
  max-width: 100%;
  margin: 0;
}

.footer__menu .main-menu ul li {
  float: none;
  padding: 5px 0;
}

.footer__menu .main-menu ul li::before {
  display: none;
}

.footer__menu .main-menu ul li.active, .footer__menu .main-menu ul li:hover {
  background-color: unset;
}

.footer__menu .main-menu ul li.active > a, .footer__menu .main-menu ul li:hover > a {
  color: var(--clr-black);
  font-weight: 700;
}

.footer__menu .main-menu ul li.active > a::before, .footer__menu .main-menu ul li:hover > a::before {
  opacity: 1;
}

.footer__menu .main-menu ul li.active a, .footer__menu .main-menu ul li:hover a {
  text-decoration: underline;
  color: var(--clr-white);
}

.footer__menu .main-menu ul li.hasChildren {
  padding: 0;
}

.footer__menu .main-menu ul li.hasChildren:before {
  display: none;
}

.footer__menu .main-menu ul li.hasChildren ul {
  display: none;
}

.footer__menu .main-menu ul li.menu-close-icon {
  display: none;
}

.footer__menu .main-menu ul li a {
  margin: 0;
  width: initial;
  display: inline-block;
  overflow: visible;
  font-weight: 700;
  color: var(--clr-white);
  font-size: 20px;
}

.footer__menu .main-menu ul li a::after, .footer__menu .main-menu ul li a::before {
  display: none;
}

.footer__menu .main-menu ul li a::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  opacity: 0;
  background: var(--clr-primary);
  left: -12px;
  top: 7px;
}

.footer__menu .menu-close-icon {
  display: none;
}

.footer-accordion-title {
  position: relative;
}

@media (min-width: 1081px) {
  .footer-accordion-title {
    display: none;
  }
}

.footer-accordion-section {
  margin-bottom: 15px;
}

.footer-accordion-section:last-child {
  margin-bottom: 0;
}

.footer-accordion-section-content {
  display: block;
  padding: 10px 0 15px;
}

@media (max-width: 1080px) {
  .footer-accordion-section-content {
    display: none;
  }
}

.footer-accordion-section-title {
  font-size: 14px;
  color: var(--clr-secondary);
  font-weight: bold;
  display: block;
  text-decoration: none;
  pointer-events: none;
  position: relative;
}

.footer-accordion-section-title:hover {
  text-decoration: none;
}

@media (max-width: 1080px) {
  .footer-accordion-section-title {
    border-bottom: 2px solid var(--clr-secondary);
    padding-left: 0;
    padding-right: 40px;
    pointer-events: all;
    padding-bottom: 8px;
  }
}

.footer-accordion-section-title .arrows {
  display: block;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  width: 20px;
  height: 20px;
  display: none;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .footer-accordion-section-title .arrows {
    display: block;
  }
}

.footer-accordion-section-title .arrow-props {
  position: absolute;
  display: block;
  width: 20px;
  height: 12px;
  background-color: var(--clr-secondary);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.footer-accordion-section-title .arrow-down {
  -webkit-clip-path: polygon(50% 100%, 0% 0, 100% 0);
  clip-path: polygon(50% 100%, 0% 0, 100% 0);
}

.footer-accordion-section-title .arrow-up {
  -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  display: none;
}

.footer-accordion-section-title.active .arrow-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-accordion-section-title.active .arrow-down {
  display: none;
}

.footer__down {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  place-items: center;
  text-align: center;
  line-height: 13px;
  padding: 10px 20px;
  background-color: #d5d5d5;
  color: var(--clr-primary);
}

@media (max-width: 1200px) {
  .footer__down {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 5px;
  }
}

.footer__down > div span,
.footer__down > div a {
  font-size: 12px;
  color: var(--clr-primary);
}

.footer__down > div a {
  font-weight: bold;
  color: var(--clr-primary);
}

/***** Mobile Menu *****/
@media (max-width: 1180px) {
  /***** Mobile Body *****/
  body {
    position: relative;
    z-index: 0;
  }
  body.mobile-clicked {
    overflow: hidden;
  }
  body.mobile-clicked::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 15;
  }
  html.mobile-clicked {
    overflow: hidden;
  }
  /***** Mobile *****/
  #ctl00_pnlMenu .main-menu > ul > li > ul > li.hasChildren > a {
    padding: 15px 51px 15px 20px !important;
  }
  #ctl00_pnlMenu .main-menu > ul {
    position: fixed;
    top: 0;
    background-color: #fff;
    padding: 75px 15px;
    height: 100vh;
    overflow: auto;
    width: 330px;
    right: -345px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: -4px 0 10px -2px rgba(0, 0, 0, 0.2);
            box-shadow: -4px 0 10px -2px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    z-index: 999;
    margin: 0;
  }
  #ctl00_pnlMenu .main-menu > ul.open {
    right: 0;
  }
  #ctl00_pnlMenu .main-menu > ul > li a {
    font-size: 22px;
  }
  /***** Mobile Menu - Sub Menu *****/
  #ctl00_pnlMenu .main-menu > ul > li,
  #ctl00_pnlMenu .main-menu > ul li {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    position: relative;
    max-height: unset;
  }
  #ctl00_pnlMenu .main-menu ul li a {
    padding: 15px 20px;
    background-color: #fff;
    border-bottom: 1px solid var(--clr-black) !important;
    margin-bottom: 10px;
    color: var(--clr-black);
    text-align: center !important;
    font-size: 18px;
    border-radius: 0 !important;
  }
  #ctl00_pnlMenu .main-menu ul li a::before, #ctl00_pnlMenu .main-menu ul li a::after {
    display: none;
  }
  #ctl00_pnlMenu .main-menu ul > li.active > a {
    color: var(--clr-gold);
  }
  #ctl00_pnlMenu .main-menu ul li ul li ul li a {
    white-space: pre-wrap;
  }
  #ctl00_pnlMenu .main-menu > ul > li.active > a,
  #ctl00_pnlMenu .main-menu > ul > li > ul > li.active > a,
  #ctl00_pnlMenu .main-menu > ul > li > ul > li > ul > li.active a {
    border-bottom: 2px solid var(--clr-primary-light);
  }
  #ctl00_pnlMenu .main-menu > ul > li.hasChildren i {
    position: absolute;
    right: 0;
    top: 4px;
    height: 45px;
    width: 50px;
    z-index: 999;
    border-left: 1px solid #ccc;
    display: block;
  }
  #ctl00_pnlMenu .main-menu > ul > li.hasChildren > i::before {
    display: none;
  }
  #ctl00_pnlMenu .main-menu > ul > li:hover ul {
    position: relative;
    top: unset;
    left: unset;
  }
  #ctl00_pnlMenu .main-menu > ul > li ul {
    position: relative;
    top: unset;
    left: unset;
    list-style: none;
    border-radius: unset;
    min-width: unset;
    border: unset;
    display: none;
    margin: 0 0 0 15px;
    width: unset;
    visibility: visible !important;
  }
  /***** Mobile - Close Button *****/
  .menu-close-icon {
    position: absolute !important;
    right: 24px;
    top: 20px;
    width: 30px !important;
    height: 30px;
    cursor: pointer;
    display: none;
  }
  .menu-close-icon.toggle {
    display: block !important;
  }
  .menu-close-icon::after,
  .menu-close-icon::before {
    position: absolute !important;
    content: "";
    width: 100% !important;
    height: 3px !important;
    background-color: var(--clr-primary) !important;
    left: unset !important;
    top: 50% !important;
    border-radius: unset !important;
    display: block !important;
  }
  .menu-close-icon::before {
    -webkit-transform: translateY(-50%) rotate(-45deg) !important;
            transform: translateY(-50%) rotate(-45deg) !important;
  }
  .menu-close-icon::after {
    -webkit-transform: translateY(-50%) rotate(45deg) !important;
            transform: translateY(-50%) rotate(45deg) !important;
  }
  /***** Mobile - Menu Button *****/
  #ctl00_pnlMenu .main-menu .menu-button {
    display: block;
    width: 35px;
    height: 35px;
    position: relative;
    cursor: pointer;
    font-size: 0;
  }
  #ctl00_pnlMenu .main-menu .menu-button-block {
    display: block;
    height: 4px;
    background-color: var(--clr-primary);
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 0;
  }
  #ctl00_pnlMenu .main-menu .menu-button-block::before,
  #ctl00_pnlMenu .main-menu .menu-button-block::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    background-color: var(--clr-primary);
    display: block !important;
  }
  #ctl00_pnlMenu .main-menu .menu-button-block::before {
    top: -10px;
  }
  #ctl00_pnlMenu .main-menu .menu-button-block::after {
    top: 10px;
  }
  /***** Mobile - Sub Menu Close Button *****/
  .submenu-menu-close-icon {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -webkit-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
  }
  .submenu-menu-close-icon.active {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }
  .submenu-close {
    position: absolute;
    width: 20px;
    height: 10px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .submenu-close.s-icon-1 {
    z-index: 999;
    -webkit-clip-path: polygon(10% 0, 0 0, 50% 100%, 100% 0, 90% 0, 50% 80%);
    clip-path: polygon(10% 0, 0 0, 50% 100%, 100% 0, 90% 0, 50% 80%);
    background-color: var(--clr-primary);
  }
}

#ctl00_pnlFooter li.menu-close-icon,
#ctl00_pnlFooter .submenu-menu-close-icon {
  display: none;
}

.social__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social__media a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  text-decoration: none;
}

@media (max-width: 700px) {
  .social__media--header {
    display: none;
  }
}

.social__media--header a {
  width: 30px;
  height: 30px;
}

.social__media--header a:hover {
  opacity: 0.7;
}

.social__media--header a:not(:last-child) {
  margin-right: 20px;
}

.social__media--header a i {
  color: var(--clr-black);
  font-size: 18px;
}

.social__media--footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.social__media--footer a {
  width: 35px;
  height: 35px;
  background-color: var(--clr-white);
}

.social__media--footer a:hover {
  opacity: 0.7;
}

.social__media--footer a:not(:last-child) {
  margin-right: 32px;
}

@media (max-width: 580px) {
  .social__media--footer a:not(:last-child) {
    margin-right: 15px;
  }
}

.social__media--footer a i {
  color: #000;
  font-size: 22px;
}

.contact__fields--group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}

@media (max-width: 580px) {
  .contact__fields--group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}

.contact__fields--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}

.contact__fields--block label {
  font-size: 15px;
  color: var(--clr-white);
  margin-bottom: 9px;
  margin-left: 16px;
  font-family: "gotham-greek-book";
}

.contact__fields--block input {
  height: 40px;
  border-radius: 20px;
  border: none;
  padding: 10px 15px;
  font-size: 15px;
  font-family: "gotham-greek-book";
}

@media (max-width: 580px) {
  .contact__fields--block {
    margin-bottom: 25px;
  }
}

.contact__field--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 63px;
}

.contact__field--block label {
  font-size: 15px;
  color: var(--clr-white);
  margin-bottom: 9px;
  margin-left: 16px;
  font-family: "gotham-greek-book";
}

.contact__field--block textarea {
  height: 160px;
  border-radius: 20px;
  border: none;
  padding: 10px 15px;
  font-size: 15px;
  font-family: "gotham-greek-book";
  resize: none;
}

.contact__container button {
  width: 315px;
  height: 55px;
  border-radius: 28px;
  border: none;
  background-color: var(--clr-black);
  margin: 0 auto;
  display: block;
}

.contact__container button:hover span {
  color: var(--clr-black);
}

.contact__map {
  height: 494px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

.welcome-text p {
  font-size: 16px;
}

.css-products-container {
  max-width: 1300px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.css-product-box {
  max-width: 420px;
  width: 100%;
  height: 502px;
  background-color: var(--clr-black-600);
  padding: 26px;
  position: relative;
}

.css-product-box-img {
  max-width: 369px;
  height: 216px;
}

.css-product-box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.css-product-box-type {
  font-weight: 700;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 35px;
  display: none;
}

.css-product-box-body {
  margin-top: 13px;
}

.css-product-box-title {
  font-weight: 700;
  line-height: 30px;
  min-height: 60px;
}

.css-product-box-duration {
  margin-top: 13px;
  border-bottom: 1px solid rgba(83, 83, 83, 0.2);
  height: 87px;
}

.css-product-box-duration p {
  background-color: rgba(83, 83, 83, 0.1);
  margin: 0;
  padding: 5px 10px;
}

.css-product-box-duration-content {
  padding: 15px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.css-product-box-duration-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.css-product-box-duration-text span {
  font-weight: 700;
}

.css-product-box-price-section {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.css-product-box-price-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.css-product-box-price {
  font-size: clamp(19px, 3vw, 28px);
  font-weight: 700;
  color: var(--clr-primary);
}

.css-product-box-price-from {
  font-size: 13px;
  text-transform: lowercase;
}

.css-product-box-price-old {
  font-size: 13px;
  text-decoration: line-through;
}

.css-product-box-button {
  font-size: clamp(16px, 3vw, 19px);
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  background-color: transparent;
  max-width: 240px;
  height: 47px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 450px) {
  .css-product-box-button {
    max-width: 150px;
  }
}

.css-product-details-relevant {
  display: none;
}

.css-product-details-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 440px;
}

.css-product-details-top > div {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (max-width: 1023px) {
  .css-product-details-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.css-product-details-top-block {
  max-width: 520px;
}

@media (max-width: 1023px) {
  .css-product-details-top-block {
    max-width: 100%;
  }
}

.css-product-details-top-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.css-product-details-top-info {
  padding: clamp(40px, 3vw, 80px) clamp(30px, 3vw, 65px);
  background-color: var(--clr-black-600);
}

@media (max-width: 1023px) {
  .css-product-details-top-info {
    text-align: center;
  }
}

.css-product-details-top-info p {
  font-size: clamp(16px, 3vw, 19px);
  margin: 0;
  margin-top: 43px;
}

.css-product-details-type {
  color: var(--clr-white);
  font-weight: 700;
  padding: 10px 20px;
  display: inline-block;
}

.css-product-details-title {
  font-size: clamp(19px, 3vw, 28px);
  font-weight: 700;
  margin-top: 22px;
}

.css-product-details-duration {
  margin-top: 10px;
  border-top: 1px solid rgba(var(--clr-black-destructured), 0.2);
  border-bottom: 1px solid rgba(var(--clr-black-destructured), 0.2);
}

@media (max-width: 1023px) {
  .css-product-details-duration {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.css-product-details-price-group {
  margin-top: 14px;
}

.css-product-details-button {
  margin-top: 30px;
}

@media (max-width: 1023px) {
  .css-product-details-button {
    margin: 30px auto 0;
  }
}

.css-product-details-description {
  padding-bottom: clamp(40px, 3vw, 90px);
  display: none;
}

.css-product-details-description-block {
  max-width: 1280px;
  margin: 0 auto;
}

.css-product-details-description-block p {
  color: var(--clr-white);
}

@media (max-width: 1023px) {
  .css-product-details-description-block p {
    text-align: center;
  }
}

.css-product-details-description-1 {
  font-size: clamp(16px, 3vw, 23px);
  line-height: clamp(30px, 3vw, 39px);
  margin: 0;
}

.css-product-details-description-2 {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid var(--clr-white);
}

.css-product-details-table {
  max-width: 995px;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .css-product-details-table {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
}

.css-product-details-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--clr-black);
}

@media (max-width: 1023px) {
  .css-product-details-table-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.2);
    padding: 40px 26px;
    border-bottom: unset;
    margin: 0;
  }
}

.css-product-details-table-block {
  text-align: center;
}

.css-product-details-table-block h4 {
  font-weight: 700;
  margin: 0;
}

.css-product-details-table-block p {
  font-size: 13px;
  color: var(--clr-primary);
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 0;
}

.css-product-details-table-block:not(:last-child) {
  padding-right: 40px;
  margin-right: 40px;
  border-right: 2px solid var(--clr-black-700);
  width: 210px;
}

@media (max-width: 1023px) {
  .css-product-details-table-block:not(:last-child) {
    padding-right: 0;
    padding-bottom: 25px;
    margin-right: 0;
    margin-bottom: 25px;
    border-right: unset;
    border-bottom: 2px solid var(--clr-black-700);
    width: 100%;
  }
}

.css-product-details-table-button {
  width: 240px;
  height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  color: var(--clr-primary);
  border-width: 2px;
}

.css-product-details-table-button.disabled {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.8;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.css-product-details-accordion {
  max-width: 1360px;
  margin: 0 auto;
}

.css-products-page-container {
  max-width: 1300px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(310px, 420px))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(310px, 420px));
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 100px;
}

.cart-side__container {
  position: fixed;
  right: 0;
  right: -110%;
  top: 0;
  height: 100vh;
  z-index: 99;
  background-color: #fff;
  max-width: 460px;
  width: 100%;
  padding: 20px;
  -webkit-box-shadow: -24px 0px 22px rgba(0, 0, 0, 0.1);
          box-shadow: -24px 0px 22px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  display: block;
}

@media (max-width: 680px) {
  .cart-side__container {
    max-width: 360px;
  }
}

.cart-side__container.active {
  right: 0;
}

.cart-side__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.cart-side__content {
  height: 100%;
  overflow: auto;
}

.cart-side__content--top {
  margin: 30px 0 17px;
  text-align: center;
}

.cart-side__content--top-title {
  font-size: clamp(16px, 3vw, 19px);
  margin: 5px 0;
  font-weight: 700;
}

.cart-side__content--top-count {
  font-size: 13px;
}

.cart-side__content--top-count span {
  font-weight: 700;
}

.cart-side__content--products {
  height: 100%;
  overflow: auto;
}

.cart-side__content--products-container {
  height: 550px;
  overflow: hidden;
  padding: 0 0 10px;
  border-bottom: 1px solid #f2f2f2;
}

@media (max-width: 1023px) {
  .cart-side__content--products-container {
    height: initial;
  }
}

.cart-side__content--products-no-items {
  font-size: 16px;
  text-align: center;
}

.cart-side__content--products::-webkit-scrollbar {
  width: 3px;
}

.cart-side__content--products::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
}

.cart-side__content--product {
  background-color: var(--clr-black-600);
  padding: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 108px 1fr;
      grid-template-columns: 108px 1fr;
  grid-gap: 23px;
}

@media (max-width: 680px) {
  .cart-side__content--product {
    /*grid-template-columns: 70px 1fr;*/
  }
}

.cart-side__content--product:not(:last-child) {
  margin: 0 0 10px;
}

.cart-side__content--product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cart-side__content--product-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-side__content--product-id {
  font-size: 11px;
  color: var(--clr-primary);
}

.cart-side__content--product-name {
  font-size: 16px;
  margin-top: 5px;
  font-weight: 700;
}

.cart-side__content--product-price {
  font-size: clamp(16px, 3vw, 23px);
  color: var(--clr-primary);
  font-weight: 700;
}

.cart-side__content--product-price-label {
  font-size: 10px;
  margin: 10px 0 5px;
  color: var(--clr-black);
  display: none;
}

.cart-side__content--bottom {
  margin: 20px 0 0;
  text-align: center;
}

.cart-side__content--bottom-subtotal {
  font-size: 16px;
  color: var(--clr-black);
  margin: 0 0 20px;
}

.cart-side__content--bottom a {
  color: var(--clr-white) !important;
  background-color: var(--clr-primary) !important;
  padding: 18px 84px;
  display: inline-block;
  font-size: clamp(16px, 3vw, 19px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  border: 2px solid var(--clr-primary);
}

@media (max-width: 680px) {
  .cart-side__content--bottom a {
    padding: 18px 60px;
  }
}

.cart-side__content--bottom a:hover {
  background-color: transparent !important;
  border-width: 5px;
  color: var(--clr-primary) !important;
}

.cart__no-items {
  font-size: 16px;
  text-align: center;
}

.cart__container--block {
  padding: 60px clamp(0px, 3vw, 100px);
  max-width: 1080px;
  margin: 0 auto;
  background-color: var(--clr-black-600);
  text-align: center;
}

@media (max-width: 991px) {
  .cart__container--block {
    background-color: transparent;
  }
}

.cart__container--grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 1fr 150px;
      grid-template-columns: 200px 1fr 150px;
  place-items: center;
  padding: 0 0 30px;
  margin: 0 0 30px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .cart__container--grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.cart__container--labels {
  margin-bottom: 40px;
  padding-bottom: 0;
  border: none;
}

@media (max-width: 991px) {
  .cart__container--labels {
    display: none;
  }
}

.cart__container--label {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-primary);
}

.cart__container--label.end {
  -ms-grid-column-align: end;
      justify-self: end;
}

@media (max-width: 991px) {
  .cart__container--row {
    padding: 30px 20px;
    grid-gap: 40px;
    margin: 0;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0;
    -webkit-box-shadow: 0 1px 4px 0 rgba(21, 27, 38, 0.08);
            box-shadow: 0 1px 4px 0 rgba(21, 27, 38, 0.08);
    border: 1px solid #e8ecee;
    background-color: var(--clr-white);
    margin-bottom: 20px;
  }
}

.cart__container--row-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 300px;
      grid-template-columns: 200px 300px;
  gap: 28px;
  /* border-left: 2px solid rgba(0, 0, 0, 0.2); */
  /* border-right: 2px solid rgba(0, 0, 0, 0.2); */
  width: 100%;
  padding: 0 20px 0 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1080px) {
  .cart__container--row-item {
    -ms-grid-columns: 200px 200px;
        grid-template-columns: 200px 200px;
    padding: 0;
  }
}

@media (max-width: 991px) {
  .cart__container--row-item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.cart__container--row-item-img {
  height: 115px;
}

@media (max-width: 991px) {
  .cart__container--row-item-img {
    height: 300px;
  }
}

.cart__container--row-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cart__container--row-item-title {
  font-size: clamp(16px, 3vw, 19px);
  text-align: left;
  font-weight: 700;
}

@media (max-width: 991px) {
  .cart__container--row-item-title {
    text-align: center;
    margin-bottom: 40px;
  }
}

.cart__container--row-dates {
  font-size: 13px;
  color: var(--clr-gray);
  padding-top: 7px;
  border-top: 1px solid var(--clr-black-500);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .cart__container--row-dates {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cart__container--row-delete {
  width: 41px;
  height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border-radius: 50%;
}

.cart__container--row-delete i {
  font-size: 20px;
  color: var(--clr-primary);
  cursor: pointer;
}

.cart__container--row-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: end;
}

@media (max-width: 991px) {
  .cart__container--row-prices {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}

.cart__container--row-price {
  font-size: clamp(16px, 3vw, 19px);
  color: var(--clr-primary);
  font-weight: 700;
}

.cart__container--row-price-old {
  font-size: 13px;
  text-decoration: line-through;
  margin: 0 17px 0 0;
}

.cart__container--footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.cart__container--footer-content-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 21px;
}

@media (max-width: 991px) {
  .cart__container--footer-content-prices {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.cart__container--footer-content-label {
  font-size: 16px;
  margin: 0 25px 0 0;
}

.cart__container--footer-content-price {
  font-size: clamp(16px, 3vw, 19px);
  font-weight: 700;
}

.cart__buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(235px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 15px;
  max-width: 485px;
  width: 100%;
  place-items: center;
}

@media (max-width: 991px) {
  .cart__buttons {
    width: 100%;
    max-width: 100%;
  }
}

.cart__button {
  background-color: var(--clr-primary);
  color: #fff !important;
  font-size: clamp(16px, 3vw, 19px);
  text-align: center;
  padding: 10px;
  height: 48px;
  width: 235px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 0;
  font-weight: 700;
  border: 2px solid var(--clr-primary);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.cart__button a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart__button:hover {
  border-width: 5px;
  background-color: transparent;
}

.cart__button:hover a {
  color: var(--clr-primary) !important;
}

.cart__button.back {
  background-color: transparent;
  color: var(--clr-primary) !important;
  border: 2px solid var(--clr-primary);
  background-image: url(/CMS/site/images/eshop6/button-back-arrow.svg);
  background-position: 13px center;
  background-repeat: no-repeat;
}

.cart__button.back:hover {
  border-width: 5px;
}

.cart__checkout--items-container {
  margin: 50px 0 0 0;
}

.cart__checkout__container {
  padding: 0;
}

.cart__checkout__container h1 {
  display: none !important;
}

.cart__checkout--grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px;
      grid-template-columns: 1fr 100px;
  grid-gap: 100px;
}

@media (max-width: 991px) {
  .cart__checkout--grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.cart__checkout--grid-head {
  padding: 0px 0 20px;
  margin: 0 0 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .cart__checkout--grid-head {
    display: none;
  }
}

.cart__checkout--grid-item {
  font-size: 13px;
}

.cart__checkout--grid-footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .cart__checkout--grid-footer-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cart__checkout--grid-footer-label {
  font-size: 16px;
  color: var(--clr-black);
  margin: 0 25px 0 0;
}

.cart__checkout--grid-footer-price {
  font-size: 31px;
  color: var(--clr-primary);
}

.cart__checkout--row-item {
  padding: 0px 0 20px;
  margin: 0 0 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .cart__checkout--row-item {
    -webkit-box-shadow: 0 0px 7px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0px 7px 0px rgba(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 400px;
    margin: 0 auto 20px;
  }
}

.cart__checkout--row-item-title {
  font-size: 20px;
  color: var(--clr-black);
  text-align: left;
}

@media (max-width: 991px) {
  .cart__checkout--row-item-title {
    text-align: center;
  }
}

.cart__checkout--row-item-block.block-1 {
  display: -ms-grid;
  display: grid;
  display: grid;
  -ms-grid-columns: 197px 245px;
      grid-template-columns: 197px 245px;
  grid-gap: 46px;
  place-items: center;
}

@media (max-width: 991px) {
  .cart__checkout--row-item-block.block-1 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.cart__checkout--row-item-block.block-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart__checkout--row-item-img img {
  width: 100%;
}

.cart__checkout--row-item-price {
  font-size: 20px;
  color: var(--clr-primary);
}

.cart__checkout--coupons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 991px) {
  .cart__checkout--coupons-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cart__checkout--coupons-container #txtCouponCode {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 0 white inset !important;
          box-shadow: 0 0 0 0 white inset !important;
  text-align: center;
}

@media (max-width: 991px) {
  .cart__checkout--coupons-container #txtCouponCode {
    margin: 0 auto;
  }
}

.cart__checkout--coupons-container #txtCouponCodeApply {
  /*width: 157px;*/
  /*height: 28px;*/
  width: 140px;
  height: 30px;
  background-color: var(--clr-primary) !important;
  -webkit-box-shadow: 0 0 0 0 white inset !important;
          box-shadow: 0 0 0 0 white inset !important;
  border-bottom: unset;
  font-size: 16px;
  border-radius: 14px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.cart__checkout--coupons-container #txtCouponCodeApply:hover {
  opacity: 0.7;
}

.cart__checkout--coupons-block {
  background-color: #efefef;
  border-radius: 17px;
  padding: 20px 65px;
}

.cart__checkout--coupons-code {
  font-size: 20px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 26px;
  text-align: center;
  margin: 20px 0 10px;
}

.cart__checkout--coupons-discount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 991px) {
  .cart__checkout--coupons-discount {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
  }
}

.cart__checkout--coupons-discount-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart__checkout--coupons-discount-title {
  font-size: 16px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  margin-top: 1px;
}

.cart__checkout--coupons-discount-amount {
  font-size: 16px;
  font-family: "Roboto Condensed", sans-serif;
  /*margin-left: 20px;*/
  margin-left: 12px;
  margin-top: 1px;
}

.cart__checkout--coupons-discount-img {
  /*margin-left: 10px;*/
  margin-left: 13px;
  /*margin-bottom: 1px;*/
  cursor: pointer;
}

.cart__checkout--coupons-discount-img img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cartServiceTitle {
  color: var(--color-font);
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .cartServiceTitle {
    border-top: 1px solid rgba(192, 192, 192, 0.6);
  }
}

.cartServiceImg {
  height: 100px;
  padding: 10px;
  border: 1px solid rgba(139, 139, 139, 0.4);
}

@media (max-width: 991px) {
  .cartServiceImg {
    padding: 0 !important;
    width: 90% !important;
    margin: 30px 0;
    height: 250px;
    border: none !important;
  }
}

.cartServiceImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cartServiceCbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  justify-self: center;
}

.cartServiceCbx i {
  color: var(--color-font);
  font-size: 23px;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.cartServiceCbx i:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.cartServiceCost {
  font-size: 17px;
  font-weight: 900;
  color: var(--color-main);
  white-space: nowrap;
  text-align: center;
}

.css-checkout-cart-section-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.css-checkout-cart-section-1 > div:first-child {
  background-image: url(/CMS/site/images/eshop6/checkout-section-1.jpg);
  background-position: left;
  background-size: cover;
  width: 100%;
}

@media (max-width: 1023px) {
  .css-checkout-cart-section-1 > div:first-child {
    display: none;
  }
}

.wizard > .steps {
  padding: 33px 15px;
  height: 155px;
}

.wizard > .steps ul {
  max-width: 930px;
  margin: 0 auto;
}

.wizard > .steps ul li {
  position: relative;
}

.wizard > .steps ul li::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 2px solid var(--clr-black-500);
  border-radius: unset;
  background-color: unset;
}

.wizard > .steps ul li.current::before, .wizard > .steps ul li.done::before {
  border-top: 2px solid var(--clr-primary);
}

.wizard > .steps ul li.current a .number, .wizard > .steps ul li.done a .number {
  background-color: var(--clr-primary);
}

.wizard > .steps ul li.current a .title, .wizard > .steps ul li.done a .title {
  color: black;
}

.wizard > .steps ul li a .number {
  border: unset;
  background-color: var(--clr-black-500);
  width: 56px;
  height: 56px;
  color: var(--clr-white);
  font-size: clamp(23px, 3vw, 33px);
  line-height: 53px;
  border-radius: 0;
}

@media (max-width: 680px) {
  .wizard > .steps ul li a .number {
    width: 40px;
    height: 40px;
    line-height: 42px;
  }
}

.wizard > .steps ul li a .title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
  max-width: 97px;
  width: 100%;
  font-size: 13px;
  height: 33px;
  bottom: -37px;
  z-index: 1;
  line-height: 15px;
}

@media (max-width: 480px) {
  .wizard > .steps ul li a .title {
    font-size: 11px;
  }
}

.wizard > .content {
  margin: 0;
}

.wizard > .content > .body {
  width: 100%;
  height: 100%;
  padding: 0;
  padding: 0 15px;
}

.wizard > .content > .body input {
  border: unset;
  padding: 0;
  height: 35px;
  border-bottom: 2px solid var(--clr-black);
  font-size: 16px;
  color: var(--clr-black);
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
          box-shadow: 0 0 0 30px transparent inset !important;
}

.wizard > .content > .body input:focus {
  border-color: var(--clr-black) !important;
}

.wizard > .content > .body input.has-value {
  border-bottom: 2px solid var(--clr-black);
}

.wizard > .content > .body input.invoicing-details-toggle {
  border: 1px solid var(--clr-black) !important;
  -webkit-box-shadow: initial !important;
          box-shadow: initial !important;
  height: initial;
  width: 55px;
}

.wizard > .content > .body .input-block {
  position: relative;
  display: block;
  margin: 0px 0 50px;
}

.wizard > .content > .body .input-block.last {
  margin: 0;
}

.wizard > .content > .body input + label {
  position: absolute;
  top: 0px;
  left: 0;
  color: var(--clr-black) 0;
  margin: 0;
  -webkit-transition: top 300ms ease-out, font-size 300ms ease-out;
  transition: top 300ms ease-out, font-size 300ms ease-out;
  pointer-events: none;
  background-color: var(--clr-white);
  width: 100%;
  text-align: left;
  padding: 4px 0;
}

.wizard > .content > .body input:focus + label,
.wizard > .content > .body input.has-value + label {
  top: -20px;
  color: var(--clr-black);
  background-color: transparent;
  z-index: 3;
  padding: 0;
  left: 0;
}

.wizard > .content > .body select {
  border: 2px solid var(--clr-black);
  color: var(--clr-black);
  background-color: transparent;
  font-size: 16px;
  padding: 0;
}

.wizard > .content > .body select:focus {
  border-color: var(--clr-black) !important;
}

.wizard > .content > .body .select span {
  color: var(--clr-black) 0;
  font-size: 17px;
  margin: 0;
  -webkit-transition: top 300ms ease-out, font-size 300ms ease-out;
  transition: top 300ms ease-out, font-size 300ms ease-out;
  pointer-events: none;
}

.wizard > .actions {
  background-color: var(--clr-black-600);
  padding: 0 15px 80px;
  max-width: 858px;
  margin: 0 auto 100px;
}

.wizard > .actions > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 750px) {
  .wizard > .actions > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.wizard > .actions > ul li {
  margin: 0;
}

.wizard > .actions > ul li a {
  width: 315px;
  height: 55px;
  border-radius: 0;
  font-size: clamp(16px, 3vw, 19px);
  color: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

@media (max-width: 480px) {
  .wizard > .actions > ul li a {
    width: 295px;
  }
}

.wizard > .actions > ul li a:hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0;
  background-color: transparent;
  color: var(--clr-primary) !important;
  border-width: 5px;
}

.wizard > .actions > ul li:not(:last-child) {
  margin: 0 40px 0 0;
}

@media (max-width: 750px) {
  .wizard > .actions > ul li:not(:last-child) {
    margin: 0 0 30px 0;
  }
}

.wizard > .actions > ul li:first-child a {
  background-color: transparent;
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary) !important;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.wizard > .actions > ul li:first-child a:hover {
  border-width: 5px;
}

.wizard-section {
  max-width: 858px;
  margin: 0 auto;
  background-color: var(--clr-black-600);
  padding: 80px;
}

@media (max-width: 880px) {
  .wizard-section {
    padding: 80px 15px;
  }
}

.wizard-section-1 {
  max-width: 695px;
  width: 100%;
  padding: 0;
  background-color: var(--clr-white);
}

@media (max-width: 1600px) {
  .wizard-section-1 {
    max-width: 490px;
  }
}

@media (max-width: 1023px) {
  .wizard-section-1 {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .wizard-section-1 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.wizard-section-1 h4 {
  margin: 0 0 40px;
  color: var(--clr-black);
}

.wizard-section-1 span,
.wizard-section-1 p {
  color: var(--clr-black);
}

.wizard-section-1 p {
  margin: 0 0 40px;
}

.wizard-section-1 .CheckOutBtn a,
.wizard-section-1 button {
  color: var(--clr-primary) !important;
  padding: 10px;
  border: 2px solid var(--clr-primary);
  width: 100%;
  margin: 20px 0 0;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0;
  font-weight: 700;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.wizard-section-1 .CheckOutBtn a:hover,
.wizard-section-1 button:hover {
  border-width: 5px;
}

.wizard-section-1 .SignArea,
.wizard-section-1 .Logarea {
  background-color: #ffffff;
  height: 467px;
  padding: 35px 65px;
  text-align: center;
  padding: 35px 27%;
}

@media (max-width: 1600px) {
  .wizard-section-1 .SignArea,
  .wizard-section-1 .Logarea {
    padding: 35px 10%;
  }
}

@media (max-width: 460px) {
  .wizard-section-1 .SignArea,
  .wizard-section-1 .Logarea {
    padding: 35px 30px;
  }
}

.wizard-section-1 .SignArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 237px;
}

.wizard-section-1 .ContactCenter {
  background-color: var(--clr-orange);
  margin-top: 20px;
  padding: 10px 23px 18px;
  text-align: center;
  max-width: 432px;
  margin: 20px auto 0;
}

.wizard-section-1 .Logarea .LogareaIcon {
  margin: 0 0 10px;
}

.wizard-section-1 .Logarea .login-box2,
.wizard-section-1 .Logarea .forgot-box2 {
  width: 100%;
}

.wizard-section-1 .Logarea button {
  margin: 25px 0 0;
  background-color: var(--clr-primary);
}

.wizard-section-1 .Logarea button span {
  color: var(--clr-white);
}

.wizard-section-1 .Logarea button:hover {
  border-width: 5px;
  background-color: transparent;
}

.wizard-section-1 .Logarea button:hover span {
  color: var(--clr-primary);
}

.wizard-section-1 .Logarea .toolbar {
  margin: 30px 0 0;
}

.wizard-section-1 .Logarea .toolbar a {
  font-size: 12px;
  text-align: center;
  width: 100%;
  display: inline-block;
  color: var(--clr-secondary) !important;
}

.wizard-section-1 .Logarea #ctl00_cphMain_DivLoggedIn {
  color: var(--clr-black);
}

.wizard-section-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 63px;
}

@media (max-width: 880px) {
  .wizard-section-2 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    position: relative;
    grid-gap: 0;
    margin: 0 0 20px 0;
  }
}

.wizard-section-2 .invoicing-details-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

@media (max-width: 880px) {
  .wizard-section-2 .invoicing-details-container {
    position: absolute;
    bottom: -75px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
}

.wizard-section-2 > div > :last-child {
  margin: 0 !important;
}

@media (max-width: 880px) {
  .wizard-section-2.invoicing-details {
    grid-gap: 50px;
    margin: 0;
  }
}

.wizard-section-3 table {
  width: 100%;
}

.wizard-section-3 tbody {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 10px;
  place-items: center;
}

.wizard-section-3 td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 188px;
  width: 100%;
}

.wizard-section-3 td input {
  -webkit-appearance: none !important;
  border: unset !important;
  height: 100% !important;
}

.wizard-section-3 td input:hover + label::after {
  border-color: var(--clr-primary);
}

.wizard-section-3 td input:focus {
  outline: none;
}

.wizard-section-3 td input:focus + label::after {
  border-color: var(--clr-primary);
}

.wizard-section-3 td label {
  position: relative !important;
  margin: 0 !important;
  height: 55px;
  font-size: 14px !important;
  text-align: center !important;
  top: 0 !important;
  display: block !important;
  pointer-events: all !important;
}

.wizard-section-3 td label::after {
  position: absolute;
  content: "";
  width: 170px;
  height: 132px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0 0px 4px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0px 4px 1px rgba(0, 0, 0, 0.2);
  z-index: 10;
  bottom: 50px;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px;
}

.wizard-section-3 tr {
  width: 100%;
}

.wizard-section-3 tr:first-child label::after {
  /*background-image: url(/CMS/site/images/visa.png);*/
  background-image: url(/CMS/site/images/paypal.png);
}

.wizard-section-3 tr:nth-child(2) label::after {
  /*background-image: url(/CMS/site/images/paypal.png);*/
  background-image: url(/CMS/site/images/inplacepayment.png);
}

.wizard-section-3 tr:nth-child(3) label::after {
  /*background-image: url(/CMS/site/images/inplacepayment.png);*/
  background-image: url(/CMS/site/images/bank.png);
}

.wizard-section-3 tr:nth-child(4) label::after {
  /*background-image: url(/CMS/site/images/bank.png);*/
}

.wizard-section-4 {
  text-align: center;
}

.wizard-section-4 > div:first-child h4 {
  margin: 0 0 24px 0;
}

.wizard-section-4 h2 {
  display: none;
}

.wizard-section-4 h4 {
  font-size: 15px;
  padding: 0 0 8px;
  margin: 45px 0 15px 0;
  position: relative;
}

.wizard-section-4 h4::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 138px;
  background-color: var(--clr-primary);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.wizard-section-4 span {
  font-size: 14px;
  color: var(--clr-black);
}

.wizard-section-4 ul {
  padding: 0 0 0 20px;
}

.wizard-section-4 ul li {
  text-align: left;
}

.register__form__container {
  background-color: var(--clr-white);
  padding: 0 15px 100px;
}

.register__form--group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.register__form__content {
  width: 100%;
  max-width: 858px;
  margin: 0 auto;
  background-color: var(--clr-black-600);
  padding: 80px;
}

@media (max-width: 991px) {
  .register__form__content {
    padding: 40px 30px;
  }
}

.register__form__content--grid .form-block-row {
  position: relative;
  display: block;
  margin: 0px 0 50px;
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  width: 100%;
}

.register__form__content--grid .form-block-row.last {
  margin: 0;
}

.register__form__content--grid .form-block-row-gender label {
  color: var(--clr-black) 0;
  margin: 0 10px 0 0;
}

.register__form__content--grid .form-block-row input {
  border: unset;
  padding: 0;
  height: 25px !important;
  border-bottom: 2px solid;
  color: var(--clr-black);
  border-radius: 0;
  width: 100%;
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
          box-shadow: 0 0 0 30px transparent inset !important;
}

.register__form__content--grid .form-block-row input:focus {
  border-color: var(--clr-black) !important;
  color: var(--clr-black) !important;
  outline: unset;
}

.register__form__content--grid .form-block-row select {
  border: unset;
  padding: 0;
  height: 25px !important;
  border-bottom: 2px solid;
  border-radius: 0;
  width: 100%;
  background-color: transparent !important;
  padding: 0 0 3px 0;
  font-size: 16px;
}

.register__form__content--grid .form-block-row select:focus {
  border-color: var(--clr-black) !important;
  color: var(--clr-black) !important;
  outline: unset;
}

.register__form__content--grid .form-block-row input + label {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  -webkit-transition: top 300ms ease-out, font-size 300ms ease-out;
  transition: top 300ms ease-out, font-size 300ms ease-out;
  pointer-events: none;
  width: 100%;
  background-color: #f5f5f5;
}

.register__form__content--grid .form-block-row input:focus + label,
.register__form__content--grid .form-block-row input.has-value + label {
  top: -25px;
  color: var(--clr-black);
  z-index: 3;
  padding: 0;
  left: 0;
}

.register__form__content--grid .form-block-row input.has-value {
  border-bottom: 2px solid var(--clr-secondary);
}

.register__form__content--button {
  margin-top: 50px;
}

.register__form__content--button a {
  width: 315px;
  height: 48px;
  color: var(--clr-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--clr-primary);
  margin: 0 auto;
  border-radius: 0;
  cursor: pointer;
  font-size: clamp(16px, 3vw, 19px);
  font-weight: 700;
  border: 2px solid var(--clr-primary);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

@media (max-width: 460px) {
  .register__form__content--button a {
    width: 100%;
  }
}

.register__form__content--button a:hover {
  border-width: 5px;
  background-color: transparent;
  color: var(--clr-primary);
}

.accept-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 288px;
  width: 100%;
  margin: 0 0 20px 0;
  text-align: right;
}

@media (max-width: 991px) {
  .accept-terms {
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.accept-terms span:first-child {
  margin: 0 10px 0 0;
}

.accept-terms span:nth-child(2) {
  text-align: left;
}

@media (max-width: 991px) {
  .accept-terms-container {
    margin-bottom: 60px;
    width: 100%;
  }
}

.CartBtnDisabled {
  pointer-events: none;
  opacity: 0.4;
}

.CartBtnDisabled a {
  pointer-events: none;
}

.success__payment--container {
  max-width: 970px;
  margin: 0 auto;
  padding: 0 15px 60px;
  text-align: center;
}

.success__payment--container h3 {
  padding: 0 0 8px;
  margin: 45px 0 15px 0;
  position: relative;
}

.success__payment--container h3::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 138px;
  background-color: var(--clr-primary);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.success__payment--container strong {
  padding: 0 0 8px;
  margin: 45px 0 0px 0;
  position: relative;
  display: block;
}

.success__payment--container strong::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 138px;
  background-color: var(--clr-primary);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.success__payment--container .css-page-title {
  font-size: 1.53125rem;
  padding-top: 40px;
  padding-bottom: 30px;
  margin-bottom: 0.5rem;
}

.success__payment--container .css-page-title::after {
  position: absolute;
  content: "";
  background-color: var(--clr-primary);
  width: 200px;
  height: 2px;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.DivInstallmentsCheckBox {
  margin: 20px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#DivInstallments #cbxInstallments {
  display: inline;
  border: 1px solid var(--clr-black) !important;
  width: 15px;
  height: 15px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  margin: 0 10px 0 0;
}

#ctl00_cphMain_rbtnPaymentMethod td {
  border-bottom: none;
}

#ltrCoupons {
  display: none;
}

.css-category-box {
  position: relative;
  width: 310px;
  height: 310px;
  margin: 0 auto;
  display: block;
}

.css-category-box::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  content: "";
  background: -webkit-linear-gradient(top, rgba(228, 50, 43, 0.1) 0%, #e4322b 100%);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.css-category-box:hover::after {
  opacity: 0.8;
}

.css-category-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.css-category-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 20px;
  text-align: center;
  background: -webkit-linear-gradient(top, rgba(228, 50, 43, 0.1) 0%, #e4322b 100%);
  height: 90px;
}

.css-category-title h3 {
  font-size: clamp(16px, 3vw, 23px);
  color: #fff;
  font-weight: 700;
  padding: 0;
  margin: 0;
  line-height: 39px;
}

.css-category-title h3::after {
  display: none;
}

.css-categories-container {
  max-width: 70%;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .css-categories-container {
    max-width: 90%;
  }
}

.css-categories-page-container {
  max-width: 1300px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(310px, 310px))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(310px, 310px));
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 100px;
}
/*# sourceMappingURL=format.css.map */