﻿html {
    font-size: 18px;

}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

p {
    margin-bottom: 24px;
}
/*margins*/

.mt16 {
    margin-top: 16px;
}

.mt24 {
    margin-top: 24px;
}

.mb8 {
    margin-bottom: 8px;
}

.mb16 {
    margin-bottom: 16px;
}

.mb24 {
    margin-bottom: 16px;
}

/*end margins*/


/*forms*/

input {
    width: 100%;
    padding: 13px 12px 12px;
    border: 1px solid #007C92;
    border-radius: 6px;
    line-height: 21px;
}

    input::placeholder {
        color: #666666;
        font-size: 18px;
        line-height: 21px;
    }

    input.input-validation-error {
        border: 2px solid #E60000;
    }

input.btn-submit {
    padding: 10px 12px 9px;
}

.input {
    width: 100%;
    padding: 13px 12px 12px 7px;
    border: 1px solid #007C92;
    border-radius: 6px;
    line-height: 21px;
}

.input::placeholder {
    color: #666666;
}

.input.input-validation-error {
    border: 2px solid #E60000;
}

/*end forms*/

h3.section-title {
    font-size: 30px;
    text-align: left;
    line-height: 35px;
    margin-bottom: 8px;
    font-weight: 100;
}

span.preform-text {
    font-size: 21px;
    line-height: 24px;
    font-weight: bold;
}

p.preform-text {
    font-size: 18px;
    line-height: 24px;
}

p.postform-text {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    color: #999999;
}

a.vf-email-link,
a.vf-email-link:hover,
a.vf-email-link:link,
a.vf-email-link:active,
a.vf-email-link:visited {
    text-decoration: none;
    color: #E60000;
}

.container {
    max-width: 540px;
}

.main-header {
    background-color: #E60000;
    padding: 16px 0px;
}

img.logo-vf {
    width: 100%;
    max-width: 200px;
    margin: 0px auto;
    display: block;
}

.sub-header {
    background-color: #333333;
    color: white;
    padding: 5px;
    text-align: center;
    font-weight: bold;
}

.form-group {
    margin-bottom: 0px;
}

.margin-bottom-1 {
    margin-bottom: 0.5rem;
}



.global-error {
    color: #E60000;
    padding: 10px;
}

.prize-code-label {
    line-height: 24px;
    color: #E60000;
    font-weight: bold;
}

.prize-code {
    font-size: 22px;
    line-height: 24px;
    color: #333333;
    font-weight: 300;
}

.btn-submit {
    background-color: #E60000;
    color: white;
    border: none;
    width: 100%;
    max-width: 100%;
    padding: 10px;
}

@media (min-width: 576px) {
    .btn-submit {
        max-width: 200px;
    }
}



/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

/* End Sticky footer styles
-------------------------------------------------- */

/* Toogle checkbox
-------------------------------------------------- */

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 24px;
        width: 24px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #007C92;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 28px;
}

    .slider.round:before {
        border-radius: 50%;
    }

/* End Toogle checkbox
-------------------------------------------------- */