

a {
  text-decoration: none;
  color: #3b3b3b;
}

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

.buuton_reset {
  border: none;
  outline: none;
  background: none;
}

.polarloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1111;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.8s;
}

.polarLoaderNone {
  opacity: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  border-radius: 50%;
  transition: all ease 0.8s !important;
}

.glowworm-loader {
  display: inline-block;
  position: relative;
  font-size: 50px;
  line-height: 0;
  width: 2.8em;
  height: 1em;
  text-align: center;
}

.glowworm-motion {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  animation-name: glowworm-motion;
  animation-timing-function: ease-in-out;
  animation-delay: -0.9s;
  animation-iteration-count: infinite;
  animation-duration: 1.8s;
}

.glowworm-container {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  transform: scale(0.9);
  animation-name: glowworm-container;
  animation-timing-function: ease-in-out;
  color: #fa2c7e;
}

.glowworm-left,
.glowworm-right {
  display: block;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: currentColor;
}

.glowworm-left {
  right: 50%;
  border-radius: 0.5em 0 0 0.5em;
  transform-origin: 100% 50%;
  animation-name: glowworm-left;
  animation-timing-function: cubic-bezier(0.25, 0, 1, 0.75);
}

.glowworm-right {
  left: 50%;
  padding-left: 1px;
  margin-left: -1px;
  border-radius: 0 0.5em 0.5em 0;
  transform-origin: 0 50%;
  animation-name: glowworm-right;
  animation-timing-function: cubic-bezier(0.25, 0.5, 0.75, 1);
}

.glowworm-left::after {
  border-radius: 0.5em 0 0 0.5em;
  animation-name: glowworm-left-overlay;
  animation-timing-function: cubic-bezier(0.25, 0, 0.75, 1);
}

.glowworm-right::after {
  border-radius: 0 0.5em 0.5em 0;
  animation-name: glowworm-right-overlay;
  animation-timing-function: cubic-bezier(0, 0.25, 1, 0.75);
}

.glowworm-left::after,
.glowworm-right::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.glowworm-container,
.glowworm-left,
.glowworm-right,
.glowworm-left::after,
.glowworm-right::after {
  animation-delay: -0.9s;
  animation-duration: 1.8s;
  animation-iteration-count: infinite;
}

.glowworm-loader::before, .glowworm-loader::after {
  display: block;
  position: absolute;
  top: 0;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  content: "";
  transform: scale(0.9);
  animation-name: glowworm-reset;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 1.8s;
}
.glowworm-loader::before {
  left: 0;
  background-color: #ffc76f;
  animation-delay: -1.062s;
}
.glowworm-loader::after {
  right: 0;
  background-color: #54d2e0;
  animation-delay: -0.738s;
  animation-direction: reverse;
}

@keyframes glowworm-motion {
  0% {
    transform: translateX(-0.9em) scale(0);
  }
  9%, 11% {
    transform: translateX(-0.9em) scale(1);
  }
  48%, 51% {
    transform: translateX(0) scale(1);
  }
  89%, 91% {
    transform: translateX(0.9em) scale(1);
  }
  100% {
    transform: translateX(0.9em) scale(0);
  }
}
@keyframes glowworm-container {
  0%, 9%, 11%, 51%, 91%, 100% {
    transform: scale(0.9);
  }
  30%, 71% {
    transform: scale(0.9, 0.85);
  }
  41%, 80% {
    transform: scale(0.95);
  }
  0%, 13% {
    color: #ffc76f;
  }
  46%, 54% {
    color: #fa2c7e;
  }
  87%, 100% {
    color: #54d2e0;
  }
}
@keyframes glowworm-left {
  0%, 9%, 11%, 48%, 51%, 89%, 91%, 100% {
    transform: scale(1);
  }
  29%, 70% {
    transform: scale(1.6, 1);
  }
}
@keyframes glowworm-right {
  0%, 9%, 11%, 48%, 51%, 89%, 91%, 100% {
    transform: scale(1);
  }
  29%, 70% {
    transform: scale(1.8, 1);
  }
}
@keyframes glowworm-left-overlay {
  0%, 11%, 48%, 51%, 89%, 100% {
    opacity: 0;
  }
  29%, 70% {
    opacity: 1;
  }
  0%, 11%, 48% {
    background-image: linear-gradient(to right, #ffc76f, rgba(255, 199, 111, 0));
  }
  51%, 89% {
    background-image: linear-gradient(to right, #fa2c7e, rgba(250, 44, 126, 0));
  }
  91%, 100% {
    background-image: linear-gradient(to right, #54d2e0, rgba(84, 210, 224, 0));
  }
}
@keyframes glowworm-right-overlay {
  0%, 11%, 48%, 51%, 89%, 100% {
    opacity: 0;
  }
  29%, 70% {
    opacity: 1;
  }
  0% {
    background-image: linear-gradient(to left, #ffc76f, rgba(255, 199, 111, 0));
  }
  11%, 48% {
    background-image: linear-gradient(to left, #fa2c7e, rgba(250, 44, 126, 0));
  }
  51%, 89%, 91%, 100% {
    background-image: linear-gradient(to left, #54d2e0, rgba(84, 210, 224, 0));
  }
}
@keyframes glowworm-reset {
  0%, 18.0001%, 100% {
    transform: scale(0);
  }
  18% {
    transform: scale(0.9);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}
html ::-webkit-scrollbar {
  width: 0.35vw !important;
}
html ::-webkit-scrollbar-track {
  background-color: #ececec;
}
html ::-webkit-scrollbar-thumb {
  background-color: #A42425;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
html ::-webkit-scrollbar-thumb:hover {
  background-color: #A42425;
  opacity: 0.5;
  margin: 1px 0;
}

body {
  min-height: 100vh;
}

#polarHeader {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
}
#polarHeader .polarHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#polarHeader .polarHeader .polarHeaderLeft {
  display: flex;
  align-items: center;
}
#polarHeader .polarHeader .polarHeaderMiddle {
  display: flex;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarHeaderMenuList {
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 20px;
  display: flex;
  align-items: center;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarHeaderMenuList li a {
  text-decoration: none;
  color: black;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarHeaderMenuList li:not(:last-child) {
  margin-right: 20px;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarHeaderMenuList li a::after {
  content: "";
  display: flex;
  margin-top: 5px;
  width: 0%;
  height: 2.5px;
  background-color: #A42425;
  transition: all ease 0.4s;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarHeaderMenuList li:hover a::after {
  content: "";
  display: flex;
  width: 100%;
  height: 2.5px;
  background-color: #A42425;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarHeaderMenuList .active a::after {
  content: "";
  display: flex;
  width: 100%;
  height: 2.5px;
  background-color: #A42425;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock {
  min-width: 70px;
  position: relative;
  margin-left: 15px;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .cdrop {
  width: 100%;
  height: 40px;
  background: none;
  border: none;
  outline: none;
  padding: 4px 8px;
  background-color: white;
  overflow: hidden;
  display: flex;
  justify-content: left;
  align-items: center;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .cdrop svg {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .cdrop::after {
  content: "";
  display: inline-flex;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background-image: url(../img/arrowVektorDown.png);
  background-repeat: no-repeat;
  background-position: center;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .hovcard {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  padding: 2px 0;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .hovcard .flaqLangItem {
  display: flex;
  justify-content: center;
  padding: 2px;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .hovcard .flaqLangItem svg {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .hovcard .flaqLangItem:hover {
  cursor: pointer;
  background-color: #f5f6ff;
}
#polarHeader .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .hovcard-active {
  display: block;
}
#polarHeader .polarHeader .polarHeaderRight {
  display: flex;
  align-items: center;
}
#polarHeader .polarHeader .polarHeaderRight .polarMobileLanguageBlock {
  min-width: 70px;
  position: relative;
  margin-right: 15px;
  display: none;
}
#polarHeader .polarHeader .polarHeaderRight .polarMobileLanguageBlock .cdrop {
  width: 100%;
  height: 40px;
  background: none;
  border: none;
  outline: none;
  padding: 4px 8px;
  background-color: white;
  overflow: hidden;
  display: flex;
  justify-content: left;
  align-items: center;
}
#polarHeader .polarHeader .polarHeaderRight .polarMobileLanguageBlock .cdrop svg {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
#polarHeader .polarHeader .polarHeaderRight .polarMobileLanguageBlock .cdrop::after {
  content: "";
  display: inline-flex;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background-image: url(../img/arrowVektorDown.png);
  background-repeat: no-repeat;
  background-position: center;
}
#polarHeader .polarHeader .polarHeaderRight .polarMobileLanguageBlock .hovcard {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  padding: 2px 0;
}
#polarHeader .polarHeader .polarHeaderRight .polarMobileLanguageBlock .hovcard .flaqLangItem {
  display: flex;
  justify-content: center;
  padding: 2px;
}
#polarHeader .polarHeader .polarHeaderRight .polarMobileLanguageBlock .hovcard .flaqLangItem svg {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
#polarHeader .polarHeader .polarHeaderRight .polarMobileLanguageBlock .hovcard .flaqLangItem:hover {
  cursor: pointer;
  background-color: #f5f6ff;
}
#polarHeader .polarHeader .polarHeaderRight .polarMobileLanguageBlock .hovcard-active {
  display: block;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-color: #A42425;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all ease 0.7s;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch svg {
  width: 60%;
  height: 60%;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch svg path {
  transition: all ease 0.7s;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch:hover {
  background-color: white;
  border: 1px solid #A42425;
  box-shadow: 0 0 2px 0 gray;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch:hover svg path {
  fill: #A42425;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderMenuButBlock {
  display: none;
  justify-content: center;
  align-items: center;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderMenuButBlock .polarMenuBut {
  background: none;
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background-color: #A42425;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: all ease 0.4s;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderMenuButBlock .polarMenuBut span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  transition: all ease 0.4s;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderMenuButBlock .polarMenuBut span:not(:last-child) {
  margin-bottom: 4px;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderMenuButBlock .polarMenuBut:hover {
  background-color: white;
  box-shadow: 0 0 4px 1px #A42425;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderMenuButBlock .polarMenuBut:hover span {
  background-color: #A42425;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSocial {
  display: flex;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #A42425;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all ease 0.7s;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing svg {
  width: 60%;
  height: 60%;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing svg path {
  transition: all ease 0.7s;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing:hover {
  background-color: white;
  border: 1px solid #A42425;
  box-shadow: 0 0 2px 0 gray;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing:hover svg path {
  fill: #A42425;
}
#polarHeader .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing:not(:last-child) {
  margin-right: 10px;
}
#polarHeader .polarHeader .searchBlock {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 43px;
  box-shadow: 0 0 5px #A42425;
  border-radius: 5px;
  overflow: hidden;
  padding-left: 15px;
  padding-right: 40px;
  background-color: white;
}
#polarHeader .polarHeader .searchBlock form {
  height: 100%;
}
#polarHeader .polarHeader .searchBlock form .searchInput {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}
#polarHeader .polarHeader .searchBlock .closeSearch {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  outline: none;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#polarHeader .polarHeader .searchBlock .closeSearch svg {
  width: 100%;
  height: 100%;
  fill: #a0a0a0;
}
#polarHeader .polarHeader .searchBlockNone {
  display: none;
}

.mobileMenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 0 15px;
  transition: all ease 0.5s;
}
.mobileMenu .mobileMenuHead {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobileMenu .mobileMenuHead .mobileHeaderLogo {
  width: 120px;
  display: flex;
}
.mobileMenu .mobileMenuHead .mobileHeaderLogo svg {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobileMenu .mobileMenuHead .mobileCloseBut {
  border: none;
  outline: none;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
  background-color: #A42425;
  border-radius: 50%;
  transition: all ease 0.4s;
}
.mobileMenu .mobileMenuHead .mobileCloseBut svg {
  width: 25px;
  height: 25px;
  fill: white;
  transition: all ease 0.4s;
}
.mobileMenu .mobileMenuHead .mobileCloseBut:hover {
  cursor: pointer;
  background-color: white;
  box-shadow: 0 0 4px 1px #A42425;
}
.mobileMenu .mobileMenuHead .mobileCloseBut:hover svg {
  fill: #A42425;
}
.mobileMenu .mobileMenuList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
}
.mobileMenu .mobileMenuList .mobileMenuListItem {
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
  position: relative;
}
.mobileMenu .mobileMenuList .mobileMenuListItem a {
  text-decoration: none;
  color: #000;
  transition: all ease 0.4s;
}
.mobileMenu .mobileMenuList .mobileMenuListItem a::after {
  content: "";
  display: flex;
  margin-top: 5px;
  width: 0%;
  height: 3px;
  background-color: #A42425;
  transition: all ease 0.4s;
}
.mobileMenu .mobileMenuList .mobileMenuListItem:hover a::after {
  content: "";
  display: flex;
  width: 100%;
  height: 3px;
  background-color: #A42425;
}
.mobileMenu .mobileMenuList .active a::after {
  content: "";
  display: flex;
  width: 100%;
  height: 3px;
  background-color: #A42425;
}
.mobileMenu .mobileMenuList .mobileMenuListItem:not(:last-child) {
  margin-bottom: 15px;
}
.mobileMenu .mobileSocial {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.mobileMenu .mobileSocial .mobileSocialItem {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #A42425;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all ease 0.7s;
}
.mobileMenu .mobileSocial .mobileSocialItem svg {
  width: 60%;
  height: 60%;
}
.mobileMenu .mobileSocial .mobileSocialItem svg path {
  transition: all ease 0.7s;
}
.mobileMenu .mobileSocial .mobileSocialItem:hover {
  background-color: white;
  border: 1px solid #A42425;
  box-shadow: 0 0 2px 0 gray;
}
.mobileMenu .mobileSocial .mobileSocialItem:hover svg path {
  fill: #A42425;
}
.mobileMenu .mobileSocial .mobileSocialItem:not(:last-child) {
  margin-right: 14px;
}

.mobileMenuNone {
  visibility: hidden;
  left: -5000px;
  transition: all ease 2s;
}

#polarCategory .polarCategory {
  padding: 20px 0 40px 0;
}
#polarCategory .polarCategory .polarCategoryHead .polarCategoryHeadName {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 26px;
  color: #3c3c3c;
  text-transform: uppercase;
  text-align: center;
}
#polarCategory .polarCategory .polarCategoryBody {
  margin-top: 30px;
}
#polarCategory .polarCategory .polarCategoryBody .polarCategoryList {
  overflow-x: auto;
  padding-bottom: 7px;
  scroll-behavior: smooth;
}
#polarCategory .polarCategory .polarCategoryBody .polarCategoryList::-webkit-scrollbar {
  width: 0.8vw !important;
  height: 0.8vh !important;
}
#polarCategory .polarCategory .polarCategoryBody .polarCategoryList::-webkit-scrollbar-track {
  background-color: #ececec;
  height: 0.8vh !important;
}
#polarCategory .polarCategory .polarCategoryBody .polarCategoryList::-webkit-scrollbar-thumb {
  background-color: #A42425;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 0.8vh !important;
  opacity: 0.5;
  border-radius: 2px;
}
#polarCategory .polarCategory .polarCategoryBody .polarCategoryList::-webkit-scrollbar-thumb:hover {
  background-color: #A42425;
  opacity: 1;
  margin: 1px 0;
}
#polarCategory .polarCategory .polarCategoryBody ul {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 0;
}
#polarCategory .polarCategory .polarCategoryBody ul li {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 18px;
}
#polarCategory .polarCategory .polarCategoryBody ul li a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: white;
  background-color: #A42425;
  padding: 13px 25px;
  border-radius: 3px;
  width: max-content;
  width: -moz-max-content;
  transition: all ease 0.4s;
}
#polarCategory .polarCategory .polarCategoryBody ul li a:hover {
  background-color: white;
  color: #A42425;
  box-shadow: 0 0 10px 0 rgba(181, 168, 1, 0.5);
}
#polarCategory .polarCategory .polarCategoryBody ul li:not(:last-child) {
  margin-right: 10px;
}

#polarSlogan {
  background-image: url("../img/sloganBack.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#polarSlogan .polarSloganBack {
  background-color: rgba(0, 0, 0, 0.45);
}
#polarSlogan .polarSlogan {
  width: 80%;
  margin: auto;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 28px;
  color: white;
}

#featured {
  padding: 30px 0 20px 0;
}
#featured .featuredHead {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 26px;
  color: #3c3c3c;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
#featured .featuredCover .featuredItem .polarCard {
  background-color: white;
}
#featured .featuredCover .featuredItem .polarCard .polarCardHead {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
#featured .featuredCover .featuredItem .polarCard .polarCardHead img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 0.6s;
}
#featured .featuredCover .featuredItem .polarCard .polarCardHead:hover img {
  transform: scale(1.05);
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent {
  padding: 8px 0;
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentTop {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopName {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 18px;
  color: black;
  width: 65%;
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopPrice {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 20px;
  color: #A42425;
  display: flex;
  justify-content: right;
  align-items: center;
  width: 35%;
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopPrice .polarCardContentTopPriceCount {
  margin-right: 4px;
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBody {
  padding: 6px 0;
  border-top: 1px solid #b4b4b4;
  border-bottom: 1px solid #b4b4b4;
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBody .colorFeatures {
  padding: 0;
  display: flex;
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 16px;
  color: #a0a0a0;
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBody .colorFeatures .colorFeaturesItem {
  padding: 0;
  padding-right: 8px;
  width: -moz-max-content;
  width: max-content;
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBottom {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBottom .polarCardContentStorageCount {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 16px;
  color: #A42425;
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBottom .polarCardAddButton {
  text-decoration: none;
  background: none;
  border: none;
  background-color: #A42425;
  color: white;
  border-radius: 3px;
  border: 2px solid transparent;
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 20px;
  padding: 3px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.4s;
}
#featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBottom .polarCardAddButton:hover {
  color: #A42425;
  background-color: white;
  box-shadow: 0 0 7px #A42425;
  cursor: pointer;
}
#featured .owl-stage-outer {
  position: relative;
}
#featured .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -3vw;
  width: 20px;
  height: auto;
  padding: 0 15px;
}
#featured .owl-nav .owl-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#featured .owl-nav .owl-prev svg path {
  transition: all ease 0.4s;
}
#featured .owl-nav .owl-prev:hover svg path {
  fill: #A42425;
}
#featured .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: -3vw;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
}
#featured .owl-nav .owl-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#featured .owl-nav .owl-next svg path {
  transition: all ease 0.4s;
}
#featured .owl-nav .owl-next:hover svg path {
  fill: #A42425;
}

#advertising {
  margin-top: 10px;
  background-image: url("../img/advertisingBack.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#advertising .advertising {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 70px;
}
#advertising .advertising .advertisingName {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 44px;
  color: black;
  padding-left: 10px;
}
#advertising .advertising .advertisingImg {
  width: 300px;
}
#advertising .advertising .advertisingImg img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#advertising .advertising .advertisingContent {
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 20px;
  color: black;
  padding-left: 10px;
}

#suggestion .suggestion {
  padding-top: 30px;
}
#suggestion .suggestion .suggestionName {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 26px;
  color: #3c3c3c;
  text-align: center;
  text-transform: uppercase;
}
#suggestion .suggestion .suggestionBody {
  margin: 0 -8px;
  margin-top: 25px;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  height: 600px;
  margin: auto;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerLeft {
  height: 100%;
  width: 41.6666666667%;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerLeft .suggestionBodyItemLeft {
  height: 100%;
  padding: 8px;
  position: relative;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerLeft .suggestionBodyItemLeft img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerLeft .suggestionBodyItemLeft .suggestionBodyItemPos {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  padding: 6px 20px;
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 22px;
  color: black;
  text-transform: uppercase;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight {
  height: 100%;
  width: 58.3333333333%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight {
  width: 50%;
  height: 50%;
  padding: 8px;
  position: relative;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight .suggestionBodyItemPosAll {
  position: absolute;
  background-color: white;
  padding: 6px 20px;
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 22px;
  color: black;
  text-transform: uppercase;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight .suggestionBodyItemPos1 {
  bottom: 0;
  left: 0;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight .suggestionBodyItemPos2 {
  top: 0;
  right: 0;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight .suggestionBodyItemPos3 {
  bottom: 0;
  right: 0;
}
#suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight .suggestionBodyItemPos4 {
  top: 0;
  left: 0;
}

#polarVideo {
  padding-top: 30px;
}
#polarVideo .polarVideoHead {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 26px;
  color: #3c3c3c;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
#polarVideo .polarVideoCover .polarVideoItem {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}
#polarVideo .polarVideoCover .polarVideoItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#polarVideo .polarVideoCover .polarVideoItem .polarVideoPlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.4s;
}
#polarVideo .polarVideoCover .polarVideoItem .polarVideoPlay svg {
  width: 20%;
  fill: rgba(250, 250, 250, 0.7);
}
#polarVideo .polarVideoCover .polarVideoItem:hover .polarVideoPlay {
  transform: scale(1.05);
}
#polarVideo .owl-stage-outer {
  position: relative;
}
#polarVideo .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -3vw;
  width: 20px;
  height: auto;
  padding: 0 15px;
}
#polarVideo .owl-nav .owl-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#polarVideo .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: -3vw;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
}
#polarVideo .owl-nav .owl-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#partners {
  padding: 30px 0 60px 0;
}
#partners .partnersHead {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 26px;
  color: #3c3c3c;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
#partners .partnersCover .partnersItem {
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#partners .partnersCover .partnersItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#fouter {
  background-color: #A42425;
}
#fouter .fouter {
  text-align: center;
  padding: 25px 0;
}
#fouter .fouter .fouterLogo {
  padding-top: 10px;
  display: flex;
  justify-content: center;
}
#fouter .fouter .fouterLogo svg {
  width: 135px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#fouter .fouter .fouterSocial {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#fouter .fouter .fouterSocial .fouterSocialBox {
  display: flex;
  align-items: center;
}
#fouter .fouter .fouterSocial .fouterSocialBox .fouterSocialItem {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all ease 0.7s;
}
#fouter .fouter .fouterSocial .fouterSocialBox .fouterSocialItem svg {
  width: 60%;
  height: 60%;
}
#fouter .fouter .fouterSocial .fouterSocialBox .fouterSocialItem svg path {
  fill: black;
  transition: all ease 0.7s;
}
#fouter .fouter .fouterSocial .fouterSocialBox .fouterSocialItem:hover {
  background-color: black;
  box-shadow: 0 0 2px 0 gray;
}
#fouter .fouter .fouterSocial .fouterSocialBox .fouterSocialItem:hover svg path {
  fill: white;
}
#fouter .fouter .fouterSocial .fouterSocialBox .fouterSocialText {
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 18px;
  color: black;
  margin-left: 8px;
}
#fouter .fouter .fouterSocial .fouterSocialBox:not(:last-child) {
  margin-right: 14px;
}
#fouter .fouter .fouterCopyright {
  margin-top: 25px;
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 16px;
  color: white;
}

#polarAbout {
  background-image: url("../img/aboutBack.png");
  background-repeat: no-repeat;
  background-position: right 45px;
  background-size: 550px auto;
  padding-bottom: 50px;
}
#polarAbout .polarAbout .aboutHead {
  display: flex;
  align-items: center;
  padding: 50px 0;
}
#polarAbout .polarAbout .aboutHead .aboutHeadLeft {
  width: 50%;
}
#polarAbout .polarAbout .aboutHead .aboutHeadLeft .aboutHeadLeftName {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 28px;
  color: black;
}
#polarAbout .polarAbout .aboutHead .aboutHeadLeft .aboutHeadLeftContent {
  margin-top: 20px;
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 18px;
  color: black;
}
#polarAbout .aboutCertificate .aboutCertificateName {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 26px;
  color: #3c3c3c;
  text-align: center;
  margin-bottom: 30px;
}
#polarAbout .aboutCertificate .swiper {
  width: 100%;
  padding-bottom: 20px;
}
#polarAbout .aboutCertificate .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 250px;
  height: 400px;
}
#polarAbout .aboutCertificate .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

#products {
  padding: 30px 0;
}
#products .products .productsHead .productsHeadList {
  padding: 0;
  display: flex;
  justify-content: flex-end;
}
#products .products .productsHead .productsHeadList li {
  width: auto;
  padding: 0;
}
#products .products .productsHead .productsHeadList li .categoryFilterItemBox {
  display: flex;
}
#products .products .productsHead .productsHeadList li .categoryFilterItemBox .categoryFilterItem {
  background-color: white;
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  border: 2px solid #A42425;
  padding: 4px 18px;
  border-radius: 2px;
  transition: all ease 0.4s;
}
#products .products .productsHead .productsHeadList li .categoryFilterItemBox .categoryFilterItem .categoryFilterItemName {
  color: #A42425;
}
#products .products .productsHead .productsHeadList li .categoryFilterItemBox input {
  display: none;
}
#products .products .productsHead .productsHeadList li .categoryFilterItemBox input:checked ~ .categoryFilterItem {
  background-color: #A42425;
  color: white;
}
#products .products .productsHead .productsHeadList li .categoryFilterItemBox input:checked ~ .categoryFilterItem .categoryFilterItemName {
  color: white;
}
#products .products .productsHead .productsHeadList li input:checked ~ .categoryFilterItem {
  background-color: #A42425;
  color: white;
}
#products .products .productsHead .productsHeadList li input:checked ~ .categoryFilterItem .categoryFilterItemName {
  color: white;
}
#products .products .productsHead .productsHeadList li .categoryFilterItem:hover {
  background-color: #A42425;
  cursor: pointer;
}
#products .products .productsHead .productsHeadList li .categoryFilterItem:hover .categoryFilterItemName {
  color: white;
}
#products .products .productsHead .productsHeadList li .active {
  background-color: #A42425;
  color: white;
}
#products .products .productsHead .productsHeadList li:not(:last-child) {
  margin-right: 14px;
}
#products .products .productsBody {
  margin-top: 25px;
  display: flex;
}
#products .products .productsBody .productsBodyType {
  width: 16.6666666667%;
  padding-right: 20px;
  margin-right: auto;
  transition: all ease 0.4s;
}
#products .products .productsBody .productsBodyType .productsBodyTypeHead {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 22px;
  color: #A42425;
  padding-bottom: 5px;
  border-bottom: 1px solid #b4b4b4;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList {
  position: relative;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList ul {
  list-style-type: none;
  padding: 0;
  z-index: 99;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList ul li {
  padding: 0;
  margin-top: 8px;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp {
  display: flex;
  align-items: center;
  font-size: 1rem;
  cursor: pointer;
  margin: 0;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp input {
  display: none;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp input:checked ~ .checkboxMark {
  background-color: black;
  border: 0.1rem solid black;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp input:checked ~ .checkboxMark svg {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp .checkboxMark {
  position: relative;
  width: 1.05rem;
  height: 1.05rem;
  border: 0.1rem solid #bebebe;
  border-radius: 3px;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp .checkboxMark svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 68%;
  height: auto;
  transition: all ease 0.2s;
  opacity: 0;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp .checkboxMark svg path {
  fill: white;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp .productsBodyTypeListItemName {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 18px;
  color: #3b3b3b;
  margin-left: 6px;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList .filterProductBut {
  position: absolute;
  top: 42%;
  right: -60px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid #A42425;
  background-color: #A42425;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 0 6px 6px 0;
  transition: all ease 0.4s;
  z-index: 99;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList .filterProductBut svg {
  fill: white;
  width: 70%;
  height: 70%;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList .filterProductBut:hover {
  background-color: white;
  cursor: pointer;
}
#products .products .productsBody .productsBodyType .productsBodyTypeList .filterProductBut:hover svg {
  fill: #A42425;
}
#products .products .productsBody .productsBodyProducts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 83.3333333333%;
  margin: auto;
}
#products .products .productsBody .productsBodyProducts .productsItems {
  display: flex;
  width: 33.3333333333%;
  padding: 10px;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard {
  width: 100%;
  background-color: white;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardHead {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardHead img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 0.6s;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardHead:hover img {
  transform: scale(1.05);
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent {
  padding: 8px 0;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopName {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 18px;
  color: black;
  width: 65%;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopPrice {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 20px;
  color: #A42425;
  width: 35%;
  display: flex;
  justify-content: end;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopPrice .polarCardContentTopPriceCount {
  margin-right: 4px;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody {
  padding: 6px 0;
  border-top: 1px solid #b4b4b4;
  border-bottom: 1px solid #b4b4b4;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody .colorFeatures {
  padding: 0;
  display: flex;
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 16px;
  color: #a0a0a0;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody .colorFeatures .colorFeaturesItem {
  padding: 0;
  padding-right: 8px;
  width: -moz-max-content;
  width: max-content;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom .polarCardContentStorageCount {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 16px;
  color: #A42425;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom .polarCardAddButton {
  text-decoration: none;
  background: none;
  border: none;
  background-color: #A42425;
  color: white;
  border-radius: 3px;
  border: 2px solid transparent;
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 20px;
  padding: 3px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.4s;
}
#products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom .polarCardAddButton:hover {
  color: #A42425;
  background-color: white;
  box-shadow: 0 0 7px #A42425;
  cursor: pointer;
}
#products .products .productsBody .productsBodyProducts .productShow {
  display: flex;
}
#products .products .productsBody .productsBodyProducts .productShow2 {
  display: flex;
}

#contact .contact {
  padding: 100px 0;
  width: 80%;
  margin: 0 auto;
}
#contact .contact .contactHead {
  text-align: center;
}
#contact .contact .contactHead h1 {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 40px;
  color: #000;
}
#contact .contact .contactHead h2 {
  margin-top: 12px;
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 22px;
  color: #000;
}
#contact .contact .contactBody {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 15px;
}
#contact .contact .contactBody .contactBody1 {
  width: 50%;
  padding: 10px;
}
#contact .contact .contactBody .contactBody1 .contactItemDesing {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  height: 50px;
}
#contact .contact .contactBody .contactBody1 .contactItemDesing input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  font-size: 18px;
}
#contact .contact .contactBody .contactBody2 {
  width: 100%;
  padding: 10px;
}
#contact .contact .contactBody .contactBody2 .contactItemDesing2 {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  margin-top: 10px;
}
#contact .contact .contactBody .contactBody2 .contactItemDesing2 textarea {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  resize: none;
  font-size: 18px;
}
#contact .contact .contactBody .contactBody2 .contactItemDesing2 #contactComment::-moz-placeholder {
  position: absolute;
  left: 0;
  bottom: 5px;
}
#contact .contact .contactBody .contactBody2 .contactItemDesing2 #contactComment::placeholder {
  position: absolute;
  left: 0;
  bottom: 5px;
}
#contact .contact .contactBody .contactBody3 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}
#contact .contact .contactBody .contactBody3 #sendPolar {
  border: none;
  background: none;
  outline: none;
  padding: 5px 35px;
  background-color: #A42425;
  min-width: 120px;
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 22px;
  color: white;
  border-radius: 2px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  transition: all ease 0.4s;
}
#contact .contact .contactBody .contactBody3 #sendPolar:hover {
  background-color: white;
  color: #A42425;
  box-shadow: 0 0 10px 0 rgba(181, 168, 1, 0.5);
}

#product {
  padding: 30px 0 70px 0;
}
#product .product .productHead {
  width: 50%;
}
#product .product .productHead .productName {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 24px;
  color: black;
  text-transform: uppercase;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  display: -webkit-box !important;
  overflow: hidden !important;
}
#product .product .productLeft .productLeftImg {
  width: 100%;
  height: 500px;
}
#product .product .productLeft .productLeftImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#product .product .productLeft .productLeftContent {
  margin-top: 15px;
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  color: black;
  text-align: justify;
}
#product .product .productRight .colorSelectContainer {
  width: 100%;
  font-family: 'Nunito', sans-serif;
font-weight: 500;
}
#product .product .productRight .color-select {
  border: 2px solid #e3e3e3;
  padding: 10px;
  position: relative;
  width: 100%;
  height: 60px;
}
#product .product .productRight .color-select span {
  text-transform: uppercase;
  padding: 8px 0;
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
  font-size: 18px;
}
#product .product .productRight .color-select span .colorName {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
#product .product .productRight .color-select span .colorBox {
  margin-top: -8px;
  list-style: none;
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  background: #fff;
  float: left;
  margin: 0 12px;
  cursor: pointer;
}
#product .product .productRight .color-select .arrowVektorDown {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all ease 0.4s;
}
#product .product .productRight .color-select .arrowVektorDownUp {
  transform: translateY(-50%) rotateX(180deg);
  transition: all ease 0.4s;
}
#product .product .productRight .color-select ul {
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  overflow: visible;
  margin: 0;
  background-color: white;
  background-color: #f5f5f5;
  padding: 5px 15px;
  display: none;
  box-shadow: 0 0 5px 1px #A42425;
  max-height: 300px;
  overflow: auto;
}
#product .product .productRight .color-select ul:after {
  content: "";
  display: table;
  clear: both;
}
#product .product .productRight .color-select ul li {
  display: flex;
  justify-content: left;
  align-items: center;
  list-style: none;
  margin-top: 10px;
}
#product .product .productRight .color-select ul li .dataColorV {
  width: 50px;
  height: 50px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: gray solid 1px;
}
#product .product .productRight .color-select ul li .dataColorText {
  display: inline-flex;
  font-family: 'Nunito', sans-serif;
font-weight: 400;
}
#product .product .productRight .productRightWeight {
  margin-top: 20px;
}
#product .product .productRight .productRightWeight .productRightWeightName {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 18px;
  color: black;
  margin: 0;
}
#product .product .productRight .productRightWeight .productRightWeightList {
  margin-top: 10px;
}
#product .product .productRight .productRightWeight .productRightWeightList ul {
  display: flex;
  padding: 0;
}
#product .product .productRight .productRightWeight .productRightWeightList ul li {
  padding: 0;
}
#product .product .productRight .productRightWeight .productRightWeightList ul li .checkedCheckboxWeight {
  display: flex;
  align-items: center;
  margin: 0;
}
#product .product .productRight .productRightWeight .productRightWeightList ul li .checkedCheckboxWeight input {
  display: none;
}
#product .product .productRight .productRightWeight .productRightWeightList ul li .checkedCheckboxWeight input:checked ~ .checkboxMark {
  background-color: #A42425;
  color: white;
}
#product .product .productRight .productRightWeight .productRightWeightList ul li .checkedCheckboxWeight .checkboxMark {
  background-color: #e8e8e8;
  color: black;
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 18px;
  padding: 10px 21px;
  width: -moz-max-content;
  width: max-content;
}
#product .product .productRight .productRightWeight .productRightWeightList ul li .checkedCheckboxWeight .checkboxMark:hover {
  cursor: pointer;
}
#product .product .productRight .productRightWeight .productRightWeightList ul li:not(:last-child) {
  margin-right: 8px;
}
#product .product .productRight .productStorage {
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e3e3e3;
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  color: #A42425;
}
#product .product .productRight .productRightFeaturesList {
  margin-top: 15px;
}
#product .product .productRight .productRightFeaturesList ul {
  padding: 0;
}
#product .product .productRight .productRightFeaturesList ul li {
  padding: 0;
  padding-bottom: 2px;
  display: flex;
  align-items: center;
}
#product .product .productRight .productRightFeaturesList ul li .productRightFeaturesListLeft {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 18px;
  color: black;
  margin-right: 4px;
}
#product .product .productRight .productRightFeaturesList ul li .productRightFeaturesListRight {
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 18px;
  color: #696969;
}
#product .product .productRight .productRightFeaturesList ul li:not(:first-child) {
  margin-top: 5px;
}
#product .product .productRight .productRightFouter {
  margin-top: 40px;
}
#product .product .productRight .productRightFouter .productRightFouterUp {
  display: flex;
  justify-content: right;
}
#product .product .productRight .productRightFouter .productRightFouterUp .productRightFouterUpPrice {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 26px;
  color: #A42425;
  display: flex;
  align-items: center;
}
#product .product .productRight .productRightFouter .productRightFouterUp .productRightFouterUpPrice .productRightFouterUpPriceCount {
  margin-right: 4px;
}
#product .product .productRight .productRightFouter .productRightFouterDown {
  margin-top: 20px;
  display: flex;
  justify-content: right;
  align-items: center;
}
#product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount {
  background-color: #e8e8e8;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 30px;
  /* Firefox */
}
#product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount .productRightFouterCountNum {
  width: 30px;
  height: auto;
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 24px;
  color: black;
  margin: 0 20px;
  background: none;
  border: none;
  outline: none;
  text-align: center;
}
#product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount input::-webkit-outer-spin-button,
#product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount input[type=number] {
  -moz-appearance: textfield;
}
#product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount button {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  background-color: #A42425;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount button svg {
  width: 65%;
  height: 65%;
  fill: white;
}
#product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount button:hover {
  cursor: pointer;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount button:hover svg {
  fill: #A42425;
}
#product .product .productRight .productRightFouter .productRightFouterDown .polarCardProductAddButton {
  background: none;
  border: none;
  background-color: #A42425;
  color: white;
  border-radius: 3px;
  border: 2px solid transparent;
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 24px;
  padding: 3px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 130px;
  transition: all ease 0.4s;
}
#product .product .productRight .productRightFouter .productRightFouterDown .polarCardProductAddButton:hover {
  color: #A42425;
  background-color: white;
  cursor: pointer;
}

#polarBasket {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: #A42425;
  box-shadow: 0 0 3px #A42425;
  z-index: 99;
  transition: all ease 0.4s;
}
#polarBasket .polarBasket {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 2px;
}
#polarBasket .polarBasket svg {
  width: 50%;
  height: 50%;
  transition: all ease 0.4s;
}
#polarBasket .polarBasketCountBlock {
  position: absolute;
  top: -16px;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fc1212;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  transition: all ease 0.4s;
}
#polarBasket .polarBasketCountBlock .polarBasketItemCount {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 20px;
  color: #fafafa;
}

#polarBasket:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.55);
}
#polarBasket:hover .polarBasket svg {
  transform: scale(1.05);
}
#polarBasket:hover .polarBasketCountBlock {
  transform: rotate(360deg);
}

#basket {
  padding: 50px 0;
}
#basket .basket .basketHead {
  text-align: center;
}
#basket .basket .basketHead .basketHeadName {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 28px;
  margin: 0;
  padding: 15px 0;
}
#basket .basket .basketInfoBlock {
  margin-top: 40px;
}
#basket .basket .basketInfoBlock .basketInfoImg {
  display: flex;
  justify-content: center;
  align-items: center;
}
#basket .basket .basketInfoBlock .basketInfoImg img {
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
#basket .basket .basketInfoBlock .basketInfoText {
  margin-top: 10px;
  display: block;
  text-align: center;
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 22px;
  padding: 15px 0;
}
#basket .basket .basketBody {
  margin-top: 40px;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList {
  padding: 0;
  display: flex;
  align-items: center;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItem {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 18px;
  text-align: center;
  padding: 0 4px;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItem .basketBodyHeadListItemName1 {
  width: 100%;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItem .basketBodyHeadListItemName2 {
  width: 23%;
  text-align: left;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItem .basketBodyHeadListItemName3 {
  width: 13%;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItem .basketBodyHeadListItemName4 {
  width: 12%;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItem .basketBodyHeadListItemName5 {
  width: 16%;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItem .basketBodyHeadListItemName6 {
  width: 20%;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItem .basketBodyHeadListItemName7 {
  width: 16%;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItem .basketBodyHeadListItemName8 {
  width: 100%;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItemSize1 {
  width: 12%;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItemSize2 {
  width: 83%;
  display: flex;
  align-items: center;
}
#basket .basket .basketBody .basketBodyHead .basketBodyHeadList .basketBodyHeadListItemSize3 {
  width: 5%;
}
#basket .basket .basketBody .basketBodyList {
  margin-top: 10px;
}
#basket .basket .basketBody .basketBodyList .basketMainList {
  padding: 0;
}
#basket .basket .basketBody .basketBodyList .basketMainList .basketMainListItem {
  margin-top: 5px;
  transition: all ease 0.4s;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock {
  display: flex;
  align-items: center;
  border-top: 1px solid #d4d4d4;
  padding: 15px 0;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainImg {
  display: flex;
  width: 100%;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainName {
  width: 100%;
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 16px;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainName .basketMainName1 {
  color: #a0a0a0;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainName .basketMainName2 {
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  display: -webkit-box !important;
  overflow: hidden !important;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock {
  width: 13%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock .basketMainColorText {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 14px;
  color: #a4a4a4;
  margin-right: 8px;
  display: none;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock .basketMainColor {
  width: 25px;
  height: 25px;
  background-color: orange;
  border-radius: 50%;
  margin-right: 8px;
  border: 1px solid #cfcfcf;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock .basketMainColorName {
  font-family: 'Nunito', sans-serif;
font-weight: 400;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainWeight {
  width: 12%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Nunito', sans-serif;
font-weight: 400;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainWeight .basketMainWeightName {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  font-size: 14px;
  color: #a4a4a4;
  margin-right: 8px;
  display: none;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainWeight .basketMainWeightCount {
  margin-right: 4px;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainPrice {
  width: 16%;
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 16px;
  color: #A42425;
  display: flex;
  justify-content: center;
  align-items: center;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainPrice .basketMainPriceCount {
  margin-right: 4px;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock {
  background-color: #e8e8e8;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  /* Firefox */
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock .basketMainQuantityCountNum {
  width: 20px;
  height: auto;
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  color: black;
  margin: 0 14px;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  font-size: 18px;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock input::-webkit-outer-spin-button,
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock input[type=number] {
  -moz-appearance: textfield;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock button {
  background: none;
  border: none;
  width: 20px;
  height: 20px;
  background-color: #A42425;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px 2px white;
  transition: all ease 0.4s;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock button svg {
  width: 65%;
  height: 65%;
  fill: white;
  transition: all ease 0.4s;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock button:hover {
  cursor: pointer;
  background-color: white;
  box-shadow: 0 0 5px 1px rgba(181, 168, 1, 0.5);
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock button:hover svg {
  fill: #A42425;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainPriceTotal {
  width: 16%;
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 16px;
  color: #A42425;
  display: flex;
  justify-content: center;
  align-items: center;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainPriceTotal .basketMainPriceTotalCount {
  margin-right: 4px;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainDeleteButBlock {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainDeleteButBlock .basketMainDeleteButton {
  border: none;
  background: none;
  outline: none;
  width: 22px;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainDeleteButBlock .basketMainDeleteButton svg {
  width: 100%;
  height: auto;
  transition: all ease 0.4s;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainDeleteButBlock .basketMainDeleteButton svg path {
  fill: rgba(255, 100, 100, 0.9);
  transition: all ease 0.2s;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainDeleteButBlock .basketMainDeleteButton:hover svg {
  transform: scale(1.05);
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainDeleteButBlock .basketMainDeleteButton:hover svg path {
  fill: rgb(255, 18, 18);
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem:not(:last-child) {
  padding-right: 8px;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListItemSize1 {
  width: 12%;
  padding-right: 10px !important;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListItemSize2 {
  width: 83%;
  display: flex;
  align-items: center;
}
#basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListItemSize3 {
  width: 5%;
}
#basket .basket .basketFouter {
  margin-top: 50px;
}
#basket .basket .basketFouter .basketFouterTop {
  display: flex;
  justify-content: right;
  align-items: center;
}
#basket .basket .basketFouter .basketFouterTop .basketFouterTopBlock {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 7px;
}
#basket .basket .basketFouter .basketFouterTop .basketFouterTopName {
  color: black;
  margin-right: 14px;
}
#basket .basket .basketFouter .basketFouterTop .basketFouterTopTotalPrice {
  color: #A42425;
}
#basket .basket .basketFouter .basketFouterTop .basketFouterTopTotalPrice .basketFouterTopTotalPriceCount {
  margin-right: 5px;
}
#basket .basket .basketFouter .basketFouterBottom {
  margin-top: 60px;
  display: flex;
  justify-content: right;
  align-items: center;
}
#basket .basket .basketFouter .basketFouterBottom button {
  border: none;
  outline: none;
  background: none;
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 18px;
  border-radius: 2px;
}
#basket .basket .basketFouter .basketFouterBottom .basketClearButton {
  color: #A42425;
  background-color: white;
  border: 1px solid #A42425;
  padding: 10px 30px;
  margin-right: 15px;
  transition: all ease 0.4s;
}
#basket .basket .basketFouter .basketFouterBottom .basketClearButton:hover {
  color: white;
  background-color: #A42425;
  border: 1px solid white;
  box-shadow: 0 0 5px #A42425;
}
#basket .basket .basketFouter .basketFouterBottom .baskeConfirmButton {
  color: white;
  background-color: #A42425;
  border: 1px solid white;
  padding: 10px 50px;
  min-width: 100px;
  transition: all ease 0.4s;
}
#basket .basket .basketFouter .basketFouterBottom .baskeConfirmButton:hover {
  color: #A42425;
  background-color: white;
  border: 1px solid #A42425;
  box-shadow: 0 0 7px 2px rgba(181, 168, 1, 0.5);
}

.swal2-popup {
  font-family: 'Nunito', sans-serif;
font-weight: 400;
}



#polarHeaderDesingPage {
  padding: 20px 0;
  position: absolute;
  top: 0;
  z-index: 999;
  width: 100%;
}

#polarHeaderDesingPage .polarHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#polarHeaderDesingPage .polarHeader .polarHeaderLeft {
  display: flex;
  align-items: center;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle {
  display: flex;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarHeaderMenuList {
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 20px;
  display: flex;
  align-items: center;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarHeaderMenuList li a {
  text-decoration: none;
  color: black;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarHeaderMenuList li:not(:last-child) {
  margin-right: 20px;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarHeaderMenuList li a::after {
  content: "";
  display: flex;
  margin-top: 5px;
  width: 0%;
  height: 2.5px;
  background-color: #A42425;
  transition: all ease 0.4s;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarHeaderMenuList li:hover a::after {
  content: "";
  display: flex;
  width: 100%;
  height: 2.5px;
  background-color: #A42425;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarHeaderMenuList .active a::after {
  content: "";
  display: flex;
  width: 100%;
  height: 2.5px;
  background-color: #A42425;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock {
  min-width: 70px;
  position: relative;
  margin-left: 15px;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .cdrop {
  width: 100%;
  height: 40px;
  background: none;
  border: none;
  outline: none;
  padding: 4px 8px;
  overflow: hidden;
  display: flex;
  justify-content: left;
  align-items: center;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .cdrop svg {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
  object-fit: contain;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .cdrop::after {
  content: "";
  display: inline-flex;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background-image: url(../img/arrowVektorDown.png);
  background-repeat: no-repeat;
  background-position: center;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .hovcard {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  padding: 2px 0;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .hovcard .flaqLangItem {
  display: flex;
  justify-content: center;
  padding: 2px;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .hovcard .flaqLangItem svg {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .hovcard .flaqLangItem:hover {
  cursor: pointer;
  background-color: #f5f6ff;
}

#polarHeaderDesingPage .polarHeader .polarHeaderMiddle .polarMobileLanguageBlock .hovcard-active {
  display: block;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight {
  display: flex;
  align-items: center;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarMobileLanguageBlock {
  min-width: 70px;
  position: relative;
  margin-right: 15px;
  display: none;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarMobileLanguageBlock .cdrop {
  width: 100%;
  height: 40px;
  background: none;
  border: none;
  outline: none;
  padding: 4px 8px;
  background-color: transparent;
  overflow: hidden;
  display: flex;
  justify-content: left;
  align-items: center;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarMobileLanguageBlock .cdrop svg {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
  object-fit: contain;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarMobileLanguageBlock .cdrop::after {
  content: "";
  display: inline-flex;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background-image: url(../img/arrowVektorDown.png);
  background-repeat: no-repeat;
  background-position: center;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarMobileLanguageBlock .hovcard {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  padding: 2px 0;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarMobileLanguageBlock .hovcard .flaqLangItem {
  display: flex;
  justify-content: center;
  padding: 2px;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarMobileLanguageBlock .hovcard .flaqLangItem svg {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarMobileLanguageBlock .hovcard .flaqLangItem:hover {
  cursor: pointer;
  background-color: #f5f6ff;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarMobileLanguageBlock .hovcard-active {
  display: block;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-color: #A42425;
  border-radius: 50%;
  border: 1px solid transparent;
  box-shadow: 0 0 4px 0 #fff;
  transition: all ease 0.7s;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch svg {
  width: 60%;
  height: 60%;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch svg path {
  transition: all ease 0.7s;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch:hover {
  background-color: white;
  border: 1px solid #A42425;
  box-shadow: 0 0 2px 0 gray;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch:hover svg path {
  fill: #A42425;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderMenuButBlock {
  display: none;
  justify-content: center;
  align-items: center;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderMenuButBlock .polarMenuBut {
  background: none;
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background-color: #A42425;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  box-shadow: 0 0 4px 1px #fff;
  transition: all ease 0.4s;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderMenuButBlock .polarMenuBut span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  transition: all ease 0.4s;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderMenuButBlock .polarMenuBut span:not(:last-child) {
  margin-bottom: 4px;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderMenuButBlock .polarMenuBut:hover {
  background-color: white;
  box-shadow: 0 0 4px 1px #A42425;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderMenuButBlock .polarMenuBut:hover span {
  background-color: #A42425;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSocial {
  display: flex;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #A42425;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all ease 0.7s;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing svg {
  width: 60%;
  height: 60%;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing svg path {
  transition: all ease 0.7s;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing:hover {
  background-color: white;
  border: 1px solid #A42425;
  box-shadow: 0 0 2px 0 gray;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing:hover svg path {
  fill: #A42425;
}

#polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSocial .polarHeaderSocialDesing:not(:last-child) {
  margin-right: 10px;
}

#polarHeaderDesingPage .polarHeader .searchBlock {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 43px;
  box-shadow: 0 0 5px #A42425;
  border-radius: 5px;
  overflow: hidden;
  padding-left: 15px;
  padding-right: 40px;
  background-color: white;
}

#polarHeaderDesingPage .polarHeader .searchBlock form {
  height: 100%;
}

#polarHeaderDesingPage .polarHeader .searchBlock form .searchInput {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}

#polarHeaderDesingPage .polarHeader .searchBlock .closeSearch {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  outline: none;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#polarHeaderDesingPage .polarHeader .searchBlock .closeSearch svg {
  width: 100%;
  height: 100%;
  fill: #a0a0a0;
}

#polarHeaderDesingPage .polarHeader .searchBlockNone {
  display: none;
}

#desingPage {
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg {
  display: none;
  width: 100%;
  transition: all ease 0.4s;
}

#desingPage .desingPage .desingPageImg img {
  width: 100%;
  height: 100%;
}

#desingPage .desingPage .desingPageImgActive {
  display: flex;
}

#desingPage .desingPage .desingPageImg1 {
  position: relative;
  width: 100%;
  height: 100%;
}

#desingPage .desingPage .desingPageImg1 .desingPageImg1Roof {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg1 .desingPageImg1Roof svg {
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg1 .desingPageImg1Roof svg g path {
  transition: all ease 0.4s;
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg1 .desingPageImg1Wall {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg1 .desingPageImg1Wall svg {
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg1 .desingPageImg1Wall svg g path {
  transition: all ease 0.4s;
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg2 {
  position: relative;
  width: 100%;
  height: 100%;
}

#desingPage .desingPage .desingPageImg2 .desingPageImg2Roof {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg2 .desingPageImg2Roof svg {
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg2 .desingPageImg2Roof svg g path {
  transition: all ease 0.4s;
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg2 .desingPageImg2Wall {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg2 .desingPageImg2Wall svg {
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

#desingPage .desingPage .desingPageImg2 .desingPageImg2Wall svg g path {
  transition: all ease 0.4s;
  mix-blend-mode: multiply;
}

@media print {
  body * {
    display: none;
  }
  #polarHeader * {
    display: none;
  }
  @page {
    size: landscape;
  }

  #desingPage,
  #desingPage * {
    display: inline;
    margin: 0;
  }

  #interior-print-design,
  #interior-print-design * {
    display: inline;
    margin: 0;
  }

  #design-print-codes{
    position: absolute;
    bottom: 20px;
    background-color: #fff;
  }

}

.desingPageBody {
  margin-top: 15px;
}

.desingPageBody .desingPageBodyName {
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  font-size: 18px;
  display: flex;
  justify-content: center;
}

.desingPageBody .desingPageBodyButton {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.desingPageBody .desingPageBodyButton .desingPageBodyButtonStyle {
  padding: 5px 24px 5px 14px;
  background: none;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #a8a8a8;
  color: white;
  font-family: 'Nunito', sans-serif;
font-weight: 700;
  font-size: 14px;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  transition: all ease 0.4s;
}

.desingPageBody .desingPageBodyButton .desingPageBodyButtonStyle .desingPageBodyButtonStyleImg {
  margin-right: 12px;
}

.desingPageBody .desingPageBodyButton .desingPageBodyButtonStyle1 {
  margin-right: 10px;
}

.desingPageBody .desingPageBodyButton .desingPageBodyButtonStyle2 {
  margin-left: 10px;
}

.desingPageBody .desingPageBodyButton .desingPageBodyButtonStyleActive {
  background-color: #a42425;
}

.designPageFouter {
  margin-top: 35px;
  margin-bottom: 150px;
}

.designPageFouter .designPageColorSelect .designPageColorSelectName {
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  margin-bottom: 4px;
  font-size: 17px;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .colorSelectContainer {
  width: 100%;
  font-family: 'Nunito', sans-serif;
font-weight: 500;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select {
  border: 2px solid #e3e3e3;
  padding: 10px;
  position: relative;
  width: 100%;
  height: 50px;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select span {
  padding: 10px 0;
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
  font-size: 17px;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select span .colorName {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select span .colorBox {
  margin-top: -8px;
  list-style: none;
  width: 26px;
  height: 26px;
  display: block;
  border-radius: 50%;
  background: #fff;
  float: left;
  margin: 0 12px 0 6px;
  cursor: pointer;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select .arrowVektorDown {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all ease 0.4s;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select .arrowVektorDownUp {
  transform: translateY(-50%) rotateX(180deg);
  transition: all ease 0.4s;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select ul {
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  overflow: visible;
  margin: 0;
  background-color: white;
  padding: 5px 0;
  display: none;
  box-shadow: 0 0 5px 1px #b5a801;
  max-height: 300px;
  overflow: auto;
  z-index: 10;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select ul:after {
  content: "";
  display: table;
  clear: both;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select ul li {
  display: flex;
  justify-content: left;
  align-items: center;
  list-style: none;
  margin-top: 10px;
  padding: 0 15px;
  transition: all ease 0.4s;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select ul li .dataColorV {
  width: 30px;
  height: 30px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: gray solid 1px;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select ul li .dataColorText {
  display: inline-flex;
  font-family: 'Nunito', sans-serif;
font-weight: 400;
}

.designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select ul li:hover {
  cursor: pointer;
  background-color: white;
}

.designPageFouter .designPageFouterPrint {
  display: flex;
  align-items: end;
}

.designPageFouter .designPageFouterPrint .designPageFouterPrintButton {
  border: none;
  background: none;
  outline: none;
  padding: 13px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #a42425;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.25);
}

.designPageFouter .designPageFouterPrint .designPageFouterPrintButton .designPageFouterPrintButtonImg {
  margin-right: 4px;
}

.designPageFouter .designPageFouterPrint .designPageFouterPrintButton .designPageFouterPrintButtonText {
  font-family: 'Nunito', sans-serif;
font-weight: 700;
  font-size: 12px;
  color: white;
}

.designPageFouter .designPageFouterPrint .designPageFouterPrintButton:hover {
  box-shadow: rgba(0, 0, 0, 0.55);
}

@font-face {
  font-family: 'Nunito', sans-serif;
font-weight: 400;
  src: url(fonts/Poppins/Poppins-Regular.ttf);
}
@font-face {
  font-family: 'Nunito', sans-serif;
font-weight: 500;
  src: url(fonts/Poppins/Poppins-Medium.ttf);
}
@font-face {
  font-family: 'Nunito', sans-serif;
font-weight: 600;
  src: url(fonts/Poppins/Poppins-SemiBold.ttf);
}
@font-face {
  font-family: 'Nunito', sans-serif;
font-weight: 700;
  src: url(fonts/Poppins/Poppins-Bold.ttf);
}
.list_reset {
  list-style-type: none;
  margin: 0;
}

.buuton_reset {
  border: none;
  outline: none;
  background: none;
}

@media only screen and (max-width: 1400px) {
  #products .products .productsBody {
    margin-top: 25px;
    display: flex;
  }
  #products .products .productsBody .productsBodyProducts {
    margin: -10px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems {
    padding: 10px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardHead {
    height: 280px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent {
    padding: 8px 0;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopName {
    font-size: 16px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopPrice {
    font-size: 18px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody {
    padding: 6px 0;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody .colorFeatures {
    font-size: 14px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody .colorFeatures .colorFeaturesItem {
    padding-right: 5px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom .polarCardContentStorageCount {
    font-family: 'Nunito', sans-serif;
font-weight: 500;
    font-size: 16px;
    color: #A42425;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom .polarCardAddButton {
    font-size: 18px;
    padding: 2px 22px;
    min-width: 130px;
  }
}
@media only screen and (max-width: 1199.9px) {
  #polarHeader .polarHeader .polarHeaderMiddle .polarHeaderMenuList {
    font-size: 18px;
  }
  #products .products .productsHead .productsHeadList li button {
    font-size: 16px;
    padding: 4px 17px;
  }
  #products .products .productsBody .productsBodyType .productsBodyTypeHead {
    font-size: 20px;
  }
  #products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp {
    font-size: 0.8rem;
  }
  #products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp .productsBodyTypeListItemName {
    font-size: 16px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardHead {
    height: 240px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopName {
    font-size: 14px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopPrice {
    font-size: 16px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody .colorFeatures {
    font-size: 12px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody .colorFeatures .colorFeaturesItem {
    padding-right: 4px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom .polarCardContentStorageCount {
    font-size: 14px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom .polarCardAddButton {
    font-size: 16px;
    padding: 2px 18px;
  }
  #contact .contact {
    padding: 90px 0;
    width: 85%;
  }
  #contact .contact .contactHead h1 {
    font-size: 32px;
  }
  #contact .contact .contactHead h2 {
    font-size: 22px;
  }
  #contact .contact .contactBody {
    margin-top: 15px;
  }
  #contact .contact .contactBody .contactBody1 {
    padding: 10px;
  }
  #contact .contact .contactBody .contactBody1 .contactItemDesing {
    width: 100%;
  }
  #contact .contact .contactBody .contactBody1 .contactItemDesing input {
    font-size: 18px;
  }
  #contact .contact .contactBody .contactBody2 {
    padding: 10px;
  }
  #contact .contact .contactBody .contactBody2 .contactItemDesing2 textarea {
    font-size: 18px;
  }
  #contact .contact .contactBody .contactBody3 {
    margin-top: 40px;
  }
  #contact .contact .contactBody .contactBody3 #sendPolar {
    padding: 5px 35px;
    font-size: 22px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (max-width: 991.9px) {
  #polarHeader .polarHeader .polarHeaderLeft .polarHeaderLogo {
    display: inline-flex;
    width: 120px;
  }
  #polarHeader .polarHeader .polarHeaderLeft .polarHeaderLogo svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #polarHeader .polarHeader .polarHeaderMiddle {
    display: none;
  }
  #polarHeader .polarHeader .polarHeaderRight .polarMobileLanguageBlock {
    display: flex;
  }
  #polarHeader .polarHeader .polarHeaderRight .polarHeaderMenuButBlock {
    display: flex;
  }
  #polarHeader .polarHeader .polarHeaderRight .polarHeaderSocial {
    display: none;
  }
  #polarHeader .polarHeader .mobileMenu {
    display: block;
  }
  #polarHeader .polarHeader .mobileMenuNone {
    display: block;
  }
  .mobileMenu {
    display: block;
  }
  #polarCategory .polarCategory .polarCategoryHead .polarCategoryHeadName {
    font-size: 24px;
  }
  #polarCategory .polarCategory .polarCategoryBody ul li {
    font-size: 16px;
  }
  #polarCategory .polarCategory .polarCategoryBody ul li a {
    padding: 10px 22px;
  }
  #polarSlogan .polarSlogan {
    width: 90%;
    height: 300px;
    font-size: 24px;
  }
  #featured {
    padding: 25px 0 15px 0;
  }
  #featured .featuredHead {
    font-size: 24px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardHead {
    height: 280px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent {
    padding: 8px 0;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentTop {
    padding: 5px 0;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopName {
    font-size: 18px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopPrice {
    font-size: 20px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBody {
    padding: 6px 0;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBody .colorFeatures {
    font-size: 16px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBody .colorFeatures .colorFeaturesItem {
    padding-right: 7px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBottom {
    padding: 8px 0;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBottom .polarCardContentStorageCount {
    font-size: 16px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBottom .polarCardAddButton {
    font-size: 20px;
    padding: 3px 22px;
  }
  #featured .owl-nav {
    display: none;
  }
  #advertising {
    margin-top: 10px;
  }
  #advertising .advertising {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  #advertising .advertising .advertisingName {
    font-size: 32px;
  }
  #advertising .advertising .advertisingImg {
    width: 250px;
  }
  #advertising .advertising .advertisingContent {
    font-size: 20px;
  }
  #suggestion .suggestion {
    padding-top: 25px;
  }
  #suggestion .suggestion .suggestionName {
    font-size: 24px;
  }
  #suggestion .suggestion .suggestionBody {
    margin-top: 25px;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer {
    height: 450px;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerLeft .suggestionBodyItemLeft .suggestionBodyItemPos {
    padding: 5px 18px;
    font-size: 20px;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight .suggestionBodyItemPosAll {
    padding: 5px 18px;
    font-size: 20px;
  }
  #polarVideo {
    padding-top: 30px;
  }
  #polarVideo .polarVideoHead {
    font-size: 24px;
    margin-bottom: 15px;
  }
  #polarVideo .polarVideoCover .polarVideoItem {
    width: 100%;
    height: 280px;
  }
  #polarVideo .owl-nav {
    display: none;
  }
  #partners {
    padding: 20px 0 50px 0;
  }
  #partners .partnersHead {
    font-size: 24px;
    margin-bottom: 15px;
  }
  #partners .partnersCover .partnersItem {
    height: 120px;
  }
  #fouter .fouter {
    padding: 20px 0;
  }
  #fouter .fouter .fouterLogo svg {
    width: 125px;
  }
  #fouter .fouter .fouterSocial {
    margin-top: 25px;
  }
  #fouter .fouter .fouterSocial .fouterSocialBox .fouterSocialItem {
    width: 30px;
    height: 30px;
  }
  #fouter .fouter .fouterSocial .fouterSocialBox .fouterSocialText {
    font-size: 18px;
  }
  #fouter .fouter .fouterSocial .fouterSocialBox:not(:last-child) {
    margin-right: 12px;
  }
  #polarAbout {
    background-image: none;
  }
  #polarAbout .polarAbout .aboutHead {
    padding: 30px 0;
  }
  #polarAbout .polarAbout .aboutHead .aboutHeadLeft {
    width: 100%;
  }
  #polarAbout .polarAbout .aboutHead .aboutHeadLeft .aboutHeadLeftName {
    font-size: 24px;
  }
  #polarAbout .polarAbout .aboutHead .aboutHeadLeft .aboutHeadLeftContent {
    font-size: 18px;
  }
  #polarAbout .aboutCertificate .aboutCertificateName {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #polarAbout .aboutCertificate .swiper {
    padding-bottom: 20px;
  }
  #polarAbout .aboutCertificate .swiper-slide {
    height: 350px;
  }
  #products .products .productsBody {
    margin: 25px -10px 0 -10px;
  }
  #products .products .productsBody .productsBodyType {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: -moz-max-content;
    width: max-content;
    background-color: white;
    padding: 15px 20px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    z-index: 99;
  }
  #products .products .productsBody .productsBodyType .productsBodyTypeHead {
    font-size: 20px;
  }
  #products .products .productsBody .productsBodyType .productsBodyTypeList ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  #products .products .productsBody .productsBodyType .productsBodyTypeList ul li {
    padding: 0;
    margin-top: 8px;
  }
  #products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp .checkboxMark {
    width: 1rem;
    height: 1rem;
  }
  #products .products .productsBody .productsBodyType .productsBodyTypeList ul li .checkedCheckboxComp .productsBodyTypeListItemName {
    font-size: 16px;
    margin-left: 5px;
  }
  #products .products .productsBody .productsBodyType .productsBodyTypeList .filterProductBut {
    display: flex;
  }
  #products .products .productsBody .productsBodyTypeNone {
    width: 0;
    padding: 0;
    margin: 0;
    transition: all ease 0.4s;
  }
  #products .products .productsBody .productsBodyTypeNone .productsBodyTypeHead {
    overflow: hidden;
  }
  #products .products .productsBody .productsBodyTypeNone .productsBodyTypeList ul {
    overflow: hidden;
  }
  #products .products .productsBody .productsBodyTypeNone .productsBodyTypeList .filterProductBut {
    display: flex;
    right: -40px;
  }
  #products .products .productsBody .productsBodyProducts {
    width: 100%;
    margin: 0;
  }
  #products .products .productsBody .productsBodyProducts .productsItems {
    width: 50%;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardHead {
    height: 250px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopName {
    font-size: 16px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopPrice {
    font-size: 18px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody .colorFeatures {
    font-size: 14px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody .colorFeatures .colorFeaturesItem {
    padding-right: 5px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom .polarCardContentStorageCount {
    font-size: 16px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom .polarCardAddButton {
    font-size: 18px;
    padding: 2px 20px;
  }
  #contact .contact {
    padding: 70px 0;
    width: 100%;
  }
  #contact .contact .contactHead h1 {
    font-size: 28px;
  }
  #contact .contact .contactHead h2 {
    font-size: 20px;
  }
  #contact .contact .contactBody .contactBody1 {
    padding: 10px;
  }
  #contact .contact .contactBody .contactBody1 .contactItemDesing {
    width: 100%;
  }
  #contact .contact .contactBody .contactBody1 .contactItemDesing input {
    font-size: 18px;
  }
  #contact .contact .contactBody .contactBody2 {
    padding: 10px;
  }
  #contact .contact .contactBody .contactBody2 .contactItemDesing2 textarea {
    font-size: 18px;
  }
  #contact .contact .contactBody .contactBody3 #sendPolar {
    font-size: 20px;
  }
  #product {
    padding: 20px 0 50px 0;
  }
  #product .product .productHead {
    width: 100%;
  }
  #product .product .productRight {
    margin-top: 25px;
  }
  #polarBasket {
    width: 60px;
    height: 60px;
  }
  #polarBasket .polarBasketCountBlock {
    top: -10px;
    width: 25px;
    height: 25px;
  }
  #polarBasket .polarBasketCountBlock .polarBasketItemCount {
    font-size: 16px;
  }
  #basket {
    padding: 50px 0;
  }
  #basket .basket .basketHead .basketHeadName {
    font-size: 24px;
  }
  #basket .basket .basketBody {
    margin-top: 40px;
  }
  #basket .basket .basketBody .basketBodyHead {
    display: none;
  }
  #basket .basket .basketBody .basketBodyList .basketMainList .basketMainListItem {
    margin-top: 5px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock {
    padding: 12px 0;
    align-items: start;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem {
    position: relative;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainImg {
    max-width: 90px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainName {
    width: 100%;
    display: flex;
    font-size: 14px;
    overflow: hidden;
    padding-right: 16px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainName .basketMainName1 {
    display: none;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainName .basketMainName2 {
    margin-right: 3px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock {
    width: 30%;
    padding: 12px 0;
    justify-content: left;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock .basketMainColorText {
    display: block;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock .basketMainColor {
    width: 21px;
    height: 21px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock .basketMainColorName {
    font-size: 14px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainWeight {
    width: 70%;
    padding: 12px 0;
    justify-content: left;
    font-size: 14px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainWeight .basketMainWeightName {
    display: block;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainPrice {
    width: 30%;
    justify-content: left;
    font-size: 14px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity {
    width: 30%;
    justify-content: left;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock {
    margin-right: 0;
    padding: 4px 16px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock .basketMainQuantityCountNum {
    width: 15px;
    margin: 0 12px;
    font-size: 16px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainPriceTotal {
    width: 40%;
    font-size: 14px;
    justify-content: right;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainDeleteButBlock .basketMainDeleteButton {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem:not(:last-child) {
    padding-right: 0;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListItemSize1 {
    width: auto;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListItemSize2 {
    width: calc(100% - 102px);
    flex-wrap: wrap;
    padding-right: 0;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListItemSize3 {
    width: 0%;
  }
  #basket .basket .basketFouter {
    margin-top: 45px;
  }
  #basket .basket .basketFouter .basketFouterTop .basketFouterTopBlock {
    font-size: 16px;
    padding-bottom: 5px;
  }
  #basket .basket .basketFouter .basketFouterTop .basketFouterTopName {
    margin-right: 10px;
  }
  #basket .basket .basketFouter .basketFouterBottom {
    margin-top: 30px;
  }
  #basket .basket .basketFouter .basketFouterBottom button {
    font-size: 16px;
  }
  #basket .basket .basketFouter .basketFouterBottom .basketClearButton {
    padding: 6px 15px;
    margin-right: 12px;
  }
  #basket .basket .basketFouter .basketFouterBottom .baskeConfirmButton {
    padding: 6px 30px;
  }
  .homeSlider {
    height: 400px;
  }
  .homeSlider .caption {
    padding-bottom: 40px;
  }
  .homeSlider .slide-title {
    font-size: 28px;
    width: 70%;
  }
  .homeSlider .slide-desc {
    font-size: 18px;
    width: 70%;
  }
  .homeSlider .nav a {
    width: 42px;
    height: 42px;
  }

  #polarHeaderDesingPage .polarHeader .polarHeaderLeft .polarHeaderLogo {
    display: inline-flex;
    width: 120px;
  }

  #polarHeaderDesingPage .polarHeader .polarHeaderLeft .polarHeaderLogo svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  #polarHeaderDesingPage .polarHeader .polarHeaderMiddle {
    display: none;
  }

  #polarHeaderDesingPage .polarHeader .polarHeaderRight .polarMobileLanguageBlock {
    display: flex;
  }

  #polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderMenuButBlock {
    display: flex;
  }

  #polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSocial {
    display: none;
  }

  #polarHeaderDesingPage .polarHeader .mobileMenu {
    display: block;
  }

  #polarHeaderDesingPage .polarHeader .mobileMenuNone {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  #polarHeader {
    padding: 15px 0;
  }
  #polarHeader .polarHeader .polarHeaderLeft .polarHeaderLogo {
    display: inline-flex;
    width: 108px;
  }
  #polarHeader .polarHeader .polarHeaderRight .polarHeaderSearchBlock {
    margin-right: 15px;
  }
  #polarHeader .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch {
    margin-right: 0;
    width: 32px;
    height: 32px;
  }
  #polarHeader .polarHeader .polarHeaderRight .polarHeaderMenuButBlock {
    display: flex;
  }
  #polarHeader .polarHeader .searchBlock {
    top: 55px;
    height: 42px;
  }
  #polarHeader .polarHeader .searchBlock .closeSearch {
    width: 20px;
    height: 20px;
  }
  .mobileMenu .mobileMenuHead .mobileHeaderLogo {
    width: 106px;
    display: inline-flex;
  }
  .mobileMenu .mobileMenuList .mobileMenuListItem {
    font-size: 18px;
  }
  .mobileMenu .mobileMenuList .mobileMenuListItem:not(:last-child) {
    margin-bottom: 10px;
  }
  .mobileMenu .mobileSocial .mobileSocialItem {
    width: 32px;
    height: 32px;
  }
  .mobileMenu .mobileSocial .mobileSocialItem:not(:last-child) {
    margin-right: 18px;
  }
  #polarCategory .polarCategory {
    padding-bottom: 30px;
  }
  #polarCategory .polarCategory .polarCategoryHead .polarCategoryHeadName {
    font-size: 20px;
  }
  #polarCategory .polarCategory .polarCategoryBody {
    margin-top: 15px;
  }
  #polarCategory .polarCategory .polarCategoryBody .polarCategoryList {
    padding-bottom: 4px;
  }
  #polarCategory .polarCategory .polarCategoryBody .polarCategoryList::-webkit-scrollbar {
    display: none;
  }
  #polarCategory .polarCategory .polarCategoryBody ul li {
    font-size: 16px;
    margin: 4px 0;
  }
  #polarCategory .polarCategory .polarCategoryBody ul li a {
    padding: 6px 16px;
  }
  #polarCategory .polarCategory .polarCategoryBody ul li:not(:last-child) {
    margin-right: 5px;
  }
  #polarSlogan .polarSlogan {
    width: 100%;
    height: 220px;
    font-size: 18px;
  }
  #featured {
    padding: 20px 0 10px 0;
  }
  #featured .featuredHead {
    font-size: 20px;
  }
  #featured .featuredCover .featuredItem .polarCard {
    padding: 0 4px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardHead {
    height: 260px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent {
    padding: 6px 0;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentTop {
    padding: 3px 0;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopName {
    font-size: 16px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopPrice {
    font-size: 18px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBody {
    padding: 4px 0;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBody .colorFeatures {
    font-size: 14px;
    justify-content: space-between;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBody .colorFeatures .colorFeaturesItem {
    padding-right: 5px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBottom {
    padding: 6px 0;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBottom .polarCardContentStorageCount {
    font-size: 14px;
  }
  #featured .featuredCover .featuredItem .polarCard .polarCardContent .polarCardContentBottom .polarCardAddButton {
    font-size: 16px;
    padding: 2px 14px;
  }
  #advertising {
    margin-top: 10px;
  }
  #advertising .advertising {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  #advertising .advertising .advertisingName {
    font-size: 24px;
  }
  #advertising .advertising .advertisingImg {
    width: 180px;
  }
  #advertising .advertising .advertisingContent {
    font-size: 16px;
  }
  #suggestion .suggestion {
    padding: 15px 0;
  }
  #suggestion .suggestion .suggestionName {
    font-size: 20px;
  }
  #suggestion .suggestion .suggestionBody {
    margin-top: 15px;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer {
    height: auto;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerLeft {
    height: 200px;
    width: 100%;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerLeft .suggestionBodyItemLeft {
    padding: 5px;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerLeft .suggestionBodyItemLeft .suggestionBodyItemPos {
    padding: 3px 15px;
    font-size: 16px;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight {
    width: 50%;
    height: 150px;
    padding: 5px;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight .suggestionBodyItemPos1 {
    padding: 3px 15px;
    font-size: 16px;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight .suggestionBodyItemPos2 {
    padding: 3px 15px;
    font-size: 16px;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight .suggestionBodyItemPos3 {
    padding: 3px 15px;
    font-size: 16px;
  }
  #suggestion .suggestion .suggestionBody .suggestionBodyContainer .suggestionBodyContainerRight .suggestionBodyItemRight .suggestionBodyItemPos4 {
    padding: 3px 15px;
    font-size: 16px;
  }
  #polarVideo {
    padding-top: 15px;
  }
  #polarVideo .polarVideoHead {
    font-size: 20px;
  }
  #polarVideo .polarVideoCover .polarVideoItem {
    height: 220px;
  }
  #polarVideo .polarVideoCover .polarVideoItem .polarVideoPlay svg {
    width: 15%;
  }
  #partners {
    padding: 20px 0 30px 0;
  }
  #partners .partnersHead {
    font-size: 20px;
  }
  #partners .partnersCover .partnersItem {
    height: 90px;
  }
  #fouter .fouter {
    padding: 15px 0;
  }
  #fouter .fouter .fouterLogo svg {
    width: 108px;
  }
  #fouter .fouter .fouterSocial {
    margin-top: 20px;
  }
  #fouter .fouter .fouterSocial .fouterSocialBox .fouterSocialItem {
    width: 27px;
    height: 27px;
  }
  #fouter .fouter .fouterSocial .fouterSocialBox .fouterSocialText {
    font-size: 16px;
  }
  #fouter .fouter .fouterSocial .fouterSocialBox:not(:last-child) {
    margin-right: 12px;
  }
  #fouter .fouter .fouterCopyright {
    font-size: 14px;
  }
  #polarAbout {
    background-image: none;
  }
  #polarAbout marg .polarAbout .aboutHead {
    padding: 20px 0;
  }
  #polarAbout marg .polarAbout .aboutHead .aboutHeadLeft .aboutHeadLeftName {
    font-size: 20px;
  }
  #polarAbout marg .polarAbout .aboutHead .aboutHeadLeft .aboutHeadLeftContent {
    font-size: 16px;
  }
  #polarAbout .aboutCertificate .aboutCertificateName {
    font-size: 20px;
    margin-bottom: 15px;
  }
  #polarAbout .aboutCertificate .swiper {
    padding-bottom: 10px;
  }
  #polarAbout .aboutCertificate .swiper-slide {
    height: 300px;
  }
  #products .products .productsHead .productsHeadList li .categoryFilterItemBox .categoryFilterItem {
    font-size: 14px;
    padding: 2px 10px;
  }
  #products .products .productsHead .productsHeadList li:not(:last-child) {
    margin-right: 8px;
  }
  #products .products .productsBody {
    margin-top: 10px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems {
    width: 100%;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardHead {
    height: 260px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopName {
    font-size: 16px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentTop .polarCardContentTopPrice {
    font-size: 18px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody .colorFeatures {
    font-size: 14px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBody .colorFeatures .colorFeaturesItem {
    padding-right: 5px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom .polarCardContentStorageCount {
    font-size: 16px;
  }
  #products .products .productsBody .productsBodyProducts .productsItems .polarCard .polarCardContent .polarCardContentBottom .polarCardAddButton {
    font-size: 16px;
    padding: 2px 16px;
  }
  #contact {
    margin-bottom: 80px;
  }
  #contact .contact {
    padding: 50px 0;
  }
  #contact .contact .contactHead h1 {
    font-size: 22px;
  }
  #contact .contact .contactHead h2 {
    font-size: 18px;
  }
  #contact .contact .contactBody {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  #contact .contact .contactBody .contactBody1 {
    width: 100%;
    padding: 0;
  }
  #contact .contact .contactBody .contactBody1 .contactItemDesing {
    width: 100%;
  }
  #contact .contact .contactBody .contactBody1 .contactItemDesing input {
    font-size: 16px;
  }
  #contact .contact .contactBody .contactBody1:not(:first-child) {
    margin-top: 15px;
  }
  #contact .contact .contactBody .contactBody2 {
    padding: 0;
  }
  #contact .contact .contactBody .contactBody2 .contactItemDesing2 textarea {
    font-size: 16px;
  }
  #contact .contact .contactBody .contactBody3 {
    margin-top: 30px;
  }
  #contact .contact .contactBody .contactBody3 #sendPolar {
    padding: 2px 25px;
    font-size: 20px;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  }
  #product {
    padding: 20px 0 50px 0;
  }
  #product .product .productHead {
    width: 100%;
  }
  #product .product .productHead .productName {
    font-size: 20px;
    color: black;
  }
  #product .product .productLeft .productLeftImg {
    height: 300px;
  }
  #product .product .productRight {
    margin-top: 20px;
  }
  #product .product .productRight .color-select {
    height: 50px;
  }
  #product .product .productRight .color-select span {
    text-transform: uppercase;
    padding: 8px 0;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    font-size: 16px;
  }
  #product .product .productRight .color-select span .colorBox {
    width: 25px;
    height: 25px;
  }
  #product .product .productRight .color-select ul {
    top: 50px;
  }
  #product .product .productRight .color-select ul li .dataColorV {
    width: 28px;
    height: 28px;
  }
  #product .product .productRight .productRightWeight {
    margin-top: 15px;
  }
  #product .product .productRight .productRightWeight .productRightWeightName {
    font-size: 18px;
  }
  #product .product .productRight .productRightWeight .productRightWeightList ul li .checkedCheckboxWeight .checkboxMark {
    font-size: 16px;
    padding: 6px 16px;
  }
  #product .product .productRight .productStorage {
    margin-top: 18px;
    padding-bottom: 4px;
  }
  #product .product .productRight .productRightFeaturesList ul li .productRightFeaturesListLeft {
    font-size: 16px;
  }
  #product .product .productRight .productRightFeaturesList ul li .productRightFeaturesListRight {
    font-size: 16px;
  }
  #product .product .productRight .productRightFeaturesList ul li:not(:first-child) {
    margin-top: 6px;
  }
  #product .product .productRight .productRightFouter {
    margin-top: 30px;
  }
  #product .product .productRight .productRightFouter .productRightFouterUp .productRightFouterUpPrice {
    font-size: 22px;
  }
  #product .product .productRight .productRightFouter .productRightFouterDown {
    margin-top: 18px;
    justify-content: center;
  }
  #product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount {
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
  }
  #product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount .productRightFouterCountNum {
    width: 30px;
    font-size: 20px;
    margin: 0 12px;
  }
  #product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount button {
    width: 24px;
    height: 24px;
  }
  #product .product .productRight .productRightFouter .productRightFouterDown .productRightFouterCount button:hover {
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  }
  #product .product .productRight .productRightFouter .productRightFouterDown .polarCardProductAddButton {
    font-size: 20px;
    padding: 3px 20px;
  }
  #polarBasket {
    right: 8px;
    width: 50px;
    height: 50px;
    transition: all ease 0.4s;
  }
  #polarBasket .polarBasketCountBlock {
    top: -8px;
    width: 20px;
    height: 20px;
  }
  #polarBasket .polarBasketCountBlock .polarBasketItemCount {
    font-size: 14px;
  }
  #basket {
    padding: 20px 0;
  }
  #basket .basket .basketHead .basketHeadName {
    font-size: 22px;
    padding: 12px 0;
  }
  #basket .basket .basketInfoBlock {
    margin-top: 30px;
  }
  #basket .basket .basketInfoBlock .basketInfoImg img {
    width: 90px;
  }
  #basket .basket .basketInfoBlock .basketInfoText {
    font-size: 18px;
  }
  #basket .basket .basketBody {
    margin-top: 40px;
  }
  #basket .basket .basketBody .basketBodyHead {
    display: none;
  }
  #basket .basket .basketBody .basketBodyList .basketMainList .basketMainListItem {
    margin-top: 5px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock {
    padding: 12px 0;
    align-items: start;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem {
    position: relative;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainImg {
    max-width: 90px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainName {
    width: 100%;
    display: flex;
    font-size: 14px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainName .basketMainName1 {
    display: none;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainName .basketMainName2 {
    margin-right: 3px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainName .basketMainName3 {
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    overflow: hidden !important;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock {
    width: 50%;
    padding: 12px 0;
    justify-content: left;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock .basketMainColorText {
    display: block;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock .basketMainColor {
    width: 21px;
    height: 21px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainColorBlock .basketMainColorName {
    font-size: 14px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainWeight {
    width: 50%;
    padding: 12px 0;
    justify-content: left;
    font-size: 14px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainWeight .basketMainWeightName {
    display: block;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainPrice {
    display: none;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity {
    width: 50%;
    justify-content: left;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock {
    margin-right: 0;
    padding: 4px 16px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainQuantity .basketMainQuantityBlock .basketMainQuantityCountNum {
    width: 15px;
    margin: 0 12px;
    font-size: 16px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainPriceTotal {
    width: 50%;
    font-size: 14px;
    justify-content: right;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem .basketMainDeleteButBlock .basketMainDeleteButton {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListBlockItem:not(:last-child) {
    padding-right: 0;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListItemSize1 {
    width: auto;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListItemSize2 {
    width: calc(100% - 102px);
    flex-wrap: wrap;
    padding-right: 0;
  }
  #basket .basket .basketBody .basketBodyList .basketMainListBlock .basketMainListItemSize3 {
    width: 0%;
  }
  #basket .basket .basketFouter {
    margin-top: 45px;
  }
  #basket .basket .basketFouter .basketFouterTop .basketFouterTopBlock {
    font-size: 16px;
    padding-bottom: 5px;
  }
  #basket .basket .basketFouter .basketFouterTop .basketFouterTopName {
    margin-right: 10px;
  }
  #basket .basket .basketFouter .basketFouterBottom {
    margin-top: 30px;
  }
  #basket .basket .basketFouter .basketFouterBottom button {
    font-size: 16px;
  }
  #basket .basket .basketFouter .basketFouterBottom .basketClearButton {
    padding: 6px 15px;
    margin-right: 12px;
  }
  #basket .basket .basketFouter .basketFouterBottom .baskeConfirmButton {
    padding: 6px 30px;
  }
  .swal2-popup {
    font-size: 14px !important;
  }
  .homeSlider, .homeSlider .slide-image {
    height: 280px;
  }
  .homeSlider .slide-content {
    padding-left: 10px;
  }
  .homeSlider .homeSliderBackCover{
    background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
  }

  .homeSlider .caption {
    padding-bottom: 0;
  }
  .homeSlider .slide-title {
    font-size: 22px;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .homeSlider .slide-desc {
    font-size: 16px;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  #polarHeaderDesingPage {
    padding: 15px 0;
  }

  #polarHeaderDesingPage .polarHeader .polarHeaderLeft .polarHeaderLogo {
    display: inline-flex;
    width: 108px;
  }

  #polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSearchBlock {
    margin-right: 15px;
  }

  #polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderSearchBlock .polarHeaderSearch {
    margin-right: 0;
    width: 32px;
    height: 32px;
  }

  #polarHeaderDesingPage .polarHeader .polarHeaderRight .polarHeaderMenuButBlock {
    display: flex;
  }

  #polarHeaderDesingPage .polarHeader .searchBlock {
    top: 55px;
    height: 42px;
  }

  #polarHeaderDesingPage .polarHeader .searchBlock .closeSearch {
    width: 20px;
    height: 20px;
  }

  .desingPageBody {
    margin-top: 12px;
  }

  .desingPageBody .desingPageBodyName {
    font-size: 17px;
  }

  .desingPageBody .desingPageBodyButton {
    margin-top: 12px;
  }

  .desingPageBody .desingPageBodyButton .desingPageBodyButtonStyle {
    padding: 5px 24px 5px 14px;
  }

  .desingPageBody .desingPageBodyButton .desingPageBodyButtonStyle .desingPageBodyButtonStyleImg {
    margin-right: 10px;
  }

  .desingPageBody .desingPageBodyButton .desingPageBodyButtonStyle1 {
    margin-right: 8px;
  }

  .desingPageBody .desingPageBodyButton .desingPageBodyButtonStyle2 {
    margin-left: 8px;
  }

  .designPageFouter {
    margin-top: 28px;
    margin-bottom: 100px;
  }

  .designPageFouter .designPageColorSelect {
    margin-top: 10px;
  }

  .designPageFouter .designPageColorSelect .designPageColorSelectName {
    font-size: 16px;
  }

  .designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select {
    height: 45px;
  }

  .designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select span {
    font-size: 16px;
  }

  .designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select span .colorBox {
    width: 24px;
    height: 24px;
  }

  .designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select ul {
    top: 45px;
    max-height: 200px;
  }

  .designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select ul li {
    transition: all ease 0.4s;
  }

  .designPageFouter .designPageColorSelect .designPageColorSelectBox .color-select ul li .dataColorV {
    width: 25px;
    height: 25px;
  }

  .designPageFouter .designPageFouterPrint {
    margin-top: 12px;
  }

  .designPageFouter .designPageFouterPrint .designPageFouterPrintButton {
    padding: 10px 14px;
  }

  .designPageFouter .designPageFouterPrint .designPageFouterPrintButton .designPageFouterPrintButtonImg {
    margin-right: 7px;
  }

  .designPageFouter .designPageFouterPrint .designPageFouterPrintButton .designPageFouterPrintButtonText {
    font-size: 12px;
  }
}
@media screen and (max-width: 360px) {
  #fouter .fouter .fouterSocial {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #fouter .fouter .fouterSocial .fouterSocialBox {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  #fouter .fouter .fouterSocial .fouterSocialBox:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  #products .products .productsHead .productsHeadList {
    justify-content: start;
  }
  #products .products .productsHead .productsHeadList li button {
    font-size: 12px;
    padding: 1px 8px;
  }
  #products .products .productsHead .productsHeadList li:not(:last-child) {
    margin-right: 7px;
  }
}/*# sourceMappingURL=style.css.map */

