/* ================
 *  GRID STRUCTURE
 * ================ */

/* --- Main --- */
* {
    box-sizing: border-box;
}
[class*="col-"] {
    float: left;
    padding: 0.3em;
}
.row::after {
    content: "";
    clear: both;
    display: block;
}
/* --- For mobile (Default view) --- */
[class*="col-"] {
    width: 100%;
}
/* --- For tablets --- */
@media only screen and (min-width: 600px) {
    [class*="col-"] {
        width: 100%;
    }
}
/* --- For desktop --- */
@media only screen and (min-width: 1000px) {
    /* --- Define 12 columns grid --- */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}


/* ================
 *  FORM ELEMENTS
 * ================ */
input[type="email"],
input[type="text"],
textarea {
    
    border: none;
    width: 100%;
    color: #7a7a7a;
}
input[type="submit"] {
    background-color: #82088e;
    color: #ffffff;
    cursor: pointer;
    float: right;
    padding: 14px 5rem;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
}
input[type="submit"]:hover {
    background-color: #e60967;
    color: #ffffff;
}

input[type="submit"]:disabled {
    border: solid 4px #ee2c33    !important;
    color: #ffffff;
    padding: 7px 0;
    font-weight: 700;
    background: #ee2c33;
}
input[type="submit"]:disabled:hover {
    background-color: #22446a;
    border: solid 4px #22446a    !important;
}


/* ==================
 *  CAPTCHA ELEMENTS
 * ================== */
#captchaInput {
    width: 4em !important;
    margin-left: .5em !important;
    border: 1px solid #d4d4d4 !important;
    /* background-color: #efefef; */
    margin-bottom: 14px;
    padding: 3px 7px;
    border-bottom: 1px solid #d4d4d4 !important;
    margin-top: 7px;
}
label#captchaText:before {
    content: "* ";
}