

/* Start:/local/components/stmd/calculator/templates/main/style.css?17491582297110*/
:root {
  --font-family--roboto: "Roboto", sans-serif;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --transition-duration: 0.3s;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.calculator {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 32px;
}
@media screen and (max-width: 768px) {
  .calculator {
    grid-column-gap: 0;
    grid-row-gap: 24px;
  }
}
.calculator__image {
  grid-column: span 5;
}
@media screen and (max-width: 768px) {
  .calculator__image {
    grid-column: span 12;
  }
}
.calculator__image-inner {
  position: relative;
}
.calculator__image-inner img {
  display: block;
}
.calculator__image-control {
  position: absolute;
  border: 2px solid #12B2E7;
}
.calculator__parameters {
  grid-column: span 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .calculator__parameters {
    grid-column: span 12;
  }
}
.calculator__parameter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.calculator__parameter-title {
  font-family: var(--font-family--roboto);
  font-weight: var(--font-weight--medium);
  line-height: 32px;
  font-size: 20px;
}
.calculator__parameter-hide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #12B2E7;
  border: 0;
  background-color: transparent;
  border-bottom: 1px dashed #12B2E7;
}
.calculator-sizes__inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 12px;
}
.calculator-sizes__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.calculator-sizes__input-label span:first-child {
  font-size: 12px;
  margin-right: 5px;
}
.calculator-sizes__ranges-from-to {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.calculator-view__buttons, .calculator-material__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.calculator-view__button, .calculator-material__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
.calculator-view__button input[type=radio], .calculator-material__button input[type=radio] {
  width: 0;
  opacity: 0;
}
.calculator-view__button span, .calculator-material__button span {
  width: 100%;
}
.calculator-texture__buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 12px;
}
@media screen and (max-width: 1500px) {
  .calculator-texture__buttons {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1320px) {
  .calculator-texture__buttons {
    grid-template-columns: repeat(3, 1fr);
  }
}
.calculator-texture__button {
  position: relative;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.calculator-texture__button input[type=radio] {
  width: 0;
  opacity: 0;
}
.calculator-texture__button input[type=radio]:checked ~ span img, .calculator-texture__button input[type=radio]:focus ~ span img {
  border: 2px solid #12B2E7;
}
.calculator-texture__button span img {
  border-radius: 3px;
  width: 86px;
  height: 60px;
}
.calculator__actions {
  grid-column: span 3;
  align-self: start;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 25px 32px 32px 32px;
}
@media screen and (max-width: 768px) {
  .calculator__actions {
    grid-column: span 12;
  }
}
.calculator__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.calculator__action-title {
  font-family: var(--font-family--roboto);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 4px;
}
.calculator__total-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.calculator__total-options .option-texture img {
  max-width: 287px;
  max-height: 114px;
  width: 100%;
  height: 100%;
}
.calculator__total-price {
  font-family: "Open Sans", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 34px;
}

.detail-texture {
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 5px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 5px 0 rgba(0, 0, 0, 0.16);
  width: 300px;
  position: absolute;
  z-index: 2;
  bottom: 70%;
  left: 70%;
}
.detail-texture__image {
  width: 100%;
  max-height: 273px;
  height: 100%;
  overflow: hidden;
}
.detail-texture__title {
  padding: 15px;
  color: #212121;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.detail-texture__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}
.detail-texture__info-link {
  color: #424242;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 200% */
  text-transform: uppercase;
}
.detail-texture__info-price {
  color: #12B2E7;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-transform: uppercase;
}

.cropper-view-box {
  outline: 2px solid #12B2E7 !important;
}
.cropper-count {
  position: absolute;
  text-align: center;
  font-size: 14px;
  line-height: 19.801px; /* 142.857% */
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: #12B2E7;
  padding: 4px 8px;
}
.cropper-count.count-w {
  top: -27px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  border-radius: 4px 4px 0 0;
}
.cropper-count.count-h {
  top: 50%;
  left: -14px;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
      -ms-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  border-radius: 4px 4px 0 0;
}
/* End */


/* Start:/local/components/stmd/calculator/templates/main/lib/loader/loader.css?17491582291582*/
.stmd-calculator-loader {
  background-color: rgba(255, 255, 255, 0.6);
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.stmd-calculator-loader__inner {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0 auto;
}
.stmd-calculator-loader--active {
  display: block;
}
.stmd-calculator-loader span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #3498db;
  margin: 35px 5px;
}
.stmd-calculator-loader span:nth-child(1) {
  -webkit-animation: bounce 1s ease-in-out infinite;
          animation: bounce 1s ease-in-out infinite;
}
.stmd-calculator-loader span:nth-child(2) {
  -webkit-animation: bounce 1s ease-in-out 0.33s infinite;
          animation: bounce 1s ease-in-out 0.33s infinite;
}
.stmd-calculator-loader span:nth-child(3) {
  -webkit-animation: bounce 1s ease-in-out 0.66s infinite;
          animation: bounce 1s ease-in-out 0.66s infinite;
}

@-webkit-keyframes bounce {
  0%, 75%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes bounce {
  0%, 75%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* End */


/* Start:/local/components/stmd/calculator/templates/main/lib/cropper/cropper.min.css?17491582293804*/
/*!
 * Cropper.js v1.5.13
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2022-11-20T05:30:43.444Z
 */.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}
/* End */
/* /local/components/stmd/calculator/templates/main/style.css?17491582297110 */
/* /local/components/stmd/calculator/templates/main/lib/loader/loader.css?17491582291582 */
/* /local/components/stmd/calculator/templates/main/lib/cropper/cropper.min.css?17491582293804 */
