﻿
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-form {
    font-family: 'Open Sans', sans-serif;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    max-width: 700px;
}

    .main-form a {
        text-decoration: none;
        color: #000000;
    }

    .main-form li {
        list-style-type: none;
        display: inline-block;
    }

    /*******************************************
Font Size
********************************************/
    .main-form h2 {
        font-size: 24px;
    }

    .main-form p {
        font-size: 15px;
        color: #000000;
    }

    .main-form .description p {
        font-size: 15px;
        color: #000000;
        line-height: 23px;
    }

    .main-form label {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 10px;
        margin-bottom: 3px;
        display: block;
        color: #000000;
    }

    .main-form p.instructionText {
        font-size: 13px;
        color: #000000;
        padding-bottom: 10px;
        line-height: 20px;
    }

    .main-form .errorMsg {
        font-size: 13px;
        color: #cc0000;
        background: url(https://sc.bobitstudios.com/icons/icon-x-mark.svg) no-repeat 2px 6px;
        background-size: auto auto;
        background-size: 15px;
        padding-left: 21px;
        padding-top: 5px;
        display: inline-block;
    }

.errorMsg::before {
    content: '';
    background: url(https://sc.bobitstudios.com/icons/icon-x-mark.svg) no-repeat 2px 6px;
}

.main-form .optional {
    font-weight: 400;
    color: #999999;
    font-style: italic;
}

.main-form input, textarea {
    font-size: 15px;
    padding: 10px 14px;
    color: #000000;
    border-radius: 5px;
    border: 1px solid #aaaaaa;
    box-sizing: border-box;
    display: block;
    margin-bottom: 0px;
}

.main-form textarea {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}

.main-form .terms-conditions, .terms-conditions p {
    font-size: 13px;
    line-height: 22px;
}

    .main-form .terms-conditions a {
        text-decoration: underline;
    }

        .main-form .terms-conditions a:hover {
            color: #555555;
        }

/*******************************************
Buttons
********************************************/
.main-form .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.main-form .btn {
    padding: 10px .75em;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 3px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    display: inline-block;
}

    .main-form .btn:focus {
        border: 1px solid transparent;
    }

.main-form .btn-primary {
    color: #ffffff;
    background-color: #3c549d;
}

.main-form .btn-secondary {
    color: #ffffff;
    background-color: #aaaaaa;
}

.main-form .button-sm {
    padding-right: 20px;
    padding-left: 20px;
}

.main-form .button-md {
    padding-right: 40px;
    padding-left: 40px;
}

    .main-form .button-md:hover, .button-sm:hover {
        background: #4662b8;
    }

.main-form .button-md, .button-sm {
    margin-right: 10px;
    margin-left: 10px;
}

.main-form .btn_prev {
    background: #aaaaaa;
}

    .main-form .btn_prev:hover {
        background: #999999;
    }

/*******************************************
Auto Focus
********************************************/
.main-form input:focus, .main-form textarea:focus, .main-form select:focus {
    -webkit-box-shadow: 0px 0px 4px 0px rgba(60,84,157,0.63);
    -moz-box-shadow: 0px 0px 4px 0px rgba(60,84,157,0.63);
    box-shadow: 0px 0px 4px 0px rgba(60,84,157,0.63);
    outline: none;
    border: 1px solid #3c549d;
}

.main-form .styled-select.drop-down select:focus {
    border: 1px solid #3c549d;
}

/*******************************************
Width
********************************************/
.main-form input[type=radio] {
    font-weight: normal;
    margin-top: 0.3em;
    outline: none !important;
    box-shadow: none;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background: #ffffff;
}

.main-form input[type=checkbox] {
    font-weight: normal;
    margin-top: 0.3em;
    margin-right: 5px;
    float: left;
    outline: none !important;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.main-form input[type=text] {
    width: 100%;
    font-weight: normal;
    font-size: 15px;
}

.main-form .DropdownMenu select {
    width: 100%;
    height: 40px;
    font-size: 15px;
    background: #ffffff;
    border-radius: 5px;
    margin-bottom: 22px;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 35px;
    clear: both;
}

.main-form .SingleLineNumber input, .SingleLineEmailAddress input, .SingleLineURL input, .SingleLineDate input, .phone-number input {
    width: 100%;
    outline: none;
}

/*******************************************
Columns and Center
********************************************/
.main-form .align-center {
    text-align: center;
}

.main-form .col-center {
    margin: 0 auto;
    float: none;
}

/*******************************************
Spacing
********************************************/
.main-form .padding-bottom-10 {
    padding-bottom: 10px;
}

.main-form .padding-bottom-20 {
    padding-bottom: 20px;
}

.main-form .padding-bottom-25 {
    padding-bottom: 25px;
}

.main-form .padding-bottom-30 {
    padding-bottom: 30px;
}

.main-form .padding-bottom-35 {
    padding-bottom: 35px;
}

.main-form .margin-bottom-10 {
    margin-bottom: 10px;
}

/*******************************************
Multiple Choice
********************************************/
.main-form .MultipleChoice {
    float: left;
    display: inline-block;
}

/*******************************************
Label Font Regular
********************************************/
.main-form .label-font-regular input {
    float: left;
    margin-right: 6px;
}

.main-form .label-font-regular label {
    font-size: 15px;
    font-weight: normal;
    display: block;
    line-height: 34px;
}

.main-form .label-font-regular {
    line-height: 1.8em;
}

    .main-form .label-font-regular input.full {
        width: 100%;
    }

.main-form .input-margin input {
    margin-top: 11px;
}

/*******************************************
Other Info Input
********************************************/
.main-form .other-info {
    padding-top: 5px;
    clear: both;
}

    .main-form .other-info p {
        font-size: 13px;
    }

    .main-form .other-info input {
        margin-top: 0;
    }

.main-form .SingleLineDate input {
    font-family: sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 40px;
}

/*******************************************
Upload Button Custom Styling
********************************************/
.main-form .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

    .main-form .inputfile + label {
        color: #ffffff;
        background: #3c549d;
        padding: 12px 15px 10px 15px;
        font-family: sans-serif;
        font-size: 15px;
        font-weight: 400;
        text-transform: uppercase;
        display: inline-block;
        border-radius: 3px;
    }

.inputfile:focus + label,
.inputfile + label:hover {
    background: #4662b8;
}

.main-form .inputfile + label {
    cursor: pointer;
}

.main-form .inputfile:focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.main-form .inputfile + label * {
    pointer-events: none;
}

.main-form .FileUpload .errorMsg {
    margin-left: 10px;
}

/*******************************************
Drop Down
********************************************/
.main-form .styled-select {
    height: 40px;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

    .main-form .styled-select.drop-down select {
        background: transparent;
        color: #000000;
        width: 100%;
        padding: 5px 5px 5px 12px;
        font-size: 15px !important;
        line-height: 1;
        border: 0;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        height: 38px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .main-form .styled-select.drop-down {
        height: 40px;
        overflow: hidden;
        background: url(https://sc.bobitstudios.com/icons/icon-drop-down-arrow.svg) no-repeat right #ffffff;
        background-size: 14px;
        background-position-x: 98%;
        border: 1px solid #aaaaaa;
        color: #999999;
        margin-bottom: 5px;
    }

select::-ms-expand {
    display: none;
}

/*******************************************
Progress Bar and Steps
********************************************/
.main-form .label-progress-bar {
    font-size: 12px;
    display: block;
}

.main-form .progress {
    height: 0.1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: 0;
    text-indent: -999px;
}

.main-form .progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #ff4a31;
    transition: width .6s ease;
}

.main-form .progressIndicator a.selected {
    border-bottom: 1px solid #ff4a31;
}

.main-form .progressIndicator a {
    text-decoration: none;
    color: #000000;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 10px;
    display: inline-block;
    margin-right: 8px;
    padding: 0 35px 4px 5px;
    text-transform: uppercase;
}

    .main-form .progressIndicator a:hover {
        color: #666666;
    }

/*******************************************
Check Box
********************************************/
.main-form .form-checkbox {
    float: right;
    margin-top: 5px;
}

.main-form .label-name {
    color: #000000;
    font-size: 16px;
    line-height: 22px;
}

.main-form .label-font-regular input[type="checkbox"] {
    display: none;
}

.label-font-regular input[type="checkbox"] + label span.box-style {
    background: url("https://sc.bobitstudios.com/icons/icon-check-radio-sheet.png") no-repeat scroll left top;
    cursor: pointer;
    display: inline-block;
    height: 15px;
    width: 16px;
    margin: 9px 8px 5px 0;
    vertical-align: middle;
    border: 1px solid #aaaaaa;
    border-radius: 5px;
    float: left;
    outline: none;
}

.label-font-regular input[type="checkbox"]:checked + label span.box-style {
    background: url("https://sc.bobitstudios.com/icons/icon-check-radio-sheet.png") no-repeat scroll -21px -2px;
}

.main-form .checkbox-inline {
    display: inline-block !important;
    margin-right: 30px;
}

.main-form input.checkbox-sm[type="checkbox"] {
    background: url("https://sc.bobitstudios.com/icons/icon-check-radio-sheet.png") no-repeat scroll left top;
    cursor: pointer;
    display: inline-block;
    height: 15px;
    width: 16px;
    margin: 2px 8px 5px 0;
    padding: 7px;
    vertical-align: middle;
    border: 1px solid #aaaaaa;
    border-radius: 5px;
    float: left;
    outline: none;
}

    .main-form input.checkbox-sm[type="checkbox"]:checked {
        background: url("https://sc.bobitstudios.com/icons/icon-check-radio-sheet.png") no-repeat scroll -21px -2px;
    }

/*******************************************
Radio Buttons
********************************************/
.main-form .input-margin input {
    padding: 0;
}

.main-form .regular-radio input {
    border-radius: none !important;
    padding: 0;
}

.main-form .regular-radio {
    -webkit-appearance: none;
    background-color: none;
    border: 1px solid #aaaaaa;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
    padding: 2px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

    .main-form .regular-radio:checked:after {
        content: ' ';
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        top: 0;
        background: #000000;
        box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
        text-shadow: 0px;
        left: 0;
        font-size: 32px;
    }

    .main-form .regular-radio:checked {
        background-color: #ffffff;
        color: #99a1a7;
        border: 1px solid #adb8c0;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1), inset 0px 0px 10px rgba(0,0,0,0.1);
    }

        .main-form .regular-radio:active, .main-form .regular-radio:checked:active {
            box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
        }

/*******************************************
Misc.
********************************************/
.main-form .desktop-hide {
    display: none;
}


@media (max-width: 990px) {
    .main-form .label-font-regular label {
        font-size: 15px;
        font-weight: normal;
        display: block;
    }

    .main-form .input-margin input {
        margin-top: 0.6em;
    }
}

@media (max-width: 765px) {
    /**** Spacing ****/
    .main-form .padding-bottom {
        padding-bottom: 25px;
    }

    .main-form .form-row {
        padding-bottom: 25px;
    }
}

@media (max-width: 600px) {
    .main-form label {
        font-size: 17px;
    }

    .main-form .instructionText {
        font-size: 13px;
    }

    .main-form .label-font-regular label {
        font-size: 15px;
    }

    .main-form .checkbox-inline {
        display: block !important;
    }

    .main-form .mobile-hide {
        display: none !important;
    }

    .main-form .desktop-hide {
        display: inherit !important;
    }

    .main-form .button-md {
        padding-right: 70px;
        padding-left: 70px;
    }

    .main-form .button-sm {
        padding-right: 30px;
        padding-left: 30px;
        height: 40px;
    }

    .main-form .btn-primary {
        font-size: 17px;
    }
}
