﻿#PersonalDataModal {
    display: none;
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.25);
    left:0;
    top:0;
}

#PersonalDataModalContent {
    font-size: 16px;
    background-color: white;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%);
    width: 70%;
    max-height: 50%;
    padding: 20px;
    border-radius: 5px;
    border: 2px solid black;
    overflow-y: scroll;
}

.PersonalDataModalCover {

}
#PersonalDataModalContent p {
    margin-bottom: 24px;
    height: 90%;
    padding: 10px;
}
/*
.cmsBtn {
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    transition: ease 300ms;
}

.cmsBtnEdit {
    background-color: #2060ae;
    color: white;
}

    .cmsBtnEdit:hover {
        color: white;
        background-color: #0d4487;
    }
*/
@media screen and (max-width: 768px) {
    #PersonalDataModalContent {
        font-size: 14px;
    }

        #PersonalDataModalContent p {
            margin-bottom: 18px;
        }
}

@media screen and (max-width: 550px) {
    #PersonalDataModalContent {
        font-size: 12px;
    }
}
