.a-button {
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
  padding: 0 15px;
  height: 42px;
  border-radius: 3px;
  border: 1px solid #CCC;
  background: #F2F2F2 url(/frontend/img/a-button.jpg) no-repeat center;
  background-size: 100% 100%;
  box-shadow: 0 1px 3px 0 rgba(122, 122, 122, 0.5);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  font-family: Arial, Sans-Serif, serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.a-button > span {
  transition: color 0.5s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.a-button > span span {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.a-button > span span ~ svg path {
  transition: stroke 0.5s;
}
.a-button > span svg {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.a-button:hover span {
  color: #CB4C4D;
}
.a-button:hover span ~ svg path {
  stroke: #CB4C4D;
}
.a-button:hover:after {
  opacity: 0.33;
}
.a-button:disabled {
  filter: grayscale(1);
  opacity: 0.33;
  cursor: not-allowed;
}
.a-button--red {
  background-image: url(/frontend/img/a-button-red-hover.jpg);
  background-size: 100% 100%;
  color: #fff;
}
.a-button--red span {
  color: #fff;
}
.a-button--red span ~ svg path {
  stroke: #CB4C4D;
}
.a-button--red:before {
  background-color: rgba(255, 255, 255, 0.15);
}
.a-button--red:after {
  opacity: 0.33;
}
.a-button--red:hover {
  background-image: url(/frontend/img/a-button-red-hover.jpg) !important;
  color: #fff !important;
}
.a-button--red:hover span {
  color: #fff;
}
.g_plitka .a-button {
  font-weight: 700;
  font-size: 16px;
  color: #333;
}
.g_plitka:hover .a-button {
  color: #fff;
  background: #F2F2F2 url(/frontend/img/a-button-hover.jpg) no-repeat center;
  background-size: auto;
}
.g_plitka:hover .a-button span {
  color: #fff;
}
.g_plitka:hover .a-button:before {
  opacity: 0.15;
}
.g_plitka:hover .a-button:after {
  content: "";
  display: block;
  position: absolute;
  top: -12%;
  left: 15px;
  width: calc(100% - 30px);
  height: 62%;
  background-color: rgba(242, 242, 242, 0.66);
  filter: blur(7px);
  z-index: 2;
  transition: opacity 0.5s;
}
.g_plitka:hover .a-button svg * {
  fill: #fff;
  stroke: #fff;
}
.a-button:hover {
  background-image: url(/frontend/img/a-button-hover.jpg);
  color: #CB4C4D;
}
.g_plitka:hover .a-button.a-button-hover-red {
  background: #F2F2F2 url(/frontend/img/a-button-red-hover.jpg) no-repeat center;
}

.like-button {
  padding-left: 51px;
  background: url(/frontend/img/like.svg) no-repeat left 15px center;
}
.like-button.active {
  background-image: url(/frontend/img/like-active.svg);
}
.like-button--small {
  height: 24px;
  padding: 0 12px;
  background-size: 16px;
  background-position: center;
}

.a-button--centered > span {
  justify-content: center;
}
.a-button--centered > span span {
  flex-grow: unset;
}

.a-header {
  display: flex;
  justify-content: space-between;
  height: 52px;
  align-items: center;
}
@media (max-width: 1599px) {
  .a-header .a-button svg {
    display: none;
  }
}
.a-header > * {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.a-phone {
  color: #666;
  font-family: "Russo One", Sans-Serif, serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 120% */
  letter-spacing: 1px;
  white-space: nowrap;
}
.a-phone > span > span {
  display: flex;
  flex-direction: column;
}
.a-phone > span > span span ~ span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  /* 100% */
}

.a-logo {
  position: relative;
  top: -15px;
  width: 64px;
}
.a-logo div {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.a-logo div a {
  color: white;
}
.a-logo div a:nth-child(1) {
  position: absolute;
  left: -90px;
}
.a-logo div a:nth-child(3) {
  position: absolute;
  right: -80px;
}

.a-cart {
  display: flex;
  gap: 12px;
  text-decoration: none;
}
.a-cart__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Source Sans Pro", sans-serif, serif;
  text-decoration: none;
  line-height: 14px;
}
.a-cart__info span:nth-child(1) {
  color: #333;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  text-decoration-line: underline;
}
.a-cart__info span:nth-child(2) {
  color: #333;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.a-cart__info span:nth-child(3) {
  color: #333;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.filter__wrp {
  border-radius: 7px;
  background: #FFF;
  box-shadow: 0 1px 3px 0 rgba(122, 122, 122, 0.5), 0 3px 10px 1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .preview-dress a {
    color: #333;
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
  }
}

.a-good__prices {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px;
}
.a-good__availability {
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  padding: 0 11px 11px 11px;
}
.a-good__availability a {
  color: #666;
}
.a-good__buy {
  padding: 0 11px 11px 11px;
}
.a-good__images {
  position: relative;
  text-align: unset !important;
}
.a-good__images img {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  max-width: unset !important;
  max-height: unset !important;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.rollover-indicator {
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  gap: 4px;
  z-index: 20;
  pointer-events: none;
  padding: 7px;
}
.a-good__images:hover .rollover-indicator {
  display: flex;
}

.indicator-bar {
  /*width: 30px;*/
  flex: 1;
  height: 2px;
  transition: background-color 0.3s ease;
  opacity: 0.33;
  background: rgba(0, 0, 0, 0.33);
}
.indicator-bar.active {
  background: #DB3D3E;
  opacity: 1;
}

.a-price {
  color: rgba(51, 51, 51, 0.8);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.a-price.line-through {
  text-decoration: line-through;
}
.a-price.red {
  color: #C74B4C;
  font-size: 36px;
  font-weight: 600;
}

.a-good:hover .a-price.hover-line-through {
  text-decoration: line-through;
  display: block !important;
}
.a-good:hover .a-price.hover-red {
  color: #C74B4C;
  font-size: 36px;
  font-weight: 600;
  display: block !important;
}

#ur_type_dropdown .dropdown-menu {
  padding: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  max-height: 360px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #333 transparent;
  scrollbar-width: thin;
}
#ur_type_dropdown .dropdown-menu::-webkit-scrollbar {
  width: 4px;
}
#ur_type_dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
#ur_type_dropdown .dropdown-item {
  height: 36px;
  line-height: 36px;
  border-bottom: 1px solid #CED4DA;
  text-decoration: none;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 10px;
}
#ur_type_dropdown .dropdown-item:hover {
  background: #F5F4F4;
}
#ur_type_dropdown .dropdown-toggle span {
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

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