.PopupAlert_PopupAlert__wrapper{
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.727);
}

.PopupAlert_PopupAlert{
    position: relative;
    width: 600px;
    height: auto;
    background-color: white;
}

.PopupAlert_header{
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    font-size: 0.5em;
    color: #fff;
    background-color: chocolate;
    padding: 0 2%;
}

.PopupAlert_header button{
    padding: 0;
    background-color: #ffffff00;
    border: 0px solid black;
}

.PopupAlert_header button img{
    height: 40px;
    width: 40px;    
    background-color: white;
    border-radius: 5px;
}

.PopupAlert_header button img:hover{
    cursor: pointer;
    background-color: #DCDCDC;
}

.PopupAlert_body{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.img-alert{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.img-alert img{
    height: 100%;
}

.info-alert{
    font-size: 0.6rem;
    width: 70%;
}

.info-alert p{
    font-size: 0.9rem;
    width: 100%;
    height: 100%;
    font-weight: 400;
}

.alert{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert button{
    background-color: #3dbb95;
    border-radius: 5px;
    border: 0px solid black;
    padding: 10px 20px;
    color: #fff;
    font-size: 2em;
    font-weight: 500;
    margin-bottom: 10px;
}

.alert button:hover{
    cursor: pointer;
    background-color: #10575b;
}

@media (max-width:980px){
    .PopupAlert_PopupAlert__wrapper{
        display: flex;
    }
}
