/** Common **/
.polipop {
  z-index: 999;
  padding: 0;
  box-sizing: border-box;
  width: 350px;
  text-align: left;
}

.polipop_position_inline {
  position: relative;
  width: 100%;
  transition: height 0.25s ease-in-out;
}

.polipop_position_top-left {
  position: fixed;
  left: 10px;
  top: 10px;
}

.polipop_position_top-right {
  position: fixed;
  right: 10px;
  top: 10px;
}

.polipop_position_bottom-left {
  position: fixed;
  left: 10px;
  bottom: 10px;
}

.polipop_position_bottom-right {
  position: fixed;
  right: 10px;
  bottom: 10px;
}

.polipop_position_center {
  position: fixed;
  transform: translateX(-50%);
  top: 10px;
  left: 50%;
}

.polipop__notifications {
  height: 100%;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 998;
}

.polipop__notification {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: left;
  display: none;
  position: absolute;
  transition: top 0.25s ease-in-out, bottom 0.25s ease-in-out;
  background-color: #ffffff;
  overflow: hidden;
}

.polipop__notification-progress {
  width: 100%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.04);
}

.polipop__notification-progress-inner {
  width: 0%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.1);
}

.polipop__notification-icon {
  float: left;
}
.polipop__notification-icon svg {
  width: 20px;
  line-height: 20px;
}

.polipop__notification-inner {
  overflow: hidden;
}

.polipop__notification-title {
  font-size: 16px;
  font-weight: 600;
}

.polipop__notification-close {
  float: right;
  cursor: pointer;
  border: none;
  padding: 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 16px;
  font-weight: 600;
}
.polipop__notification-close:focus {
  outline: none;
}

.polipop__notification-content {
  font-size: 14px;
  box-sizing: border-box;
  padding: 3px 0 0;
}

.polipop__closer {
  line-height: 22px;
  font-size: 14px;
  padding: 4px 10px;
  margin: 0;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  z-index: 999;
}

.polipop__closer-text {
  vertical-align: middle;
}

/** Panel layout **/
.polipop_layout_panel {
  width: 400px;
  max-width: 100%;
  transition: height 0.25s ease-in-out;
  background-color: #f2f7fa;
  overflow: hidden;
}
.polipop_layout_panel .polipop__notification-title {
  margin: 0 0 5px;
}
.polipop_layout_panel.polipop_position_top-right .polipop__notifications, .polipop_layout_panel.polipop_position_top-left .polipop__notifications, .polipop_layout_panel.polipop_position_center .polipop__notifications, .polipop_layout_panel.polipop_position_inline .polipop__notifications {
  top: 43px;
}
.polipop_layout_panel.polipop_position_top-right .polipop__notification, .polipop_layout_panel.polipop_position_top-left .polipop__notification, .polipop_layout_panel.polipop_position_center .polipop__notification, .polipop_layout_panel.polipop_position_inline .polipop__notification {
  border-top: 1px solid transparent;
}
.polipop_layout_panel.polipop_position_top-right .polipop__closer, .polipop_layout_panel.polipop_position_top-left .polipop__closer, .polipop_layout_panel.polipop_position_center .polipop__closer, .polipop_layout_panel.polipop_position_inline .polipop__closer {
  top: 43px;
}
.polipop_layout_panel.polipop_position_top-right .polipop__header, .polipop_layout_panel.polipop_position_top-left .polipop__header, .polipop_layout_panel.polipop_position_center .polipop__header, .polipop_layout_panel.polipop_position_inline .polipop__header {
  top: 0;
}
.polipop_layout_panel.polipop_position_top-right .polipop__header-inner, .polipop_layout_panel.polipop_position_top-left .polipop__header-inner, .polipop_layout_panel.polipop_position_center .polipop__header-inner, .polipop_layout_panel.polipop_position_inline .polipop__header-inner {
  top: 0;
}
.polipop_layout_panel.polipop_position_bottom-right .polipop__notifications, .polipop_layout_panel.polipop_position_bottom-left .polipop__notifications {
  bottom: 43px;
}
.polipop_layout_panel.polipop_position_bottom-right .polipop__notification, .polipop_layout_panel.polipop_position_bottom-left .polipop__notification {
  border-bottom: 1px solid transparent;
}
.polipop_layout_panel.polipop_position_bottom-right .polipop__closer, .polipop_layout_panel.polipop_position_bottom-left .polipop__closer {
  bottom: 43px;
}
.polipop_layout_panel.polipop_position_bottom-right .polipop__header, .polipop_layout_panel.polipop_position_bottom-left .polipop__header {
  bottom: 0;
}
.polipop_layout_panel.polipop_position_bottom-right .polipop__header-inner, .polipop_layout_panel.polipop_position_bottom-left .polipop__header-inner {
  bottom: 0;
}

.polipop__header {
  position: absolute;
  height: 44px;
  width: 100%;
  z-index: 999;
}

.polipop__header-inner {
  position: absolute;
  width: 100%;
  padding: 10px 15px;
  line-height: 22px;
  cursor: pointer;
  background-color: #edf4f9;
}
.polipop__header-inner span {
  vertical-align: middle;
}

.polipop__header-count,
.polipop__closer-count {
  display: inline-block;
  margin: 0 0 0 5px;
  padding: 3px;
  min-width: 20px;
  height: 20px;
  line-height: 14px;
  vertical-align: middle;
  text-align: center;
  box-sizing: border-box;
  font-size: 12px;
}

.polipop__header-minimize {
  display: none;
  float: right;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  color: #777777;
}

/** Popups layout **/
.polipop_layout_popups .polipop__notification {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.polipop_layout_popups .polipop__notification-title {
  margin: 0 0 10px;
}
.polipop_layout_popups .polipop__closer {
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  background-color: #333333;
  color: #ffffff;
}
.polipop_layout_popups.polipop_position_top-left .polipop__notifications, .polipop_layout_popups.polipop_position_top-right .polipop__notifications, .polipop_layout_popups.polipop_position_center .polipop__notifications, .polipop_layout_popups.polipop_position_inline .polipop__notifications {
  top: 0;
}
.polipop_layout_popups.polipop_position_top-left .polipop__closer, .polipop_layout_popups.polipop_position_top-right .polipop__closer, .polipop_layout_popups.polipop_position_center .polipop__closer, .polipop_layout_popups.polipop_position_inline .polipop__closer {
  top: 0;
}
.polipop_layout_popups.polipop_position_bottom-left .polipop__notifications, .polipop_layout_popups.polipop_position_bottom-right .polipop__notifications {
  bottom: 0;
}
.polipop_layout_popups.polipop_position_bottom-left .polipop__closer, .polipop_layout_popups.polipop_position_bottom-right .polipop__closer {
  bottom: 0;
}

/** Common **/
.polipop_theme_default {
  font-size: 14px;
}
.polipop_theme_default .polipop__closer {
  font-weight: 600;
  color: #777777;
}
.polipop_theme_default .polipop__closer:hover {
  color: #555555;
}
.polipop_theme_default .polipop__closer-count {
  background: #0ec47d;
  color: #ffffff;
  border-radius: 3px;
  font-weight: 600;
}
.polipop_theme_default .polipop__notification {
  color: #555555;
}
.polipop_theme_default .polipop__notification-outer {
  padding: 15px;
}
.polipop_theme_default .polipop__notification-icon {
  margin: 0 12px 0 0;
}
.polipop_theme_default .polipop__notification-icon svg {
  fill: #ffffff;
}
.polipop_theme_default .polipop__notification-close {
  background-color: transparent;
  color: inherit;
  border-radius: 50%;
}
.polipop_theme_default .polipop__notification-close:hover {
  outline: none;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.05);
}
.polipop_theme_default .polipop__notification-content {
  line-height: 24px;
  font-weight: 400;
}
.polipop_theme_default .polipop__notification_type_success {
  background-color: #0ec47d;
  color: #ffffff;
}
.polipop_theme_default .polipop__notification_type_info,
.polipop_theme_default .polipop__notification_type_notice {
  background-color: #00b1fe;
  color: #ffffff;
}
.polipop_theme_default .polipop__notification_type_warning {
  background-color: #ffc107;
  color: #555555;
}
.polipop_theme_default .polipop__notification_type_warning .polipop__notification-icon svg {
  fill: #555555;
}
.polipop_theme_default .polipop__notification_type_error {
  background-color: #f76860;
  color: #ffffff;
}
.polipop_theme_default .polipop__notification_type_error .polipop__notification-progress-inner {
  background-color: rgba(0, 0, 0, 0.12);
}
.polipop_theme_default .polipop__notification_type_default {
  background-color: #ffffff;
  color: #555555;
}
.polipop_theme_default .polipop__notification_type_default .polipop__notification-icon svg {
  fill: #555555;
}

/** Panel layout **/
.polipop_layout_panel.polipop_theme_default {
  background-color: #f2f7fa;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.polipop_layout_panel.polipop_theme_default .polipop__header {
  background-color: #e8e8e8;
}
.polipop_layout_panel.polipop_theme_default .polipop__header-inner {
  background-color: #edf4f9;
}
.polipop_layout_panel.polipop_theme_default .polipop__header-inner:hover .polipop__header-minimize {
  color: #555555;
}
.polipop_layout_panel.polipop_theme_default .polipop__header-title {
  font-size: 15px;
  font-weight: 600;
  color: #777777;
}
.polipop_layout_panel.polipop_theme_default .polipop__header-count {
  background: #00b1fe;
  color: #ffffff;
  border-radius: 3px;
  font-weight: 600;
}
.polipop_layout_panel.polipop_theme_default .polipop__header-minimize {
  color: #999999;
}
.polipop_layout_panel.polipop_theme_default .polipop__notification {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.polipop_layout_panel.polipop_theme_default .polipop__notification_type_success {
  border-color: #0daf71;
}
.polipop_layout_panel.polipop_theme_default .polipop__notification_type_info,
.polipop_layout_panel.polipop_theme_default .polipop__notification_type_notice {
  border-color: #009de0;
}
.polipop_layout_panel.polipop_theme_default .polipop__notification_type_warning {
  border-color: #e0aa07;
}
.polipop_layout_panel.polipop_theme_default .polipop__notification_type_error {
  border-color: #d64f48;
}
.polipop_layout_panel.polipop_theme_default .polipop__notification_type_default {
  border-color: #e8e8e8;
}
.polipop_layout_panel.polipop_theme_default .polipop__notification-title {
  line-height: 22px;
}
.polipop_layout_panel.polipop_theme_default .polipop__closer {
  font-weight: 600;
  color: #777777;
}
.polipop_layout_panel.polipop_theme_default .polipop__closer:hover {
  color: #555555;
}

/** Popups layout **/
.polipop_layout_popups.polipop_theme_default .polipop__notification {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.polipop_layout_popups.polipop_theme_default .polipop__notification-title {
  line-height: 24px;
}
.polipop_layout_popups.polipop_theme_default .polipop__closer {
  background-color: #333333;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font-weight: 400;
  color: #eeeeee;
  border-color: #222222;
}
.polipop_layout_popups.polipop_theme_default .polipop__closer:hover {
  color: #ffffff;
}

.ldrs-container {
  --uib-size: 35px;
  --uib-color: var(--color-1);
  --uib-speed: 1.2s;
  --uib-bg-opacity: .1;
  height: var(--uib-size);
  width: var(--uib-size);
  transform-origin: center;
  will-change: transform;
  overflow: visible;
}

.ldrs-car {
  fill: none;
  stroke: var(--color-1);
  stroke-dasharray: 25, 75;
  stroke-dashoffset: 0;
  animation: travel var(--uib-speed) linear infinite;
  will-change: stroke-dasharray, stroke-dashoffset;
  transition: stroke 0.5s ease;
}

.ldrs-track {
  fill: none;
  stroke: var(--uib-color);
  opacity: var(--uib-bg-opacity);
  transition: stroke 0.5s ease;
}

@keyframes travel {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -100;
  }
}
button, a {
  cursor: pointer;
}

.brxe-button:hover, .brxe-maskbutton:hover {
  box-shadow: var(--shadow-red);
}
.brxe-button:disabled, .brxe-maskbutton:disabled {
  opacity: 0.5;
}

.variation-button.active {
  box-shadow: var(--shadow-red) !important;
}
.variation-button:hover {
  box-shadow: var(--shadow-red) !important;
}

.information-field {
  background: var(--color-3);
  font-family: var(--p-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--p-font-weight);
  padding: 19px 24px;
  box-shadow: var(--shadow-black);
  border-radius: var(--radius-extra-small);
  text-align: center;
  margin: 20px 0;
}
.information-field.active {
  box-shadow: var(--shadow-red) !important;
}

.main-cta-button-wrapper {
  display: flex;
  justify-content: flex-end;
}

.main-cta-button {
  padding-top: 14px;
  padding-right: 36px;
  padding-bottom: 14px;
  padding-left: 36px;
  background-color: var(--bricks-color-ftzgcv);
  --fg: var(--bricks-color-bpxeif);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  cursor: pointer;
  border-radius: var(--radius-medium);
}
.main-cta-button .bc-mask-button__title {
  mix-blend-mode: lighten;
}
.main-cta-button .bc-mask-button__back {
  border-radius: var(--radius-medium);
}
.main-cta-button .bc-mask-button__back > span {
  background-color: var(--color-2);
}

/*
** Uploader
 */
.uploader {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 600px;
  gap: 25px;
}
.uploader.table {
  display: block;
}
.uploader.table .file-upload-section {
  min-height: 300px;
  margin-top: 20px;
}
.uploader-variations__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}
.uploader-variations__wrapper .variation-button {
  background: var(--color-3);
  font-family: var(--p-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--p-font-weight);
  padding: 19px 24px;
  box-shadow: var(--shadow-black);
  border-radius: var(--radius-extra-small);
  text-align: center;
}
.uploader .file-upload-section {
  position: relative;
  height: 100%;
  margin: 0 0 25px 0;
  background: var(--color-3);
  box-shadow: var(--shadow-black);
  border-radius: var(--radius-extra-small);
  background-image: url("../img/add-photo.svg");
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.uploader .file-upload-section label {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.uploader .file-upload-section input {
  display: none;
}
.uploader .file-upload-section img {
  display: block;
  max-width: 100%;
}
.uploader .file-upload-section .cropper-view-box {
  outline: 1px solid var(--color-1);
  outline-color: rgba(228, 6, 19, 0.75);
}
.uploader .file-upload-section .cropper-point {
  background-color: var(--color-1);
}
.uploader .video-upload-section {
  position: relative;
  height: 187px;
  margin: 0 0 25px 0;
  background: var(--color-3);
  box-shadow: var(--shadow-black);
  border-radius: var(--radius-extra-small);
  overflow: hidden;
}
.uploader .video-upload-section label {
  background-image: url("../img/add-video.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.uploader .video-upload-section input {
  display: none;
}
.uploader-controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.uploader-controls .cropper-controls button {
  background-color: var(--color-3);
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-black);
  border-radius: var(--radius-extra-small);
  width: 50px;
  height: 50px;
  background-size: 30px 30px;
  border: none;
  cursor: pointer;
  margin: 0 8px 0 0;
}
.uploader-controls .cropper-controls button#rotate-left {
  background-image: url("../img/rotate-left.svg");
}
.uploader-controls .cropper-controls button#rotate-right {
  background-image: url("../img/rotate-right.svg");
}
.uploader-controls .cropper-controls button#flip-horizontal {
  background-image: url("../img/flip-horizontal.svg");
}
.uploader-controls .cropper-controls button#flip-vertical {
  background-image: url("../img/flip-vertical.svg");
}

/*
** Long slider
 */
.long-slider .splide__track {
  height: auto;
}
.long-slider .splide__arrows.custom {
  align-items: center;
  display: flex !important;
  margin-top: 50px;
}
.long-slider .splide__arrows.custom .splide__arrow {
  position: unset;
  margin: 0 10px;
  transform: translateY(0);
}
.long-slider .splide__arrows.custom .splide__arrow:hover svg {
  transition: all 0.3s ease;
}
.long-slider .splide__arrows.custom .splide__arrow:hover svg circle {
  fill: var(--color-1);
}
.long-slider .splide__arrows.custom .splide__arrow:hover svg path {
  stroke: var(--color-3);
}
.long-slider .splide__arrows.custom .long-slider-current-slides {
  display: flex;
  align-items: center;
  margin-left: 25px;
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
}
.long-slider .splide__arrows.custom .long-slider-current-slides .long-slider-line {
  display: inline-block;
  width: 68px;
  height: 1px;
  margin: 0 10px;
  background: #000000;
}

.section-heading {
  background-image: url("../img/center-line.svg");
  background-position: bottom;
  background-repeat: repeat-x;
  position: relative;
  text-indent: -30px;
  margin-left: 30px;
  padding-bottom: 10px;
}
.section-heading:before {
  content: "";
  display: inline-block;
  width: 33px;
  height: 10px;
  background-image: url("../img/left-line.svg");
  position: absolute;
  left: -30px;
  bottom: 1px;
}
.section-heading:after {
  content: "";
  display: inline-block;
  width: 33px;
  height: 10px;
  background-image: url("../img/right-line.svg");
  position: absolute;
  bottom: 0;
  right: -30px;
}

/**
** Cart
 */
form.woocommerce-cart-form .quantity {
  align-items: center;
  width: 120px !important;
}

form.woocommerce-cart-form .quantity .qty {
  border: none !important;
}

form.woocommerce-cart-form input[name=coupon_code] {
  line-height: 46px;
}

form.woocommerce-cart-form .button {
  padding: 13px 50px;
  border: 2px solid #D3BDB1;
}

form.woocommerce-cart-form .button[name=update_cart] {
  background-color: transparent !important;
}

.product-quantity .minus,
.product-quantity .plus {
  height: 40px;
  border: none;
}

.product-quantity .minus,
.product-quantity .plus {
  border: 1px solid #D3BDB1;
  border-radius: 8px;
}

.shop_table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.shop_table__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  /* 	border-bottom: 2px solid #BED0DE; */
  padding: 10px 0;
}

.shop_table__row.woocommerce-cart-form__cart-item.cart_item {
  padding: 15px 0;
  border-top: 2px solid #BED0DE;
  border-bottom: 2px solid #BED0DE;
}

.shop_table__row.woocommerce-cart-form__cart-item.cart_item + .shop_table__row.woocommerce-cart-form__cart-item.cart_item {
  border-top: none;
}

.shop_table__row .shop_table__cell:first-child {
  text-align: right;
  font-weight: bold;
}

.shop_table__row.cart-subtotal .shop_table__cell:first-child,
.shop_table__row.order-total .shop_table__cell:first-child {
  text-align: left;
}

.wc-proceed-to-checkout {
  margin-top: 20px;
  text-align: right;
}

.cart-collaterals .wc-proceed-to-checkout .button {
  padding: 19px 53px;
  line-height: 1 !important;
  font-size: 16px !important;
}

.shop_table__header {
  display: none;
}

.cart_product_wrapp {
  display: flex;
  flex: 3;
}

.cart_product_second_wrapp {
  display: flex;
  flex: 1;
}

.shop_table__cell {
  flex: auto;
  padding: 10px;
}

.shop_table__cell.product-remove {
  order: 10;
  width: 50px;
}

.shop_table__cell .product-name {
  flex-grow: 5;
}

.shop_table__row .shop_table__cell:nth-child(2) {
  text-align: left;
}

.shop_table__cell.product-thumbnail {
  max-width: 120px;
  padding: 10px 10px 10px 0;
}

.shop_table__cell.product-thumbnail a {
  display: flex;
  width: 100px;
}

.shop_table__row.actions {
  padding: 40px 0 35px;
  border-bottom: 2px solid var(--color-1);
}

.shop_table__row.actions .shop_table__cell {
  padding: 0;
}

.brxe-woocommerce-mini-cart .cart-detail li .quantity {
  text-align: right;
}

.woocommerce-cart-form .product-remove {
  text-align: right;
}

.woocommerce-cart-form .product-remove {
  color: var(--color-1);
}

@media (max-width: 991px) {
  .shop_table__row.woocommerce-cart-form__cart-item.cart_item {
    flex-direction: column;
  }
  .cart_product_wrapp,
  .cart_product_second_wrapp {
    width: calc(100% - 30px);
  }
  .shop_table__cell.product-price,
  .shop_table__cell.product-subtotal {
    max-width: 125px;
  }
  .shop_table__cell.product-subtotal {
    display: flex;
    align-items: center;
    font-weight: bold;
  }
  .woocommerce-cart-form .product-remove {
    position: absolute;
    top: 13px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .woocommerce-cart-form .actions .coupon {
    width: 100%;
  }
  .woocommerce-cart-form .actions .coupon input {
    flex-grow: 1;
    width: 100%;
  }
  .woocommerce-cart-form .actions .coupon button {
    min-width: unset;
  }
  .woocommerce-cart-form .actions .shop_table__cell button[name=update_cart] {
    margin: 50px 0 0 0;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .woocommerce-cart-form .product-thumbnail img {
    width: 60px !important;
  }
  .shop_table__cell.product-thumbnail {
    padding: 10px 10px 10px 0;
  }
  .shop_table__cell.product-thumbnail a {
    width: 60px;
  }
}
