/* OPTIN SECTION CODE */

.optincloud0 {
    position: absolute;
    bottom:0;
    left:-2%;
    z-index:1;
}

.optincloud1 {
    position: absolute;
    bottom:0;
    left:-2%;
    z-index:0;
    animation: optcl1 linear infinite 7s;
}

@keyframes optcl1 {
    0% {transform: translate(0%, 0);}
    50% {transform: translate(2%, 0);}
    100% {transform: translate(0%, 0);}
}

.optincloud2 {
    position: absolute;
    bottom:30px;
    right:-2%;
    z-index:-1;
    animation: optcl2 linear infinite 5s;
}

@keyframes optcl2 {
    0% {transform: translate(0%, 0);}
    50% {transform: translate(-2%, 0);}
    100% {transform: translate(0%, 0);}
}

.optincloud3 {
    position: absolute;
    bottom:50px;
    left:-2%;
    z-index:-2;
    animation: optcl1 linear infinite 4s;
}

div .optform {
    border-radius: 10px;
    width:99%;
    max-height: 100%;
    height:55px;
    font-weight:bold;
    font-size:19px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #00e1ff; 
    margin-bottom:10px;
    text-align: left;
    padding-left:15px;
    color:#00e1ff;
    font-family: 'Montserrat', sans-serif;
    background: white;
    box-sizing: border-box;
    transition: 1s;
}

div .optform:focus {
    outline: none;
    border: 1px solid #fd63a2;
    color:#fd63a2;
}

/* END of OPTIN SECTION CODE */

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, .4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 20%;
    border-radius: 5px;
}