@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,400;6..12,600;6..12,700&family=Style+Script&display=swap");
html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  background: #F1F1F1;
}

* {
  font-family: "Nunito Sans", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile_menu {
  display: none;
}

.hidden {
  display: none !important;
}

.wpage {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.big_help {
  text-align: center;
  font-size: 300%;
  margin: 40px auto;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: #F1F1F1;
  z-index: 10000;
}

.mobile_filter_button {
  display: none;
}

.newitems h2 {
  color: #1c8ac0;
  font-size: 200%;
  font-weight: lighter;
}
.newitems > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.newitems > ul a {
  display: block;
  padding: 4px 0;
  color: black;
  text-decoration: none;
}
.newitems > ul a .num {
  color: #9E1F63;
}

.message {
  position: absolute;
  z-index: 100;
  background: rgba(169, 72, 186, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100%;
  text-align: center;
  top: 100px;
  padding: 20px;
  color: white;
}

.faq_content blockquote {
  margin: 0;
  background: #eaeaea;
  padding: 20px;
  border-radius: 10px;
}
.faq_content blockquote ol {
  font-size: 90%;
}
.faq_content blockquote ol li::marker {
  color: #9E1F63;
}
.faq_content p {
  margin: 0;
}
.faq_content p.active b {
  color: #9E1F63;
}
.faq_content p b {
  display: block;
  padding: 10px 0;
  cursor: pointer;
  color: #1c8ac0;
}
.faq_content p b:hover {
  color: #9E1F63;
}

.cookiealert {
  -webkit-transition: 1s;
  transition: 1s;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  position: fixed;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 10px);
  padding: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  background: #9C27B0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  margin: 5px;
  border-radius: 10px;
}
.cookiealert a {
  color: white;
}
.cookiealert.show {
  pointer-events: all !important;
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.cookiealert button {
  border: none;
  font-size: 100%;
  background: rgba(255, 255, 255, 0.2509803922);
  color: white;
  padding: 10px 20px;
  border-radius: 40px;
}

.help {
  z-index: 1000;
  border-top-left-radius: 20px;
  background: #f1f1f1;
  font-size: 100%;
  max-width: 400px;
  padding: 20px;
  position: fixed;
  bottom: 0 !important;
  right: 0;
}
.help span {
  opacity: 0.6;
  display: block;
  font-size: 70%;
}
.help a {
  text-decoration: none !important;
  display: block;
  font-size: 90%;
  color: black !important;
}
.help a.wa {
  background: url("/_assets/images/wa.png") no-repeat 12px 6px #007f3c;
  background-size: 15px;
  color: white !important;
  border-radius: 15px;
  padding: 4px 0 4px 35px;
}
.help .help_items {
  display: -ms-grid;
  display: grid;
  gap: 4px;
}

.all_items a {
  background: #fff;
  color: #1c8ac0 !important;
  font-size: 70% !important;
  padding: 3px 6px !important;
  border-radius: 10px !important;
  margin-top: 10px !important;
  display: inline-block !important;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header > div.logo_nav {
  padding: 30px 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .logo {
  -webkit-transform: translateY(-11px);
          transform: translateY(-11px);
}
header nav span.num {
  font-size: 70%;
  opacity: 0.5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 15px;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  height: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  background: #1c8ac0;
  color: white;
}
header nav .item:hover h2 {
  opacity: 0.5;
}
header nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
header nav > ul li:hover .submenu {
  overflow: auto !important;
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  max-height: calc(100vh - 70px);
}
header nav > ul li:hover a:after {
  height: 30px;
}
header nav > ul li.selected > a {
  color: #1c8ac0;
  padding-bottom: 0px;
  font-weight: 600;
}
header nav > ul li a {
  position: relative;
  font-size: 100%;
  color: black;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
}
header nav > ul li a:after {
  position: absolute;
  content: "";
  z-index: 150;
  background: #1c8ac0;
  width: 100%;
  height: 0px;
  left: 0;
  top: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header nav > ul li a:hover {
  color: #1c8ac0;
}
header nav .submenu {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 65px;
  width: 100%;
  background: linear-gradient(180deg, rgb(241, 241, 241) 0%, rgb(241, 241, 241) 30px, rgb(18, 138, 192) 30px, rgba(43, 167, 222, 0.57) 100%);
  z-index: 100;
  padding-bottom: 50px;
}
header nav .submenu.opened {
  opacity: 1;
  pointer-events: all;
}
header nav .submenu a {
  color: white;
  font-size: 100%;
  padding: 3px 0;
  font-weight: normal;
}
header nav .submenu a:after {
  content: none;
}
header nav .submenu a:hover {
  opacity: 0.6;
  color: white !important;
}
header nav .submenu > ul {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  padding-top: 70px;
  padding-left: 160px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
header nav .submenu > ul h2 {
  color: white;
  opacity: 1;
  padding: 0;
  font-weight: lighter;
  margin: 0;
  font-size: 160%;
  margin-bottom: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
header nav .submenu .subsubmenu {
  margin-bottom: 40px;
}
header .icons_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  position: relative;
}
header .icons_top .langs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
header .icons_top .langs a {
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.062745098);
  color: black;
  text-decoration: none;
  opacity: 0.6;
}
header .icons_top .langs a:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
header .icons_top .langs a.selected {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2509803922);
}
header .icons_top .langs a:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
header .icons_top .langs a:hover {
  background: rgba(0, 0, 0, 0.2509803922);
}
header .icons_top .loading {
  padding: 10px;
  display: block;
}
header .icons_top .shop_icons_content {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
  opacity: 0;
  overflow: auto;
  top: 40px;
  max-height: calc(100vh - 190px);
  background: #fff;
  -webkit-box-shadow: 0px 0px 18px -3px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 18px -3px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  position: absolute;
  right: 0;
  width: 300px;
}
header .icons_top .shop_icons_content.active {
  opacity: 1;
  pointer-events: all;
}
header .icons_top .header_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
header .icons_top .header_icons > div {
  cursor: pointer;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
header .icons_top .header_icons > div:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
header .icons_top .header_icons > div:hover svg {
  fill: #9E1F63;
}
header .icons_top .header_icons .number {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #9E1F63;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 70%;
  right: -5px;
  top: -5px;
  border-radius: 100px;
}
header .icons_top .header_icons .heart {
  position: relative;
}
header .icons_top .header_icons svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 20px;
  height: 20px;
  fill: #1c8ac0;
}
header .icons_top .header_icons .basket {
  position: relative;
}

.outlet.selected a {
  background: rgba(157, 40, 176, 0.1098039216);
  color: #9C27B0;
  padding: 10px 15px !important;
}
.outlet a {
  padding: 10px 15px;
  border-radius: 5px;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  color: #9C27B0;
}
.outlet a:hover {
  background: rgba(157, 40, 176, 0.1098039216);
  color: #9C27B0;
}
.outlet a:after {
  content: none !important;
}

.banner {
  margin-top: 100px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.banner .bannerline {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80% 3% 17%;
  grid-template-columns: 80% 3% 17%;
}
.banner .bannerline .words {
  position: absolute;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@-webkit-keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.banner .bannerline .words .white_bg_lbl {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  padding: 20px 40px;
  background: linear-gradient(270deg, rgb(214, 214, 214) 0%, rgb(255, 255, 255) 40px, rgba(255, 255, 255, 0.7) 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.banner .bannerline .words h3 {
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #7953cd), color-stop(30%, #00affa), color-stop(70%, #0190cd), color-stop(80%, #764ada));
  background: linear-gradient(to right, #7953cd 20%, #00affa 30%, #0190cd 70%, #764ada 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 500% auto;
  -webkit-animation: textShine 5s ease-in-out infinite alternate;
          animation: textShine 5s ease-in-out infinite alternate;
  margin: 0;
  font-size: 240%;
  font-weight: lighter;
}
.banner .bannerline .bluecircle {
  position: relative;
  opacity: 0.5;
  background: rgb(43, 167, 222);
  background: linear-gradient(158deg, rgb(43, 167, 222) 0%, rgb(232, 247, 255) 100%);
  border-top-left-radius: 11vw;
  border-bottom-left-radius: 11vw;
}
.banner .bannerline .bluecircle .div {
  position: absolute;
  top: 50%;
  height: 95px;
  margin-top: -46px;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  padding: 20px 40px;
  background: linear-gradient(90deg, rgb(200, 200, 200) 0%, rgb(255, 255, 255) 40px, rgb(255, 255, 255) 100%);
}
@-webkit-keyframes breathe {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.1;
  }
}
@keyframes breathe {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.1;
  }
}
.banner .bannerline .bluecircle .div img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-animation: breathe 6s infinite;
          animation: breathe 6s infinite;
  width: 120px !important;
  margin: auto;
  height: auto !important;
  min-height: inherit !important;
  border-radius: 0 !important;
}
.banner .bannerline img {
  top: 0;
  right: 0;
  height: auto;
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 11vw;
  border-bottom-right-radius: 11vw;
}

section {
  margin-bottom: 90px !important;
}
section h1 {
  font-size: 170%;
  font-weight: lighter;
  margin: 0;
  padding: 0;
  margin-top: 50px;
  margin-bottom: 16px;
}

.trending_item {
  color: black;
  text-decoration: none;
  background: #E8F7FF;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.trending_item img {
  width: 100%;
  height: auto;
  border-top-right-radius: 20px;
}
.trending_item_bottom {
  position: relative;
  padding: 13px 30px 22px 30px;
}
.trending_item_bottom .subheader,
.trending_item_bottom .header {
  display: block;
}
.trending_item_bottom .subheader {
  font-size: 80%;
}
.trending_item_bottom .header {
  margin-top: 10px;
  font-size: 120%;
  font-weight: 600;
}
.trending_item_bottom .arrow {
  -webkit-box-shadow: 0px 0px 18px -3px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 18px -3px rgba(0, 0, 0, 0.35);
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 90%;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: black;
  text-decoration: none;
  padding: 2px 30px 2px 10px;
  border-radius: 15px;
}
.trending_item_bottom .arrow:after {
  content: "";
  background: url("../images/arrow_trending.svg") no-repeat center;
  width: 14px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.trending_item:hover {
  background: #cfeeff;
}
.trending_item:hover .arrow {
  -webkit-box-shadow: 0px 0px 18px -3px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 0px 18px -3px rgba(0, 0, 0, 0.75);
}
.trending_item:hover .arrow:after {
  right: 6px;
}

.categories_item {
  color: black;
  text-decoration: none;
  background: #F6E8F3;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.categories_item img {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 20px;
}
.categories_item_bottom {
  position: relative;
  padding: 13px 30px 22px 30px;
}
.categories_item_bottom .header {
  display: block;
}
.categories_item_bottom .header {
  margin-top: 10px;
  font-size: 130%;
  font-weight: 600;
}
.categories_item_bottom .arrow {
  background: url("../images/arrow_shop.svg") no-repeat center;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 30px;
  top: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.categories_item:hover {
  background: #efd6e9;
}
.categories_item:hover .arrow {
  right: 20px;
}

.grid {
  display: -ms-grid;
  display: grid;
  gap: 50px;
}

.grid4 {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid3 {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

footer {
  background-size: 100%;
  padding-top: 5vw;
}
footer .footernavigation {
  background: #efefef;
  padding-bottom: 50px;
}
footer .footernavigation > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10vw;
}
footer .footernavigation > ul a,
footer .footernavigation > ul span {
  color: black;
  text-decoration: none;
  font-size: 90%;
  padding: 4px 0;
  display: block;
  cursor: pointer;
}
footer .footernavigation > ul a:hover,
footer .footernavigation > ul span:hover {
  color: #9E1F63;
}
footer .footernavigation > ul .bold {
  font-weight: bold;
  margin-bottom: 30px;
}
footer .blueline {
  background: #1c8ac0;
  color: white;
  padding: 40px 0 !important;
}
footer .blueline .wpage {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 90%;
  padding: 20px;
}
footer .copyright img {
  height: 40px;
}
footer .copyright a {
  color: #9E1F63;
  text-decoration: none;
}
footer .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
footer .socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .socials ul a {
  padding: 0 14px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
footer .socials ul a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1365px) {
  main .cat_grid .items a.item {
    padding-bottom: 90px !important;
  }
  .price_add {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 768px) {
  .enable_simple {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .card_placeholder .card_pos {
    -webkit-transform: scale(0.7) translateX(17px) translateY(-34px);
            transform: scale(0.7) translateX(17px) translateY(-34px);
  }
  .select_gcard_price {
    -ms-grid-columns: 1fr 1fr !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .carditself {
    width: 350px;
    margin-top: 20px;
  }
  .dataAboutBasket {
    margin: 0 !important;
  }
  .dataAboutBasket .content {
    padding: 10px 0 !important;
  }
  .dataAboutBasket .list {
    gap: 40px !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .total h1 {
    font-size: 140%;
    margin-bottom: 20px;
  }
  .basket_grid .basket_item .price {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .basket_buttons_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .basket_buttons_flex a {
    text-align: center;
  }
  .basket_item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3] !important;
    grid-template-columns: repeat(3, 1fr) !important;
    -ms-grid-rows: (1fr)[2];
    grid-template-rows: repeat(2, 1fr);
  }
  .basket_item > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .basket_item > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .basket_item > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .basket_item > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .basket_item > *:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .basket_item > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .basket_item a:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .basket_item .info {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-area: 1/2/2/4;
  }
  .basket_item .price {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
  }
  .basket_item .remove_item {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 2/3/3/4;
  }
  .basket_item .price > div:nth-child(1), .basket_item .price > span {
    display: none;
  }
  .same .items,
  .alreadysee .items {
    overflow: auto;
  }
  .same .items .item,
  .alreadysee .items .item {
    min-width: 210px;
  }
  section h1 {
    margin: 40px 0 10px 0;
    font-size: 100% !important;
  }
  .cookiealert {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .basket_grid {
    -ms-grid-columns: auto !important;
    grid-template-columns: auto !important;
  }
  .basket_grid .basket_group_item {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 80%;
    -ms-grid-columns: 1fr 120px;
    grid-template-columns: 1fr 120px;
    grid-row-gap: 30px !important;
  }
  .basket_grid .basket_group_item i {
    font-size: 90%;
  }
  .basket_grid .basket_group_item div:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .basket_grid .basket_group_item div:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
  .basket_grid .basket_group_item div:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .basket_grid .basket_group_item div:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 3/1/4/3;
  }
  .basket_grid .basket_group_item div:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
  }
  .help {
    border-radius: 20px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 5px;
    max-width: 100%;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .help span {
    display: none;
  }
  .help .help_items {
    -ms-grid-columns: 120px 1fr;
    grid-template-columns: 120px 1fr;
    padding: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .payment_data .list {
    -ms-grid-columns: 1fr 1fr 1fr !important;
    grid-template-columns: 1fr 1fr 1fr !important;
  }
  .cheque {
    width: 380px !important;
    min-height: 300px !important;
  }
  .cheque .cheque_body {
    background-size: 120% !important;
    -webkit-transform: translateY(26px) !important;
            transform: translateY(26px) !important;
    width: calc(100% - 100px) !important;
    margin-left: 50px !important;
    font-size: 80% !important;
  }
  .cheque .cheque_body .total {
    padding: 10px 20px !important;
  }
  .cheque .cheque_body .basket_item {
    gap: 10px !important;
    -ms-grid-columns: 1fr 10px 30px !important;
    grid-template-columns: 1fr 30px !important;
    padding: 10px 20px !important;
  }
  .cheque .cheque_body .cheque_body_content {
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
    width: 278px !important;
    font-size: 60% !important;
  }
  .cheque .cheque_body .cheque_body_content h1 {
    margin-top: 20px !important;
  }
  .cheque .cheque_body .cheque_body_content h2 {
    margin-top: 10px !important;
  }
  .cheque .cheque_body .cheque_body_content .line {
    margin-top: 10px !important;
    letter-spacing: 7px !important;
    font-size: 93% !important;
  }
  .cheque .cheque_body .cheque_body_content h2 {
    letter-spacing: 10px !important;
  }
  .filter_open .inthissection {
    display: none !important;
  }
  .filter_open .mobile_filter_button {
    display: inline-block;
    background: #9E1F63 !important;
    color: white;
  }
  .filter_open .apply_filter {
    padding: 12px 25px;
    color: black !important;
    background: #fff !important;
    border: 1px solid #444;
  }
  .filter_open .filter {
    position: static !important;
    height: auto;
    max-height: none !important;
    display: block !important;
  }
  .size {
    background: #d9d9d9;
  }
  .size .type_1 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .size .type_1 .flex .t_1_1,
  .size .type_1 .flex .t_1_2 {
    height: 260px !important;
  }
  .size .type_1 .flex .t_1_1 {
    background: url("../images/sizes/type_1_1.svg") no-repeat center;
  }
  .size .type_1 .flex .t_1_1 .sizes .size_t_1_1 {
    top: 55px !important;
  }
  .size .type_1 .flex .t_1_1 .sizes .size_t_1_2 {
    top: 13px !important;
    left: 110px !important;
  }
  .size .type_1 .flex .t_1_2 {
    background: url("../images/sizes/type_1_2.svg") no-repeat center;
  }
  .size .type_1 .flex .t_1_2 .sizes .size_t_1_1 {
    position: absolute;
    top: 190px;
    left: 75px;
    width: 90px;
    text-align: center;
  }
  .size .type_1 .flex .t_1_2 .sizes .size_t_1_2 {
    position: absolute;
    top: 270px;
    left: 75px;
    width: 90px;
    text-align: left;
  }
  .size .type_2 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .size .type_2 .flex .t_2 {
    font-size: 80%;
    position: relative;
    width: 250px;
    height: 400px;
    background-size: 200px;
    background: url("../images/sizes/type_2.svg") no-repeat center;
  }
  .size .type_2 .flex .t_2 .sizes .size_t_1_1 {
    position: absolute;
    top: 125px;
    left: 21px;
    text-align: center;
    height: 195px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
  .size .type_2 .flex .t_2 .sizes .size_t_1_2 {
    position: absolute;
    top: 83px;
    left: 104px;
    text-align: center;
    width: 90px;
  }
  .size .type_3 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .size .type_3 .flex .t_3_1,
  .size .type_3 .flex .t_3_2 {
    font-size: 80%;
    position: relative;
    width: 250px;
    height: 400px;
    background-size: 200px;
  }
  .size .type_3 .flex .t_3_1 {
    background: url("../images/sizes/type_3_1.svg") no-repeat center;
  }
  .size .type_3 .flex .t_3_1 .sizes .size_t_3_1 {
    position: absolute;
    top: 140px;
    left: 3px;
    text-align: center;
    height: 162px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
  .size .type_3 .flex .t_3_1 .sizes .size_t_3_2 {
    position: absolute;
    top: 102px;
    left: 47px;
    text-align: center;
    width: 200px;
  }
  .size .type_3 .flex .t_3_2 {
    background: url("../images/sizes/type_3_2.svg") no-repeat center;
  }
  .size .type_3 .flex .t_3_2 .sizes .size_t_3_1 {
    position: absolute;
    top: 205px;
    left: 7px;
    text-align: center;
    height: 49px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
  .size .type_3 .flex .t_3_2 .sizes .size_t_3_2 {
    position: absolute;
    top: 146px;
    left: 43px;
    text-align: center;
    width: 200px;
  }
  .size .type_4 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .size .type_4 .flex .t_4 {
    font-size: 80%;
    position: relative;
    width: 250px;
    height: 400px;
    background-size: 260px !important;
    background: url("../images/sizes/type_4.svg") no-repeat center;
  }
  .size .type_4 .flex .t_4 .sizes .size_t_1_1 {
    position: absolute;
    top: 138px;
    left: 0px;
    text-align: center;
    height: 185px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
  .size .type_4 .flex .t_4 .sizes .size_t_1_2 {
    position: absolute;
    top: 72px;
    left: 54px;
    text-align: center;
    width: 194px;
  }
  body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
  .prod_grid {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .prod_grid .images {
    gap: 10px !important;
  }
  .prod_grid .images img {
    border-radius: 5px !important;
    mix-blend-mode: initial !important;
  }
  .prod_grid .prod_info {
    background: none !important;
    border-bottom: 1px solid #ccc;
    border-radius: 0 !important;
  }
  .prod_grid .prod_info .price,
  .prod_grid .prod_info .p_section {
    padding: 10px 0 !important;
    min-height: 0 !important;
  }
  .loading .loading_content {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .headerline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .headerline h1 {
    padding: 10px 0 20px 0;
    font-weight: lighter;
    font-size: 160%;
    color: #9E1F63;
  }
  main .cat_grid {
    margin-top: 20px !important;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  main .cat_grid .filter {
    display: none;
  }
  main .cat_grid .items {
    -ms-grid-columns: 1fr 1fr !important;
    grid-template-columns: 1fr 1fr !important;
  }
  main .cat_grid .items a.item {
    padding-bottom: 100px !important;
  }
  main .cat_grid .items a.item .price {
    font-size: 140%;
    text-align: center;
  }
  main .cat_grid .items a.item .main_image {
    padding: 0 !important;
  }
  main .cat_grid .items a.item .data {
    padding: 10px;
  }
  main .cat_grid .items a.item .data .header {
    font-size: 90% !important;
    font-weight: bold;
  }
  main .cat_grid .items a.item .price_add {
    left: 15px !important;
    width: calc(100% - 30px) !important;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .sort {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 1fr 4px 1fr 4px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px !important;
  }
  .sort .mobile_filter_button,
  .sort label {
    display: block;
    background: #ccc;
    text-align: center;
    padding: 11px;
    border-radius: 5px;
  }
  .sort .info {
    display: none;
  }
  .topsep {
    height: 70px !important;
  }
  .open_menu nav.navigation {
    display: block;
    position: fixed;
    background: white;
    top: 70px;
    left: 0;
    width: 100%;
  }
  .open_menu nav.navigation > ul li a:after {
    content: none;
  }
  .open_menu nav.navigation > ul {
    height: calc(100vh - 70px);
  }
  .open_menu nav.navigation > ul > li {
    border-bottom: 1px solid #ccc;
    padding: 30px;
  }
  .open_menu nav.navigation ul {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .open_menu nav.navigation ul .submenu {
    padding: 30px;
    z-index: 10;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    top: 0px;
    overflow: auto;
    height: calc(100vh - 70px);
    background: #1c8ac0;
  }
  .open_menu nav.navigation ul .submenu .item {
    margin-bottom: 50px;
  }
  .open_menu nav.navigation ul .submenu ul {
    padding: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .open_menu nav.navigation ul .submenu ul li {
    padding: 6px 0;
  }
  .open_menu nav.navigation ul li:hover .submenu {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    pointer-events: all !important;
    opacity: 1;
  }
  nav.navigation,
  .bluecircle,
  .gap {
    display: none;
  }
  .banner .bannerline img {
    border-radius: 0 !important;
    margin-bottom: 30px;
  }
  .banner .bannerline .words {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-line-pack: end;
        align-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .banner .bannerline .words .white_bg_lbl {
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.8) !important;
  }
  .banner .bannerline .words h3 {
    font-size: 110% !important;
  }
  header {
    height: 70px;
  }
  header .logo img {
    width: 90px;
  }
  header .icons_top .header_icons {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr 25px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 25px !important;
  }
  .mobile_menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
  }
  .mobile_menu div {
    width: 15px;
    height: 2px;
    background: #1c8ac0;
  }
  .grid4 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .grid4 .trending_item_bottom {
    padding: 10px;
  }
  .grid4 .trending_item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 150px;
  }
  .grid4 .arrow {
    display: none !important;
  }
  .grid3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  footer .copyright {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding-bottom: 90px !important;
  }
  footer .socials {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-top: 40px;
  }
  .blueline .wpage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footernavigation .bold {
    margin-bottom: 0 !important;
  }
  footer .footernavigation .mhide {
    display: none;
  }
  footer .footernavigation > ul {
    gap: 20px !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    text-align: center;
  }
  .bannerline {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
}
.userzone_in_basket {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  max-width: 350px;
  width: 100%;
  border-radius: 10px;
  margin: 40px auto;
}

.register {
  color: #9E1F63;
  font-weight: bold;
  text-decoration: none;
  margin-top: 30px;
  display: block;
}

.userzone {
  padding: 20px;
}
.userzone .hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.userzone .hdr a {
  color: #9d28b0;
  text-decoration: none;
  margin-top: 5px;
  font-weight: bold;
}
.userzone .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.userzone .flex a {
  color: #444;
  text-decoration: none;
  margin-top: 5px;
}
.userzone .msg {
  font-size: 80%;
  min-height: 20px;
  margin-top: -10px;
  opacity: 0.7;
  border-radius: 4px;
  margin-bottom: 5px;
}
.userzone .msg.warning {
  padding: 10px;
  color: red;
  font-size: 100%;
  font-weight: bold;
  background: rgba(200, 0, 0, 0.2);
}
.userzone form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
}
.userzone form label span {
  display: block;
  font-size: 90%;
  opacity: 0.5;
}
.userzone form label input {
  width: 100%;
  padding: 6px 10px;
  background: #d8eaf4;
  color: black;
  border: none;
  border-radius: 5px;
}
.userzone form input[type=submit] {
  background: #9d28b0;
  color: white;
  padding: 10px;
  font-size: 90%;
  width: 100%;
  max-width: 100px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.userzone form input[type=submit]:hover {
  background: #8a239b;
}
.userzone h2 {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  font-weight: lighter;
}
.userzone ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.userzone ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.userzone ul li a img {
  height: 14px;
}
.userzone ul li.sep {
  height: 20px;
}
.userzone ul li a {
  font-size: 90%;
  position: relative;
  color: black;
  text-decoration: none;
}
.userzone ul li a span.number {
  width: 16px;
  height: 16px;
  background: #9E1F63;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 90%;
  top: 0;
  border-radius: 100px;
}
.userzone ul li a:hover {
  color: #9E1F63;
}

.usergrid .addresslist {
  margin-top: 30px;
}
.usergrid .addresslist .addlist {
  padding: 15px;
  border-radius: 10px;
  display: -ms-grid;
  display: grid;
  margin-bottom: 20px;
  background: #eaeaea;
  -ms-grid-columns: 100px 100px 2fr 100px 200px 200px 120px;
  grid-template-columns: 100px 100px 2fr 100px 200px 200px 120px;
}
.usergrid .addresslist .addlist a {
  margin-top: 3px;
  color: #9E1F63;
  font-weight: bold;
  text-decoration: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 1fr;
  grid-template-columns: 20px 1fr;
}
.usergrid .addresslist .addlist a svg {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  width: 16px;
}
.usergrid .addresslist .addlist span {
  display: block;
  font-size: 80%;
  color: #9E1F63;
}

.userlinks {
  max-width: 500px;
  margin: 20px auto;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}
.userlinks li {
  margin: 5px 0;
}
.userlinks a {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 20px 4px 1fr;
  grid-template-columns: 20px 1fr;
  gap: 4px;
  color: #1c8ac0;
  text-decoration: none;
}
.userlinks a:hover {
  color: black;
}
.userlinks a:hover svg {
  fill: black;
}
.userlinks a svg {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  width: 15px;
  height: auto;
  fill: #9E1F63;
}

.regform, .usergrid form {
  position: relative;
  max-width: 500px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.regform .gr, .usergrid form .gr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 1fr;
  grid-template-columns: 120px 1fr;
}
.regform .gr select, .usergrid form .gr select {
  text-align: right;
}
.regform input[type=submit], .usergrid form input[type=submit] {
  background: #9d28b0;
  color: white;
  padding: 10px;
  font-size: 90%;
  width: 100%;
  max-width: 200px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.regform input[type=submit]:hover, .usergrid form input[type=submit]:hover {
  background: #8a239b;
}
.regform label, .usergrid form label {
  position: relative;
}
.regform label .i, .usergrid form label .i {
  font-size: 70%;
  position: absolute;
  right: 10px;
  top: 30px;
  cursor: pointer;
  color: #9E1F63;
}
.regform label span, .usergrid form label span {
  display: block;
  font-size: 80% !important;
  opacity: 0.6;
}
.regform label input, .regform label select, .usergrid form label input, .usergrid form label select {
  background: #d8eaf4;
  width: 100%;
  border: none;
  padding: 10px;
}
.regform label input[type=checkbox], .usergrid form label input[type=checkbox] {
  width: 30px;
}

.rules_offset a {
  color: #9d28b0;
  text-decoration: none;
}

.error {
  margin: auto;
  background: rgba(200, 0, 0, 0.1);
  color: #990000;
  max-width: 500px;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
}
.error a {
  color: #9d28b0;
  text-decoration: none;
}

.umumi {
  font-size: 150%;
  margin-bottom: 40px;
}

.add_address {
  display: none;
}

#map {
  width: 100%;
  height: 286px;
  display: block;
}
#map img {
  border-radius: 0 !important;
}

.previleges {
  margin-top: 20px;
  font-size: 80%;
  gap: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.previleges li {
  margin: 3px 0;
  color: green;
}
.previleges li.no_option {
  color: gray;
  opacity: 0.6;
  text-decoration: line-through;
}

.nocenter {
  margin: auto !important;
}

.enable_simple {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.enable_simple h2 {
  text-align: center;
  font-weight: lighter;
}
.enable_simple .simple_reg_form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 350px;
  width: 100%;
  margin: auto;
  border-radius: 10px;
  min-height: 277px;
}
.enable_simple .simple_reg_form .form {
  margin-top: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
}
.enable_simple .simple_reg_form .form input[type=submit] {
  background: #9d28b0;
  color: white;
  padding: 10px;
  font-size: 90%;
  width: 100%;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.enable_simple .simple_reg_form .form label {
  position: relative;
}
.enable_simple .simple_reg_form .form label span {
  font-size: 90%;
  color: gray;
}
.enable_simple .simple_reg_form .form label span.prefix {
  position: absolute;
  left: 10px;
  top: 27px;
}
.enable_simple .simple_reg_form .form label input {
  width: 100%;
  padding: 6px 10px;
  background: #d8eaf4;
  color: black;
  border: none;
  border-radius: 5px;
}
.enable_simple .simple_reg_form .form label input.simple_mob {
  padding-left: 48px;
}

.s0 {
  text-decoration: none;
  opacity: 0.6;
  color: gray !important;
}
.s0 a {
  text-decoration: none;
  color: gray !important;
}
.s0 .price {
  color: gray !important;
}

.what_is {
  margin-bottom: 20px !important;
  display: block;
  position: relative;
}
.what_is .result {
  position: absolute;
  right: 4px;
  top: 25px;
  background: #fff;
  font-size: 90%;
}
.what_is .result span {
  padding: 5px 10px;
  display: block;
}
.what_is .lbl_hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.what_is .lbl_hdr a {
  font-weight: bold !important;
  background: none;
  padding: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #7953cd), color-stop(30%, #00affa), color-stop(70%, #0190cd), color-stop(80%, #764ada));
  background: linear-gradient(to right, #7953cd 20%, #00affa 30%, #0190cd 70%, #764ada 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 500% auto;
  -webkit-animation: textShine 5s ease-in-out infinite alternate;
          animation: textShine 5s ease-in-out infinite alternate;
}

.total h1,
.total span {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.highlight {
  color: #1c8ac0;
}

.paystatus {
  padding: 3px 14px;
  max-width: 130px;
  border-radius: 100px;
  font-size: 100%;
}
.paystatus.payment_status_1 {
  background: rgba(0, 200, 0, 0.2);
  color: darkgreen;
  font-weight: bold;
}
.paystatus.payment_status_0 {
  background: rgba(200, 0, 0, 0.2);
  color: darkred;
  font-weight: bold;
}

.cheque_body {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.confeti {
  position: absolute;
  inset: 50%;
  opacity: 0;
  height: 200px;
  /*  opacity: 1; */
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.confeti > span {
  width: var(--confeti-size);
  aspect-ratio: 1;
  position: absolute;
  background: hsl(var(--hue), 100%, 50%);
  border-radius: var(--shape);
}

.confeti > span:nth-child(1) {
  --shape: 23.2520871571vw;
  --hue: -159;
  --confeti-size: 12px;
  --offsetY: -8.5vh;
  /*    --offsetX: -28vw; */
  --offsetX: 0vw;
  --offsetZ: -111px;
  --spin: 7turn;
}

.confeti > span:nth-child(2) {
  --shape: -17.5304936969vw;
  --hue: -79;
  --confeti-size: 10px;
  --offsetY: -1.5vh;
  /*    --offsetX: -23vw; */
  --offsetX: -11vw;
  --offsetZ: -167px;
  --spin: 3turn;
}

.confeti > span:nth-child(3) {
  --shape: 39.8609448552vw;
  --hue: 10;
  --confeti-size: 10px;
  --offsetY: 13.5vh;
  /*    --offsetX: -23vw; */
  --offsetX: -8vw;
  --offsetZ: -377px;
  --spin: 6turn;
}

.confeti > span:nth-child(4) {
  --shape: 20.0996049297vw;
  --hue: 173;
  --confeti-size: 8px;
  --offsetY: 16.5vh;
  /*    --offsetX: -10vw; */
  --offsetX: -19vw;
  --offsetZ: 126px;
  --spin: 3turn;
}

.confeti > span:nth-child(5) {
  --shape: -25.1169338467vw;
  --hue: -65;
  --confeti-size: 1px;
  --offsetY: -9.5vh;
  /*    --offsetX: 26vw; */
  --offsetX: 36vw;
  --offsetZ: -92px;
  --spin: 9turn;
}

.confeti > span:nth-child(6) {
  --shape: -42.5441751222vw;
  --hue: 94;
  --confeti-size: 3px;
  --offsetY: -3.5vh;
  /*    --offsetX: 18vw; */
  --offsetX: -7vw;
  --offsetZ: 494px;
  --spin: 6turn;
}

.confeti > span:nth-child(7) {
  --shape: -1.2457287926vw;
  --hue: -65;
  --confeti-size: 10px;
  --offsetY: 1.5vh;
  /*    --offsetX: 21vw; */
  --offsetX: 9vw;
  --offsetZ: -430px;
  --spin: 6turn;
}

.confeti > span:nth-child(8) {
  --shape: -49.5972872496vw;
  --hue: 40;
  --confeti-size: 7px;
  --offsetY: 3.5vh;
  /*    --offsetX: -7vw; */
  --offsetX: -26vw;
  --offsetZ: -393px;
  --spin: 10turn;
}

.confeti > span:nth-child(9) {
  --shape: -45.815239372vw;
  --hue: -70;
  --confeti-size: 1px;
  --offsetY: 12.5vh;
  /*    --offsetX: 22vw; */
  --offsetX: -26vw;
  --offsetZ: 87px;
  --spin: 6turn;
}

.confeti > span:nth-child(10) {
  --shape: 29.7858266899vw;
  --hue: -128;
  --confeti-size: 9px;
  --offsetY: -11.5vh;
  /*    --offsetX: 2vw; */
  --offsetX: 6vw;
  --offsetZ: 317px;
  --spin: 8turn;
}

.confeti > span:nth-child(11) {
  --shape: -9.0413249363vw;
  --hue: -75;
  --confeti-size: 7px;
  --offsetY: -1.5vh;
  /*    --offsetX: -3vw; */
  --offsetX: -8vw;
  --offsetZ: 119px;
  --spin: 2turn;
}

.confeti > span:nth-child(12) {
  --shape: -32.8437599773vw;
  --hue: -20;
  --confeti-size: 3px;
  --offsetY: -13.5vh;
  /*    --offsetX: 31vw; */
  --offsetX: 20vw;
  --offsetZ: -406px;
  --spin: 8turn;
}

.confeti > span:nth-child(13) {
  --shape: 35.7357748693vw;
  --hue: 64;
  --confeti-size: 5px;
  --offsetY: 13.5vh;
  /*    --offsetX: 29vw; */
  --offsetX: -29vw;
  --offsetZ: -181px;
  --spin: 3turn;
}

.confeti > span:nth-child(14) {
  --shape: 35.7812983912vw;
  --hue: 54;
  --confeti-size: 15px;
  --offsetY: -17.5vh;
  /*    --offsetX: -20vw; */
  --offsetX: 25vw;
  --offsetZ: -139px;
  --spin: 1turn;
}

.confeti > span:nth-child(15) {
  --shape: -1.7627474298vw;
  --hue: 100;
  --confeti-size: 11px;
  --offsetY: -17.5vh;
  /*    --offsetX: 13vw; */
  --offsetX: 28vw;
  --offsetZ: 348px;
  --spin: 8turn;
}

.confeti > span:nth-child(16) {
  --shape: -24.3038154394vw;
  --hue: 156;
  --confeti-size: 18px;
  --offsetY: 5.5vh;
  /*    --offsetX: -1vw; */
  --offsetX: 30vw;
  --offsetZ: -392px;
  --spin: 3turn;
}

.confeti > span:nth-child(17) {
  --shape: -26.3011716149vw;
  --hue: -48;
  --confeti-size: 7px;
  --offsetY: 13.5vh;
  /*    --offsetX: -36vw; */
  --offsetX: -28vw;
  --offsetZ: -128px;
  --spin: 5turn;
}

.confeti > span:nth-child(18) {
  --shape: 39.3709902004vw;
  --hue: -105;
  --confeti-size: 17px;
  --offsetY: -16.5vh;
  /*    --offsetX: -13vw; */
  --offsetX: 13vw;
  --offsetZ: 131px;
  --spin: 3turn;
}

.confeti > span:nth-child(19) {
  --shape: -0.1775366901vw;
  --hue: -36;
  --confeti-size: 6px;
  --offsetY: -17.5vh;
  /*    --offsetX: -3vw; */
  --offsetX: -7vw;
  --offsetZ: -160px;
  --spin: 1turn;
}

.confeti > span:nth-child(20) {
  --shape: -13.8511452373vw;
  --hue: -105;
  --confeti-size: 1px;
  --offsetY: 7.5vh;
  /*    --offsetX: 9vw; */
  --offsetX: 21vw;
  --offsetZ: 425px;
  --spin: 2turn;
}

.confeti > span:nth-child(21) {
  --shape: -43.2911664056vw;
  --hue: -70;
  --confeti-size: 7px;
  --offsetY: 1.5vh;
  /*    --offsetX: -8vw; */
  --offsetX: -24vw;
  --offsetZ: -72px;
  --spin: 2turn;
}

.confeti > span:nth-child(22) {
  --shape: 18.4838936487vw;
  --hue: -38;
  --confeti-size: 9px;
  --offsetY: 15.5vh;
  /*    --offsetX: -12vw; */
  --offsetX: -34vw;
  --offsetZ: 38px;
  --spin: 3turn;
}

.confeti > span:nth-child(23) {
  --shape: 11.4622281732vw;
  --hue: 89;
  --confeti-size: 9px;
  --offsetY: -3.5vh;
  /*    --offsetX: 31vw; */
  --offsetX: -20vw;
  --offsetZ: -375px;
  --spin: 1turn;
}

.confeti > span:nth-child(24) {
  --shape: 27.8917426966vw;
  --hue: -106;
  --confeti-size: 20px;
  --offsetY: -9.5vh;
  /*    --offsetX: -30vw; */
  --offsetX: -30vw;
  --offsetZ: 168px;
  --spin: 8turn;
}

.confeti > span:nth-child(25) {
  --shape: 11.138085042vw;
  --hue: -91;
  --confeti-size: 4px;
  --offsetY: -15.5vh;
  /*    --offsetX: 29vw; */
  --offsetX: 8vw;
  --offsetZ: -13px;
  --spin: 8turn;
}

.confeti > span:nth-child(26) {
  --shape: -41.8256620957vw;
  --hue: -6;
  --confeti-size: 9px;
  --offsetY: 15.5vh;
  /*    --offsetX: -8vw; */
  --offsetX: -8vw;
  --offsetZ: 67px;
  --spin: 4turn;
}

.confeti > span:nth-child(27) {
  --shape: -14.3990310781vw;
  --hue: -158;
  --confeti-size: 6px;
  --offsetY: 0.5vh;
  /*    --offsetX: 30vw; */
  --offsetX: -7vw;
  --offsetZ: 470px;
  --spin: 7turn;
}

.confeti > span:nth-child(28) {
  --shape: 37.4513557587vw;
  --hue: 146;
  --confeti-size: 10px;
  --offsetY: 6.5vh;
  /*    --offsetX: 2vw; */
  --offsetX: 18vw;
  --offsetZ: 232px;
  --spin: 1turn;
}

.confeti > span:nth-child(29) {
  --shape: 28.1796832916vw;
  --hue: 117;
  --confeti-size: 15px;
  --offsetY: 8.5vh;
  /*    --offsetX: -20vw; */
  --offsetX: -21vw;
  --offsetZ: -382px;
  --spin: 5turn;
}

.confeti > span:nth-child(30) {
  --shape: 20.3440855051vw;
  --hue: 89;
  --confeti-size: 20px;
  --offsetY: -1.5vh;
  /*    --offsetX: -26vw; */
  --offsetX: -30vw;
  --offsetZ: -57px;
  --spin: 6turn;
}

.confeti > span:nth-child(31) {
  --shape: -21.8135223512vw;
  --hue: 75;
  --confeti-size: 19px;
  --offsetY: -0.5vh;
  /*    --offsetX: -38vw; */
  --offsetX: 36vw;
  --offsetZ: -247px;
  --spin: 10turn;
}

.confeti > span:nth-child(32) {
  --shape: -49.646773351vw;
  --hue: -101;
  --confeti-size: 15px;
  --offsetY: -3.5vh;
  /*    --offsetX: 15vw; */
  --offsetX: 23vw;
  --offsetZ: -355px;
  --spin: 5turn;
}

.confeti > span:nth-child(33) {
  --shape: 46.5953894734vw;
  --hue: -17;
  --confeti-size: 8px;
  --offsetY: 13.5vh;
  /*    --offsetX: -15vw; */
  --offsetX: -33vw;
  --offsetZ: -31px;
  --spin: 1turn;
}

.confeti > span:nth-child(34) {
  --shape: 8.5945824836vw;
  --hue: -88;
  --confeti-size: 17px;
  --offsetY: -17.5vh;
  /*    --offsetX: -23vw; */
  --offsetX: 14vw;
  --offsetZ: 253px;
  --spin: 10turn;
}

.confeti > span:nth-child(35) {
  --shape: -16.8011965771vw;
  --hue: -125;
  --confeti-size: 19px;
  --offsetY: -0.5vh;
  /*    --offsetX: -13vw; */
  --offsetX: 18vw;
  --offsetZ: -152px;
  --spin: 6turn;
}

.confeti > span:nth-child(36) {
  --shape: -30.7511258216vw;
  --hue: 39;
  --confeti-size: 2px;
  --offsetY: 11.5vh;
  /*    --offsetX: 16vw; */
  --offsetX: -31vw;
  --offsetZ: -73px;
  --spin: 3turn;
}

.confeti > span:nth-child(37) {
  --shape: 32.992674248vw;
  --hue: 175;
  --confeti-size: 20px;
  --offsetY: 4.5vh;
  /*    --offsetX: -4vw; */
  --offsetX: 21vw;
  --offsetZ: 114px;
  --spin: 7turn;
}

.confeti > span:nth-child(38) {
  --shape: 14.9305636836vw;
  --hue: -149;
  --confeti-size: 18px;
  --offsetY: -17.5vh;
  /*    --offsetX: -28vw; */
  --offsetX: -32vw;
  --offsetZ: 249px;
  --spin: 9turn;
}

.confeti > span:nth-child(39) {
  --shape: 8.5943410434vw;
  --hue: -28;
  --confeti-size: 6px;
  --offsetY: 9.5vh;
  /*    --offsetX: -31vw; */
  --offsetX: -7vw;
  --offsetZ: 291px;
  --spin: 9turn;
}

.confeti > span:nth-child(40) {
  --shape: -0.3706628654vw;
  --hue: 105;
  --confeti-size: 14px;
  --offsetY: -2.5vh;
  /*    --offsetX: 38vw; */
  --offsetX: 33vw;
  --offsetZ: 489px;
  --spin: 8turn;
}

.confeti > span:nth-child(41) {
  --shape: -28.4988603399vw;
  --hue: -132;
  --confeti-size: 10px;
  --offsetY: 8.5vh;
  /*    --offsetX: -37vw; */
  --offsetX: -14vw;
  --offsetZ: -50px;
  --spin: 6turn;
}

.confeti > span:nth-child(42) {
  --shape: -15.5772771556vw;
  --hue: 107;
  --confeti-size: 4px;
  --offsetY: 9.5vh;
  /*    --offsetX: -7vw; */
  --offsetX: 33vw;
  --offsetZ: -6px;
  --spin: 4turn;
}

.confeti > span:nth-child(43) {
  --shape: -38.104797819vw;
  --hue: 133;
  --confeti-size: 7px;
  --offsetY: -15.5vh;
  /*    --offsetX: 37vw; */
  --offsetX: 24vw;
  --offsetZ: 89px;
  --spin: 10turn;
}

.confeti > span:nth-child(44) {
  --shape: -43.6294934423vw;
  --hue: -5;
  --confeti-size: 8px;
  --offsetY: 1.5vh;
  /*    --offsetX: 37vw; */
  --offsetX: 27vw;
  --offsetZ: -394px;
  --spin: 3turn;
}

.confeti > span:nth-child(45) {
  --shape: 44.1325510063vw;
  --hue: -166;
  --confeti-size: 5px;
  --offsetY: -5.5vh;
  /*    --offsetX: -17vw; */
  --offsetX: -33vw;
  --offsetZ: 457px;
  --spin: 5turn;
}

.confeti > span:nth-child(46) {
  --shape: -26.5583185813vw;
  --hue: 77;
  --confeti-size: 6px;
  --offsetY: 12.5vh;
  /*    --offsetX: 34vw; */
  --offsetX: -9vw;
  --offsetZ: -286px;
  --spin: 2turn;
}

.confeti > span:nth-child(47) {
  --shape: -22.9875005838vw;
  --hue: -34;
  --confeti-size: 10px;
  --offsetY: -13.5vh;
  /*    --offsetX: -2vw; */
  --offsetX: -34vw;
  --offsetZ: 469px;
  --spin: 8turn;
}

.confeti > span:nth-child(48) {
  --shape: 19.7793459892vw;
  --hue: 162;
  --confeti-size: 20px;
  --offsetY: -5.5vh;
  /*    --offsetX: 5vw; */
  --offsetX: 11vw;
  --offsetZ: -125px;
  --spin: 3turn;
}

.confeti > span:nth-child(49) {
  --shape: -43.6550356325vw;
  --hue: -106;
  --confeti-size: 1px;
  --offsetY: -2.5vh;
  /*    --offsetX: 33vw; */
  --offsetX: 37vw;
  --offsetZ: -131px;
  --spin: 9turn;
}

.confeti > span:nth-child(50) {
  --shape: -38.3794551001vw;
  --hue: 62;
  --confeti-size: 5px;
  --offsetY: 0.5vh;
  /*    --offsetX: 22vw; */
  --offsetX: 11vw;
  --offsetZ: -320px;
  --spin: 4turn;
}

.explosion {
  -webkit-animation: confetiSettle 7s;
  animation: confetiSettle 7s;
}

.explosion > span {
  -webkit-animation: confetiSpread 10s cubic-bezier(0, 1.31, 1, 1);
  animation: confetiSpread 10s cubic-bezier(0, 1.31, 1, 1);
}

@-webkit-keyframes confetiSpread {
  25% {
    translate: 0 -35vh;
  }
  100% {
    translate: 0 -35vh;
    -webkit-transform: translateX(var(--offsetX)) translateY(var(--offsetY)) translateZ(var(--offsetZ)) rotateX(var(--spin));
            transform: translateX(var(--offsetX)) translateY(var(--offsetY)) translateZ(var(--offsetZ)) rotateX(var(--spin));
  }
}
@keyframes confetiSpread {
  25% {
    translate: 0 -35vh;
  }
  100% {
    translate: 0 -35vh;
    -webkit-transform: translateX(var(--offsetX)) translateY(var(--offsetY)) translateZ(var(--offsetZ)) rotateX(var(--spin));
            transform: translateX(var(--offsetX)) translateY(var(--offsetY)) translateZ(var(--offsetZ)) rotateX(var(--spin));
  }
}
@-webkit-keyframes confetiSettle {
  0%, 70% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50vh);
            transform: translateY(50vh);
    opacity: 0;
  }
}
@keyframes confetiSettle {
  0%, 70% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50vh);
            transform: translateY(50vh);
    opacity: 0;
  }
}
.thankyoxbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 20px 0 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  color: green;
}
.thankyoxbox p {
  margin: 0;
  padding: 0;
}
.thankyoxbox h1,
.thankyoxbox h2 {
  font-size: 130%;
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.thankyoxbox h1 {
  font-size: 200%;
}

.basket_buttons_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.basket_buttons_flex a {
  padding: 27px 40px;
  background: #ccc;
  text-decoration: none;
  color: black;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.basket_buttons_flex a:hover {
  background: black;
  color: white;
}

.payment_data {
  line-height: 2;
  margin: 120px auto 0 auto;
  max-width: 600px;
}
.payment_data .list {
  margin-top: 20px;
  font-size: 80%;
  gap: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 20px 1fr 20px 70px 20px 1fr 20px 1fr;
  grid-template-columns: 50px 1fr 70px 1fr 1fr;
}
.payment_data .list span {
  display: block;
  color: #9E1F63;
}

.cheque {
  background: url("..//images/cheque.png") no-repeat center top;
  background-size: 100%;
  max-width: 800px;
  width: 100%;
  margin: 50px auto;
  min-height: 500px;
  position: relative;
}
.cheque .ssm {
  font-size: 60%;
  color: #1c8ac0;
}
.cheque .cheque_body {
  display: none;
  overflow: hidden;
  height: auto;
  -webkit-box-shadow: 0px -11px 22px -14px rgba(0, 0, 0, 0.75);
          box-shadow: 0px -11px 22px -14px rgba(0, 0, 0, 0.75);
  background: url("../images/cheque_bg.png") no-repeat bottom center #f5f5f5 !important;
  background-attachment: fixed !important;
  background-size: 170% !important;
  position: relative;
  margin-left: 100px;
  width: calc(100% - 200px);
  -webkit-transform: translateY(58px);
          transform: translateY(58px);
  border: 1px solid #ccc;
  border-bottom: none !important;
}
.cheque .cheque_body .payed {
  position: absolute;
  bottom: 10px;
  left: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 150px;
  -webkit-transform: scale(2);
          transform: scale(2);
  opacity: 0;
}
.cheque .cheque_body .payed.come {
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
  opacity: 1;
}
.cheque .cheque_body .cheque_body_content {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.cheque .cheque_body .cheque_body_content h1 {
  padding: 0;
  margin: 0;
  margin-top: 50px;
  text-align: center;
  letter-spacing: 10px;
  margin-left: 10px;
}
.cheque .cheque_body .cheque_body_content h2 {
  padding: 0;
  margin: 0;
  margin-top: 20px;
  text-align: center;
  letter-spacing: 15px;
  margin-left: 15px;
}
.cheque .cheque_body .cheque_body_content .total {
  text-align: right;
  padding: 20px 50px;
  font-size: 190%;
}
.cheque .cheque_body .cheque_body_content .total .finalsum {
  font-weight: bold;
  margin-bottom: 20px;
}
.cheque .cheque_body .cheque_body_content .line {
  margin-top: 30px;
  text-align: center;
  letter-spacing: 10px;
  font-size: 250%;
  margin-left: 10px;
}
.cheque .cheque_body .cheque_body_content .basket_item {
  font-size: 180% !important;
  padding: 20px 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 30px 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.cheque .cheque_body .cheque_body_content .basket_item .price {
  text-align: right;
}

.flex_payment {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex_payment label {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
  text-align: center;
  height: 130px;
}
.flex_payment label input {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  opacity: 0;
}
.flex_payment label input:checked ~ span {
  color: #1c8ac0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 138, 192, 0.1);
}
.flex_payment label img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
  margin: auto;
}
.flex_payment label span {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

form button {
  color: white;
  background: #444;
  padding: 10px;
  border: none;
}
form .list {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
form .list .formitems {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}
form .list .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
form .list span {
  display: block;
  font-size: 90%;
  color: #9E1F63;
}

.dataAboutBasket {
  margin: 60px auto;
  max-width: 900px;
  width: 100%;
}
.dataAboutBasket .show_address_data button {
  color: white;
  background: #444;
  padding: 10px;
  border: none;
}
.dataAboutBasket .show_address_data .list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-bottom: 20px;
}
.dataAboutBasket .show_address_data .list span {
  display: block;
  font-size: 90%;
  color: #9E1F63;
}
.dataAboutBasket .steps .step {
  margin-bottom: 30px;
}
.dataAboutBasket .steps .step .content {
  display: none;
  padding: 20px;
}
.dataAboutBasket .steps .step .content input,
.dataAboutBasket .steps .step .content select {
  border: none;
  padding: 10px;
  width: 100%;
  background: rgba(158, 31, 99, 0.1) !important;
}
.dataAboutBasket .steps .step .header {
  background: #dbdbdb;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dataAboutBasket .steps .step .header .data {
  font-size: 90%;
  opacity: 0.7;
}
.dataAboutBasket .steps .step.active .header {
  background: #444;
  color: white;
}
.dataAboutBasket .steps .step.active .content {
  display: block;
}

.basketzone {
  padding: 20px;
}
.basketzone h2 {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  font-weight: lighter;
}
.basketzone .basket_item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.basketzone .basket_item .data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 20px 1fr;
  grid-template-columns: 50px 1fr;
  gap: 20px;
}
.basketzone .basket_item .data img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}
.basketzone .basket_item .data .header {
  font-size: 100%;
}
.basketzone .basket_item .data .subheader {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 80%;
}
.basketzone .basket_item .data .price {
  font-size: 80%;
  color: #9E1F63;
}
.basketzone .basket_item .rem_upd {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.basketzone .basket_item .rem_upd input {
  background: #eaeaea;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
}
.basketzone .basket_item .rem_upd .buynow svg {
  fill: #1c8ac0;
}
.basketzone .basket_item .rem_upd svg {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #9E1F63;
  width: 20px;
  height: 20px;
}
.basketzone .basket_item .rem_upd svg:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c_0 {
  display: none !important;
}

.basket_conclusion {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 120%;
}
.basket_conclusion .grid {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: 115px 10px 140px;
  grid-template-columns: 115px 140px;
}
.basket_conclusion .grid a {
  background: #1c8ac0;
  display: block;
  text-align: center;
  color: white;
  width: 100%;
  font-size: 90%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.basket_conclusion .grid a:hover {
  background: #197aaa;
}

.ptype .flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 1fr;
  grid-template-columns: 50px 1fr;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ptype .flex b {
  font-weight: lighter;
  font-size: 80%;
  color: #9E1F63;
}
.ptype img {
  width: 30px;
  border-radius: 0 !important;
  margin: auto;
}

.basket_group_item {
  margin-bottom: 5px;
  padding: 15px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240px 200px 200px 1fr 200px;
  grid-template-columns: 240px 200px 200px 1fr 200px;
  background: #eaeaea;
}
.basket_group_item .basket_label_header {
  color: gray !important;
}
.basket_group_item i {
  font-style: normal;
  font-size: 70%;
  display: block;
}
.basket_group_item.p1 {
  background: rgba(0, 128, 0, 0.1294117647) !important;
}
.basket_group_item span {
  display: block;
  font-size: 80%;
  color: #9E1F63;
}
.basket_group_item a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}
.basket_group_item a.remove {
  color: #9E1F63;
}

.basket_grid {
  margin-top: 40px !important;
  display: -ms-grid;
  display: grid;
  gap: 40px;
  margin: auto;
  -ms-grid-columns: minmax(500px, 1fr);
  grid-template-columns: minmax(500px, 1fr);
}
.basket_grid .basket_item {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  background: #eaeaea;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-grid-columns: 100px 10px 1fr 10px 1fr 10px 50px;
  grid-template-columns: 100px 1fr 1fr 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.basket_grid .basket_item input {
  padding: 10px;
  border: none;
  text-align: center;
  border-radius: 10px;
}
.basket_grid .basket_item svg {
  width: 25px;
  height: 25px;
}
.basket_grid .basket_item .price {
  white-space: nowrap;
  color: #9E1F63;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 10px;
}
.basket_grid .basket_item .buynow {
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}
.basket_grid .basket_item .buynow svg {
  fill: #1c8ac0;
}
.basket_grid .basket_item .buynow:hover {
  background: #1c8ac0;
}
.basket_grid .basket_item .buynow:hover svg {
  fill: white;
}
.basket_grid .basket_item .remove_item {
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}
.basket_grid .basket_item .remove_item svg {
  fill: #9E1F63;
}
.basket_grid .basket_item .remove_item:hover {
  background: #9E1F63;
}
.basket_grid .basket_item .remove_item:hover svg {
  fill: white;
}
.basket_grid .basket_item .header {
  font-size: 130%;
}
.basket_grid .basket_item .subheader {
  font-size: 80%;
}
.basket_grid img {
  max-width: 80px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
  mix-blend-mode: darken;
}

.info {
  color: black;
  text-decoration: none;
}

.user_data {
  background: #E2E2E2;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 30px;
}

.bigpaybutton {
  max-width: 400px;
  font-size: 140%;
}

.searchbox {
  position: relative;
  padding: 10px;
}
.searchbox form button {
  border: none;
  background: none;
  position: absolute;
  right: 20px;
  z-index: 2;
  height: 30px;
  width: 30px;
  top: 18px;
  cursor: pointer;
}
.searchbox form button:hover svg {
  fill: #9E1F63;
}
.searchbox form button svg {
  fill: #5a5a5a;
}
.searchbox form input {
  outline: none;
  padding: 14px 20px;
  background: #eaeaea;
  border-radius: 5px;
  width: 100%;
  border: none;
}
.searchbox .sugg {
  margin-top: 5px;
}
.searchbox .sugg li {
  border-bottom: 1px solid #eaeaea;
}
.searchbox .sugg li.p {
  padding: 15px;
}
.searchbox .sugg li a {
  padding: 15px;
  white-space: nowrap;
  color: #1c8ac0;
  text-decoration: none;
  display: block;
}
.searchbox .sugg li a.search_link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 80%;
}
.searchbox .sugg li a.search_link img {
  border-radius: 100px;
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.searchbox .sugg li a .info {
  width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.searchbox .sugg li a .info .price {
  color: #9E1F63;
}
.searchbox .sugg li a:hover {
  background: #eaeaea;
}
.searchbox .sugg li:last-child {
  border: none !important;
}

.heartbox {
  position: relative;
  padding: 10px;
}
.heartbox .sugg {
  margin-top: 5px;
}
.heartbox .sugg li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 40px;
  grid-template-columns: 1fr 40px 40px;
  border-bottom: 1px solid #eaeaea;
}
.heartbox .sugg li .removeFav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  cursor: pointer;
}
.heartbox .sugg li .removeFav svg {
  fill: #9E1F63;
}
.heartbox .sugg li .removeFav:hover {
  background: #eaeaea;
}
.heartbox .sugg li .addToBasket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  cursor: pointer;
}
.heartbox .sugg li .addToBasket svg {
  fill: #1c8ac0;
}
.heartbox .sugg li .addToBasket:hover {
  background: #eaeaea;
}
.heartbox .sugg li.p {
  padding: 15px;
}
.heartbox .sugg li a {
  padding: 15px;
  white-space: nowrap;
  color: #1c8ac0;
  text-decoration: none;
  display: block;
}
.heartbox .sugg li a.heart_link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 80%;
}
.heartbox .sugg li a.heart_link img {
  border-radius: 100px;
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.heartbox .sugg li a .info {
  width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.heartbox .sugg li a .info .price {
  color: #9E1F63;
}
.heartbox .sugg li a:hover {
  background: #eaeaea;
}
.heartbox .sugg li:last-child {
  border: none !important;
}

.bigsearch {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 1/1/2/5;
  background: #E2E2E2;
  padding: 20px;
  border-radius: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 90px;
  grid-template-columns: 1fr 90px;
  gap: 10px;
}
.bigsearch input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 110%;
}
.bigsearch input[type=submit] {
  background: #9E1F63;
  color: white;
  cursor: pointer;
}
.bigsearch input[type=submit]:hover {
  background: #891b56;
}

.search_data {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.search_data .search_line img {
  width: 140px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.topsep {
  height: 100px;
}

.brc {
  font-size: 90%;
}
.brc a {
  color: black;
  text-decoration: none;
}

.comment_form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  background: #eaeaea;
}
.comment_form input[type=submit] {
  background: #9E1F63;
  color: white;
}
.comment_form label {
  display: block;
}
.comment_form label span {
  display: block;
  font-size: 80%;
  opacity: 0.6;
}

.pcomments {
  margin-top: 40px;
  border-top: 1px solid #ccc;
}
.pcomments .comments_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.pcomments .comments_list .comment_from_user {
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}
.pcomments .comments_list .comment_from_user h2, .pcomments .comments_list .comment_from_user h3 {
  padding: 0;
  margin: 0;
}
.pcomments .comments_list .comment_from_user h2 {
  font-size: 120%;
  font-weight: lighter;
}
.pcomments .comments_list .comment_from_user h3 {
  font-size: 70%;
  padding: 5px 0;
  font-weight: lighter;
}

.comment_body {
  max-width: 500px;
  background: #fff;
  margin: 50px auto;
  opacity: 20px;
  text-align: center;
  padding: 40px;
  border-radius: 40px !important;
}
.comment_body > img {
  width: 40%;
  height: auto;
  display: block;
  margin: auto;
  margin-bottom: 40px;
}
.comment_body h2 {
  margin: 0;
  font-size: 160%;
  font-weight: lighter;
  margin: 20px 0;
}
.comment_body h3 {
  margin: 0;
  font-size: 90%;
  font-weight: lighter;
}
.comment_body .stars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.comment_body .stars img {
  width: 24px;
}

.s404 {
  position: relative;
  max-width: 900px;
  margin: auto;
}
.s404 h4 {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 100;
  text-align: right;
  font-size: 150%;
}
.s404 p {
  position: absolute;
  right: 0;
  top: 60px;
  font-weight: 100;
  text-align: right;
  font-size: 80%;
}
.s404 img {
  width: 100%;
  height: auto;
}

.show_more_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}
.show_more_links a {
  background: #ccc;
  color: #9E1F63;
  text-decoration: none;
  padding: 6px 20px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 55px;
  border-bottom-right-radius: 55px;
}

.items_list_box {
  display: -ms-grid;
  display: grid;
  gap: 50px;
}
.items_list_box > div {
  padding-bottom: 40px;
}
.items_list_box h3 {
  cursor: pointer;
  font-size: 160%;
  font-weight: lighter;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
.items_list_box h3:hover span {
  color: #9E1F63;
}
.items_list_box h3:before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 18px;
  background: rgba(0, 0, 0, 0.2);
}
.items_list_box h3 span {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  background: #f1f1f1;
}

.loading {
  width: 100%;
  display: none;
  pointer-events: all !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.loading .loading_content {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 1fr;
  grid-template-columns: 300px 1fr;
}
.loading > div {
  text-align: center;
}
.loading img {
  width: 100px;
  height: 100px;
}

nav.navigation > ul > li {
  display: none;
}

.textpage {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  margin: 50px auto;
  border-radius: 10px;
}
.textpage ul {
  margin-top: 10px;
}
.textpage li {
  margin-bottom: 10px;
}
.textpage a {
  color: #9d28b0;
  text-decoration: none;
}

.filter_item_items a:hover {
  background: #ccc;
}

.filter_item_items a {
  text-decoration: none;
  color: black;
  padding: 4px 10px;
  background: #eaeaea;
  border-radius: 100px;
}

.colorpreview {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3137254902);
  border-radius: 4px;
  display: inline-block;
  margin-right: 5px;
}

.filter_item_items_c span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top_items_filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.top_items_filter span {
  padding: 10px;
  background: rgba(87, 138, 194, 0.3);
  margin-bottom: 10px;
  opacity: 0.7;
}
.top_items_filter span svg {
  margin-left: 10px;
  height: 20px;
  width: 20px;
  color: #9E1F63;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  cursor: pointer;
  fill: #9E1F63;
}
.top_items_filter span svg:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top_items_filter span i {
  font-style: normal;
  font-weight: normal;
}
.top_items_filter span:hover {
  opacity: 1;
}

.text_content {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  line-height: 1.7;
}
.text_content a {
  color: #9E1F63;
}

.newproducts {
  border-radius: 25px;
}
.newproducts .cat_grid {
  padding: 20px;
  background: rgba(204, 204, 204, 0.3137254902);
}

main {
  margin: 20px auto 100px auto !important;
}
main.mainpage .cat_grid {
  margin: 0 !important;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
main.mainpage .cat_grid .items {
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
main h1 {
  margin: 0;
  padding: 0;
  font-weight: lighter;
}
main .cat_grid {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 20px 1fr;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  min-height: 600px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
main .cat_grid .filter {
  position: sticky;
  top: 120px;
  background: #E2E2E2;
  border-radius: 10px;
  padding: 20px;
  min-height: 500px;
  max-height: calc(100vh - 130px);
  overflow: auto;
  padding-bottom: 150px;
}
main .cat_grid .filter .filter_item {
  margin-bottom: 50px;
}
main .cat_grid .filter .filter_item .filter_item_header {
  font-weight: bold;
  font-size: 100%;
}
main .cat_grid .filter .filter_item .filter_item_items {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main .cat_grid .filter .filter_item .filter_price {
  margin-top: 15px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 5px 10px 5px 1fr;
  grid-template-columns: 1fr 10px 1fr;
  width: 100%;
  gap: 5px;
}
main .cat_grid .filter .filter_item .filter_price span {
  text-align: center;
  color: #9E1F63;
}
main .cat_grid .filter .filter_item .filter_price input {
  outline: none;
  width: 100%;
  padding: 5px;
  border: none;
  background: white;
  text-align: center;
}
main .cat_grid .filter .filter_item label {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: 20px 10px 1fr;
  grid-template-columns: 20px 1fr;
  font-size: 90%;
}
main .cat_grid .filter .filter_item label input:checked ~ span {
  color: #9E1F63;
}
main .cat_grid .filter .filter_item label:hover {
  color: #731748;
}
main .cat_grid .filter .filter_item label .filter_item_items_c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .cat_grid .filter .filter_item label .filter_item_items_c span:nth-child(2) {
  opacity: 0.5;
  font-size: 90%;
}
main .cat_grid .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
main .cat_grid .items .item {
  color: black;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding-bottom: 56px !important;
}
main .cat_grid .items .item.added .price_add button {
  background: #9E1F63;
  color: white;
}
main .cat_grid .items .item.added .price_add button span {
  color: white;
}
main .cat_grid .items .item:hover {
  -webkit-box-shadow: 0px 0px 48px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 48px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 100;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
main .cat_grid .items .item .heart {
  z-index: 1;
  position: absolute;
  right: 5px;
  top: 5px;
}
main .cat_grid .items .item .heart:hover svg {
  fill: #9E1F63;
}
main .cat_grid .items .item .heart svg {
  fill: #ccc;
  width: 30px;
  height: 30px;
}
main .cat_grid .items .item .main_image {
  position: relative;
  padding: 20px;
}
main .cat_grid .items .item .main_image .hascolors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .cat_grid .items .item .main_image .hascolors img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 100px;
  padding: 10px;
  opacity: 0.8;
}
main .cat_grid .items .item .main_image .hascolors img:hover {
  opacity: 1;
}
main .cat_grid .items .item .main_image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
main .cat_grid .items .item .data {
  padding: 20px;
}
main .cat_grid .items .item .data .header {
  font-size: 120%;
}
main .cat_grid .items .item .data .subheader {
  font-size: 80%;
}
main .cat_grid .items .item .price_add {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  display: -ms-grid;
  display: grid;
  gap: 5px;
  -ms-grid-columns: 80px 5px 125px;
  grid-template-columns: 80px 125px;
  font-size: 80%;
  margin-top: 20px;
  color: #9E1F63;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .cat_grid .items .item .price_add button {
  border: 1px solid #ccc;
  padding: 10px 15px;
  border-radius: 100px;
  color: #9E1F63;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
main .cat_grid .items .item .price_add button span {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #1c8ac0;
}
main .cat_grid .items .item .price_add button:hover {
  background: #9E1F63;
  color: white;
}
main .cat_grid .items .item .price_add button:hover span {
  color: white;
}

.st {
  position: sticky;
  top: 100px;
  z-index: 2;
}

.card_placeholder {
  text-align: center;
  position: relative;
}
.card_placeholder .card_pos {
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -205px;
  z-index: 1;
  height: 235px;
  width: 400px;
}
.card_placeholder .card_pos .card_data {
  position: relative;
  height: 235px;
}
.card_placeholder .card_price {
  color: white;
  font-size: 200%;
  position: absolute;
  right: 24px;
  bottom: 5px;
}
.card_placeholder .name_surname {
  color: white;
  font-size: 120%;
  position: absolute;
  left: 28px;
  bottom: 10px;
  text-align: left;
  width: 100%;
  max-width: 230px;
  overflow: hidden;
  white-space: nowrap;
}
.card_placeholder .num {
  color: white;
  font-size: 180%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  position: absolute;
  left: 28px;
  bottom: 60px;
}
.card_placeholder img {
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
}

.lbl_group {
  margin-bottom: 40px;
}
.lbl_group .lbl_grou_label {
  color: #9E1F63;
  margin-bottom: 5px;
}

.ordercardform .flex {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ordercardform .flex label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.select_gcard_price {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.select_gcard_price label {
  display: block;
  padding: 20px;
  position: relative;
}
.select_gcard_price label span {
  cursor: pointer;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.select_gcard_price input {
  position: absolute;
  opacity: 0;
}
.select_gcard_price input:checked ~ span {
  background: #1c8ac0;
  color: white;
}

.fade {
  position: absolute;
  z-index: 1000;
  opacity: 0 !important;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  opacity: 0.3;
}

.fly {
  position: fixed;
  z-index: 10000;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
  background: #fff;
  width: 200px;
  pointer-events: none !important;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 20px 0;
}

.fav svg {
  fill: #9E1F63 !important;
}

.fly_heart {
  position: fixed;
  z-index: 10000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none !important;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 20px 0;
}
.fly_heart svg {
  fill: #9E1F63;
}

.headerline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.headerline .sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  font-size: 80%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerline .sort select {
  padding: 10px;
  background: #ccc;
  border: none;
  border-radius: 5px;
}

.p_price {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p_price .qepik {
  font-size: 70%;
  margin-bottom: 5px;
  opacity: 0.7;
}

.show_0 {
  display: none;
}

.colorcode {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 1px solid #000000;
}

.filter_items b {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.filter_line {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.select_color {
  font-size: 70%;
}

.select_color a span {
  opacity: 0.5;
}

.olchu a {
  background: #fff;
  padding: 10px;
  padding-bottom: 8px;
  height: auto !important;
  width: auto !important;
}

.select_color a {
  color: black;
  text-decoration: none;
  text-align: center;
}

.select_color a.selected span {
  opacity: 1;
}

.admline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: red;
  color: white;
  text-align: center;
  padding: 1px;
  font-size: 80%;
}

.message_enter_comments {
  background: #018001;
  color: white;
  margin: auto !important;
  max-width: 900px;
  padding: 10px 20px !important;
  border-radius: 5px !important;
}

.comment_box a {
  color: black;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ccc;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 50%;
  text-decoration: none;
}
.comment_box a img {
  height: 16px;
  width: 16px;
}

.desc_box p {
  margin: 0;
  margin-bottom: 4px;
}
.desc_box ul {
  margin-top: 15px;
}
.desc_box ul li {
  margin-bottom: 4px;
  display: -ms-grid;
  display: grid;
  cursor: default;
  -ms-grid-columns: 200px 1fr;
  grid-template-columns: 200px 1fr;
}
.desc_box ul li:hover {
  font-weight: bold;
}
.desc_box ul li b,
.desc_box ul li strong {
  font-weight: normal;
  color: #9E1F63;
}

.size {
  background: #d9d9d9;
}
.size .type_1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.size .type_1 .flex .t_1_1,
.size .type_1 .flex .t_1_2 {
  font-size: 80%;
  position: relative;
  width: 250px;
  height: 400px;
  background-size: 200px;
}
.size .type_1 .flex .t_1_1 {
  background: url("../images/sizes/type_1_1.svg") no-repeat center;
}
.size .type_1 .flex .t_1_1 .sizes .size_t_1_1 {
  position: absolute;
  top: 125px;
  left: 50px;
  text-align: center;
  height: 195px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.size .type_1 .flex .t_1_1 .sizes .size_t_1_2 {
  position: absolute;
  top: 83px;
  left: 104px;
  text-align: center;
  width: 90px;
}
.size .type_1 .flex .t_1_2 {
  background: url("../images/sizes/type_1_2.svg") no-repeat center;
}
.size .type_1 .flex .t_1_2 .sizes .size_t_1_1 {
  position: absolute;
  top: 190px;
  left: 75px;
  width: 90px;
  text-align: center;
}
.size .type_1 .flex .t_1_2 .sizes .size_t_1_2 {
  position: absolute;
  top: 270px;
  left: 75px;
  width: 90px;
  text-align: left;
}
.size .type_2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.size .type_2 .flex .t_2 {
  font-size: 80%;
  position: relative;
  width: 250px;
  height: 400px;
  background-size: 200px;
  background: url("../images/sizes/type_2.svg") no-repeat center;
}
.size .type_2 .flex .t_2 .sizes .size_t_1_1 {
  position: absolute;
  top: 125px;
  left: 21px;
  text-align: center;
  height: 195px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.size .type_2 .flex .t_2 .sizes .size_t_1_2 {
  position: absolute;
  top: 83px;
  left: 104px;
  text-align: center;
  width: 90px;
}
.size .type_3 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.size .type_3 .flex .t_3_1,
.size .type_3 .flex .t_3_2 {
  font-size: 80%;
  position: relative;
  width: 250px;
  height: 400px;
  background-size: 200px;
}
.size .type_3 .flex .t_3_1 {
  background: url("../images/sizes/type_3_1.svg") no-repeat center;
}
.size .type_3 .flex .t_3_1 .sizes .size_t_3_1 {
  position: absolute;
  top: 140px;
  left: 3px;
  text-align: center;
  height: 162px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.size .type_3 .flex .t_3_1 .sizes .size_t_3_2 {
  position: absolute;
  top: 102px;
  left: 47px;
  text-align: center;
  width: 200px;
}
.size .type_3 .flex .t_3_2 {
  background: url("../images/sizes/type_3_2.svg") no-repeat center;
}
.size .type_3 .flex .t_3_2 .sizes .size_t_3_1 {
  position: absolute;
  top: 205px;
  left: 7px;
  text-align: center;
  height: 49px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.size .type_3 .flex .t_3_2 .sizes .size_t_3_2 {
  position: absolute;
  top: 146px;
  left: 43px;
  text-align: center;
  width: 200px;
}
.size .type_4 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.size .type_4 .flex .t_4 {
  font-size: 80%;
  position: relative;
  width: 250px;
  height: 400px;
  background-size: 260px !important;
  background: url("../images/sizes/type_4.svg") no-repeat center;
}
.size .type_4 .flex .t_4 .sizes .size_t_1_1 {
  position: absolute;
  top: 138px;
  left: 0px;
  text-align: center;
  height: 185px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.size .type_4 .flex .t_4 .sizes .size_t_1_2 {
  position: absolute;
  top: 72px;
  left: 54px;
  text-align: center;
  width: 194px;
}

.prod_headerline h1,
.prod_headerline h2 {
  padding: 0;
  margin: 0;
  font-weight: normal;
}
.prod_headerline h1 {
  font-size: 400%;
}
.prod_headerline h2 {
  font-size: 130%;
}

.same,
.alreadysee {
  margin: 0 !important;
  padding-bottom: 50px;
}
.same .items,
.alreadysee .items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
}
.same .items .item,
.alreadysee .items .item {
  color: black;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  background: #fff;
  border-radius: 10px;
}
.same .items .item.added .price_add button,
.alreadysee .items .item.added .price_add button {
  background: #9E1F63;
  color: white;
}
.same .items .item.added .price_add button span,
.alreadysee .items .item.added .price_add button span {
  color: white;
}
.same .items .item:hover,
.alreadysee .items .item:hover {
  -webkit-box-shadow: 0px 0px 48px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 48px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 100;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.same .items .item .heart,
.alreadysee .items .item .heart {
  z-index: 1;
  position: absolute;
  right: 5px;
  top: 5px;
}
.same .items .item .heart:hover svg,
.alreadysee .items .item .heart:hover svg {
  fill: #9E1F63;
}
.same .items .item .heart svg,
.alreadysee .items .item .heart svg {
  fill: #ccc;
  width: 30px;
  height: 30px;
}
.same .items .item .main_image,
.alreadysee .items .item .main_image {
  position: relative;
  padding: 20px;
}
.same .items .item .main_image .hascolors,
.alreadysee .items .item .main_image .hascolors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.same .items .item .main_image .hascolors img,
.alreadysee .items .item .main_image .hascolors img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 100px;
  padding: 10px;
  opacity: 0.8;
}
.same .items .item .main_image .hascolors img:hover,
.alreadysee .items .item .main_image .hascolors img:hover {
  opacity: 1;
}
.same .items .item .main_image img,
.alreadysee .items .item .main_image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.same .items .item .data,
.alreadysee .items .item .data {
  padding: 20px;
}
.same .items .item .data .header,
.alreadysee .items .item .data .header {
  font-size: 120%;
}
.same .items .item .data .subheader,
.alreadysee .items .item .data .subheader {
  font-size: 80%;
}
.same .items .item .price_add,
.alreadysee .items .item .price_add {
  display: -ms-grid;
  display: grid;
  gap: 5px;
  -ms-grid-columns: 80px 5px 125px;
  grid-template-columns: 80px 125px;
  font-size: 80%;
  margin-top: 20px;
  color: #9E1F63;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.same .items .item .price_add button,
.alreadysee .items .item .price_add button {
  border: 1px solid #ccc;
  padding: 10px 15px;
  border-radius: 100px;
  color: #9E1F63;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.same .items .item .price_add button span,
.alreadysee .items .item .price_add button span {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #1c8ac0;
}
.same .items .item .price_add button:hover,
.alreadysee .items .item .price_add button:hover {
  background: #9E1F63;
  color: white;
}
.same .items .item .price_add button:hover span,
.alreadysee .items .item .price_add button:hover span {
  color: white;
}
.same h3,
.alreadysee h3 {
  font-weight: normal;
  font-size: 140%;
  padding: 30px 0;
  margin: 0;
}

.same {
  background: rgba(158, 31, 99, 0.1);
}

.alreadysee {
  background: rgba(28, 138, 192, 0.1);
}

.add_to_bag,
.bigpaybutton {
  overflow: hidden;
  cursor: pointer;
  border: none !important;
  -webkit-transition: 2s;
  transition: 2s;
  z-index: 1;
  display: inline-block;
  position: relative;
  color: white;
  text-align: center;
  background: #2BA7DE;
  display: block;
  width: 100%;
  font-size: 130%;
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.add_to_bag.disabled,
.bigpaybutton.disabled {
  cursor: not-allowed;
  background: #ccc;
}
.add_to_bag.disabled svg,
.bigpaybutton.disabled svg {
  display: none;
}
.add_to_bag.disabled:before, .add_to_bag.disabled:after,
.bigpaybutton.disabled:before,
.bigpaybutton.disabled:after {
  display: none !important;
  content: none !important;
}
.add_to_bag.added,
.bigpaybutton.added {
  background: #08c10f;
}
.add_to_bag.added svg,
.bigpaybutton.added svg {
  display: none;
}
.add_to_bag.added:before, .add_to_bag.added:after,
.bigpaybutton.added:before,
.bigpaybutton.added:after {
  display: none !important;
  content: none !important;
}
.add_to_bag:before, .add_to_bag:after,
.bigpaybutton:before,
.bigpaybutton:after {
  content: "";
  position: absolute;
  top: -1.5em;
  z-index: -1;
  width: 200%;
  aspect-ratio: 1;
  border-radius: 40%;
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-transition: 2s;
  transition: 2s;
}
.add_to_bag:before,
.bigpaybutton:before {
  left: -80%;
  -webkit-transform: translate3d(0, 8em, 0) rotate(-340deg);
          transform: translate3d(0, 8em, 0) rotate(-340deg);
}
.add_to_bag:after,
.bigpaybutton:after {
  right: -80%;
  -webkit-transform: translate3d(0, 8em, 0) rotate(390deg);
          transform: translate3d(0, 8em, 0) rotate(390deg);
}
.add_to_bag:hover:before, .add_to_bag:hover:after, .add_to_bag:focus:before, .add_to_bag:focus:after,
.bigpaybutton:hover:before,
.bigpaybutton:hover:after,
.bigpaybutton:focus:before,
.bigpaybutton:focus:after {
  -webkit-transform: translate3d(0, -6em, 0);
          transform: translate3d(0, -6em, 0);
  background-color: #08c10f;
}
.add_to_bag svg,
.bigpaybutton svg {
  fill: white;
}

.prod_grid {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  gap: 40px;
  -ms-grid-columns: minmax(500px, 1fr) 40px 550px;
  grid-template-columns: minmax(500px, 1fr) 550px;
}
.prod_grid .images {
  display: -ms-grid;
  display: grid;
  align-self: baseline;
  -ms-grid-columns: 1fr 2px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.prod_grid .images.oneimage {
  -ms-grid-columns: 1fr !important;
  grid-template-columns: 1fr !important;
}
.prod_grid .images img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: darken;
  border-radius: 15px;
}
.prod_grid .images img:hover {
  z-index: 2;
  position: relative;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.prod_grid .prod_info {
  background: #E2E2E2;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.prod_grid .prod_info img {
  max-width: 100%;
}
.prod_grid .prod_info .p_section {
  min-height: 150px;
  padding: 30px;
}
.prod_grid .prod_info .p_section .div_c {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: 1.7fr 10px 1fr;
  grid-template-columns: 1.7fr 1fr;
}
.prod_grid .prod_info .p_section .div_c input {
  border: none;
  background: #fff;
  width: 100%;
  text-align: center;
  outline: none;
}
.prod_grid .prod_info .p_section .div_c input:focus {
  background: rgba(255, 255, 255, 0.7);
}
.prod_grid .prod_info .p_section .div_c div {
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 5px;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  color: #2BA7DE;
  padding: 10px;
  width: 100%;
  background: #CBDBE1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prod_grid .prod_info .p_section .div_c div span,
.prod_grid .prod_info .p_section .div_c div svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.prod_grid .prod_info .p_section .div_c div svg {
  width: 20px;
  fill: #2BA7DE;
  height: 20px;
}
.prod_grid .prod_info .p_section .div_c div:hover svg {
  fill: red;
}
.prod_grid .prod_info .p_section .div_c div:hover span {
  color: black !important;
}
.prod_grid .prod_info .p_section .flex_selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.prod_grid .prod_info .p_section .flex_selector > label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 90%;
  position: relative;
  text-align: center;
}
.prod_grid .prod_info .p_section .flex_selector > label span {
  background: #fff;
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  width: 100%;
  display: block;
  padding: 10px 0;
}
.prod_grid .prod_info .p_section .flex_selector > label input {
  position: absolute;
  opacity: 0;
}
.prod_grid .prod_info .p_section .flex_selector > label input:checked ~ span {
  opacity: 1;
}
.prod_grid .prod_info .p_section h4 {
  font-size: 140%;
  padding: 0;
  margin: 0;
  font-weight: lighter;
  margin-bottom: 10px;
  color: #8B3778;
}
.prod_grid .prod_info .p_section .select_color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.prod_grid .prod_info .p_section .select_color a {
  width: 70px;
  height: 50px;
}
.prod_grid .prod_info .p_section .select_color a.selected img {
  border: 2px solid #2BA7DE;
}
.prod_grid .prod_info .p_section .select_color a img {
  border: 2px solid transparent;
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
  display: block;
  margin: auto;
}
.prod_grid .prod_info .price {
  padding: 30px;
}
.prod_grid .prod_info .price .c_price {
  color: #9E1F63;
  font-size: 300%;
}
.prod_grid .prod_info .price .old_price {
  color: gray;
  text-decoration: line-through;
}