.box:hover .box-inner{
margin-top:-360px;
position: relative;
box-sizing: border-box;
transition: all 500ms ease;
}
.box-inner{
transition: all 500ms ease;
}
.overlay{
padding: 20px;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0 , .8);
overflow-y: auto;
z-index: -2;
opacity: 0;
transition: .3s;
display: flex;
&.active{
z-index: 9;
opacity: 1;
}
}
.modal{
margin: auto;
position: relative;
padding: 20px;
max-width: 400px;
width: 100%;
background-color: #fff;
opacity: 0;
top: 0;
left: 0;
transform: translateY(-100%);
transition: .3s;
transition-delay: .3s;
&.active{
opacity: 1;
transform: translateY(0%);
}
}