.shadow_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 100;
    display: none;
    transition: all .5s ease;
}
.active_shadow {
    display: block;
}
.modal {
    border-top: 5px solid #e37639;
    max-width: 500px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    background: #fff;
    opacity: 1;
    display: none;
    z-index: 120;
    transition: all .5s ease;
    height: 500px;
}
.modal_active {
    display: block;
}

.close_modal-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;  
    position: relative; 
}
.close_btn {
    display: block;
    cursor: pointer;
    position: absolute
}
.close-modal-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #e37639;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.modal_form-title {
    font-size:20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-align: center;
    color: #4c5865;
    font-family: LADAPragmatica, Roboto, sans-serif;
}
.modal_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal_name {
    width: 100%;
    height: 40px;
    outline: none;
    border: 1px solid #d4d4d4;
}
.modal_tel {
    width: 100%;
    height: 40px;
    outline: none;
    border: 1px solid #d4d4d4;
}
.modal_tel::placeholder , .modal_name::placeholder {
    padding-left: 10px ;
    font-family: "NouvelR-Light", sans-serif !important;
    font-size: 0.875rem;

}
.modal_comment {
    width: 100%;
    height: 100px;
    resize: none;
    outline: none;
    border: 1px solid #d4d4d4;
}
.modal_submit {
    width: 100%;
    height: 40px;
    background-color: #e37639;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-image: none;
    font-size: 0.875rem;
    border: none;
    color: #fff;
    cursor: pointer;
}
.modal_file {
    color:#fff ;
}


.widjet-item_red {
    background: #d7000f;
    border-radius: 4px;
}
.widjet-item_red img{
    width: 20px !important;
}
.contact-widjet {
    width: 72px;
    min-width: 72px;    
    border-radius: 0px;
    position: fixed;
    right: 2%;
    bottom: 13%;
    box-sizing: border-box;
    z-index: 1100;
    transition: all .3s;
    -webkit-backdrop-filter: blur(11px);
    backdrop-filter: blur(11px);
	font-family: LADAPragmatica, Roboto, sans-serif;
}

.widjet-item {
    font-size: 9px;
    padding: 0 9px;
    cursor: pointer;
    position: relative;
    line-height: 110%;
	background: #ff6a00;
}

.widjet-item:hover {
    background: #ff6a00c7;       
}

.widjet-item:hover .item-fade-content {
    visibility: visible;
    right: 80px;
    opacity: 0.8;
}

.item-main-content {
    /*height: 62px;*/
    min-height: 63px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(18, 18, 18, .22);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-decoration: none;
}

.item-main-content img {
    margin-bottom: 3px;
    width: 14px;
}

.item-main-content span {
    text-align: center;
    color: #FFF;
	font-family: LADAPragmatica, Roboto, sans-serif;
	letter-spacing: 0.7px;
    font-size: 9px;
}

.item-fade-content {
    height: 62px;
    min-height: 63px;
    padding: 0 10px;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 9px;
    line-height: 1.3;
    font-weight: 400;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .34);
    opacity: 0;
    position: absolute;
    right: 4px;
    transition: .3s;
    visibility: hidden;
    top: 0;
    text-align: center;
    color: #FFF;
}

.item-fade-content p {
    white-space: nowrap;
}

.up-icon {
    display: none;
}

.up-icon .item-main-content span {
    display: none;
}

@media (max-width:1024px) {
    .contact-widjet {
        width: 100%;
        left: 0;
        bottom: 0;
        display: flex;
        justify-content: space-between;
        background: #100F0F;
    }

    .widjet-item {
        min-width: 25%;
        max-width: 33%;
        width: 100%;
    }

    .up-icon .item-main-content span {
        display: block;
    }
}



