.spc {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
.spc.active {
  display: block;
}
.spc-modal {
  display: inline-block;
  width: 815px;
  padding: 40px 109px 64px 40px;
  border-radius: 12px 0 0 12px;
  background-color: #FFF;
  position: fixed;
  top: 117px;
  right: 0;
  z-index: 1000;
  overflow-y: overlay;
  max-height: 80vh;
}
.spc-main-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.64px;
  text-transform: uppercase;
}
.spc-close-button {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.spc-close-button:before,
.spc-close-button:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 14px;
}
.spc-close-button:before {
  transform: rotate(45deg);
}
.spc-close-button:after {
  transform: rotate(-45deg);
}
.spc-main-beam {
  width: 100%;
  display: inline-block;
}
.spc-main-beam .spc-header {
  width: 100%;
  display: inline-block;
  margin-bottom: 16px;
}
.spc-separator {
  width: 100%;
  display: block;
  height: 1px;
  background: #9A9A9A;
  margin: 16px 0;
}
.spc-main-menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.spc-menu-item {
  width: fit-content;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  color: #000;
  background: #FFF;
  border: 1px solid #000;
  padding: 7px 28px;
  border-radius: 27px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.spc-menu-item.active {
  background: #000;
  color: #FFF;
}
.spc-menu-item:hover {
  border-color: #9BABBE !important;
  background: #DEE3E9 !important;
  color: #000 !important;
}
.spc-menu-item:focus {
  outline: none !important;
}
.spc-info-beam {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: Figtree;
  padding: 8px 12px;
  background: #F3F3F3;
  border-radius: 8px;
  margin: 16px 0;
}
.spc-info-beam .title-box {
  display: flex;
  align-items: center;
}
.spc-info-beam .title-box .name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 12px;
}
.spc-info-beam .title-box .name .title,
.spc-info-beam .title-box .name .subtitle {
  width: 100%;
  display: inline-block;
}
.spc-info-beam .title-box .name .title {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.48px;
}
.spc-info-beam .title-box .name .title span {
  font-weight: 400;
}
.spc-info-beam .title-box .name .subtitle {
  line-height: 16px;
}
.spc-calculator {
  display: none;
}
.spc-calculator.active {
  width: 100%;
  display: inline-block;
}
.step-box {
  width: 100%;
  display: inline-block;
}
.step-box .form-group {
  margin-bottom: 20px;
}
.step-box .iter {
  font-size: 48px;
  line-height: 48px;
}
.step-box .content .description {
  width: 100%;
  display: inline-block;
  margin: 36px 0 32px 0;
  padding-right: 16%;
}
.step-box .basic-data {
  width: 100%;
  display: inline-block;
}
.step-box .basic-data .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}
.step-box .basic-data .item .form-group {
  max-width: 96%;
  flex: 1;
}
.step-box .additional-data {
  width: 100%;
  display: block;
  margin-top: 50px;
}
.step-box .additional-data .body {
  width: 100%;
  display: block;
}
.step-box .additional-data .spc-header {
  margin-bottom: 20px;
}
.location-variant {
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #E3E3E3;
  display: none;
}
.location-variant.active {
  display: block;
}
.location-variant .body {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.location-variant .body .item-size {
  border: 1px solid #9A9A9A;
  display: flex;
  width: 150px;
  height: 150px;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex: 0 0 150px;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.location-variant .body .item-size.active {
  border: 1px solid #9A9A9A;
  background: #E7DDD1;
}
.location-variant .body .item-size:hover {
  border: 1px solid #597393;
  background: #dee3e9;
}
.location-variant .body .thumb-size img {
  max-height: 140px;
}
.location-items {
  width: 100%;
  display: grid;
}
.location-item {
  width: 100%;
  display: none;
  padding: 44px 0 24px 0;
  border-bottom: 1px solid #9A9A9A;
}
.location-item.active {
  display: inline-block;
}
.location-item .data-size {
  width: 100%;
  display: inline-block;
}
.location-item .data-size .head {
  display: flex;
  justify-content: space-between;
}
.location-item .data-size .head .name,
.location-item .data-size .head .close {
  text-transform: uppercase;
}
.location-item .data-size .head .name {
  font-size: 16px;
}
.location-item .data-size .head .name .thumb-size.mobile {
  display: none;
}
.location-item .data-size .head .close {
  cursor: pointer;
  color: #000;
  font-family: Figtree;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.48px;
  opacity: 1;
}
.location-item .data-size .head .close span[class^="icon-"] {
  display: inline-block;
  transform: rotate(45deg);
}
.location-item .data-size .values-item {
  width: 100%;
  display: inline-block;
  margin-top: 32px;
}
.location-item .data-size .values-item.half_and_half {
  grid-template-columns: repeat(2, 1fr);
}
.location-item .data-size .values-item.whole {
  grid-template-columns: repeat(1, 1fr);
}
.location-item .data-size .values-item .item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
}
.location-item .data-size .values-item .item .form-group {
  flex: 1;
  position: relative;
}
.location-item .data-size .file-item {
  margin-top: 16px;
}
.values-fillings {
  width: 100%;
  display: inline-block;
  margin-top: 6px;
}
.values-fillings .form-group {
  margin-bottom: 4px;
}
.values-fillings .body {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.values-fillings .body .item-fill {
  border: 1px solid #9A9A9A;
  display: flex;
  height: 110px;
  padding: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 0 0;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.values-fillings .body .item-fill.active {
  border: 1px solid #9A9A9A;
  background: #E7DDD1;
}
.values-fillings .body .item-fill:hover {
  border: 1px solid #597393;
  background: #dee3e9;
}
.values-fillings .body .thumb-size img {
  max-height: 59px;
}
.values-fillings .body .name {
  text-transform: uppercase;
}
.result-price {
  width: 100%;
  display: inline-block;
  padding-top: 16px;
  border-top: 1px solid #E3E3E3;
}
.result-price .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
}
.result-price .item .name {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.result-price .item .value {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
@media (max-width: 991px) {
  .spc-modal {
    width: 100%;
    padding: 20px;
    border-radius: 0;
    top: 0;
    height: 100vh;
    max-height: unset;
  }
}
