@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Roboto:ital,wght@0,400;0,500;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap");

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

@-webkit-keyframes morph {
  0% {
    border-radius: 70% 40% 30% 70% / 60% 30% 70% 40%;
  }

  25% {
    border-radius: 65% 45% 35% 75% / 55% 25% 65% 35%;
  }

  50% {
    border-radius: 60% 40% 30% 70% / 65% 35% 75% 45%;
  }

  75% {
    border-radius: 60% 45% 30% 65% / 60% 30% 60% 40%;
  }

  100% {
    border-radius: 70% 35% 35% 75% / 60% 40% 75% 40%;
  }
}

@keyframes morph {
  0% {
    border-radius: 70% 40% 30% 70% / 60% 30% 70% 40%;
  }

  25% {
    border-radius: 65% 45% 35% 75% / 55% 25% 65% 35%;
  }

  50% {
    border-radius: 60% 40% 30% 70% / 65% 35% 75% 45%;
  }

  75% {
    border-radius: 60% 45% 30% 65% / 60% 30% 60% 40%;
  }

  100% {
    border-radius: 70% 35% 35% 75% / 60% 40% 75% 40%;
  }
}

@-webkit-keyframes rot {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rot {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

html,
body {
  scroll-behavior: smooth;
  font-family: 'Roboto', sans-serif;
}

.btn {
  font-size: 16px;
  line-height: 190%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 55px;
  border-radius: 55px;
  outline: none;
  vertical-align: middle;
  -webkit-transition: none;
  transition: none;
}

.btn img {
  margin: 0 10px 0 0;
}

.btn-primary {
  border: none !important;
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#6D1B1F), to(#5A191C));
  background: linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%);
  -webkit-box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.53);
  box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.53);
}

.btn-primary:hover {
  background: #531215;
  -webkit-box-shadow: 0px 4px 20px rgba(142, 72, 57, 0.75);
  box-shadow: 0px 4px 20px rgba(142, 72, 57, 0.75);
}

.btn-primary:focus {
  background: -webkit-gradient(linear, right top, left top, from(#6D1B1F), to(#5A191C)) !important;
  background: linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%) !important;
  -webkit-box-shadow: 0px 4px 20px rgba(142, 72, 57, 0.75) !important;
  box-shadow: 0px 4px 20px rgba(142, 72, 57, 0.75) !important;
}

.btn-primary:active {
  background: -webkit-gradient(linear, right top, left top, from(#6D1B1F), to(#5A191C)) !important;
  background: linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%) !important;
  -webkit-box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.53);
  box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.53);
}

.btn-secondary {
  border: none !important;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#BC9672), to(#CEAB8B));
  background: linear-gradient(90deg, #BC9672 0%, #CEAB8B 100%);
  -webkit-box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.33);
  box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.33);
}

.btn-secondary:hover {
  background: -webkit-gradient(linear, left top, right top, from(#cc9057), to(#c7915f));
  background: linear-gradient(90deg, #cc9057 0%, #c7915f 100%);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-secondary:focus {
  background: -webkit-gradient(linear, left top, right top, from(#cc9057), to(#c7915f));
  background: linear-gradient(90deg, #cc9057 0%, #c7915f 100%);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-secondary:active {
  background: -webkit-gradient(linear, left top, right top, from(#cc9057), to(#c7915f));
  background: linear-gradient(90deg, #cc9057 0%, #c7915f 100%);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-outline-secondary {
  color: #fff;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #CEAB8B;
  color: #CEAB8B;
}

.btn-outline-secondary:hover {
  background: -webkit-gradient(linear, left top, right top, from(#cc9057), to(#c7915f));
  background: linear-gradient(90deg, #cc9057 0%, #c7915f 100%);
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
}

.btn-outline-secondary:focus {
  background: -webkit-gradient(linear, left top, right top, from(#BC9672), to(#CEAB8B)) !important;
  background: linear-gradient(90deg, #BC9672 0%, #CEAB8B 100%) !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
}

.btn-outline-secondary:active {
  background: -webkit-gradient(linear, left top, right top, from(#BC9672), to(#CEAB8B)) !important;
  background: linear-gradient(90deg, #BC9672 0%, #CEAB8B 100%) !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
}

.btn-outline-primary {
  font-size: 14px;
  padding: 10px 35px;
  font-weight: 500;
  color: #fff;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #531215;
  color: #531215;
}

.btn-outline-primary:not(:disabled):not(.disabled):hover,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):focus,
.btn-outline-primary:not(:disabled):not(.disabled):active {
  background: #531215;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
  box-shadow: none;
  color: #fff;
}

header {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/header-bg.jpg") center/cover no-repeat fixed;
  padding: 30px 0 0;
}

header .header {
  position: relative;
  z-index: 2;
}

header .header .logo {
  margin: 0 60px 0 0;
}

header .header .logo-scroll {
  display: none;
}

header .header ul {
  list-style: none;
  margin: 0;
}

header .header ul li {
  margin: 0 25px 0 0;
}

header .header ul a {
  font-size: 13px;
  line-height: 190%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.7;
}

header .header ul a:hover {
  opacity: 1;
  text-decoration: none;
}

header .header .phone {
  text-align: right;
}

header .header .phone a {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}

header .header .phone a:hover {
  text-decoration: none;
}

header .header .phone p {
  font-size: 13px;
  line-height: 190%;
  color: #FFFFFF;
  opacity: 0.6;
  margin: 0;
}

header .header .btn {
  margin: 0 15px;
  padding: 10px 35px;
  font-size: 14px;
  font-weight: 500;
  border-color: #fff;
  color: #fff;
}

header .header .btn:hover {
  color: #333;
  background: #fff;
}

header .header .cart {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header .cart a {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 10px;
  width: 60px;
  height: 60px;
  background: -webkit-gradient(linear, right top, left top, from(#6D1B1F), to(#5A191C));
  background: linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%);
  border-radius: 60px;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .header .cart a:hover {
  background: #8D3034;
  -webkit-box-shadow: 0px 10px 20px rgba(100, 26, 29, 0.3);
  box-shadow: 0px 10px 20px rgba(100, 26, 29, 0.3);
}

header .header .cart a span {
  font-weight: bold;
  font-size: 10px;
  line-height: 190%;
  color: #FFFFFF;
  position: absolute;
  top: 34px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

header .title {
  padding: 130px 0 170px;
}

header .title h1 {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 85px;
  line-height: 90%;
  color: #FFFFFF;
  margin: 0 0 50px;
}

header .title p {
  font-weight: 300;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin: 0 0 60px;
  width: 80%;
}

header .title a img {
  margin: 0 0 0 10px;
}

header .title .prod {
  position: absolute;
  right: 0;
  top: -230px;
}

header .title .pos-r {
  position: relative;
}

header.sticky .header,
header.inner .header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #EADDCE;
}

header.sticky .header .logo,
header.inner .header .logo {
  display: none;
}

header.sticky .header .logo-scroll,
header.inner .header .logo-scroll {
  padding: 16px 0;
  margin: 0 60px 0 0;
  display: inline-block;
}

header.sticky .header .logo-scroll img,
header.inner .header .logo-scroll img {
  width: 60px;
}

header.sticky .header ul a,
header.inner .header ul a {
  opacity: 1;
  color: #3C2C2B;
}

header.sticky .header .phone,
header.inner .header .phone {
  text-align: right;
}

header.sticky .header .phone a,
header.inner .header .phone a {
  color: #3C2C2B;
  font-size: 18px;
}

header.sticky .header .phone a:hover,
header.inner .header .phone a:hover {
  text-decoration: none;
}

header.sticky .header .phone p,
header.inner .header .phone p {
  color: #908275;
}

header.sticky .header .btn,
header.inner .header .btn {
  margin: 0 15px;
  padding: 10px 35px;
  font-size: 14px;
  font-weight: bold;
  color: #5A191C;
  border-color: #EAE2E2;
}

header.sticky .header .btn:hover,
header.inner .header .btn:hover {
  color: #333;
  background: #EAE2E2;
}


header.inner .phone .btn {
  margin-right: 0 !important;
}

main.inner {
  padding-top: 100px;
}

#cart {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 380px;
  max-width: 100%;
  z-index: 101;
  background: #FCF5EC;
  -webkit-box-shadow: -10px 0px 20px rgba(100, 26, 29, 0.3);
  box-shadow: -10px 0px 20px rgba(100, 26, 29, 0.3);
  display: none;
}

#cart .title {
  border-bottom: 1px solid #EADDCE;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  padding: 0 25px;
}

#cart .title h3 {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 144%;
  line-height: 95px;
  color: #3C2C2B;
  margin: 0;
}

#cart .title a {
  color: #908275;
  font-size: 55px;
  font-weight: 100;
  font-family: serif;
  text-decoration: none !important;
}

#cart .body .cart-items {
  height: calc(100vh - 221px);
  overflow: auto;
}

#cart .body .lines {
  padding: 15px 25px;
  border-bottom: 1px solid #EADDCE;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#cart .body .lines .image {
  position: relative;
  margin: 0 10px 0 0;
}

#cart .body .lines .image img {
  width: 60px;
}

#cart .body .lines .image .precent {
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 27px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/precent.svg") center no-repeat;
}

#cart .body .lines .text {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#cart .body .lines .text p {
  font-size: 12px;
  line-height: 178%;
  color: #908275;
  margin: 0 0 15px;
}

#cart .body .lines-title {
  font-size: 14px;
  line-height: 130%;
  color: #3C2C2B;
  max-width: 180px;
  display: inline-block;
  margin: 0 20px 0 0;
}

#cart .body .lines .price p {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
  text-align: right;
  color: #3C2C2B;
  margin: 0;
}

#cart .body .lines .price .old {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 144%;
  text-align: right;
  color: #908275;
  text-decoration: line-through;
}

#cart .body .remove {
  font-size: 12px;
  line-height: 29px;
  text-align: right;
  color: #908275;
  padding-left: 13px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/remove.png") center left no-repeat;
}

#cart .body .lines .count {
  width: 75px;
  height: 29px;
  border: 1px solid #CEAB8B;
  border-radius: 60px;
  padding: 0 12px;
  line-height: 29px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
}

#cart .body .lines .count input {
  background: none;
  border: none;
  outline: none;
  width: 20px;
  text-align: center;
  font-size: 12px;
}

#cart .body .lines .count input+a {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/plus.png") center/contain no-repeat;
}

#cart .body .lines .count a {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/minus.png") center/contain no-repeat;
}

#cart .body .column {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#cart .body .total {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  padding: 0 25px;
}

#cart .body .total p {
  margin: 0;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 60px;
  color: #3C2C2B;
}

#cart .footer a {
  text-align: center;
  display: inline-block;
  width: 100%;
  line-height: 65px;
  background: -webkit-gradient(linear, right top, left top, from(#6D1B1F), to(#5A191C));
  background: linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%);
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  text-decoration: none !important;
  font-size: 24px;
  color: #FFFFFF;
}

#menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 101;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/menu-bg.jpg") center/cover no-repeat;
  -webkit-box-shadow: 10px 0px 20px rgba(100, 26, 29, 0.3);
  box-shadow: 10px 0px 20px rgba(100, 26, 29, 0.3);
  display: none;
  max-width: 480px;
  width: 100%;
  text-align: center;
  padding: 0 30px 50px;
  overflow: auto;
}

#menu .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 30px 0;
  margin-bottom: 40px;
}

#menu .title .close {
  float: none;
  position: absolute;
  top: 30px;
  left: 25px;
  color: #3C2C2B;
  font-size: 36px;
  opacity: 1;
  font-weight: 100;
  font-family: serif;
  text-decoration: none !important;
}

#menu .title .logo img {
  width: 60px;
}

#menu nav ul {
  list-style: none;
  margin: 0 0 50px;
}

#menu nav li {
  margin: 0 0 10px;
}

#menu nav li a {
  font-size: 16px;
  line-height: 190%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #531215;
}

#menu .contacts .phone {
  margin: 0 0 10px;
}

#menu .contacts .phone a {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 190%;
  text-transform: uppercase;
  color: #3C2C2B;
}

#menu .contacts .btn {
  padding: 8px 35px;
}


.title-sm span {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C79C76;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/title.svg") top center no-repeat;
  display: inline-block;
/*
  padding-top: 45px;
  margin: 0 0 15px;
*/
}

.title-sm h2 {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 600;
  font-size: 56px;
  line-height: 100%;
  color: #36302D;
  margin: 0 0 15px;
}

.title-sm p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 190%;
  color: #3C2C2B;
}

.about {
/*
  padding: 120px 0 80px;
*/
  padding: 20px;
  background:#fff;
  margin-bottom:20px;
  border-radius: 10px;
}

.about p {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 144%;
  color: #3C2C2B;
}

.about p img {
  vertical-align: middle;
  margin: 0 10px;
}

.about-items {
  text-align: center;
}

.about-items img {
  margin: 0 0 20px;
}

.about-items strong {
  margin: 0 0 15px;
  width: 100%;
  display: inline-block;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 144%;
  color: #3C2C2B;
}

.about-items p {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 158%;
  text-align: center;
  color: #908275;
  width: 90%;
  margin: 0 auto 30px;
}

.about-slick {
  text-align: center;
}

.about-slick-items {
  outline: none !important;
}

.about-slick iframe {
  margin: 0 auto !important;
}

.about-slick .image,
.about-slick iframe {
  margin: 20px auto;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  position: relative;
}

.about-slick .image:before,
.about-slick iframe:before {
  content: '';
  width: 104%;
  height: 104%;
  background: #FFF3E4;
  position: absolute;
  top: -4%;
  left: -4%;
  z-index: -1;
  border-radius: 50% 45% 40% 60% / 55% 35% 60% 45%;
  -webkit-animation: morph 10s ease-in-out infinite;
  animation: morph 10s ease-in-out infinite;
}

.about .slick-dots {
  bottom: 70px;
}

.about .slick-dots li {
  width: 6px;
  height: 6px;
  padding: 0;
  margin: 0 7px;
}

.about .slick-dots li.slick-active {
  margin: 0 15px;
  position: relative;
}

.about .slick-dots li.slick-active:before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -13px 0 0 -13px;
  border-radius: 26px;
}

.about .slick-dots button {
  padding: 0;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #fff;
}

.about .slick-dots button:before {
  display: none;
}

.banner {
  background: #fcf5eb url(/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/banner-bg.jpg) top center/100% auto no-repeat;
  padding: 100px 0 120px;
}

.banner-product .print {
  position: absolute;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  top: -15px;
  left: -15px;
}

.banner-product .print a {
  display: inline-block;
  margin: 0 0 15px;
  -webkit-animation: rot 60s linear infinite;
  animation: rot 60s linear infinite;
}

.banner-product-items {
  text-align: center;
}

.banner-product-items img {
  margin: 0 auto -20px;
}

.banner-product-items span {
  display: inline-block;
  width: 100%;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: #CABBAD;
}

.banner-title h2 {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 52px;
  line-height: 100%;
  color: #272222;
  margin-bottom: 25px;
}

.banner-title p {
  font-size: 16px;
  line-height: 180%;
  color: #3C2C2B;
  margin-bottom: 45px;
}

.banner-items {
  margin: 0 0 30px;
}

.banner-items>div {
  width: 100%;
}

.banner-items label {
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.banner-items label input {
  display: none;
}

.banner-items label input:checked+div {
  border-color: #531215;
  z-index: 2;
}

.banner-items label input:checked+div p {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/check-form.svg") left center/contain no-repeat;
  color: #531215;
}

.banner-items label input:checked+div strong {
  color: #531215;
}

.banner-items label div {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  padding: 20px;
  background: #FCF5EC;
  border: 1px solid #CEAB8B;
  margin: -1px 0 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.banner-items label p {
  font-size: 16px;
  line-height: 130%;
  color: #CEAB8B;
  margin: 0;
  padding-left: 35px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/uncheck.svg") left center/contain no-repeat;
}

.banner-items label strong {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 92%;
  color: #CEAB8B;
}

.banner-forms {
  margin: 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.banner-forms .count {
  border: 1px solid #CEAB8B;
  border-radius: 60px;
  margin: 0 15px 0 0;
  padding: 17px 30px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
background: #fbf1e7;
}

.banner-forms .count a {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/minus.svg") center no-repeat;
  width: 14px;
  height: 14px;
  display: inline-block;
  opacity: .6;
}

.banner-forms .count a:hover {
  opacity: 1;
}

.banner-forms .count input {
  border: none;
  background: none;
  width: 60px;
  text-align: center;
}

.banner-forms .count input+a {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/plus.svg") center no-repeat;
}

.banner .nav {
  border: none;
  margin: 0 0 20px;
}

.banner .nav-item {
  margin: 0;
  border: none;
  background: none !important;
  padding: 0;
  margin: 0 30px 0 0;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 144%;
  color: #CEAB8B;
}

.banner .tab-pane p {
  font-size: 14px;
  line-height: 180%;
  color: #908275;
}

.banner .tab-pane a {
  font-size: 13px;
  line-height: 178%;
  color: #CEAB8B;
  margin-left: 5px;
  padding-right: 15px;
  background: url(/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/link.svg) right center/10px auto no-repeat;
  display: inline;
}

.product {
  padding: 90px 0 50px;
}

.product .title-sm {
  margin-bottom: 80px;
}

.product-items {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 80px;
}

.product-items img {
  width: 250px;
  height: auto !important;
  margin: 0 40px 0 0;
}

.product-items div {
  padding-right: 50px;
}

.product-items div span {
  font-size: 16px;
  line-height: 180%;
  color: #3C2C2B;
}

.product-items div strong {
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 144%;
  color: #272222;
}

.product-items div p {
  font-size: 14px;
  line-height: 180%;
  color: #908275;
  margin: 0 0 40px;
}

.product-items .price {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.product-items .price p {
  margin: 0 40px 0 0;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 92%;
  color: #3C2C2B;
}

.product-items .price p span {
  font-size: 30px !important;


}

.woocommerce ul.order_details {

  margin: 150px 0 3em !important;
  ;

}




.product .natural {
  text-align: center;
  margin: 0 auto 80px;
  display: block;
  -webkit-animation: rot 60s linear infinite;
  animation: rot 60s linear infinite;
}

.product .soon {
  padding: 60px 90px 90px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/soon-bg.png") center/contain no-repeat;
}

.product .soon strong {
  padding-top: 140px;
  margin: 0 0 20px;
  display: inline-block;
  text-align: center;
  width: 100%;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 144%;
  color: #CEAB8B;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/soon.png") top center no-repeat;
}

.product .soon p {
  font-size: 14px;
  line-height: 180%;
  text-align: center;
  color: #908275;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

.slider {
  padding: 40px 0 50px;
}

.slider .shift {
  position: relative;
  margin-left: calc(100% / 12 * -2);
}

.slider-slick {
  padding: 80px 80px 110px;
  margin-top: 150px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/slider-bg2.jpg") center/cover no-repeat;
}

.slider-slick .slick-prev {
  width: 36px;
  height: 16px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/arrow.svg") center no-repeat;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: initial;
  bottom: 80px;
  margin-top: 0;
  z-index: 9;
  left: 70px;
}

.slider-slick .slick-prev:before {
  display: none;
}

.slider-slick .slick-next {
  width: 36px;
  height: 16px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/arrow.svg") center no-repeat;
  -webkit-transform: none;
  transform: none;
  top: initial;
  z-index: 9;
  left: 140px;
  bottom: 80px;
}

.slider-slick .slick-next:before {
  display: none;
}

.slider-item {
  outline: none !important;
}

.slider-item div {
  margin: 0 0 40px;
}

.slider-item div>p {
  font-size: 16px;
  line-height: 150%;
  color: #3C2C2B;
  margin: 0 0 10px;
}

.slider-item strong {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #272222;
  display: inline-block;
  margin: 0 0 15px;
}

.slider-item p {
  font-size: 14px;
  line-height: 178%;
  color: #908275;
  margin: 0;
}

.slider-item ol {
  counter-reset: num;
  margin-top: 20px;
}

.slider-item ol li {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-right: 10px;
}

.slider-item ol li:before {
  content: counter(num, decimal-leading-zero);
  counter-increment: num;
  font-family: EB Garamond;
  font-size: 20px;
  line-height: 100%;
  color: #3C2C2B;
  margin: 0 10px 0 0;
}

.slider-item ol p {
  font-size: 16px;
  line-height: 130%;
  color: #3C2C2B;
  margin: 0 0 10px;
}

.slider-item ol span {
  font-size: 13px;
  line-height: 178%;
  color: #908275;
  margin: 0;
  margin: 0 0 10px;
  display: inline-block;
  width: 100%;
}

.slider-item ol a {
  font-size: 13px;
  line-height: 178%;
  color: #CEAB8B;
  margin-left: 5px;
  padding-right: 15px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/link.svg") right center/10px auto no-repeat;
  display: inline;
}

.solution {
  padding: 40px 0 90px;
}

.solution-slick {
  padding: 0 30px;
}

.solution .slick-prev {
  width: 36px;
  height: 16px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/arrow.svg") center no-repeat;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 50%;
  margin-top: -8px;
  z-index: 9;
  left: 0px;
}

.solution .slick-prev:before {
  display: none;
}

.solution .slick-next {
  width: 36px;
  height: 16px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/arrow.svg") center no-repeat;
  -webkit-transform: none;
  transform: none;
  top: 50%;
  margin-top: -8px;
  z-index: 9;
  right: 0px;
}

.solution .slick-next:before {
  display: none;
}

.solution-item {
  text-align: center;
  position: relative;
  outline: none !important;
}

.solution-item.gift:before {
  content: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/gift.svg");
  position: absolute;
  top: 120px;
  left: 120px;
}

.solution-item img {
  display: inline-block !important;
  max-width: 100%;
  margin: 0 0 -50px;
}

.solution-item strong {
  padding: 0 15%;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #272222;
  display: inline-block;
  margin: 0px 0 20px;
  width: 100%;
}

.solution-item p {
  font-size: 14px;
  line-height: 180%;
  text-align: center;
  color: #908275;
  margin: 0 0 35px;
  padding: 0 15%;
}

.solution-item i {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/arrow-sm.svg") center no-repeat;
  margin: 0 0 15px;
}

.solution-item:hover {
  text-decoration: none;
}

.solution-item:hover strong {
  color: #5A191C;
}

.solution-item:hover i {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/arrow-smh.svg") center no-repeat, -webkit-gradient(linear, right top, left top, from(#6D1B1F), to(#5A191C));
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/arrow-smh.svg") center no-repeat, linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%);
  -webkit-box-shadow: 0px 10px 20px rgba(100, 26, 29, 0.3);
  box-shadow: 0px 10px 20px rgba(100, 26, 29, 0.3);
}

.delivery {
  padding: 90px 0 110px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/delv-bg.jpg") center/cover no-repeat;
}

.delivery .title-sm h2,
.delivery .title-sm p {
  color: #fff;
}

.delivery .title-sm p {
  margin: 0 0 50px;
  opacity: .8;
}

.delivery ul {
  margin: 0 0 80px;
}

.delivery ul li {
  height: 72px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 10px 10px;
}

.delivery-price {
  border: 1px solid #CEAB8B;
  padding: 20px 15px 25px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
}

.delivery-price div {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  text-align: center;
  padding: 0 30px 0 15px;
}

.delivery-price div+div {
  border-left: 1px solid #ceab8b;
  padding: 0 15px 0 30px;
}

.delivery-price div span {
  display: inline-block;
  font-size: 14px;
  line-height: 178%;
  text-align: center;
  color: #CEAB8B;
  margin-bottom: 5px;
}

.delivery-price div p {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  margin: 0;
  text-align: center;
  color: #FFFFFF;
}

.faq {
  padding: 90px 0 50px;
}

.faq-item {
  border-bottom: 1px solid #CEAB8B;
  border-top: 1px solid #CEAB8B;
  margin-top: -1px;
  max-height: 70px;
  overflow: hidden;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}

.faq-item.open {
  max-height: 400px;
}

.faq-item.open .faq-title {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/minus.svg") left center no-repeat;
}

.faq-title {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 144%;
  color: #272222;
  padding-left: 35px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/plus.svg") left center no-repeat;
  line-height: 70px;
  cursor: pointer;
}

.faq-body {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.faq-body div {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  padding: 0 35px 35px;
}

.faq-body div p {
  font-size: 16px;
  line-height: 180%;
  color: #3C2C2B;
  padding-right: 30px;
}

.faq-body img {
  margin-bottom: 35px;
}

.callback {
  padding: 50px 0 90px;
}

.callback button {
  margin-right: 25px;
}

.callback label {
  width: 100%;
  margin-bottom: 20px;
}

.callback label.h100 {
  height: calc(100% - 20px);
}

.callback textarea.form-control {
  height: 100%;
  resize: none;
  padding: 15px 25px;
}

.callback textarea.form-control:focus {
  border-color: #531215;
}

.callback .toggle {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 15px;
}

.callback .toggle label {
  margin: 0 20px 0 0;
  width: auto;
  cursor: pointer;
}

.callback .toggle input {
  display: none;
}

.callback .toggle input:checked+span {
  color: #531215;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/check-form.svg") left center no-repeat;
}

.callback .toggle span {
  font-size: 16px;
  line-height: 190%;
  color: #AE9176;
  padding-left: 35px;
  display: inline-block;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/uncheck.svg") left center no-repeat;
}

.callback .form-control {
  border: 1px solid #CEAB8B;
  padding: 0 25px;
  border-radius: 0;
  width: 100%;
  height: 58px;
  background: none;
  color: #531215;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.callback .form-control:focus {
  border-color: #531215;
}

.callback .form-control::-webkit-input-placeholder {
  color: #AE9176;
}

.callback .form-control::-moz-placeholder {
  color: #AE9176;
}

.callback .form-control:-ms-input-placeholder {
  color: #AE9176;
}

.callback .form-control::-ms-input-placeholder {
  color: #AE9176;
}

.callback .form-control::placeholder {
  color: #AE9176;
}

.callback em {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 178%;
  color: #AE9176;
}

.callback em a {
  color: #AE9176;
  text-decoration: underline;
}

.callback em a:hover {
  text-decoration: none;
}

.callback em.w-100 {
  text-align: center;
  display: inline-block;
  padding: 0 10%;
  line-height: 1.5;
  margin-top: 30px;
}

.cart-header {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  margin: 10px 0 40px;
}

.cart-header .btn {
  margin: 0 35px 0 0;
}

.cart-header span {
  font-size: 16px;
  line-height: 190%;
  color: #CEAB8B;
}

.cart-header .refresh,
.woocommerce-page table.cart td.actions .button {
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
  color: #5A191C !important;
  padding-left: 30px !important;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/refresh.svg") left center no-repeat !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  border-bottom: 1px dashed #691B1E !important;
  white-space: nowrap !important;
}

.cart-header .refresh:not(:disabled):hover,
.woocommerce-page table.cart td.actions .button:not(:disabled):hover {
  border-bottom-color: transparent !important;
  text-decoration: none !important;
}

.cart-table {
  margin: 0 0 60px;
  width: 95%;
}

.cart-tr {
  padding: 30px 0 30px 30px;
  border-bottom: 1px solid #EADDCE;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
}

.cart-tr .image {
  position: relative;
}

.cart-tr .image span {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/precent.svg") center/cover no-repeat;
  top: -5px;
  left: -10px;
}

.cart-tr .image img {
  width: 120px;
}

.cart-tr .count {
  border: 1px solid #CEAB8B;
  border-radius: 60px;
  margin: 0 15px 0 0;
  padding: 7px 15px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cart-tr .count a {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/minus.svg") center no-repeat;
  width: 14px;
  height: 14px;
  display: inline-block;
  opacity: .6;
}

.cart-tr .count a:hover {
  opacity: 1;
}

.cart-tr .count input {
  border: none;
  background: none;
  width: 45px;
  text-align: center;
}

.cart-tr .count input+a {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/plus.svg") center no-repeat;
}

.cart-tr p {
  max-width: 340px;
}

.cart-tr p a {
  font-size: 16px;
  line-height: 130%;
  color: #3C2C2B;
}

.cart-tr strong {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 144%;
  color: #3C2C2B;
}

.cart-tr .del {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #e0e0e0 url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/x.svg") center no-repeat;
}

.cart-order {
  background: #FCF5EC;
}

.cart-order .coupon {
  padding: 35px 20px;
}

.cart-order .coupon label {
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cart-order .coupon input {
  width: 55%;
  border-radius: 40px 0 0 40px;
  outline: none !important;
  height: 50px;
  padding: 0 20px;
  color: #CEAB8B;
  border: 1px solid #CEAB8B;
  border-right: none;
  font-size: 14px;
}

.cart-order .coupon button {
  text-transform: none;
  background: #3C2C2B;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  padding: 0;
  width: 45%;
  border-radius: 0 40px 40px 0;
  font-size: 14px;
}

.cart-order .total {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  margin: 0 0 35px;
  padding: 0 20px;
}

.cart-order .total p {
  margin: 0;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 144%;
  color: #3C2C2B;
}

.cart-order .submit .btn {
  width: 100%;
  border-radius: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-delivery {
  padding: 0 20px;
  margin-bottom: 35px;
}

.cart-delivery>p {
  margin: 0 0 20px;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 144%;
  color: #3C2C2B;
}

.cart-delivery label {
  margin: 0 0 15px;
  cursor: pointer;
  width: 100%;
}

.cart-delivery label input {
  display: none;
}

.cart-delivery label input:checked+p {
  color: #531215;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/check-form.svg") left top/23px no-repeat;
}

.cart-delivery label p {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/uncheck.svg") left top/23px no-repeat;
  font-size: 14px;
  line-height: 150%;
  color: #CEAB8B;
  margin: 0;
  padding-left: 30px;
}

.cart-delivery span {
  font-size: 14px;
  line-height: 150%;
  color: #CEAB8B;
}

.cart-delivery span p {
  display: inline;
  color: #531215;
}

.also {
  padding: 60px 0 120px;
}

.order {
  padding-bottom: 150px;
}

.order .title-sm {
  margin-bottom: 80px;
}

.order h3 {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 84%;
  color: #3C2C2B;
  margin: 0 0 40px;
}

.order .payment {
  padding: 30px 20px;
  background: #FCF5EC;
  margin-top: -30px;
}

.order .payment .btn {
  margin: 0 auto;
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px 0;
}

.order .payment .cart-delivery {
  padding: 0px 0 0;
}

.order .payment label {
  margin: 0 0 20px;
  width: 100%;
}

.order .payment label p {
  padding: 5px 0 5px 30px;
  background-position: left center !important;
}

.order .payment .total {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  margin: 0 0 35px;
}

.order .payment .total p {
  margin: 0;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 144%;
  color: #3C2C2B;
}

.order-form label {
  width: 100%;
  margin: 0 0 25px;
}

.order-form span {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  line-height: 190%;
  color: #272222;
  margin: 0 0 8px;
}

.order-form span i {
  color: #e22;
  font-style: normal;
}

.order-form [type="text"] {
  width: 100%;
  height: 58px;
  border: 1px solid #CEAB8B;
  padding: 0 20px;
}

.order-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 58px;
  border: 1px solid #CEAB8B;
  padding: 0 20px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/select.png") right center no-repeat;
}

.order-form textarea {
  width: 100%;
  height: 140px;
  border: 1px solid #CEAB8B;
  padding: 20px 20px;
}

.order-form [type="checkbox"] {
  display: none;
}

.order-form [type="checkbox"]:checked+p {
  color: #531215;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/check-form.svg") left top/23px no-repeat;
}

.order-form p {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/uncheck.svg") left center/23px no-repeat;
  font-size: 14px;
  line-height: 180%;
  color: #CEAB8B;
  margin: 0;
  padding-left: 30px;
  margin-bottom: 40px;
}

.order .cart-items {
  overflow: auto;
}

.order .lines {
  padding: 25px 15px;
  border-bottom: 1px solid #EADDCE;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.order .lines .image {
  position: relative;
  margin: 0 10px 0 0;
}

.order .lines .image img {
  width: 80px;
}

.order .lines .image .precent {
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 27px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/precent.svg") center no-repeat;
}

.order .lines .text {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.order .lines .text p {
  font-size: 12px;
  line-height: 178%;
  color: #908275;
  margin: 0 0 15px;
}

.order .lines-title {
  font-size: 14px;
  line-height: 130%;
  color: #3C2C2B;
  max-width: 180px;
  display: inline-block;
  margin: 0 20px 0 0;
}

.order .lines .price p {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
  text-align: right;
  color: #3C2C2B;
  margin: 0;
}

.order .lines .price .old {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 144%;
  text-align: right;
  color: #908275;
  text-decoration: line-through;
}

.order .lines .remove {
  font-size: 12px;
  line-height: 29px;
  text-align: right;
  color: #908275;
  padding-left: 13px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/remove.png") center left no-repeat;
}

.order .lines .count {
  width: 75px;
  height: 29px;
  border: 1px solid #CEAB8B;
  border-radius: 60px;
  padding: 0 12px;
  line-height: 29px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
}

.order .lines .count input {
  background: none;
  border: none;
  outline: none;
  width: 20px;
  text-align: center;
  font-size: 12px;
}

.order .lines .count input+a {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/plus.png") center/contain no-repeat;
}

.order .lines .count a {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/minus.png") center/contain no-repeat;
}

.order .column {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.order .subtotal {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  padding: 5px 15px;
  border-bottom: 1px solid #EADDCE;
}

.order .subtotal p {
  margin: 0;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 60px;
  color: #3C2C2B;
}

.order .subtotal span {
  font-size: 14px;
  line-height: 130%;
  color: #3C2C2B;
}

.order .coupon {
  padding: 35px 20px;
}

.order .coupon label {
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.order .coupon input {
  width: 55%;
  border-radius: 40px 0 0 40px;
  height: 50px;
  padding: 0 20px;
  color: #CEAB8B;
  border: 1px solid #CEAB8B;
  border-right: none;
  font-size: 14px;
}

.order .coupon button {
  text-transform: none;
  background: #3C2C2B;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  padding: 0;
  width: 45%;
  border-radius: 0 40px 40px 0;
  font-size: 14px;
}

.order .total {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  margin: 0 0 35px;
}

.order .total p {
  margin: 0;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 144%;
  color: #3C2C2B;
}

footer {
  padding: 80px 0 0;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/footer.jpg") center/cover no-repeat;
}

footer strong {
  display: inline-block;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 144%;
  color: #908275;
  margin: 0 0 10px;
}

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

footer ul li {
  margin: 0;
}

footer ul a {
  font-size: 16px;
  line-height: 190%;
  color: #4B4742;
  display: inline-block;
  margin: 0 0 5px;
}

footer ul a:hover {
  text-decoration: none;
  color: #531215;
}

footer ul p {
  font-size: 14px;
  line-height: 160%;
  color: #4B4742;
  margin: 0 0 10px;
}

footer .d-flex {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

footer .phone {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 190%;
  text-transform: uppercase;
  color: #3C2C2B;
}

footer .phone:hover {
  color: #CEAB8B;
  text-decoration: none;
}

footer .callback {
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #CEAB8B;
}

footer img {
  margin: 30px 0 0;
}

footer span {
  display: inline-block;
  line-height: 80px;
  font-size: 14px;
  color: #908275;
}

footer span a {
  font-size: 14px;
  color: #908275;
}

footer span a:hover {
  color: currentColor;
}

footer hr {
  margin: 60px 0 0;
}

.modal-print .modal-content {
  border-radius: 0;
  padding: 60px 35px 35px;
  background: #FCF5EC;
  text-align: center;
}

.modal-print .modal-content .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  line-height: 1;
  display: inline-block;
  font-family: serif;
  color: #908275;
  opacity: 1;
}

.modal-print .modal-body {
  padding: 0;
}

.modal-print .modal-body img {
  margin: 0 0 40px;
  max-width: 100%;
}

.modal-print .modal-body h3 {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 84%;
  color: #3C2C2B;
  margin: 0 0 25px;
  padding: 0 20px;
}

.modal-print .modal-body p {
  font-size: 14px;
  line-height: 180%;
  color: #908275;
  margin: 0 0 10px;
  padding: 0 20px;
}

.modal-print .modal-body p+img {
  margin: 0;
  width: 100%;
}

#callback .modal-content {
  border-radius: 0;
  padding: 60px 35px 35px;
  background: #FCF5EC;
  text-align: center;
}

#callback .modal-content .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  line-height: 1;
  display: inline-block;
  font-family: serif;
  color: #908275;
  opacity: 1;
}

#callback .modal-body {
  padding: 0;
}

#callback .modal-body h3 {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 84%;
  color: #3C2C2B;
  margin: 0 0 15px;
  padding: 0 20px;
}

#callback .modal-body p {
  font-size: 14px;
  line-height: 180%;
  color: #908275;
  margin: 0 0 30px;
  padding: 0 20px;
}

#callback .modal-body form {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#callback .modal-body form label {
  width: 100%;
  margin: 0 0 25px;
}

#callback .modal-body form input {
  border: 1px solid #CEAB8B;
  padding: 0 25px;
  border-radius: 0;
  width: 100%;
  height: 58px;
  background: none;
  color: #531215;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#callback .modal-body form em {
  display: inline-block;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 178%;
  text-align: center;
  color: #908275;
  font-style: normal;
}

.stock-modal .modal-content {
  border-radius: 0;
  padding: 60px 35px 55px;
  background: #FCF5EC;
  text-align: center;
}

.stock-modal .modal-content .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  line-height: 1;
  display: inline-block;
  font-family: serif;
  color: #908275;
  opacity: 1;
}

.stock-modal .modal-body {
  padding: 0;
}

.stock-modal .image {
  position: relative;
}

.stock-modal .image .img {
  position: relative;
  z-index: 2;
  margin: 20px auto 30px;
  width: 340px;
  height: 280px;
  display: block;
  border-radius: 50% 60% 50% 60% / 40% 40% 70% 60%;
}

.stock-modal .image:after {
  content: '';
  position: absolute;
  z-index: 0;
  background: #fff;
  top: -2%;
  left: 8%;
  width: 82%;
  height: 104%;
  border-radius: 60% 70% 80% 60% / 90% 60% 60% 60%;
}

.stock-modal h3 {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  color: #36302D;
  margin: 0 auto 20px;
  width: 80%;
}

.stock-modal p {
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 180%;
  color: #908275;
  text-align: left;
}

.stock-modal span {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  line-height: 180%;
  color: #908275;
  margin: 0 0 5px;
}

.stock-modal ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
}

.stock-modal ul li {
  margin: 0 6px;
}

.stock-modal ul a {
  display: inline-block;
  border-radius: 50px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #CEAB8B;
}

.stock-modal ul a:hover {
  background: -webkit-gradient(linear, left top, right top, from(#BC9672), to(#CEAB8B));
  background: linear-gradient(90deg, #BC9672 0%, #CEAB8B 100%);
  border-color: transparent;
}

.stock-modal ul a:hover img {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}

header {
  position: relative;
}

header .header,
header .title {
  position: relative;
  z-index: 3;
}

header:before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

header .header-video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: 1;
}

#video {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  min-width: 100%;
  object-fit: cover;
}

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

  header.sticky .header .logo-scroll, header.inner .header .logo-scroll {
    margin: 0 15px 0 0;
  }

  header .header .logo {
    margin: 0 15px 0 0;
  }
  header .header .logo img {
    width: 50px;
  }

  header .header ul li {
    margin: 0 15px 0 0;
  }

  header .header ul a {
    font-size: 12px;
  }

  header .title h1 {
    font-size: 54px;
    line-height: 100%;
    margin: 0 0 40px;
  }

  header .title p {
    font-weight: 300;
    font-size: 14px;
    margin: 0 0 40px;
    width: 100%;
  }

  header .title .prod {
    width: 450px;
  }

  .slider .shift {
    position: relative;
    margin-left: calc(100% / 12 * -2.1);
  }

  .slider img {
    max-width: 100%;
  }

  .slider-slick {
    padding: 50px 50px 70px;
  }

  .slider-slick .slick-prev {
    left: 50px;
    bottom: 60px;
  }

  .slider-slick .slick-next {
    left: 110px;
    bottom: 60px;
  }

  .title-sm h2 {
    font-size: 48px;
  }

  .product-items img {
    width: 110px;
    margin: 0 30px 0 0;
  }

  .product-items div {
    padding: 0;
  }

  .product .soon strong {
    padding-top: 120px;
    font-size: 30px;
  }

  .about-items p {
    font-size: 12px;
    width: 100%;
  }

  .about-slick .image {
    width: 90% !important;
    height: 390px !important;
  }

  .about-slick iframe {
    width: 100% !important;
    height: 390px !important;
  }

  .about-items strong {
    font-size: 18px;
  }

  .about-items img {
    width: 70px;
  }

  .cart-tr .image img {
    width: 75px;
  }

  .cart-tr .image span {
    width: 40px;
    height: 40px;
  }

  .cart-tr strong {
    white-space: nowrap;
    font-size: 24px;
  }

  .cart-tr .remove {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
  }

  .cart-tr p {
    max-width: 170px;
  }

  .cart-tr p a {
    font-size: 14px;
    display: inline-block;
  }
}

@media (max-width: 991px) {
  header .header ul {
    display: none !important;
  }

  header .btn {
    display: none;
  }

  header .logo img {
    height: 60px;
  }

  header.inner .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  header.inner .logo-scroll {
    margin: 0 auto !important;
  }

  header.inner .menu {
    background: -webkit-gradient(linear, right top, left top, from(#6D1B1F), to(#5A191C));
    background: linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%);
    display: inline-block;
    width: 41px;
    height: 41px;
    border-radius: 100%;
  }

  header.inner .cart {
    display: inline-block;
    width: 41px;
    height: 41px;
    border-radius: 100%;
    background: -webkit-gradient(linear, right top, left top, from(#6D1B1F), to(#5A191C));
    background: linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%);
  }

  header .title {
    padding: 140px 0 80px;
  }

  header .title .btn {
    display: inline-block !important;
  }

  header .title h1 {
    font-size: 36px;
    line-height: 1.3;
  }

  header .title .prod {
    top: -190px;
    width: 290px;
  }

  footer ul p {
    font-size: 12px;
    line-height: 160%;
    color: #4B4742;
    margin: 0 0 7px;
  }

  .product-items img {
    width: 240px;
    margin: 0 70px 0 0;
  }

  .slider .shift {
    margin: 0;
  }

  .slider-slick {
    margin: 0;
  }

  .about-items {
    width: 50%;
    float: left;
    padding: 0 40px;
    margin: 0 0 40px;
  }

  .about-slick .image {
    height: 540px !important;
  }

  .about-slick iframe {
    height: 540px !important;
  }

  .banner-product-items {
    margin: 0 0 50px;
  }

  header.sticky .header .logo-scroll {
    margin: 0 auto;
  }

  header .header .logo {
    margin: 0 auto;
  }

  header.sticky .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  header.sticky .menu {
    background: -webkit-gradient(linear, right top, left top, from(#6D1B1F), to(#5A191C));
    background: linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%);
    display: inline-block;
    width: 41px;
    height: 41px;
    border-radius: 100%;
  }

  header.sticky .cart {
    display: inline-block;
    width: 41px;
    height: 41px;
    border-radius: 100%;
    background: -webkit-gradient(linear, right top, left top, from(#6D1B1F), to(#5A191C));
    background: linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%);
  }

  .order .mb {
    margin-bottom: 40px;
  }

  .cart-header div {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .product-items img {
    width: 170px;
    margin: 0 50px 0 0;
  }

  .title-sm h2 {
    font-size: 36px;
  }

  footer * {
    text-align: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  footer .text-right {
    text-align: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  footer .logo {
    margin: 0 0 30px;
    display: inline-block;
  }

  footer ul {
    margin: 0 0 30px;
  }

  .about-slick .image {
    height: 420px !important;
  }

  .about-slick iframe {
    height: 420px !important;
  }

  header .title {
    padding: 60px 0 450px;
    text-align: center;
  }

  header .title .prod {
    top: -30px;
    width: 290px;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }

  .order {
    padding-bottom: 90px;
  }

  .cart-header {
    width: 100%;
  }

  .cart-header .refresh {
    display: none;
  }

  .cart-header div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .cart-header div span {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 0 15px;
    width: 100%;
  }

  .cart-header div a {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    margin: 10px 0 0;
  }

  .cart .cart-items {
    overflow: auto;
    margin-bottom: 60px;
  }

  .cart .lines {
    padding: 25px 15px;
    border-bottom: 1px solid #EADDCE;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .cart .lines .image {
    position: relative;
    margin: 0 10px 0 0;
  }

  .cart .lines .image img {
    width: 80px;
  }

  .cart .lines .image .precent {
    position: absolute;
    top: 0;
    left: 0;
    width: 27px;
    height: 27px;
    background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/precent.svg") center no-repeat;
  }

  .cart .lines .text {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .cart .lines .text p {
    font-size: 12px;
    line-height: 178%;
    color: #908275;
    margin: 0 0 15px;
  }

  .cart .lines-title {
    font-size: 14px;
    line-height: 130%;
    color: #3C2C2B;
    max-width: 180px;
    display: inline-block;
    margin: 0 20px 0 0;
  }

  .cart .lines .price p {
    font-family: EB Garamond;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 144%;
    text-align: right;
    color: #3C2C2B;
    margin: 0;
  }

  .cart .lines .price .old {
    font-family: EB Garamond;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 144%;
    text-align: right;
    color: #908275;
    text-decoration: line-through;
  }

  .cart .lines .remove {
    font-size: 12px;
    line-height: 29px;
    text-align: right;
    color: #908275;
    padding-left: 13px;
    background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/remove.png") center left no-repeat;
  }

  .cart .lines .count {
    width: 75px;
    height: 29px;
    border: 1px solid #CEAB8B;
    border-radius: 60px;
    padding: 0 12px;
    line-height: 29px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    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;
  }

  .cart .lines .count input {
    background: none;
    border: none;
    outline: none;
    width: 20px;
    text-align: center;
    font-size: 12px;
  }

  .cart .lines .count input+a {
    background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/plus.png") center/contain no-repeat;
  }

  .cart .lines .count a {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/minus.png") center/contain no-repeat;
  }

  .cart .column {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 574px) {
  .product-items img {
    margin-right: 0;
  }

  main.inner {
    padding-top: 100px;
  }

  .order {
    padding-bottom: 40px;
  }

  footer {
    padding-bottom: 20px;
  }

  footer span {
    line-height: 48px;
  }

  footer hr {
    margin-bottom: 20px;
  }

  .callback .d-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
  }

  .callback .d-flex .btn {
    margin: 0 0 15px;
    width: 100%;
  }

  .faq-title {
    padding: 15px 0 15px 35px;
    line-height: 20px;
    font-size: 20px;
  }

  .faq-body {
    margin-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .faq-body img {
    width: 100%;
    margin: 0 35px 30px;
  }

  .faq-body p {
    padding-right: 0 !important;
  }

  .about-slick .image {
    height: 350px !important;
  }

  .about-slick iframe {
    height: 350px !important;
  }


  .about img {
    width: 26px;
  }

  .about-items {
    width: 100%;
  }

  .about-items img {
    width: auto;
  }

  .about-items p {
    font-size: 13px;
  }

  .banner-product .print {
    left: 10px;
  }

  .banner-product .print a img {
    width: 90px;
  }

  .banner-product-items img {
    width: 100%;
    height: auto;
  }

  .banner-product-items span {
    font-size: 28px;
  }

  .banner-title h2 {
    font-size: 30px;
  }

  header .title .prod {
    top: 0;
  }

  header .title .btn {
    display: inline-block !important;
    width: 100%;
    padding: 15px;
  }

  .banner,
  .product,
  .delivery,
  .faq {
    padding: 60px 0;
  }

  .title-sm h2 {
    font-size: 24px;
  }

  .delivery ul li img {
    max-width: 115px;
    max-height: 48px;
  }

  .banner-items label input:checked+div p {
    background: url(/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/check-form.svg) left center/28px no-repeat;
    color: #531215;
  }

  .banner-items label p {
    font-size: 15px;
    padding-left: 45px;
    padding-right: 40px;
    background: url(/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/uncheck.svg) left center/28px no-repeat;
  }

  .banner-items label strong {
    font-size: 24px;
    white-space: nowrap;
  }

  .banner-forms {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .banner-forms .count {
    width: 100%;
    margin: 0;
	margin-top: 10px;
  }

  .banner-forms .count input {
    width: 75px;
  }

  .product-items .price {
    justify-content: space-between;
  }

  .banner-forms .btn {
    width: 100%;
    margin: 15px 0 0;
  }

  .product-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .product .soon {
    padding: 60px 10px 90px;
    background: url(/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/soon-bg.png) center/380px no-repeat;
    margin: 0 -15px;
  }

  .product .soon strong {
    padding-top: 70px;
    background: url(/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/soon.png) top center/120px no-repeat;
  }

  .solution-slick {
    padding: 0 0px;
  }

  .solution {
    padding-bottom: 40px;
  }

  .solution-item {
    padding: 0 0 20px;
  }

  .solution-item img {
    margin: 0 0 -35px;
  }

  .solution-item strong {
    font-size: 21px;
    line-height: 1.3;
  }

  .solution-item p {
    font-size: 13px;
    line-height: 1.4;
  }

  .callback .toggle span {
    font-size: 13px;
  }

  .modal-print .modal-body h3 {
    font-size: 24px;
    padding: 0;
  }
}

/*# sourceMappingURL=app.css.map */


.added_to_cart.wc-forward {
  display: none;
}

body .cardside {}

body .cardside .woocommerce.widget_shopping_cart .cart_list li {
  padding: 15px 25px;
  border-bottom: 1px solid #EADDCE;
  isplay: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 130%;
  color: #3C2C2B;
}

body .cardside .goodmini-name {
  order: 2;
  font-size: 14px;
  line-height: 130%;
  color: #3C2C2B;
}

body .cardside .woocommerce ul.product_list_widget li img {
  float: none;
  order: 1;
  flex: 0 0 60px;
  max-width: 60px;
  height: auto;
  margin-right: 10px;
  margin-left: 0;
  order: 1;
}

body .cardside .text {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  order: 2;
}

/*body .cardside .woocommerce.widget_shopping_cart .cart_list li a.remove {*/
/*  color: #908275 !important;*/
/*  font-size: 38px;*/
/*  font-weight: normal;*/
/*  font-family: serif;*/
/*  text-decoration: none;*/
/*  position: relative;*/
/*  top: inherit;*/
/*  left: inherit;*/
/*  flex: 0 0 38px;*/
/*  max-width: 38px;*/
/*  margin-right: -11px;*/
/*  order: 4;*/
/*}*/

/*body .woocommerce a.remove:hover {*/
/*  color: red !important;*/
/*  background: transparent;*/
/*}*/
body .cardside .quantity {
  margin: 0 10px;
  color: #908275;
  font-size: 12px;
  order: 3;
  flex: 0 0 100px;
  max-width: 100px;
  text-align: right;
}

body .cardside .woocommerce-Price-amount.amount {
  font-family: EB Garamond !important;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
  color: #3C2C2B;
}

body .cardside .woocommerce-Price-currencySymbol {
  font-family: EB Garamond !important;
}

body .cardside .woocommerce.widget_shopping_cart .total {
  border: none;
  height: 60px;
}

body .cardside .woocommerce-mini-cart__total.total {
  font-family: EB Garamond !important;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: #3C2C2B;
  margin-bottom: 0;
}

body .cardside .woocommerce-mini-cart__buttons.buttons {
  display: none !important;
}

body .cardside .woocommerce.widget_shopping_cart .cart_list li a.remove {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  height: auto;
  color: #908275 !important;
  font-weight: normal;
}

body .checkout label {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  line-height: 1.6 !important;
  color: #272222;
  margin: 0 0 8px;
}

body .checkout input[type="text"],
body .checkout input[type="number"],
body .checkout input[type="tel"],
body .checkout input[type="email"],
body .checkout textarea,
body .cart_totals .input-text {
  display: block;
  width: 100%;
  border: 1px solid #CEAB8B;
  background-color: #fff;
  padding: 18px 20px;
  outline: none;
  height: auto;
}

body .checkout textarea {
  height: 140px !important;
}

body .checkout input[type="text"]:hover,
body .checkout input[type="text"]:focus,
body .checkout input[type="number"]:hover,
body .checkout input[type="number"]:focus,
body .checkout input[type="tel"]:hover,
body .checkout input[type="tel"]:focus,
body .checkout input[type="email"]:hover,
body .checkout input[type="email"]:focus body .checkout body .checkout textarea:hover,
body .checkout body .checkout textarea:focus body .cart_totals .input-text:hover,
body .cart_totals .input-text:focus {
  border-color: #CEAB8B;
}

body .checkout .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}

.woocommerce form .form-row-first,
.woocommerce-page form .form-row-first {
  float: none !important;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 100% !important;
}

.woocommerce form .form-row {
  margin-bottom: 25px !important;
}

.select2-container--default .select2-selection--single {
  border-radius: 0 !important;
  border: 1px solid #CEAB8B !important;
}

.select2-container .select2-selection--single {
  height: 57px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 14px 20px !important;
  color: #000 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 55px !important;
  width: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #CEAB8B transparent transparent transparent !important;
  border-style: solid !important;
  border-width: 7px 6px 0 6px !important;
  margin-left: -4px !important;
  margin-top: -2px !important;
}

.woocommerce-checkout-payment {
  background: transparent !important;
}

.wc_payment_methods.payment_methods.methods {
  padding: 0 !important;
  border-bottom: 1px solid #EADDCE !important;
  margin-bottom: 20px !important;
}

.wc_payment_methods.payment_methods.methods>li {
  position: relative;
  padding: 0;
  margin-top: 20px;
}

.wc_payment_methods.payment_methods.methods>li:first-child {
  margin-top: 0;
}

.wc_payment_methods.payment_methods.methods>li .input-radio {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.wc_payment_methods.payment_methods.methods>li .input-radio:checked+label {
  color: #531215;
}

.wc_payment_methods.payment_methods.methods>li .input-radio:checked+label::after {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/check-form.svg") 0 0 no-repeat;
}

.wc_payment_methods.payment_methods.methods>li label {
  display: block;
  padding: 2px 0 2px 30px;
  color: #CEAB8B;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
}

.wc_payment_methods.payment_methods.methods>li label::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/uncheck.svg") 0 0 no-repeat;
  z-index: 2;
}

.payment_box {
  margin-top: -15px !important;
  padding: 0 0 0 30px !important;
  background-color: transparent !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #3C2C2B !important;
  font-style: italic;
}

.payment_box:before {
  display: none !important;
}

.place-order {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.woocommerce-privacy-policy-text {
  font-size: 14px;
  line-height: 1.78;
  color: #AE9176;
}

.woocommerce-privacy-policy-text a {
  color: #AE9176;
  text-decoration: underline;
}

.woocommerce-privacy-policy-text a:hover {
  text-decoration: none;
}

.woocommerce form .form-row {
  margin: 0 0 6px 0 !important;
}

.woocommerce-form__label-for-checkbox {
  display: block !important;
  position: relative;
  padding: 0 0 0 30px !important;
  color: #CEAB8B !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  cursor: pointer;
  margin: 0 0 15px 0 !important;
}

.woocommerce-form__label-for-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
}

.woocommerce-terms-and-conditions-checkbox-text {
  display: inline;
  color: #CEAB8B !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.woocommerce-form__label-for-checkbox input:checked+.woocommerce-terms-and-conditions-checkbox-text {
  color: #531215 !important;
}

.woocommerce-form__label-for-checkbox input:checked+.woocommerce-terms-and-conditions-checkbox-text a {
  color: #531215 !important;
}

.woocommerce-form__label-for-checkbox input:checked+.woocommerce-terms-and-conditions-checkbox-text a:hover {
  color: #531215 !important;
}

.woocommerce-form__label-for-checkbox input:checked+.woocommerce-terms-and-conditions-checkbox-text::after {
  background: #531215 url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/check-form.svg") 50% 50% no-repeat;
  border-color: transparent;
}

.woocommerce-terms-and-conditions-checkbox-text::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #CEAB8B;
  background: ;
  z-index: 2;
}

.woocommerce-terms-and-conditions-checkbox-text a {
  color: #CEAB8B !important;
  text-decoration: underline;
}

.woocommerce-terms-and-conditions-checkbox-text a:hover {
  color: #CEAB8B !important;
  text-decoration: none;
}

.woocommerce-billing-fields {
  margin-bottom: 25px;
}

.woocommerce-shipping-methods {
  text-align: left !important;
}

.woocommerce-shipping-methods>li {
  position: relative;
  margin: 10px 0 0 0 !important;
}

.woocommerce-shipping-methods>li:first-child {
  margin-top: 0 !important;
}

.woocommerce-shipping-methods input[type="radio"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.woocommerce-shipping-methods input[type="radio"]:checked+label {
  color: #531215;
}

.woocommerce-shipping-methods input[type="radio"]:checked+label::after {
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/check-form.svg") 0 0 no-repeat;
}

.woocommerce-shipping-methods label {
  position: relative;
  display: block !important;
  padding: 2px 0 2px 30px !important;
  color: #CEAB8B !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: normal !important;
  position: relative;
  cursor: pointer;
  margin-bottom: 0 !important;
}

.woocommerce-shipping-methods label::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url("/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/uncheck.svg") 0 0 no-repeat;
  z-index: 2;
}

.wc-shiptor-delivery-point-selector_wrapper {
  position: relative;
  padding: 5px 0 5px 30px;
  font-size: 12px;
  line-height: 1.5;
  font-style: italic;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) {
  border: none !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) thead {
  display: none !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) .product-name {
  font-size: 14px !important;
  line-height: 1.3 !important;
  color: #3C2C2B !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) td>.woocommerce-Price-amount.amount,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) td strong>.woocommerce-Price-amount.amount {
  font-family: EB Garamond !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 1.44 !important;
  text-align: right !important;
  color: #3C2C2B !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) th {
  font-family: EB Garamond !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 1.44 !important;
  color: #3C2C2B !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) .order-total th {
  font-size: 26px !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) .order-total th,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) .order-total td {
  padding-bottom: 0 !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) .order-total td strong>.woocommerce-Price-amount.amount {
  font-size: 26px !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) td,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) th {
  border: none !important;
  padding: 0 !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) td+td,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) th+td {
  text-align: right !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) td:first-child,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) th:first-child {
  width: 180px !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tfoot td,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tfoot th {
  border-top: 1px solid #EADDCE !important;
  padding: 25px 10px !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tfoot tr td:first-child,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tfoot tr th:first-child {
  padding-left: 0 !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tfoot tr td:last-child,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tfoot tr th:last-child {
  padding-right: 0 !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody td,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody th {
  border-top: 1px solid #EADDCE !important;
  padding: 25px 10px !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody tr td:first-child,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody tr th:first-child {
  padding-left: 0 !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody tr td:last-child,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody tr th:last-child {
  padding-right: 0 !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody tr:first-child td,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody tr:first-child th {
  border: none !important;
  padding-top: 0 !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tfoot tr:last-child td,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tfoot tr:last-child th {
  padding-bottom: 0 !important;
}

.cart_totals {
  padding: 0 20px;
}

.wc-proceed-to-checkout.submit {
  position: relative;
  margin: 0 -20px 0 -20px !important;
  padding: 0 !important;
}

.wc-proceed-to-checkout.submit .btn {
  margin-bottom: 0 !important;
}

.shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents),
.shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) tbody,
.shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) tfoot,
.shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) tr,
.shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) td,
.shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) th {
  display: block;
}

.woocommerce table.shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) td:first-child,
.woocommerce table.shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) th:first-child {
  flex: 0 0 100px;
  max-width: 100px;
  width: 100%;
}

.woocommerce .shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) td,
.woocommerce .shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) th {
  border: none !important;
}

.woocommerce .shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) tr {
  display: flex;
  border-top: 1px solid #EADDCE !important;
}

.woocommerce .shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) tbody tr:first-child {
  border: none !important;
}

.woocommerce .shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) tr.woocommerce-shipping-totals.shipping {
  flex-wrap: wrap;
}

.woocommerce .shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) tr.woocommerce-shipping-totals.shipping th {
  width: 100% !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 10px !important;
}

.woocommerce .shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) tr.woocommerce-shipping-totals.shipping td {
  width: 100% !important;
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 0 !important;
  padding-top: 0 !important;
  border: none !important;
  text-align: left !important;
}

.woocommerce table.shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) td+td,
.woocommerce table.shop_table.shop_table_responsive:not(.woocommerce-cart-form__contents) th+td {
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.woocommerce-shipping-destination {
  font-size: 14px;
  line-height: 1.5;
  color: #3C2C2B;
  margin-bottom: 0;
  padding-top: 15px;
}

.shipping-calculator-button {
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  color: #3C2C2B !important;
  text-decoration: underline;
}

.shipping-calculator-button:hover {
  color: #3C2C2B !important;
  text-decoration: none;
}

.shipping-calculator-form p:last-child {
  margin-bottom: 0 !important;
}

.shipping-calculator-form .button,
.wc-shiptor-delivery-point-selector_wrapper .wc-shiptor-delivery-point-selector.point-empty {
  font-size: 14px !important;
  line-height: 1.5 !important;
  padding: 10px 20px !important;
  border: none !important;
  color: #fff !important;
  background: #531215 !important;
  border-radius: 21px !important;
  -webkit-box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.53) !important;
  box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.53) !important;
  font-weight: normal !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-style: normal !important;
}

.shipping-calculator-form .button:hover,
.wc-shiptor-delivery-point-selector_wrapper .wc-shiptor-delivery-point-selector.point-empty:hover {
  background: #531215;
  -webkit-box-shadow: 0px 4px 20px rgba(142, 72, 57, 0.75);
  box-shadow: 0px 4px 20px rgba(142, 72, 57, 0.75);
}

.woocommerce .woocommerce-cart-form__contents .product-remove .remove {
  margin-right: 0 !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 40px !important;
  background: #e0e0e0 url('/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/x.svg') center no-repeat !important;
  padding: 0 !important;
  font-weight: normal !important;
  font-size: 30px !important;
  overflow: hidden;
  text-indent: -220px;
  box-shadow: none !important;
  border: none !important;
}

.woocommerce .woocommerce-cart-form__contents .product-remove .remove:hover {
  background-color: #e0e0e0 !important;
}

.woocommerce .woocommerce-cart-form__contents .woocommerce-Price-amount.amount {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 144%;
  color: #3C2C2B;
  white-space: nowrap !important;
}

.woocommerce .woocommerce-cart-form__contents {
  border: none !important;
}

.woocommerce .woocommerce-cart-form__contents .product-name {
  font-size: 16px !important;
  line-height: 1.3 !important;
  color: #3C2C2B !important;
}

.woocommerce-cart table.cart .product-thumbnail {
  min-width: 120px !important;
  width: 120px !important;
}

.woocommerce-cart table.cart img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

.callback label:last-child {
  margin-bottom: 0 !important;
}

.woocommerce .woocommerce-cart-form__contents td {
  padding: 30px 15px !important;
  border-top: 1px solid #EADDCE !important;
}

.woocommerce .woocommerce-cart-form__contents td:first-child {
  padding-left: 0 !important;
}

.woocommerce .woocommerce-cart-form__contents td:last-child {
  padding-right: 0 !important;
}

.woocommerce .woocommerce-cart-form__contents tr:first-child td {
  padding-top: 0 !important;
}

.woocommerce .woocommerce-cart-form__contents tr:first-child td {
  padding-top: 0 !important;
  border: none !important;
}

.woocommerce .woocommerce-cart-form__contents tr:larst-child td {
  padding-bottom: 0 !important;
}

.woocommerce .quantity .qty {
  width: 105px !important;
}

.jq-number__field {
  border-color: #CEAB8B !important;
  border-radius: 30px;
  width: 100%;
  box-shadow: none !important;
}

.jq-number {
  padding: 0;
}

.jq-number__field input {
  padding: 11px 43px;
  font-size: 14p !important;
  font-family: 'Roboto', sans-serif !important;
}

.jq-number__spin {
  width: 43px;
  height: 41px;
  border: none !important;
  box-shadow: none !important;
  top: 0;
  opacity: .5;
}

.jq-number__spin:hover {
  opacity: 1;
}

.jq-number__spin::after {
  display: none !important;
}

.jq-number__spin.minus {
  background: url('/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/minus.svg') center no-repeat !important;
  right: auto;
  left: 0;
}

.jq-number__spin.plus {
  background: url(/web/20220402011052im_/https://sangre-de-drago.ru/wp-content/themes/dragon/assets/images/plus.svg) center no-repeat !important;
}

.woocommerce table.shop_table_responsive tr:nth-child(2n) td,
.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
  background-color: transparent !important;
}

.woocommerce table.shop_table_responsive tr td::before,
.woocommerce-page table.shop_table_responsive tr td::before {
  display: none !important;
}

.woocommerce table.shop_table_responsive.woocommerce-cart-form__contents td.actions .btn {
  float: left;
}

.woocommerce table.shop_table_responsive.woocommerce-cart-form__contents td.actions .button {
  margin-left: 15px !important;
}

.woocommerce-remove-coupon {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  color: #3C2C2B !important;
  text-decoration: underline;
}

.woocommerce-remove-coupon:hover {
  color: #3C2C2B !important;
  text-decoration: none;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  color: #531215 !important;
  background-color: #FCF5EC !important;
  border-top-color: #3C2C2B !important;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message a {
  display: inline-block;
  color: #531215 !important;
  text-decoration: underline !important;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message a:hover {
  text-decoration: none !important;
}

.woocommerce-order {
  max-width: 800px;
}

.woocommerce table.shop_table.woocommerce-table--order-details,
.woocommerce table.shop_table.woocommerce-table--order-details tbody,
.woocommerce table.shop_table.woocommerce-table--order-details tfoot,
.woocommerce table.shop_table.woocommerce-table--order-details tr,
.woocommerce table.shop_table.woocommerce-table--order-details td {
  display: block !important;
}

.woocommerce table.shop_table.woocommerce-table--order-details tr {
  display: flex !important;
  flex-wrap: wrap;
}

.woocommerce table.shop_table.woocommerce-table--order-details td,
.woocommerce table.shop_table.woocommerce-table--order-details th {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  border: none !important;
  padding: 5px !important;
}

.woocommerce table.shop_table.woocommerce-table--order-details td+td {
  text-align: right !important;
}

.woocommerce table.shop_table.woocommerce-table--order-details td.woocommerce-table__product-name.product-name a {
  color: #3C2C2B !important;
  text-decoration: underline !important;
}

.woocommerce table.shop_table.woocommerce-table--order-details td.woocommerce-table__product-name.product-name a:hover {
  color: #3C2C2B !important;
  text-decoration: none !important;
}

.woocommerce table.shop_table.woocommerce-table--order-details tbody tr.woocommerce-table__product-purchase-note.product-purchase-note {
  display: none !important;
}

h2.woocommerce-order-details__title {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  color: #36302D;
  margin: 0 0 30px;
}

.woocommerce-order-overview__order.order {
  padding-bottom: 0 !important;
}

@media (max-width: 767px) {
  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents tr {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid #EADDCE;
    padding-top: 10px;
    margin-top: 10px;
  }

  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents tr:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents td {
    padding: 5px !important;
    border: none !important;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    width: 50% !important;
    text-align: left !important;
  }

  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents tr:last-child {
    justify-content: center;
  }

  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents td.actions {
    display: flex;
    flex-direction: column;
    text-align: center !important;
  }

  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents td.actions .btn {
    margin-bottom: 10px;
    float: none;
  }

  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents td.actions .btn,
  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents td.actions .button {
    display: inline-block !important;
  }

  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents td.actions .button {
    width: 168px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents tr:last-child td {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100% !important;
  }

  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents td.product-quantity,
  .woocommerce table.shop_table_responsive.woocommerce-cart-form__contents td.product-remove {
    text-align: right !important;
  }

  .woocommerce .woocommerce-cart-form__contents .product-remove .remove {
    margin-left: auto;
  }

  .woocommerce ul.order_details {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  .woocommerce ul.order_details>li {
    float: none !important;
    border: none !important;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
  }

  .woocommerce ul.order_details>li.woocommerce-order-overview__total.total {
    margin-bottom: 0 !important;
  }

  .woocommerce ul.order_details>li:first-child {
    margin-top: 0 !important;
  }

  h2.woocommerce-order-details__title {
    font-size: 24px;
  }
}

.variation {
  display: none !important
}

tr.shipping th {
  display: none !important
}

.goodmini-name+p {
  display: none
}

.woocommerce-remove-coupon {
  display: none
}

.grecaptcha-badge {
  visibility: hidden
}

.price ins {
  text-decoration: none !important;
}

.woocommerce-checkout.woocommerce-page.woocommerce-order-pay .woocommerce {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 40px;
}

.woocommerce-checkout.woocommerce-page.woocommerce-order-pay .woocommerce input[type="submit"] {
  font-size: 16px;
  line-height: 190%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 55px;
  border-radius: 55px;
  outline: none;
  vertical-align: middle;
  -webkit-transition: none;
  transition: none;
  border: none !important;
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#6D1B1F), to(#5A191C));
  background: linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%);
  -webkit-box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.53);
  box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.53);
  cursor: pointer;
}

@media (min-width: 576px) {
  .woocommerce-checkout.woocommerce-page.woocommerce-order-pay .woocommerce {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .woocommerce-checkout.woocommerce-page.woocommerce-order-pay .woocommerce {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .woocommerce-checkout.woocommerce-page.woocommerce-order-pay .woocommerce {
    max-width: 960px;
  }
}

@media (min-width: 1410px) {
  .woocommerce-checkout.woocommerce-page.woocommerce-order-pay .woocommerce {
    max-width: 1380px;
  }
}


@media (max-width: 991px) {
  .cardside .footer {
    width: 380px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 99;
  }

  #cart .body .total {
    width: 380px;
    position: fixed;
    bottom: 65px;
    right: 0;

    background: #FCF5EC;
  }

  .cardside .footer a {
    display: block;
    width: 100%;
  }
}



@media (max-width: 380px) {

  .cardside .footer,
  #cart .body .total {
    width: 100%;
  }
}

input:read-only {
  border: 0px !important;
}



/**  Woocommerce  **/

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  top: 0 !important;
  right: 20px !important;
}

.woocommerce form .password-input,
.woocommerce-page form .password-input {
  width: 100%;
}

.woocommerce form .form-row input.input-text {
  height: 48px;
}

.woocommerce {
  padding: 120px 0;
}

.woocommerce h2 {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 84%;
  color: #3C2C2B;
  margin: 0 0 15px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

div.woocommerce #respond input#submit,
div.woocommerce a.button,
div.woocommerce button.button,
div.woocommerce input.button {
  color: #fff !important;
  background: linear-gradient(270deg, #6D1B1F 0%, #5A191C 100%) !important;
  -webkit-box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.53);
  box-shadow: 0px 4px 20px rgba(192, 122, 107, 0.53);
  font-size: 16px;
  line-height: 190%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 80px;
  border-radius: 55px;
  outline: none;
  vertical-align: middle;
  -webkit-transition: none;
  transition: none;
  margin: 0 auto 40px !important;
  display: block;
}

div.woocommerce form.checkout_coupon,
div.woocommerce form.login,
div.woocommerce form.register {
  border: none;
}

div.woocommerce .woocommerce-form__label-for-checkbox {
  padding-left: 0 !important;
  margin-bottom: 20px !important;
}

.woocommerce-LostPassword.lost_password {
  display: block;
  margin: 0 auto;
  font-size: 14px;
  line-height: 178%;
  text-align: center;
  color: #908275 !important;
  font-style: normal;
}

.woo-desc {
  display: inline-block;
  margin: 20px 0;
  font-size: 14px;
  line-height: 178%;
  color: #908275;
  font-style: normal;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 20%;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style-type: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #495057;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  margin: 0;
  border: none;
  background: none !important;
  padding: 0;
  margin: 0 30px 10px 0;
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 144%;
  color: #CEAB8B;
  display: inline-block;
}

body.woocommerce-account .woocommerce-MyAccount-content {
  width: 78%;
}

.woo-h2 {
  font-family: EB Garamond;
  font-style: normal;
  font-weight: 600;
  font-size: 52px;
  line-height: 100%;
  color: #272222;
  margin-bottom: 15px;
}

.woo-h2+strong {
  display: inline-block;
  font-size: 16px;
  font-family: inherit;
  font-weight: 400;
  margin-bottom: 40px;
}

.woo-content {
  font-size: 14px;
  line-height: 180%;
  color: #908275;
  width: 80%;
}

.woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 30px;
}

.woocommerce-Address-title h3 {
  margin: 0 20px 0 0;
}

.address-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -10px;
  flex-wrap: wrap;
}

.woocommerce-Address-address {
  padding: 20px 20px 30px;
  border-radius: 6px;
  background: #fcf5ea;
  margin: 0 10px 20px;
  width: calc(25% - 20px);
  font-size: 14px;
  line-height: 1.7;
  border: none !important;
}

.woocommerce-EditAccountForm {
  width: 60%;
}

.woocommerce table.my_account_orders .button {
  color: #007bff !important;
  font-weight: 400 !important;
  text-transform: none;
  display: inline-block;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 0 0 15px !important;
  font-size: 14px !important;
}

div.woocommerce .woocommerce-pagination .woocommerce-button {
  color: #495057 !important;
  font-weight: 400 !important;
  text-transform: none;
  display: inline-block;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0px !important;
  font-size: 14px !important;
}

.woocommerce-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 6px;
  background: #fcf5ea;
}

.orders-flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody td,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody th {
  padding: 15px 10px;
}

.woocommerce-orders-table__cell-order-date {
  max-width: 120px !important;
}

.woocommerce-table--order-details {
  width: 60% !important;
  margin: 0 0 40px !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody td,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tbody th {
  border-top: 1px solid #EADDCE !important;
  padding: 15px 10px !important;
}

.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tfoot td,
.woocommerce table.shop_table:not(.woocommerce-cart-form__contents) tfoot th {
  border-top: 1px solid #EADDCE !important;
  padding: 15px 10px !important;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}

.woocommerce-error:before,
.woocommerce-info:before,
.woocommerce-message:before {
  display: none !important;
}

@media(max-width: 1217px) {
  .woo-content {
    width: 100%;
  }

  .address-wrapper {
    width: 100% !important;
  }

  .woocommerce-Address-address {
    width: calc(50% - 20px);
  }

  .woocommerce-EditAccountForm {
    width: 100%;
  }

  .woocommerce-table--order-details {
    width: 100% !important;
  }

  .orders-flex {
    flex-wrap: wrap;
  }

}

@media(max-width: 767px) {
  body.woocommerce-account .woocommerce-MyAccount-content {
    width: 100% !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100% !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    overflow: auto;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    margin: 0 10px 0 0;
  }

  .woocommerce table.my_account_orders {
    width: 100%;
    overflow: auto;
  }

  .woocommerce-Address-address {
    width: calc(100% - 0px);
    margin: 0 0 20px;
  }
}

#cart .woocommerce {padding: 0 !important;}

.woocommerce-terms-and-conditions-checkbox-text {
  padding-left: 30px;
}
/*
     FILE ARCHIVED ON 01:10:52 Apr 02, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 07:25:31 Sep 10, 2024.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.694
  exclusion.robots: 0.022
  exclusion.robots.policy: 0.011
  esindex: 0.015
  cdx.remote: 18.197
  LoadShardBlock: 130.816 (3)
  PetaboxLoader3.datanode: 277.708 (5)
  load_resource: 341.41
  PetaboxLoader3.resolve: 116.66
  loaddict: 167.585
*/

/* 09.10.2024 */
/* =======================================================   */
.product-list {background: #000;}
.product-item {
margin-bottom: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
}

.partner-price-title {
	font-size:12px;
	text-align:center;
}

            .product-image {
                text-align: center;
                margin: 0 0px;
                max-width: 100%;
                width: 100%;
            }
            .product-items div strong {
                line-height: 1;
            }

            header.sticky .cart-box {
                display: inline-block;
                width: 41px;
                height: 41px;
                border-radius: 100%;
                background: -webkit-gradient(
                    linear,
                    right top,
                    left top,
                    from(#6d1b1f),
                    to(#5a191c)
                );
                background: linear-gradient(270deg, #6d1b1f 0%, #5a191c 100%);
            }

            h2 {
                font-size: 1.8rem;
            }
            .banner {
                padding-right: 10px;
                padding-left: 10px;
            }

            .banner-product-items {
                margin: 0 0 20px;
            }

            .map {
                height: calc(100vh - 140px);
		margin: 0 auto 0px;
            }

            .under-map {
                padding: 0 0px;
            }

            header.menu-white .header-video {
                display: none;
            }
            header.menu-white .title {
                display: none;
            }
            header.menu-white .logo-scroll {
                display: block;
            }
            header.menu-white .logo {
                display: none;
            }
            header.menu-white .logo-scroll img {
                width: 60px;
            }
            /*              header.menu-white .header .logo-scroll, header.inner .header .logo-scroll {
              padding: 16px 0;
              margin: 0 60px 0 0;
              display: inline-block;
            }
            */

            .banner {
                text-align: justify;
            }

            .select-point {
                background: #77c4ff;
                padding: 7px 12px;
                color: #fff;
                text-decoration: none;
                display: inline;
            }
            .delivery-button {
                display: block;
                margin: 10px 0;
            }

            .pvz-address-title {
                font-size: 14px;
		padding: 10px;
                background: #e3e214;
                border-radius: 8px;
		color:#000;
                margin-bottom: 10px;
/*
                padding: 3px;
                border: 3px solid #f4e8de;
*/
            }
            .pvz-address-title.selected {
                /* color: #77c4ff; */
                color: #000;
		background-color: #EBF0F2;
		font-size:12px;
            }
            .basket-total {
                display: block;
                font-size: 12px;
                color: #fff;
            }

            .mode-point .product-list {
                display: none;
            }
            .mode-point #delivery,
            .mode-point #faq {
                display: none;
            }
            .mode-point footer {
                display: none;
            }
            .mode-point .delivery-form {
                display: block;
            }


.menu-bottom {
	text-align:center;
}

.menu-bottom a { color:#444;    margin: 0 8px; }
.fancybox__content {width:90% !important;border-radius: 10px !important;    padding: 1rem !important;}
.fancybox__content body {font-size:18px;font-family: 'Roboto', sans-serif;} 

/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: red; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

.description {color:#444;}
.description p {
    margin: 10px 0 10px 0;
}