
.calc {
  border: 1px solid #eeeeee;
  position: inherit;
  width: 100%;
  /*max-width: 1140px;*/
  max-width: 100%;
  min-height: 500px;
  background: #fff;
  /*margin: 70px auto;*/
  border-radius: 2px;
  -webkit-box-shadow: 0 15px 25px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 25px 0px rgba(0, 0, 0, 0.1);
  /*padding: 20px 40px 70px 10px;*/
  padding: 30px;
  margin-bottom: 30px;
}

@media (max-width: 750px) {
  .calc {
    padding: 20px 20px 70px 20px;
  }
}

.calc__space {
  width: 100%;
  height: 20px;
  position: relative;
}

.calc__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.calc__flex--aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calc__flex--jcsb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.calc__line {
  background: #eeeeee;
  height: 1px;
  width: 100%;
  position: relative;
  margin: 10px auto;
}

.calc__head {
  font-size: 38px;
  font-weight: 600;
  /*font-family: 'Merriweather', serif;*/
  color: #D12223;
  text-align: left;
  margin: 10px auto 10px auto;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 750px) {
  .calc__head {
    font-size: 30px;
  }
}

@media (max-width: 390px) {
  .calc__head {
    font-size: 26px;
  }
}

.calc__title {
  font-size: 20px;
  color: #333;
  margin: 10px 0;
}

@media (max-width: 400px) {
  .calc__title {
    text-align: center;
  }
}

.calc__title--bold {
  font-weight: 600;
}

.calc__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: none;
      flex-shrink: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;

}

@media (max-width: 490px) {
  .calc__type {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.calc__radio {
  display: none;
}

.calc__radio:checked + .calc__label {
  border: 3px solid #D12223;
  background: #fafafa;
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}

.calc__label {
    display: flex;
    margin: 10px 16px 10px 0;
    background: #eeeeee;
    border: 3px solid #eeeeee;
    width: 190px;
    text-align: left;
    padding: 5px 9px;
    cursor: pointer;
    border-radius: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition-duration: 0.4s; 
    transition-duration: 0.4s;
    align-items: center;
    gap: 10px;
}

@media (max-width: 490px) {
  .calc__label {
    margin: 10px;
    width: 100%;
    max-width: 160px;
    padding: 10px;
  }
}

@media (max-width: 390px) {
  .calc__label {
    max-width: 400px;
  }
}

.calc__img {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  margin: 10px auto;
}

@media (max-width: 390px) {
  .calc__img {
    width: 70px;
    height: 70px;
  }
}

.calc__properties {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-negative: none;
      flex-shrink: none;

}

@media (max-width: 1050px) {
  .calc__properties--choice {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.calc__block {
  margin: 6px 18px 5px 0;
}

@media (max-width: 400px) {
  .calc__block {
    margin: 10px 0;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.calc__descr {
  margin: 6px 0 0 0;
  color: #777;
}

@media (max-width: 750px) {
  .calc__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.calc__input {
    border: 1px solid #aaa;
    border-radius: 4px;
    height: 42px;
    width: 90%;
    padding: 0 10px;
    outline: none;
    font-size: 18px;
}

.calc__input--form {
  width: 340px;
  height: 50px;
}

@media (max-width: 1050px) {
  .calc__input--form {
    margin: 0 10px 0 0;
  }
}

@media (max-width: 750px) {
  .calc__input--form {
    margin: 0 0 10px 0;
    width: 100%;
    max-width: 340px;
  }
}

.calc__input--size {
  width: 70px;
  margin: 0 5px;
}

.calc__input--disabled {
  background: #ddd;
}

.calc__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

.calc__list {
  padding: 10px 0;
  border: 1px solid #eee;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 260px;
  background: #fff;
  z-index: 89;
  display: none;
}

.calc__list--show {
  display: block;
}

.calc__li {
  list-style-type: none;
  margin: 2px 0;
  cursor: pointer;
  padding: 4px 15px;
}

.calc__li:hover {
  background: #eeeeee;
}

.calc__color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 42px;
  margin: 5px 20px 5px 0;
  position: relative;
}

.calc__picker {
  width: 32px;
  height: 32px;
  background: #000;
  margin: 0 5px 0 0;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}

.calc__picker--1 {
  background: #FFC718;
}

.calc__picker--2 {
  background: #7B0042;
}

.calc__picker--3 {
  background: #FF2512;
}

.calc__palette {
  display: none;
  position: absolute;
  width: 290px;
  height: 300px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 6px;
  top: -305px;
  left: 0px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 99;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.calc__palette--show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.calc__palette-close {
  position: absolute;
  left: 105%;
  top: 0%;
  font-size: 30px;
  line-height: 50px;
  margin: -8px 0 0 0;
  cursor: pointer;
}

.calc__palette-radio {
  display: none;
}

.calc__palette-radio:checked + .calc__palette-label {
  border: 7px solid #fff;
}

.calc__palette-label {
  display: block;
  width: 30px;
  height: 30px;
  margin: 3px;
  cursor: pointer;
}

.calc__palette-img {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  border-radius: 50px;
}

.calc__size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 160px;
  margin: 5px 0;
}

.calc__size-descr {
  width: 60px;
}

.calc__slider {
  position: relative;
  width: 100%;
  overflow-x: scroll;
}

.calc__section {
  width: 100%;
  position: relative;
  padding: 60px 50px;
  overflow: hidden;
  background: #eeeeee;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.calc__section--slider {
  /*min-width: 1040px;*/
}

.calc__result {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calc__theword {
  font-size: 52px;
  font-weight: 900;
  text-align: center;
  min-height: 9px;
  min-width: 210px;
  padding: 15px 15px;
  border-radius: 10px;
  text-transform: uppercase;
  position: relative;
  font-family: Arial;
  line-height: 1.1;
  letter-spacing: 1px;
}

.calc__theword--back {
  padding: 20px 40px;
  min-height: 106px;
}

.calc__theword--trans {
  background: transparent !important;
}

.calc__sizemark {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.calc__sizemark--right {
  height: 100%;
  top: 0;
  left: calc( 100% + 19px);
}

.calc__sizemark--right::before {
  content: "";
  display: block;
  position: absolute;
  right: calc(  100% + 4px);
  top: 0;
  width: 10px;
  height: 100%;
  border-right: 2px solid #333;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  border-radius: 0 3px 3px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.calc__sizemark--bot {
  width: 100%;
  left: 0;
  top: calc( 100% + 15px);
}

.calc__sizemark--bot::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  border-right: 2px solid #333;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  border-radius: 0 3px 3px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.calc__checkbox {
  margin: 0 0 0 5px !important;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.calc__summ {
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

.calc__summ--itog {
  color: #D12223;
}

.calc__btn {
  width: 340px;
  height: 50px;
  background: #D12223;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.calc__btn:hover {
  opacity: 0.85;
}

.calc__btn:active {
  opacity: 0.2;
}

.calc__note {
  color: #aaaaaa;
  font-size: 16px;
  margin: 20px 0 10px;
  text-align: left;
  flex-shrink: 1;
  max-width: 80%;
}
  
.mobile-calc{
  display: none;
  margin: 20px auto;
  color: #fff !important;
  max-width: 300px;
  font-size: 100%;
}




.calc__left-right-wrap{
  display: flex;
  justify-content: space-between;
}

.calc__left-block{
  width: 40%;
}
.calc__right-block{
  width: 60%;
}



.calc__properties__wrapper{
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}





@media (max-width: 480px){
  .mobile-calc{
    display: block;
  }
  .calc{
    display: none;
  }
}
  
.always-hidd{
  display: none !important;
}
.always-show{
  display: block !important;
}


@media (min-width: 1051px) {
  .calc__properties__left{
    flex-direction: column;
    width: 100%;
  }
}
.calc_result
{
      border: 2px solid rgb(255, 37, 18);
      border-radius: 10px;
      padding: 13px 32px;
}
.calc_result .calc__line {
    margin: 0;
}
@media screen and (max-width:991px)
{
  .calc__label
  {
    width: 28%;max-width: unset;
  }
  .calc__type
  {
    justify-content: center;
  }
  .calc__left-right-wrap
  {
    flex-direction: column;
  }
  .calc__left-block
  {
    width: 90%;
  }
  .calc__right-block {
    width: 100%;
  }
  .calc__img {
    margin: 0;
  }
}
@media screen and (max-width:600px)
{
  .calc__label
  {
    width: 90%;max-width: unset;
  }
}