body, button, input, select, optgroup, textarea {
    color: #999;
    background-color: #18191A;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    line-height: 1.875;
    font-weight: 400;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
    margin: 0;
}

[class*="col-"] {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    /* For desktop: */
    .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%;
    }
}



.main-form {
    border-radius: max(0px, min(8px, ((100vw - 4px) - 100%) * 9999)) / 8px;
    background-color: #3E4042;
    margin: 0 auto;
    padding: 24px;
}

.main-form input,
.main-form textarea,
.main-form select {
    width: 100%;
    color: #fff;
    border: none;
    padding: 10px 20px;
    box-sizing: border-box;
    outline: none;
    border-radius: 11px;
}

select#country {
    height: 50px;
}

.main-form button {
    font-weight: 800;
    background: #fff;
    color: #1b1d21;
    cursor: pointer;
    border: 1px solid transparent;
    outline: none;
    font-size: 14px;
    padding: 14px 30px 14px 30px;
}

footer {
    margin: 24px auto;
    width: 400px;
    text-align: center;
}

footer .the-logo img {
    width: 200px;
}

.loading {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100px;

    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#overlay4 {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    z-index:1;
    height: 100%;
    overflow: hidden;
    display: none;
}

#overlay4 div {
    position: relative;
    left: 50%;
    margin-left:-150px;
    background-color: #000;
    border-radius:5px;
    color: #FFF;
    width:300px;
    z-index:3;


    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#overlay4 div.background {
    position: fixed;
    width:100%;
    height: 100%;
    margin:auto;
    background-color: #000;
    opacity:0.5;
    z-index:2;
    left:0;
    overflow: hidden;
}

.stop-scroll {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

#output-success,
#output-error {
    display: none;
}

/* ====Form =====*/

label {
    width: 300px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

label span {
    font-size: 1rem;
}

label.error {
    color: red;
    font-size: 1rem;
    display: block;
    margin-top: 5px;
}

input.error {
    border: 1px dashed red;
    font-weight: 300;
    color: red;
}

[type="submit"], [type="reset"], button, html [type="button"] {
    margin-left: 0;
    border-radius: 0;
    background: black;
    color: white;
    border: none;
    font-weight: 300;
    padding: 10px 0;
    line-height: 1;
}


.payment-form-icon {
    line-height: 46px;
    margin-right: 10px;
    color: #dddddd !important;
}



.message-box img {
    width: 60px;
    float: left;
}

.message-box .message {
    width: 75%;
    float: left;
}

.clear {
    clear: both;
}


@media only screen and (max-width: 768px) {
    .message-box img {
        width: 5%;
        float: left;
    }

    .message-box .message {
        width: 85%;
        float: left;
    }

    footer {
        width: 100%;
    }

    .main-form {
        padding: 5%;
        width: 86%;
    }
}