.PopupPrice .title_box{
    text-align: center;
}

.PopupPrice .title_box .title{
    font-size: 20px;
    font-weight: 700;
}

.PopupPrice .inputs{
    position: relative;
    margin: 24px 0 0 0;
    width: auto;
}

.PopupPrice .inputs .input_box{
    position: relative;
    display: flex;
    height: 60px;
    width: 100%;
    margin: 0 0 19px 0;
    border: 1px solid #333637;
    border-radius: var(--border-r-s);
    box-sizing: border-box;
}

.PopupPrice .inputs .input_box input{
    position: relative;
    width: 100%;
    height: 100%;
    border: initial;
    font-size: 20px;
    font-weight: 300;
    padding: 13px 25px 13px 25px;
    box-sizing: border-box;
    border-radius: var(--border-r-s);
    background: initial;
}

.PopupPrice .inputs .input_box input:focus{
    outline: initial;
}

.PopupPrice .inputs .input_box .select{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 70px;
    height: 100%;
}

.PopupPrice .inputs .input_box .select .val{
    position: relative;
    width: 100%;
    text-align: center;
}

.PopupPrice .inputs .input_box select{
    position: absolute;
    background: initial;
    color: rgba(0,0,0,0);
    border: initial;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 1;
    cursor: pointer;
}

.PopupPrice .inputs .input_box select:focus{
    outline: initial;
}

.PopupPrice .inputs .input_box select option{
    color: #000;
}

.PopupPrice .inputs .input_box .select::after{
    content: '';
    position: absolute;
    top: 0;
    right: 2px;
    margin: auto;
    width: 10px;
    height: 100%;
    background: url(./images/select-arrow.svg) no-repeat;
    background-size: 100%;
    background-position: center;
}

.PopupPrice .inputs .input_box.phone input{
    padding: 13px 25px 13px 9px;
}

.PopupPrice .button{
    width: 100%;
    height: 50px;
    border-radius: var(--border-r-s);
    font-size: 16px;
    font-weight: 500;
    margin: 11px 0 0 0;
    box-shadow: 0px 3.75789px 18.7895px rgba(255, 0, 0, 0.5);
}

.PopupPrice .description{
    position: relative;
    text-align: center;
    margin: 23px 0 0 0;
    font-weight: 500;
    font-size: 15px;
}

.PopupPrice .description p{
    margin: 0;
}

.PopupPrice .description .additionaly_text{
    position: relative;
    font-weight: 400;
    margin-top: 20px;
}

.PopupPrice .additionaly_desc{
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: -76px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.PopupPrice .additionaly_desc a{
    color: inherit;
    text-decoration: initial;
}

.PopupPrice .additionaly_desc a:hover{
    color: var(--main-color);
}

.PopupPrice .messenger_box{
    position: relative;
    margin: 10px 0 0 0;
}

.PopupPrice .messenger_box .title{
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.PopupPrice .messenger_box .messenger_list{
    position: relative;
    margin: 20px 0 0 0;
    display: flex;
    justify-content: center;
    height: 60px;
    padding: 15px 0;
}

.PopupPrice .messenger_box .messenger_list a{
    position: relative;
    display: block;
    height: 100%;
    width: 60px;
    margin: 0 33px;
    cursor: pointer;
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    transition: .3s ease;
    cursor: pointer;
}

.PopupPrice .messenger_box .messenger_list .icon.w{
    background-image: url(./images/icon-w.svg);
}

.PopupPrice .messenger_box .messenger_list .icon.v{
    background-image: url(./images/icon-v.svg);
}

.PopupPrice .messenger_box .messenger_list .icon.t{
    background-image: url(./images/icon-t.svg);
}

.PopupPrice .messenger_box .messenger_list a:hover{
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    filter: grayscale(0);
    transform: scale(1.07);
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -ms-transform: scale(1.07);
}

.PopupPrice  .button.call:hover{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)), linear-gradient(180deg, #FF7B7B 0%, #AB0E0E 100%);
    box-shadow: 0px 3.32027px 16.6014px rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
}

.PopupPrice  .button.call:active{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(180deg, #FF7B7B 0%, #AB0E0E 100%);
    box-shadow: 0px 3px 12px rgba(255, 0, 0, 0.25);
    transform: scale(1);
}