@charset "utf-8";

/*Either Modal*/
.anyModal {
    /*display: none;*/
    position: relative;
    z-index: 500;
}
.anyModal.modalOpen{
    display: block;
}
.modalOuter {
    position: fixed;
    z-index: 500;
    background: rgba(32, 42, 47, .6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: auto;
}
.modalBox {
    padding: 30px 40px 30px 30px;
    background: #fff;
    position: relative;
    overflow: hidden;
    max-width: 970px;
    max-height: 100%;
    overflow-y: auto;
}
.modalLeft {
    margin-right: 30px;
    width: 48%;
}
.modalRight {
    width: 52%;
    position: relative;
}
.modalLeft img {
    width: auto;
    max-width: 100%;
}
.anyModal  h2{
    font-size:26px;
}
.anyModal h3{
    font-size: 16px;
}
.anyModal p{
    font-size:14px;
}

.modalClose{
    background: #1cbbb4;
    color: #fff;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    right: -50px;
    transform: rotate(45deg);
    border: none;
    cursor: pointer;
    transition: color .2s ease-out;
    outline: none;
}
.modalClose:hover{
    color: #202a2f;
}
.modalClose span.fa {
    font-size: 20px;
    position: absolute;
    bottom: 10px;
    right: 41px;
    transform: rotate(-45deg);
}
.modalInner {
    display: -webkit-flex;
    display: flex;
}
. {
    margin-top:20px;
}

.anyModal h2 {
    font-family: 'AcuminProBold';
    font-size: 33px;
    line-height: 1;
    color: #202a2f;
    padding-bottom: 20px;
    border-bottom: 1px solid #87bea1;
    margin-bottom: 25px;
}
.anyModal h3 {
    font-family: 'AcuminProBold';
    font-size: 18px;
    color: #202a2f;
    line-height: 1.3;
    margin-bottom: 30px;
}
.anyModal h3 a{
    font-family: 'AcuminProRegular';
    text-decoration: none;
    color: #39827f;
}
.anyModal h3 a:hover{
    text-decoration: underline;
}
.anyModal p{
    font-family: 'AcuminProRegular';
    color: #131313;
    font-size: 16px;
    line-height: 1.5;
}
.anyModal p span{
    font-family: 'AcuminProBold';
    color: #39827f;
}

.anyModal input {
    display: block;
    width: 100%;
    font-family: 'AcuminProRegular';
    font-size: 14px;
    color: #484848;
    padding: 15px 20px 10px 20px;
    margin: 10px 0 4px 0;
    box-sizing: border-box;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    outline: none;
    transition:all 0.3s ease-out;
}
.anyModal input:focus{
    border: 1px solid #1cbbb4;
}
.anyModal input[type="submit"] {
    display: block;
    width: auto;
    background: #1cbbb4;
    color: #fff;
    border: 2px solid #1cbbb4;
    text-decoration: none;
    font-family: 'AcuminProBold';
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
    padding: 25px 50px 20px 50px;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all .3s ease-out;
    cursor: pointer;
    margin-top: 10px;
}
.anyModal input[type="submit"]:hover{
    background: #fff;
    color: #1cbbb4;
}
.anyModal input.error{
    border-color: red;
    background: #FDD;

}
.anyModal .error_info{
    font-family: 'AcuminProBold';
    font-size: 12px;
    margin-left: 21px;
    color: #ec5151;
    -webkit-animation: fadeIn .3s;
    animation: fadeIn .3s;
}

.anyModal .bulkEmailOptIn {
    font-family: 'AcuminProRegular';
    padding-left: 6px;
    font-size: 13px;
    color: #6f8785;

}

.anyModal .bulkEmailOptIn input {
    width: auto;
    display: inline;
    margin-right: 3px;
}

.anyModal.joinNewsPopup .opt_wait {
    background: #dddddd;
    color: #607073;
    font-size: 13px;
    border: 2px solid #dddddd;
    text-transform: none;
    padding: 10px 20px 9px 20px;
}

.anyModal.joinNewsPopup .opt_wait:hover {
    color: #607073;
    background: #eee;
}

.anyModal.joinNewsPopup .opt_out {
    position: absolute;
    bottom: 2px;
    right: 0px;
}

.anyModal.joinNewsPopup .opt_out {
    position: absolute;
    bottom: 2px;
    right: 0px;
    color: #559c9d;
    font-family: 'AcuminProBold';
    font-size: 15px;
}

.anyModal.joinNewsPopup .opt_out:hover {
    color: #060;
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

.anyModal.joinNewsPopup .email {
    margin-top: 15px;
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@media screen and (max-width:1080px){
    .modalBox {
        max-width: 90%;
        box-sizing: border-box;
    }
    .anyModal.joinNewsPopup .opt_in {
        padding: 15px 20px 10px 20px;
        font-size: 15px;
    }
}

@media screen and (max-width:650px) {
    .modalLeft {
        display: none;
    }

    .modalRight {
        width: 100%;
    }
}
@media screen and (max-width:550px){
         .anyModal  h2{
            font-size:26px;
        }
        .anyModal h3{
            font-size: 16px;
        }
        .anyModal p{
            font-size:14px;
        }
}
@media screen and (max-width:400px) {
    .anyModal h2 {
        font-size: 22px;
    }

    .anyModal h3 {
        font-size: 13px;
    }

    .anyModal p {
        font-size: 12px;
    }

    .anyModal {
        padding: 30px 30px 20px 20px;
    }
}