*{
    margin: 0px;
    padding:0px;
}


.modal1{
    position: fixed;
    background-color: rgba(0, 0, 0, .5);
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    z-index: 5000;
    display:none;
    
  
}
.modal_content1{
    margin-top: 3vh;
    width: 600px;
    background-color: #f9f4e8;
    /* padding: 5px; */
    border-radius: 10px;
    border: 1px solid white;
    position: relative;
    overflow-y: auto;
    /* overflow: hidden; */
    /* height: 70vh; */
    background-image: url(assets/images/shapes/sidebar-shape-1.png);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s


}
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
/* <div class="sidebar-shape-1" style="background-image: url(assets/images/shapes/sidebar-shape-1.png);"></div> */
.modal_close1 >span{
    float: right;
    /* top: -13px; */
    top:4px;
    right: 21px;
    position: relative;
    cursor: pointer;
    color: #768f97c7;
}
.modal_close1>h3 {
  padding-bottom: 6px;
}
.modal_close1 > span > i:hover{
    color: #3b484dc7;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.modal_body1{
    
    /* padding-bottom: 11px; */
}
.modal_btn1{
        background: #349534;
        color: wheat;
        padding: 10px;
        margin: 5px;
        font-size: 14px;
        cursor: pointer;
        float: right;
        border-radius:10%;
}



@media screen and (max-width: 850px) {
    .modal_content1 {
        width: 80vw;
    }
}

@media screen and (max-width: 500px) {
    .modal_content1 {
        width: 95vw;
    }
}

@media screen and (max-width: 390px) {
    .modal_content1 {
        width: 95vw;
    }
}




















