/* Brake points */
/* min */
/* media */
.products {
  display: flex;
  flex-wrap: wrap;
}
.products .product {
  padding: 30px 20px;
  color: #292929;
  width: 33.33%;
}
@media (min-width: 1600px) {
  .products .product {
    width: 25%;
  }
}
@media (max-width: 1023px) {
  .products .product {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .products .product {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
.premium .products .product {
  color: #ddd;
}
.products .product_head {
  border: 1px solid #f5f5f5;
  position: relative;
  padding-bottom: 48px;
}
.premium .products .product_head {
  background-color: #ddd;
  border: 0;
  color: #222;
}
.products .product_image_link {
  display: block;
  line-height: 0;
  overflow: hidden;
  min-height: 200px;
  text-align: center;
}
.products .product_image_link img {
  transform: scale(0.85);
  transition: 0.5s;
  max-width: 100%;
  text-align: center;
}
.premium .products .product_image_link img {
  transform: none;
}
.products .product_body:hover img {
  transform: scale(1);
}
.premium .products .product_body:hover img {
  transform: scale(1.2) translateY(-10px);
}
.products .product_cost {
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  bottom: 5px;
  height: 38px;
  line-height: 38px;
  left: 5px;
}
.products .product .btn_product {
  position: absolute;
  bottom: 5px;
  right: 5px;
  border-radius: 0;
  font-weight: 500;
  color: #fff !important;
}
.premium .products .product .btn_product {
  background: linear-gradient(135deg, #111 0%, #444 25%, #111 45%);
  padding-bottom: 2px;
}
.premium .products .product .btn_product:hover {
  background: #111 !important;
}
.products .product_name {
  padding-top: 5px;
  line-height: 30px;
  font-size: 20px;
  margin-bottom: 0;
}
.products .product_size {
  color: #8a8989;
  line-height: 14px;
  padding-top: 5px;
}
.products .product_description {
  padding-top: 10px;
  line-height: 14px;
}
.products .product_description b {
  font-weight: 400;
}
.products .product_description i {
  background: linear-gradient(to right, #dc1414 20%, #fe9522 40%, #fe9522 60%, #dc1414 80%);
  background-size: 200% auto;
  color: #dc1414;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  font-weight: 900;
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}
.products .product_label {
  width: 40px;
  height: 40px;
  background: no-repeat center / contain;
  position: absolute;
  top: -14px;
  right: 4px;
  pointer-events: none;
  z-index: 1;
}
.products .product_action_description {
  position: absolute;
  bottom: 48px;
  left: -10px;
  padding: 2px 5px 2px 15px;
  background: #fe9522;
  line-height: 1.5;
  color: #fff;
  z-index: 0;
  pointer-events: none;
  border-radius: 3px;
  box-shadow: 0 4px 5px -3px rgba(0, 0, 0, 0.25098039);
  transform-style: preserve-3d;
}
.products .product_action_description:before {
  content: '';
  display: block;
  position: absolute;
  border: 4px solid transparent;
  border-top-color: #ca7211;
  border-right-color: #ca7211;
  bottom: -8px;
  left: 2px;
  z-index: -1;
  transform: translateZ(-1px);
}
.premium .products .product_action_description {
  background: linear-gradient(135deg, #111 0%, #666 25%, #111 45%);
  box-shadow: none;
}
.products .product_not_sale {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #e31e24;
  padding: 5px 9px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border-radius: 15px 0;
}
.product.list {
  width: 100% !important;
  border: 1px solid #f5f5f5;
  margin-bottom: 25px;
}
.premium .product.list {
  border: 0;
}
.premium .product.list .product_head {
  background-color: transparent !important;
  padding-bottom: 0;
}
.premium .product.list .btn_product {
  padding-bottom: 4px;
  color: #444 !important;
  background: #ddd !important;
}
.premium .product.list .btn_product:hover {
  background: #bbb !important;
}
.premium .product.list .product_action_description {
  bottom: auto;
  top: 20px;
}
.product.list .product_body {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .product.list .product_body {
    flex-wrap: wrap;
  }
}
.product.list .product_head {
  width: 30%;
}
@media (max-width: 767px) {
  .product.list .product_head {
    width: 100%;
  }
}
.product.list .product_wrap {
  width: 65%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product.list .product_wrap_right {
  text-align: right;
}
@media (max-width: 767px) {
  .product.list .product_wrap {
    width: 100%;
    justify-content: center;
  }
}
.product.list .product_cost {
  position: relative;
}
.product.list .btn_product {
  position: relative;
  width: 180px;
  padding: 5px;
}
.popup_product {
  padding: 0;
  height: calc(100% - 40px);
  max-height: 560px;
  max-width: 960px;
  width: calc(100% - 40px);
  overflow: hidden;
  border-radius: 10px;
}
.popup_product .fancybox-close-small {
  right: 4px;
  top: 4px;
  z-index: 9999;
}
.popup_product .fancybox-close-small:after,
.popup_product .fancybox-close-small:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 30px;
  background-color: #333;
  border-radius: 4px;
}
.popup_product .fancybox-close-small:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup_product .fancybox-close-small:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup_product .fancybox-close-small:hover {
  opacity: 0.8;
}
.popup_product .fancybox-close-small * {
  display: none;
}
@media (max-width: 1023px) {
  .popup_product {
    max-height: 620px;
    max-width: 500px;
  }
}
.quick-view-container {
  display: flex;
  height: 100%;
}
@media (max-width: 1023px) {
  .quick-view-container {
    flex-direction: column;
  }
}
.quick-view-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0px;
}
.quick-view-photo img {
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1023px) {
  .quick-view-photo img {
    width: 100%;
    bottom: auto;
  }
}
@media (max-width: 767px) {
  .quick-view-photo img {
    width: auto;
  }
}
.quick-view-aside {
  display: flex;
  flex-direction: column;
  width: 280px;
  z-index: 1;
  background-color: #f6f6f6;
  color: #292929;
  padding: 70px 29px 50px 25px;
}
@media (max-width: 1023px) {
  .quick-view-aside {
    width: 100%;
    padding: 22px 25px 15px;
    height: 350px;
  }
}
.quick-view-aside .details_info {
  flex: 1 0 0;
  font-size: 14px;
  line-height: 18px;
  color: #8a8989;
}
@media (max-width: 500px) {
  .quick-view-aside .details_info p {
    display: none;
  }
}
.quick-view-aside .btn_product {
  width: 100%;
  font-weight: 500;
  padding: 5px 10px;
}
.quick-view-aside .total-rating img {
  width: 20px;
  height: 20px;
}
.quick-view-aside .count_block_container {
  justify-content: space-between;
  margin-bottom: 14px;
}
.quick-view-aside .product_cost {
  margin-bottom: 14px;
  font-size: 18px;
}
.quick-view-aside .product_new_cost {
  font-weight: 900;
  font-size: 24px;
  color: #ff8400;
}
.quick-view-aside .product_label {
  position: absolute;
  top: 20px;
  right: 239px;
  width: 50px;
  height: 50px;
  z-index: 99999;
  background-size: contain;
  transform: rotate(-11deg);
}
.quick-view-aside .product_size {
  font-size: 16px;
  margin-top: 6px;
  color: #777;
}
.quick-view-content .product_name {
  font-size: 28px;
  font-weight: 500;
}
.quick-view-content .product_description {
  margin-bottom: 24px;
  color: #656565;
  font-size: 16px;
}
.quick-view-content .product_description b {
  font-weight: 400;
}
@media (max-width: 1023px) {
  .quick-view-form {
    position: absolute;
    bottom: 18px;
    right: 18px;
  }
}
@media (max-width: 500px) {
  .quick-view-form {
    position: relative;
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 1023px) {
  .quick-view-aside {
    position: relative;
  }
  .quick-view-aside .details_block {
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .quick-view-aside .details_block .btn_area {
    order: 5;
  }
  .quick-view-aside .details_block .product_size {
    padding: 0 20px;
  }
  .quick-view-aside .product_name {
    padding-bottom: 0;
  }
  .quick-view-aside .product_label {
    top: -50px;
    right: auto;
    left: 10px;
    width: 40px;
    height: 40px;
  }
  .quick-view-close {
    top: 0;
    position: absolute;
    right: 0;
    z-index: 99995;
  }
  .quick-view-content {
    width: 100%;
    max-height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
  }
}
@media (max-width: 1023px) and (max-width: 500px) {
  .quick-view-aside .product_description {
    display: none;
  }
}
.review-container {
  display: flex;
  flex-direction: column;
  width: calc(100% - 200px);
  height: 100%;
  padding: 50px 60px;
  position: absolute;
  background: rgba(240, 240, 240, 0.8);
  z-index: 9999;
  left: 100%;
  top: 0;
  transition: transform 0.3s;
}
@supports (backdrop-filter: blur(15px)) or (-webkit-backdrop-filter: blur(15px)) {
  .review-container {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}
@media (max-width: 1023px) {
  .review-container {
    padding: 30px;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 500px) {
  .review-container .product_name {
    font-size: 16px !important;
  }
}
.review-container.opened {
  transform: translateX(-100%);
}
@media (max-width: 1023px) {
  .review-container.opened .review-button {
    transform: translate(47px, -50%) rotate(-90deg);
  }
}
@media (max-width: 500px) {
  .review-container.opened .review-button {
    transform: translate(37px, -50%) rotate(-90deg);
  }
}
.review-container .quick-view-close {
  right: 0;
}
.review-container .product_name {
  flex-grow: 10;
  font-size: 28px;
  margin-right: 10px;
  margin-bottom: 0;
  font-weight: 500;
}
.review-container .review-button {
  position: absolute;
  top: 107px;
  right: 100%;
  width: 65px;
  height: 30px;
  background-color: #ff8400;
  border-radius: 0 0 5px 5px;
  transform: translate(18px, -50%) rotate(90deg);
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  transition: background-color 0.25s;
}
.review-container .review-button:hover {
  background-color: #d66f00;
}
@media (max-width: 1023px) {
  .review-container .review-button {
    top: auto;
    bottom: 166px;
  }
}
.review-container .review-button .open {
  display: inline-block;
  padding-top: 6px;
  color: #fff;
}
.review-container .review-button .close {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0D%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0D%0A%3C!--%20Creator%3A%20CorelDRAW%202018%20(64-Bit)%20--%3E%0D%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20width%3D%2224px%22%20height%3D%2219px%22%20version%3D%221.1%22%20style%3D%22shape-rendering%3AgeometricPrecision%3B%20text-rendering%3AgeometricPrecision%3B%20image-rendering%3AoptimizeQuality%3B%20fill-rule%3Aevenodd%3B%20clip-rule%3Aevenodd%22%0D%0AviewBox%3D%220%200%201.08%200.83%22%0D%0A%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0D%0A%20%3Cdefs%3E%0D%0A%20%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%0D%0A%20%20%20%3C!%5BCDATA%5B%0D%0A%20%20%20%20.str0%20%7Bstroke%3Awhite%3Bstroke-width%3A0.12%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A22.9256%7D%0D%0A%20%20%20%20.fil0%20%7Bfill%3Anone%7D%0D%0A%20%20%20%5D%5D%3E%0D%0A%20%20%3C%2Fstyle%3E%0D%0A%20%3C%2Fdefs%3E%0D%0A%20%3Cg%20id%3D%22%D0%A1%D0%BB%D0%BE%D0%B9_x0020_1%22%3E%0D%0A%20%20%3Cmetadata%20id%3D%22CorelCorpID_0Corel-Layer%22%2F%3E%0D%0A%20%20%3Cline%20class%3D%22fil0%20str0%22%20x1%3D%220.04%22%20y1%3D%220.78%22%20x2%3D%220.54%22%20y2%3D%20%220.42%22%20%2F%3E%0D%0A%20%20%3Cline%20class%3D%22fil0%20str0%22%20x1%3D%221.04%22%20y1%3D%220.78%22%20x2%3D%220.54%22%20y2%3D%20%220.42%22%20%2F%3E%0D%0A%20%20%3Cline%20class%3D%22fil0%20str0%22%20x1%3D%220.04%22%20y1%3D%220.41%22%20x2%3D%220.54%22%20y2%3D%20%220.05%22%20%2F%3E%0D%0A%20%20%3Cline%20class%3D%22fil0%20str0%22%20x1%3D%221.04%22%20y1%3D%220.41%22%20x2%3D%220.54%22%20y2%3D%20%220.05%22%20%2F%3E%0D%0A%20%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E%0D%0A");
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.review-container .review-button .close:hover {
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .review-container .review-button .close {
    transform: rotate(180deg);
  }
}
.review-container .review-list {
  max-height: 210px;
  margin-top: 25px;
  margin-bottom: 14px;
}
.review-container .review-list-empty {
  margin-top: 20px;
  font-size: 16px;
}
.review-container .review-list-wrapper {
  flex: 1;
}
.review-container .review-list li {
  background-color: #e4e4e4;
  border-radius: 5px;
  padding: 13px 9px;
  margin-bottom: 13px;
}
.review-container .review-list span {
  color: #999;
}
.review-container .review-list .name {
  font-size: 16px;
  flex-grow: 10;
}
.review-container .review-list .text {
  margin-top: 7px;
  color: #777;
}
.review-container .rating-wrapper {
  display: flex;
  margin-left: 5px;
}
.review-container .rating-wrapper img {
  width: 15px;
  height: 15px;
}
.review-container .total-rating img {
  width: 30px;
  height: 30px;
}
@media (max-width: 1023px) {
  .review-container .total-rating img {
    width: 20px;
    height: 20px;
  }
}
.review-container form .rating-wrapper img {
  width: 25px;
  height: 25px;
}
@media (max-width: 500px) {
  .review-container form .rating-wrapper img {
    width: 20px;
    height: 20px;
  }
}
.review-container .form-caption {
  flex-grow: 10;
  display: block;
  margin-bottom: 3px;
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 500px) {
  .review-container .form-caption {
    font-size: 16px;
  }
}
.review-container .rating-caption {
  margin-right: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #666;
}
@media (max-width: 500px) {
  .review-container .rating-caption {
    display: none;
  }
}
.review-container .info-row {
  display: flex;
  align-items: center;
}
.review-container .popup_input {
  margin-top: 8px;
}
@media (max-width: 500px) {
  .review-container .popup_input {
    font-size: 14px;
  }
}
.review-container .textarea-wrapper {
  position: relative;
}
.review-container .textarea-wrapper .popup_input {
  line-height: 22px;
  padding: 8px;
  resize: none;
  overflow: auto;
  height: 100px;
}
.review-container .textarea-wrapper .popup_input:focus ~ .btn {
  opacity: 0.6;
}
.review-container .textarea-wrapper .btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 14px;
  color: #fff !important;
  font-weight: 500;
}
.review-container .textarea-wrapper .btn:hover {
  opacity: 1 !important;
}
.share-button {
  position: absolute;
  top: 187px;
  right: 0;
  width: 65px;
  height: 30px;
  background-color: #1085f5;
  border-radius: 0 0 5px 5px;
  transform: translate(18px, -50%) rotate(90deg);
  cursor: pointer;
  text-align: center;
  z-index: 9;
  font-size: 12px;
  transition: background-color 0.25s;
  display: inline-block;
  padding-top: 6px;
  color: #fff;
}
.share-button:hover {
  background-color: #2a58f5;
}
.share-button > span {
  position: absolute;
  left: 50%;
  top: 100%;
  display: block;
  transform: rotate(-90deg);
  pointer-events: none;
}
.share-button > span .clipboard-copied {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  transform: translateY(-50%);
  background: #1085f5;
  color: #fff;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.4));
  border-radius: 5px;
  padding: 3px 5px;
  margin-right: 8px;
  transition: 0.2s opacity ease-in-out, 0.2s margin-top ease-in-out;
  margin-top: 30px;
  opacity: 0;
}
.share-button > span .clipboard-copied.clipboard-out {
  margin-top: -30px;
}
.share-button > span .clipboard-copied.clipboard-in {
  margin-top: 0;
  opacity: 1;
}
.share-button > span .clipboard-copied:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 100%;
  border: 6px solid transparent;
  border-left-color: #1085f5;
  margin-top: -6px;
  margin-left: -1px;
}
.main_block {
  display: flex;
}
.main_block > .catalog {
  width: 100%;
}
.main_block > .catalog.panda-active {
  width: calc(100% - 150px);
  margin-left: 150px;
}
@media (min-width: 1600px) {
  .main_block > .catalog.panda-active {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .main_block > .catalog.panda-active {
    width: 100%;
    margin-left: 0;
  }
}
.main_block > .catalog h2 {
  font-size: 22px;
}
.ingredients_link {
  color: #64ce0e;
  font-size: 24px;
  padding-bottom: 10px;
  display: inline-block;
}
.sidebar nav ul li {
  position: relative;
  padding: 0 3px 0 43px;
}
.sidebar nav ul li a {
  position: relative;
  display: block;
  line-height: 20px;
  padding: 15px;
  color: #292929;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.sidebar nav ul li a .icon {
  position: absolute;
  top: -5px;
  left: -40px;
  width: 30px;
  height: 50px;
  bottom: -5px;
  margin: auto;
}
.premium .sidebar nav ul li a {
  color: #ddd;
}
.sidebar nav ul li.active a,
.sidebar nav ul li a:hover {
  background: #ff8400;
  color: #fff;
  box-shadow: 0 0 0 3px #ff8400;
}
.sidebar nav ul li.active a .icon,
.sidebar nav ul li a:hover .icon {
  background-position-x: -30px;
}
.premium .sidebar nav ul li.active a,
.premium .sidebar nav ul li a:hover {
  background: linear-gradient(120deg, #222 10%, #444 50%, #111 90%);
  box-shadow: none;
}
.ingredients {
  padding: 16px 0 30px;
  display: flex;
  flex-wrap: wrap;
}
.ingredients > .ingredient {
  width: 33.3333%;
  display: flex;
}
@media (min-width: 1400px) {
  .ingredients > .ingredient {
    width: 25%;
  }
}
@media (min-width: 1600px) {
  .ingredients > .ingredient {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .ingredients > .ingredient {
    width: 50%;
  }
}
.ingredients > .ingredient .popup_checkbox {
  cursor: pointer;
}
.message {
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: collapse;
  transition: 0.3s;
  pointer-events: none;
  z-index: 50;
  max-width: 362px;
  width: 100%;
  margin-left: -181px;
  margin-top: -35px;
}
@media (max-width: 500px) {
  .message {
    margin-left: 0;
    left: 0;
    border-radius: 0;
    margin-top: -35px;
    max-width: 100%;
    justify-content: center;
  }
}
.message_success {
  background: #97f44c;
}
.message_show {
  opacity: 1;
  visibility: visible;
}
.message .icon {
  width: 50px;
  height: 50px;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 15px;
  bottom: 0;
  margin: auto;
}
@keyframes shake {
  0% {
    top: -30px;
  }
  30% {
    top: 20px;
  }
  50% {
    top: -16px;
  }
  65% {
    top: 10px;
  }
  80% {
    top: -6px;
  }
  100% {
    top: 0;
  }
}
.message_show.message .icon {
  animation: shake 0.4s;
  animation-delay: 0.4s;
}
.message span {
  font-size: 30px;
  line-height: 50px;
  color: #fff;
  font-weight: 500;
  padding-left: 65px;
}
.product_admin_plate {
  position: absolute;
  top: -36px;
  left: 0;
  padding: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  z-index: 99;
}
.product_admin_plate span + a {
  margin-left: 5px;
}
.product_admin_plate span + span:before {
  content: ', ';
}
.product_body:hover .product_admin_plate {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.product_admin_plate_stack {
  justify-content: center;
  align-items: center;
  display: flex;
}
.select_souses {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 20px;
}
.select_souses > div {
  margin-right: 10px;
  cursor: pointer;
}
.select_souses > div i {
  display: block;
  margin: auto;
}
.select_souses .active {
  color: #fe9522;
}
.select_souses .active .icon-souse {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22%23fe9522%22%20d%3D%22M13.9%207.5c0-.7.2-1.2.3-1.5h.6l.9-2.5h.8V2h-9v1.5h.8L9.2%206h.6c.2.3.3.8.3%201.5%200%201.3-4.1%206.2-4.1%2010.1v2c0%201.4%202.7%202.3%206%202.3s6-.9%206-2.3v-2c0-3.9-4.1-8.8-4.1-10.1M12%2015a2%202%200%2001-2-2%202%202%200%20012-2%202%202%200%20012%202%202%202%200%2001-2%202z%22%2F%3E%3C%2Fsvg%3E");
}
.select_weight {
  display: flex;
  flex-wrap: wrap;
}
.select_weight > div {
  margin-right: 10px;
  cursor: pointer;
}
.select_weight .active {
  color: #fe9522;
}
.icon-souse {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M13.9%207.5c0-.7.2-1.2.3-1.5h.6l.9-2.5h.8V2h-9v1.5h.8L9.2%206h.6c.2.3.3.8.3%201.5%200%201.3-4.1%206.2-4.1%2010.1v2c0%201.4%202.7%202.3%206%202.3s6-.9%206-2.3v-2c0-3.9-4.1-8.8-4.1-10.1M12%2015a2%202%200%2001-2-2%202%202%200%20012-2%202%202%200%20012%202%202%202%200%2001-2%202z%22%2F%3E%3C%2Fsvg%3E");
}
.icon.fix-icon {
  background-position-x: 0 !important;
  background-position-y: 5px;
  background-repeat: no-repeat;
}
.celebrate_block .full_width_img {
  width: 100%;
}
.item-page-body {
  width: 100%;
}
.item-page-body .popup_product.popup {
  width: 100%;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 1023px) {
  .item-page-body .popup_product.popup {
    width: auto;
    height: 620px;
  }
}
@media (max-width: 1023px) {
  .item-page-body .popup_product.popup img {
    width: auto;
  }
}
.item-page-body .quick-view-aside {
  width: 35%;
  text-align: left;
  padding: 20px 29px 65px 25px;
}
@media (max-width: 1023px) {
  .item-page-body .quick-view-aside {
    width: auto;
  }
}
.item-page-body .review-container {
  display: none;
}
@media (max-width: 1023px) {
  .item-page-body .quick-view-content {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .item-page-body .quick-view-form {
    bottom: 58px;
  }
}
/*
a[href="http://s.imperya-sushi.ru/bijsk/korobochki-wok"],
a[href="https://imperya-sushi.ru/bijsk/korobochki-wok"]{
  display: none !important;
}*/
/*# sourceMappingURL=home.css.map */