#modalContent{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(46, 50, 147, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
}

.modal{
    background-color: #FFF;
    width: 88%;
    max-width: 480px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

#modalMain{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#modalMain img{
    width: 33%;
    height: auto;
    border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    -webkit-border-radius: 10px 0 0 0;
}

.modalMainText{
    width: 60%;
    padding: 18px 18px 0 0;
}

.modalMainTextH{
    font-size: 18px;
    font-weight: bold;
    text-align:right;
    margin-bottom: 25px;
    line-height: 1.5;
    counter-reset: #707070;
}

.modalMainTextP{
    font-size: 18px;
    text-align:right;
    line-height: 1.5;
    color: #707070;
}

.modalMainButtons{
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.modalMainButtonsButton{
    padding: 8px 18px;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

#buttonGray{
    background-color: #C8D3E3;
}

#buttonBlue{
    background-color: #62C2FE;
    margin-left: 25px;
}