button{
    border: none;
    cursor: pointer
}
.popup-holder{
    display: none;
    padding: 0 15px;
    z-index: 100;
    position: relative;
}
.popup-holder.active, .popup-holder::after {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}
.popup-holder .popup {
    background: #fff;
    max-width: 586px;
    padding: 42px 44px 29px 37px;
    position: relative;
    z-index: 2;
    top: 50%;
    margin: 15px auto;
    -webkit-box-shadow: 0 0 3px rgb(181 189 192 / 60%);
    box-shadow: 0 0 3px rgb(181 189 192 / 60%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
}

@media(max-width:839px) {
    .popup-holder .popup {  
        padding: 42px 22px 29px 22px;
    }
}
.popup .title {
    padding: 0 0 34px;
    font-size: 28px;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
}
.popup .info-text {
    padding: 0 0 30px;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    max-width: 375px;
    margin: 0 auto;
    display: table
}
.popup .modal-close-small {
    position: absolute;
    top: 14px;
    right: 12px;
    z-index: 10;
    width: 40px;
    height: 40px;
    cursor: pointer;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E8ECF5;
}
.popup .modal-close-small svg {
    position: absolute;
    left: 13px;
    display: block;
    top: 13px;
    width: 12px;
    height: 12px;
    fill: #000;
}
.popup .input-line {
    position: relative;
    width: 100%;
    margin: 0 0 20px;
    display: inline-block;
    vertical-align: top;
}
.popup-holder .input-label {
    padding: 0 0 5px;
    font-size: 14px;
    text-transform: uppercase;
}
input.text-input, textarea.textarea-field {
    position: relative;
    display: block;
    width: 100%;
    height: 48px;
    font-size: 14px;
    font-weight: 400;
    color: #231b14;
    appearance: none;
    padding: 0 15px;
    margin: 0;
    border: 1px solid #E8ECF5;
    border-image: initial;
    background: #fff;
    outline: 0;
    border-radius: 0;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
}
input.text-input.error{
  border: 1px solid red!important;  
}
.send-butn{
    font-weight: bold;
    text-align: center;
    height: 56px;
    line-height: 56px;
    background: #66C736;
    width: 100%;
    border: none;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    cursor: pointer;
        color:#fff
}
.popup-holder [class$="butn"] {
    font-size: 17px;
}
.popup-holder.active {
    z-index: 60;
    display: block;
}
.popup-holder.active, .popup-holder::after {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}
.modal-close-wide{
    background: rgba(0,0,0,.5);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer
}
.modal-close-small:hover{
    border: 1px solid #66C736;
}
.modal-close-small:hover svg{
    fill: #66C736;
}
.send-butn:hover{
    background: #AEB9DA
}
input::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.3s ease;}
input::-moz-placeholder                {opacity: 1; transition: opacity 0.3s ease;}
input:-moz-placeholder                 {opacity: 1; transition: opacity 0.3s ease;}
input:-ms-input-placeholder            {opacity: 1; transition: opacity 0.3s ease;}
input:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
input:focus::-moz-placeholder          {opacity: 0; transition: opacity 0.3s ease;}
input:focus:-moz-placeholder           {opacity: 0; transition: opacity 0.3s ease;}
input:focus:-ms-input-placeholder      {opacity: 0; transition: opacity 0.3s ease;}
.icon-loading{
    animation: 1s linear 0s normal none infinite running rot;
    -webkit-animation: 1s linear 0s normal none infinite running rot;
}

.popup-product img{
    pointer-events: none;
    max-height: 237px;
    max-width: 237px;
}
.popup-item{
    font-size: 14px;
}
.popup-pr-box{
    font-size: 14px;
    margin-bottom: 20px;
}
.popup-name{
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 32px;
}
.popup-price{
    font: 24px 'Gilroy';
    font-weight: 500;
    margin-bottom: 20px;
}
.popup-info{
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    padding-top: 15px;
}
.popup-butn{
    padding-top: 15px;
}
.popup-butn div button{
    font-weight: bold;
    text-align: center;
    background: #66C736;
    width: 100%;
    border: none;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    cursor: pointer;
    color: #fff;
}
@media(min-width:840px) {
    
.popup-butn div button{
    height: 56px;
    line-height: 56px;
}
    .popup-product{
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        width: 100%;
    }
    .popup-img{
        width: 50%;
    }
    .popup-item{
        width: 50%;
    }
    .popup-product img{
        width: 100%;
        pointer-events: none
    }
    .popup-img{
        padding-right: 15px;
    }
    .popup-item{
        padding-left: 15px;
    }
    .popup-butn{
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        padding-top: 15px;
    }
    .popup-butn div{
        width: 50%;
        padding: 10px;
    }
}
@media(max-width:839px) {
     
    .popup-butn div button{
        height: 35px;
        line-height: 35px;
    }
    .popup-product img{
        max-height: 150px;
        max-width: 100%;
        display: table;
        margin: 0 auto;
    }
    .popup-item{
        text-align: center
    }
    .popup-name {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 26px;
    }
    .popup-price {
        font: 16px 'Gilroy';
        margin-bottom: 10px;
    }
    .popup-butn div{
        padding: 10px;
    }
}
@media(max-width:839px) {
    .popup-product img{
        max-height: 150px;
    }
}

@keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}