#callback {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1055;
}
#callback.show {
    display: flex;
    top:170px;
    justify-content: center;
    padding: 20px;
}
#callback >div{
    background-size: cover;  
    background-position: center;         
    background-repeat: no-repeat;
	width:650px;
	height: 450px;
    background-color: #ffffff;
	border:1px solid #A8A8A8;   
	border-radius: 30px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.4);

}


#callback.show > div {
    animation: popupOpen 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes popupOpen {
    0% {
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }
    60% {
        transform: scale(1.02) translateY(5px);
        opacity: 0.9;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

 

#callback >div>div:first-child{	
 width:100%;
 display: flex;
 justify-content: end;
 padding:25px 20px 0 0 ;

} 

#callback .close{
    all: unset;     
    line-height: 0;
    font-size: 50px;
    font-weight: 400;
    color: #000000; 
	cursor:pointer;
 
}

#callback .close:hover {
   color:#D92625;
}

#callback >div>div:last-child{
padding:10px 55px 40px 55px;
}

#callback .hider{
 font-size: 30px;
 color:#525252;
 font-weight: 700;
}

  #callback .text{
  font-size: 19px;
  padding:22px 0;
 }

#callback input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 2px solid #A8A8A8;   
    background: #fafafa;   
    padding: 0 16px;  
    font-size: 16px;  
    box-sizing: border-box;   
    outline: none;    
    transition: all 0.3s ease;  
}

#callback div.cb {
display:flex;
width:100%;
justify-content:space-between;
font-size:13px;
 line-height:13px;
 align-items:center
}

 #callback input[type="checkbox"]{
 
     width:30px;
    height: 30px;
 
    border: 2px solid #A8A8A8;   
    background: #fafafa;   
    margin: 16px  16px 16px 0;  
    font-size: 16px;  
    box-sizing: border-box;   
    outline: none;    
    transition: all 0.3s ease; 
 }

	
	
#callback button{
    width: 220px;
    border: 0;
    height: 35px;
    padding: 0;
    border-radius: 5px;
    margin: 0;
    color: #ffffff;
    background-color: #D92625;
	    cursor: pointer;
}


#callback button:disabled
 {
    background: #ccc !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}




@media (max-width: 650px) {
	
	
#callback button{
    width: 100%;
 
}	
	#callback >div>div:last-child {
    padding: 15px ;
}
	
#callback  .myform{
	height:500px;
}
}
 