.alert_message_confirm_mail {
    width: 100vw;
    height: 100vh;
    display: none;
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.alert_message_confirm_mail_blur {
    width: 100vw;
    height: 100vh;
    position: absolute;
    filter: blur(50px);
    background-color: #00000066;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.alert_message_confirm_mail__window {
    width: 50vw;
    height: auto;
    float: left;
    transform: translate(-50%, -50%);
    background-color: #272a37;
    box-sizing: border-box;
    border: 1px solid #353a4b;
    border-radius: 15px;
    padding-bottom: 35px;
    margin: 50vh 0 0 50vw;
}
.alert_message_confirm_mail__window__header {
    width: inherit;
    float: left;
    font-size: 35px;
    font-family: 'CoreSans Bold';
    line-height: 1;
    color: white;
    text-align: center;
    box-sizing: border-box;
    padding: 0 10vw;
    margin-top: 35px;
}
.alert_message_confirm_mail__window__message {
    width: inherit;
    float: left;
    font-size: 18px;
    line-height: 1.25;
    color: white;
    text-align: justify;
    box-sizing: border-box;
    padding: 0 5vw;
    margin-top: 35px;
}
.alert_message_confirm_mail__window__button {
    width: 20vw;
    float: left;
    font-size: 18px;
    line-height: 1;
    color: white;
    background-color: #1a79ce;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid #1d8ff4;
    padding: 12px 0;
    margin: 35px 0 0 15vw;
}