body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main-container{
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: rgba(128, 128, 128, 0.3);
    overflow: auto;
    position: fixed;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
    z-index: 3;
}
.main-container .modal-container{
display: flex;
width: 27%;
height: 58%;
background-color:white;
flex-direction: column;
border-radius: 0.5vw;



}
.modal-container .layout-title{
    display: flex;
    width: 100%;
    height: 20%;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2vw;
    font-family:Open Sans;
    font-weight: 700;
}
.modal-container .layout-inputs{
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 50%;

    color: #747474;
    font-size: 1.2vw;
    font-family: Open Sans;
}
.layout-inputs .input{
    display: flex;
    width: 75%;
    height: 15%;
    font-size: 1.1vw;
    font-family: Open Sans;
    border: solid lightgrey 0.15vw;
}
.modal-container .put-button{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 15%;

}
#submit{
    display: flex;
    width: 80%;
    height: 70%;
    background-color: black;
    font-size: 1.1vw;
    color: white;
    font-size: Open Sans;
    transition: 0.4s;

}
#submit:hover{
    background-color: #383838;
    cursor: pointer;
}
.aparecer{
    opacity: 1;
    pointer-events: auto;
}
#close{
    display: flex;
    position: absolute;
    width: 100%;
    height: 21vh;
    z-index: 0;
    top: 0;
}
#close1{
    display: flex;
    position: absolute;
    width: 100%;
    height: 21vh;
    z-index: 0;
    bottom: 0;
}
#close2{
    display: flex;
    position: absolute;
    width: 36.5%;
    height: 58vh;
    z-index: 0;
 left: 0;
}
#close3{
    display: flex;
    position: absolute;
    width: 36.5%;
    height: 58vh;
    z-index: 0;
 right: 0;
}