.form-alert-main {
    position: fixed;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    display: flex;
    vertical-align: middle;
    align-content: center;
    z-index: 9999999;
    background-color: #fff;
    text-align: center;
    color: #333;
    padding: 0 30px 0 30px;
    font-size: 45px;
}
.form-alert-text {
    margin: auto;
}
.form-alert-icon {
    width:20%;
    clear:both;
    margin:auto;
    position:absolute;
    top:60%;
    left:40%;
}
.lsf_message_image_cnt{
    float: left;
    margin-right:16px;
    cursor: pointer;
    background-color: #30B5BF;
    padding: 0;
    border: 6px solid #30B5BF;
    -webkit-transition: 0.2s;
    -moz-transition:  0.2s;
    -ms-transition:  0.2s;
    -o-transition:  0.2s;
    transition:  0.2s;
}
.text_message_image_cnt{
    float: right;
    margin-left:16px;
    cursor: pointer;
    background-color: #30B5BF;
    padding: 0;
    border: 6px solid #30B5BF;
    -webkit-transition: 0.2s;
    -moz-transition:  0.2s;
    -ms-transition:  0.2s;
    -o-transition:  0.2s;
    transition:  0.2s;
}
.lsf_message_image_cnt:hover, .text_message_image_cnt:hover {
    border-color: #247883;
}
.lsf_message_image {
    background-size: 300px 100px !important;
    margin: auto;
    width: 280px;
    height: 100px;
    color: white !important;
    background-color: #000 !important;
    background: url(../images/msg-lsf.svg) no-repeat;
    background-position: center;
}
body.color-preference-blue-yellow .lsf_message_image {
    background-size: 150px 100px !important;
    margin: auto;
    width: 280px;
    height: 100px;
    color: white !important;
    background-color: #000 !important;
    background: url(../images/msg-lsf-blue.svg) no-repeat;
    background-position: center;
}
body.color-preference-white-black .lsf_message_image,
body.color-preference-orange .lsf_message_image {
    background-size: 150px 100px !important;
    margin: auto;
    width: 280px;
    height: 100px;
    color: white !important;
    background-color: #000 !important;
    background: url(../images/msg-lsf-white.svg) no-repeat;
    background-position: center;
}

.color-preference-white-black .lsf_message_image {
    /* todo
    background: url(../images/msg-lsf-white.svg) no-repeat;
    */
}
.color-preference-blue-yellow .lsf_message_image {
    /* todo
    background: url(../images/msg-lsf-blue.svg) no-repeat;
    */
}

.text_message_image {
    background-size: 300px 100px !important;
    margin: auto;
    width: 280px;
    height: 100px;
    color: white !important;
    background-color: #000 !important;
    background: url(../images/msg-text.svg) no-repeat;
    background-position: center;
}
body.color-preference-white-black .text_message_image {
    background-size: 150px 110px !important;
    margin: auto;
    width: 280px;
    height: 100px;
    color: white !important;
    background-color: #000 !important;
    background: url(../images/msg-text-white.svg) no-repeat;
    background-position: center;
}
body.color-preference-orange .text_message_image {
    background-size: 150px 110px !important;
    margin: auto;
    width: 280px;
    height: 100px;
    color: white !important;
    background-color: #000 !important;
    background: url(../images/msg-text-white.svg) no-repeat;
    background-position: center;
}
body.color-preference-blue-yellow .text_message_image {
    background-size: 150px 110px !important;
    margin: auto;
    width: 280px;
    height: 100px;
    color: white !important;
    background-color: #000 !important;
    background: url(../images/msg-text-blue.svg) no-repeat;
    background-position: center;
}

.btn{
    font-size: 2rem;
}
.form-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999998;
    width: 100%;
    height: 100%;
}
.form-alert-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 45px;
    color: #ddd;
}
.form-alert-close:hover {
    cursor: pointer;
}