.popup{
    display: none;
    position: fixed;
    width:100%;
    min-height:100%;
    background-color: rgba(0,0,0,0.5);
    overflow:hidden;
    top:0px;
    left:0px;
    z-index: 350;
}

.popup_content{
    position: relative;
    margin: 15vh auto 0px auto;
    width: 50vw;
    height: 70vh;
    padding: 30px;
    border: 0px solid #666;
    background-color: #ffffff;
    border-radius:10px;
    z-index: 450;
    box-shadow: 4px 4px 20px 1px rgba(0,0,0,0.6);
    overflow-y: auto;
}

.del{
    position: absolute;
    right: 9px;
    top: 9px;
    background-image:url('../imgs/exit.jpg');
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.del:hover{
    animation-name: vih;
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

@keyframes vih {
    25% {transform:rotate(-20deg);}
    75% {transform:rotate(20deg);}
}

h3{
    color: #555;
    font-size: 24px;
    color: #333;
    font-family: 'Manrope';
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
}

.properties{
    color: #555;
    font-size: 16px;
    font-family: 'Manrope';
    font-weight: 300;
    line-height: 1.5;
}

#agreebox{
    width: 100%;
    height: 80px;
    position: relative;
}

#agree{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 49%;
    height: 80px;
    line-height: 80px;
    background-color: #00a88e;
    border: solid 1px #016d5c;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    font-size: 17px; 
    font-family:  'Manrope';
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

#agree:hover{
    opacity: 0.9;
}

#notagree{
    position: absolute;
    right: 0px;
    top: 0px;
    width: 49%;
    height: 80px;
    line-height: 80px;
    background-color: #fff;
    border: solid 1px #016d5c;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
    color: #333;
    font-size: 17px; 
    font-family:  'Manrope';
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

#notagree:hover{
    color: #444;
}

@media (max-width: 1099px) {
    .popup_content{
        width: 70vw;
}
}

@media (max-width: 480px) {
    
h3{
    font-size: 21px;
    margin-bottom: 20px;
}

.popup_content{
        width: 92vw;
}
}