.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal_content {
    background: rgba(255,167,145,0.9);
    margin: 15% auto;
    /*margin: auto;*/
    padding: 20px;
    width: 100%;
    max-width: 600px;
    border-radius: 9px;
    position: relative;
    font-size: 1.4rem;
    text-align: center;
}

.modal_close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 2.2rem;
    font-weight: 650;
    cursor: pointer;
}


@media (max-width: 768px) {
.modal_content {
    /*display: none;*/
    /*position: fixed;*/
    /*top: 0;*/
    /*left: 0;*/
    width: 80%;
    /*height: 100%;*/
    /*background-color: rgba(0,0,0,0.5);*/
}

}