@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);

.sminputs-show {
    display: none;
}

/**/
/* defaults */
/**/
.sky-form
{
    font: 13px/1.55 'Open Sans', Helvetica, Arial, sans-serif;

    margin: 0;

    color: #666;
    outline: none;
    box-shadow: 0 10px 20px rgba(0,0,0,.3);
}
.sky-form *
{
    margin: 0;
    /* margin-bottom: 5px; */
    padding: 0;
}
.sky-form header
{
    font-size: 25px;
    font-weight: 300;

    display: block;

    padding: 20px 30px;
    color: #263e8f;
    border-bottom: 1px solid rgba(0,0,0,.1);
    background: rgba(248,248,248,.9);
}
.sky-form fieldset
{
    display: block;

    padding: 10px 15px 11px;

    border: none;
    background: rgba(255,255,255,.9);
}
.sky-form fieldset + fieldset
{
    border-top: 1px solid rgba(0,0,0,.1);
}
.sky-form section
{
    margin-bottom: 10px;
}
.sky-form label
{
    width: 100%;
    /* padding-left: 5px; */
    /* margin-right: 5px; */
}
.sky-form footer
{
    display: block;

    padding: 0px 20px 10px;

    border-top: 1px solid rgba(0,0,0,.1);
    background: rgba(248,248,248,.9);
}
.sky-form footer:after
{
    display: table;
    clear: both;

    content: '';
}
.sky-form a
{
    color: #2da5da;
}
.sky-form .label
{
    line-height: 19px;

    display: block;

    margin-bottom: 6px;
}
.sky-form .label.col
{
    margin: 0;
    padding-top: 10px;
}
.sky-form .note
{
    font-size: 11px;
    line-height: 15px;

    margin-top: 6px;
    padding: 0 1px;

    color: #999;
}
.sky-form .input,
.sky-form .select,
.sky-form .textarea,
.sky-form .radio,
.sky-form .checkbox,
.sky-form .toggle,
.sky-form .button
{
    position: relative;

    display: block;
}
.sky-form .input input,
.sky-form .select select,
.sky-form .textarea textarea
{
    font: 12px/14px 'Open Sans', Helvetica, Arial, sans-serif;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;
    width: 100%;
    height: 37px;
    padding: 8px 10px;

    color: #404040;
    border-width: 2px;
    border-style: solid;
    border-radius: 0;
    outline: none;
    background: #fff;
}


/**/
/* file inputs */
/**/
.sky-form .input-file .button
{
    font-size: 13px;
    line-height: 31px;

    position: absolute;
    top: 4px;
    right: 4px;

    float: none;

    height: 31px;
    margin: 0;
    padding: 0 20px;
}
.sky-form .input-file .button:hover
{
    box-shadow: none;
}
.sky-form .input-file .button input
{
    font-size: 30px;

    position: absolute;
    top: 0;
    right: 0;

    padding: 0;

    cursor: pointer;

    opacity: 0;
}


/**/
/* selects */
/**
.sky-form .select i
{
    position: absolute;
    top: 14px;
    right: 14px;

    width: 5px;
    height: 11px;

    background: #fff;
    box-shadow: 0 0 0 12px #fff;
}
.sky-form .select i:after,
.sky-form .select i:before
{
    position: absolute;
    right: 0;

    content: '';

    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.sky-form .select i:after
{
    bottom: 0;

    border-top: 4px solid #404040;
}
.sky-form .select i:before
{
    top: 0;

    border-bottom: 4px solid #404040;
} */
.sky-form .select-multiple select
{
    height: auto;
}


/**/
/* textareas */
/**/
.sky-form .textarea textarea
{
    height: auto;

    resize: none;
}
.sky-form .textarea-resizable textarea
{
    resize: vertical;
}
.sky-form .textarea-expandable textarea
{
    height: 39px;
}
.sky-form .textarea-expandable textarea:focus
{
    height: auto;
}


/**/
/* radios and checkboxes */
/**/
.sky-form .radio,
.sky-form .checkbox
{
    font-size: 13px;
    line-height: 27px;

    margin-bottom: 4px;
    padding-left: 27px;

    cursor: pointer;

    color: #404040;
}
.sky-form .radio:last-child,
.sky-form .checkbox:last-child
{
    margin-bottom: 0;
}
.sky-form .radio input,
.sky-form .checkbox input
{
    position: absolute;
    left: -9999px;
}
.sky-form .radio i,
.sky-form .checkbox i
{
    position: absolute;
    top: 5px;
    left: 0;

    display: block;

    width: 13px;
    height: 13px;

    border-width: 2px;
    border-style: solid;
    outline: none;
    background: #fff;
}
.sky-form .radio i
{
    border-radius: 50%;
}
.sky-form .radio input + i:after,
.sky-form .checkbox input + i:after
{
    position: absolute;

    -webkit-transition: opacity .1s;
       -moz-transition: opacity .1s;
        -ms-transition: opacity .1s;
         -o-transition: opacity .1s;
            transition: opacity .1s;

    opacity: 0;
}
.sky-form .radio input + i:after
{
    top: 4px;
    left: 4px;

    width: 5px;
    height: 5px;

    content: '';

    border-radius: 50%;
}
.sky-form .checkbox input + i:after
{
    font: normal 12px/16px FontAwesome !important;

    top: -1px;
    left: -1px;

    width: 15px;
    height: 15px;

    content: '\f00c';
    text-align: center;
}
.sky-form .radio input:checked + i:after,
.sky-form .checkbox input:checked + i:after
{
    opacity: 1;
}
.sky-form .inline-group
{
    margin: 0 -30px -4px 0;
}
.sky-form .inline-group:after
{
    display: table;
    clear: both;

    content: '';
}
.sky-form .inline-group .radio,
.sky-form .inline-group .checkbox
{
    float: left;

    margin-right: 30px;
}
.sky-form .inline-group .radio:last-child,
.sky-form .inline-group .checkbox:last-child
{
    margin-bottom: 4px;
}


/**/
/* toggles */
/**/
.sky-form .toggle
{
    font-size: 15px;
    line-height: 27px;

    margin-bottom: 4px;
    padding-right: 61px;

    cursor: pointer;

    color: #404040;
}
.sky-form .toggle:last-child
{
    margin-bottom: 0;
}
.sky-form .toggle input
{
    position: absolute;
    left: -9999px;
}
.sky-form .toggle i
{
    position: absolute;
    top: 4px;
    right: 0;

    display: block;

    width: 49px;
    height: 17px;

    content: '';

    border-width: 2px;
    border-style: solid;
    border-radius: 12px;
    background: #fff;
}
.sky-form .toggle i:after
{
    font-size: 9px;
    font-weight: 700;
    font-style: normal;
    line-height: 13px;

    position: absolute;
    top: 2px;
    right: 8px;
    left: 8px;

    content: 'OFF';
    text-align: left;

    color: #5f5f5f;
}
.sky-form .toggle i:before
{
    position: absolute;
    z-index: 1;
    top: 4px;
    right: 4px;

    display: block;

    width: 9px;
    height: 9px;

    content: '';
    -webkit-transition: right .2s;
       -moz-transition: right .2s;
        -ms-transition: right .2s;
         -o-transition: right .2s;
            transition: right .2s;

    opacity: 1;
    border-radius: 50%;
}
.sky-form .toggle input:checked + i:after
{
    content: 'ON';
    text-align: right;
}
.sky-form .toggle input:checked + i:before
{
    right: 36px;
}


/**/
/* ratings */
/**/
.sky-form .rating
{
    font-size: 15px;
    line-height: 27px;

    margin-bottom: 4px;

    color: #404040;
}
.sky-form .rating:last-child
{
    margin-bottom: 0;
}
.sky-form .rating input
{
    position: absolute;
    left: -9999px;
}
.sky-form .rating label
{
    font-size: 17px;
    line-height: 17px;

    display: block;
    float: right;

    height: 17px;
    margin-top: 5px;
    padding: 0 2px;

    cursor: pointer;
}


/**/
/* buttons */
/**/
.sky-form .button
{
    font: 300 15px/39px 'Open Sans', Helvetica, Arial, sans-serif;

    float: right;
    overflow: hidden;

    height: 39px;
    margin: 10px 0 0 20px;
    padding: 0 50px;

    cursor: pointer;
    text-decoration: none;

    color: #fff;
    border: 0;
    outline: none;
}


/**/
/* icons */
/**/
@font-face
{
    font-family: 'FontAwesome';
    font-weight: normal;
    font-style: normal;

    src: url('fontawesome-webfont.eot');
    src: url('fontawesome-webfont.eot') format('embedded-opentype'),
    url('fontawesome-webfont.woff') format('woff'),
    url('fontawesome-webfont.ttf') format('truetype');
}
.fa {
    font-family: FontAwesome !important;
}
.icon-envelope-alt:before
{
    content: '\f0e0';
}
.icon-graduation-cap:before
{
    content: '\f19d';
}
.icon-university:before
{
    content: '\f19c';
}
.sky-form [class^='icon-']
{
    font-family: FontAwesome !important;
    font-weight: normal;
    font-style: normal;

    -webkit-font-smoothing: antialiased;
}
.sky-form .icon-append,
.sky-form .icon-prepend
{
    font-size: 15px;
    line-height: 29px;

    position: absolute;
    top: 5px;

    width: 29px;
    height: 29px;

    text-align: center;
}
.sky-form .icon-append
{
    right: 5px;

    padding-left: 3px;

    border-left-width: 1px;
    border-left-style: solid;
}
.sky-form .icon-prepend
{
    left: 5px;

    padding-right: 3px;

    border-right-width: 1px;
    border-right-style: solid;
}
.sky-form .input .icon-prepend + input,
.sky-form .textarea .icon-prepend + textarea
{
    padding-left: 46px;
}
.sky-form .input .icon-append + input,
.sky-form .textarea .icon-append + textarea
{
    padding-right: 20px;
}
.sky-form .input .icon-prepend + .icon-append + input,
.sky-form .textarea .icon-prepend + .icon-append + textarea
{
    padding-left: 46px;
}


/**/
/* grid */
/**/
.sky-form .row
{
    /* margin: 0 -15px; */
    padding-left: 5px;
}
.sky-form .row:after
{
    display: table;
    clear: both;

    content: '';
}
.sky-form .col
{
    float: left;

    -moz-box-sizing: border-box;
         box-sizing: border-box;
    min-height: 1px;
    padding-right: 5px;

}
.sky-form .col-1
{
    width: 8.33%;
}
.sky-form .col-2
{
    width: 16.66%;
}
.sky-form .col-3
{
    width: 25%;
}
.sky-form .col-4
{
    width: 33.33%;
}
.sky-form .col-5
{
    width: 41.66%;
}
.sky-form .col-6
{
    width: 50%;
    margin-bottom: 0;
}
.sky-form .col-8
{
    width: 66.67%;
}
.sky-form .col-9
{
    width: 75%;
}
.sky-form .col-10
{
    width: 83.33%;
}
@media screen and (max-width: 600px)
{
    .sky-form .col
    {
        float: none;

        width: 100%;
    }
}


/**/
/* tooltips */
/**/
.sky-form .tooltip
{
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;

    position: absolute;
    z-index: 1;
    left: -9999px;

    padding: 2px 8px 3px;

    -webkit-transition: margin .3s, opacity .3s;
       -moz-transition: margin .3s, opacity .3s;
        -ms-transition: margin .3s, opacity .3s;
         -o-transition: margin .3s, opacity .3s;
            transition: margin .3s, opacity .3s;

    opacity: 0;
    color: #fff;
    background: rgba(0,0,0,.9);
    text-transform: none;
}
.sky-form .tooltip:after
{
    position: absolute;

    content: '';
}
.sky-form i.icon-append:hover + input + .tooltip
{
    opacity: 1;
}

.sky-form .tooltip-top-right
{
    bottom: 100%;

    margin-bottom: 15px;
}
.sky-form .tooltip-top-right:after
{
    top: 100%;
    right: 16px;

    border-top: 4px solid rgba(0,0,0,.9);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.sky-form .input input:focus + .tooltip-top-right,
.sky-form .textarea textarea:focus + .tooltip-top-right
{
    /*right: 0;
    left: auto;*/

    margin-bottom: 5px;
}

.sky-form .tooltip-top-left
{
    bottom: 100%;

    margin-bottom: 15px;
}
.sky-form .tooltip-top-left:after
{
    /*top: 100%;
    left: 16px;*/

    border-top: 4px solid rgba(0,0,0,.9);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.sky-form .input input:focus + .tooltip-top-left,
.sky-form .textarea textarea:focus + .tooltip-top-left
{
    /*right: auto;
    left: 0;*/

    margin-bottom: 5px;
}

.sky-form .tooltip-right
{
    top: 9px;

    margin-left: 15px;

    white-space: nowrap;
}
.sky-form .tooltip-right:after
{
    top: 6px;
    right: 100%;

    border-top: 4px solid transparent;
    border-right: 4px solid rgba(0,0,0,.9);
    border-bottom: 4px solid transparent;
}
.sky-form .input input:focus + .tooltip-right,
.sky-form .textarea textarea:focus + .tooltip-right
{
    /*left: 100%;*/

    margin-left: 5px;
}

.sky-form .tooltip-left
{
    top: 9px;

    margin-right: 15px;

    white-space: nowrap;
}
.sky-form .tooltip-left:after
{
    top: 6px;
    left: 100%;

    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid rgba(0,0,0,.9);
}
.sky-form .input input:focus + .tooltip-left,
.sky-form .textarea textarea:focus + .tooltip-left
{
    right: 100%;
    left: auto;

    margin-right: 5px;
}

.sky-form .tooltip-bottom-right
{
    top: 100%;

    margin-top: 15px;
}
.sky-form .tooltip-bottom-right:after
{
    right: 16px;
    bottom: 100%;

    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0,0,0,.9);
    border-left: 4px solid transparent;
}
.sky-form i.icon-append:hover + input + .tooltip-bottom-right {
    right: 0;
    left: auto;

    margin-top: 5px;
}

.sky-form .tooltip-bottom-left
{
    top: 100%;

    margin-top: 15px;
}
.sky-form .tooltip-bottom-left:after
{
    bottom: 100%;
    left: 16px;

    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0,0,0,.9);
    border-left: 4px solid transparent;
}
.sky-form .input input:focus + .tooltip-bottom-left,
.sky-form .textarea textarea:focus + .tooltip-bottom-left
{
    right: auto;
    left: 0;

    margin-top: 5px;
}


/**/
/* normal state */
/**/
.sky-form .input input,
.sky-form .select select,
.sky-form .textarea textarea,
.sky-form .radio i,
.sky-form .checkbox i,
.sky-form .toggle i,
.sky-form .icon-append,
.sky-form .icon-prepend
{
    -webkit-transition: border-color .3s;
       -moz-transition: border-color .3s;
        -ms-transition: border-color .3s;
         -o-transition: border-color .3s;
            transition: border-color .3s;

    border-color: #e5e5e5;
}
.sky-form .toggle i:before
{
    background-color: #2da5da;
}
.sky-form .rating label
{
    -webkit-transition: color .3s;
       -moz-transition: color .3s;
        -ms-transition: color .3s;
         -o-transition: color .3s;
            transition: color .3s;

    color: #ccc;
}
.sky-form .button
{
    -webkit-transition: opacity .2s;
       -moz-transition: opacity .2s;
        -ms-transition: opacity .2s;
         -o-transition: opacity .2s;
            transition: opacity .2s;

  //  opacity: .8;
    background-color: #666666;
}
.sky-form .button.button-secondary
{
    background-color: #b3b3b3;
}
.sky-form .icon-append,
.sky-form .icon-prepend
{
    color: #ccc;
}


/**/
/* hover state */
/**/
.sky-form .input:hover input,
.sky-form .select:hover select,
.sky-form .textarea:hover textarea,
.sky-form .radio:hover i,
.sky-form .checkbox:hover i,
.sky-form .toggle:hover i
{
    border-color: #8dc9e5;
}
.sky-form .rating input + label:hover,
.sky-form .rating input + label:hover ~ label
{
    color: #2da5da;
}
.sky-form .button:hover
{
    opacity: 1;
}


/**/
/* focus state */
/**/
.sky-form .input input:focus,
.sky-form .select select:focus,
.sky-form .textarea textarea:focus,
.sky-form .radio input:focus + i,
.sky-form .checkbox input:focus + i,
.sky-form .toggle input:focus + i
{
    border-color: #2da5da;
}


/**/
/* checked state */
/**/
.sky-form .radio input + i:after
{
    background-color: #2da5da;
}
.sky-form .checkbox input + i:after
{
    color: #2da5da;
}
.sky-form .radio input:checked + i,
.sky-form .checkbox input:checked + i,
.sky-form .toggle input:checked + i
{
    border-color: #2da5da;
}
.sky-form .rating input:checked ~ label
{
    color: #2da5da;
}


/**/
/* error state */
/**/
.sky-form .state-error input,
.sky-form .state-error select,
.sky-form .state-error textarea,
.sky-form .radio.state-error i,
.sky-form .checkbox.state-error i,
.sky-form .toggle.state-error i
{
    background: #fff0f0;
}
.sky-form .state-error select + i
{
    background: #fff0f0;
    box-shadow: 0 0 0 12px #fff0f0;
}
.sky-form .toggle.state-error input:checked + i
{
    background: #fff0f0;
}
.sky-form .note-error
{
    color: #ee9393;
}


/**/
/* success state */
/**/
.sky-form .state-success input,
.sky-form .state-success select,
.sky-form .state-success textarea,
.sky-form .radio.state-success i,
.sky-form .checkbox.state-success i,
.sky-form .toggle.state-success i
{
    background: #f0fff0;
}
.sky-form .state-success select + i
{
    background: #f0fff0;
    box-shadow: 0 0 0 12px #f0fff0;
}
.sky-form .toggle.state-success input:checked + i
{
    background: #f0fff0;
}
.sky-form .note-success
{
    color: #6fb679;
}


/**/
/* disabled state */
/**/
.sky-form .input.state-disabled input,
.sky-form .select.state-disabled,
.sky-form .textarea.state-disabled,
.sky-form .radio.state-disabled,
.sky-form .checkbox.state-disabled,
.sky-form .toggle.state-disabled,
.sky-form .button.state-disabled
{
    cursor: default;

    opacity: .5;
}
.sky-form .input.state-disabled:hover input,
.sky-form .select.state-disabled:hover select,
.sky-form .textarea.state-disabled:hover textarea,
.sky-form .radio.state-disabled:hover i,
.sky-form .checkbox.state-disabled:hover i,
.sky-form .toggle.state-disabled:hover i
{
    border-color: #e5e5e5;
}


.sky-form fieldset > section {
    padding-right: 5px;
    padding-left: 5px;
}

.sky-form label {
    font-weight: bold;
    text-transform: uppercase;
}

.sky-form label.no-bold {
    font-weight: normal;
    text-transform: none;
}