/** Imports */
body.login {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.loginPage {
    background: #1663d6;
    position: absolute;
    width: 100%;
    height: 100%; /*style the arrow inside the select element:*/ /*point the arrow upwards when the select box is open (active):*/ /*style the items (options), including the selected item:*/ /*style items (options):*/ /*hide the items when the select box is closed:*/
}

.loginPage .FormWrapper {
    width: 400px;
    margin-left: calc((100% - 400px) / 2);
    margin-top: 5%;
}

@media only screen and (max-width: 450px) {
    .loginPage .FormWrapper {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-top: 30px;
    }
}

.loginPage .logo {
    margin-bottom: 10px;
    width: 120px;
    margin: 0 auto;
    margin-bottom: 0px;
    display: block;
}

.loginPage h2 {
    text-align: center;
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: normal;
}

.loginPage .input {
    color: #fff !important;
    opacity: 1;
    padding: 5px !important;
    border: 0 !important;
    border-bottom: 2px solid #fff !important;
    width: 100%;
    display: block;
    padding-top: 2px;
    padding-left: 0;
    height: 56px;
    vertical-align: middle;
    font-size: 14px;
    line-height: 16px;
    border-radius: 0;
    -webkit-box-flex: 1;
    -moz-flex: 1 220px;
    -ms-flex: 1 220px;
    flex: 1 220px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding-right: 24px;
    background-color: transparent !important;
    font-family: 'Helvetica Neue', Roboto, 'Segoe UI', sans-serif;
    font-weight: bold;
    outline-offset: 0;
    outline-style: none;
    outline-width: 0;
    -webkit-font-smoothing: inherit;
    background-image: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.loginPage .mobileWrap {
    width: calc(100% - 85px);
    float: left;
}

.loginPage .groupWrapp {
    float: left;
    width: 100%;
}

.loginPage .btn.btn-primary {
    width: 100%;
    height: 62px;
    background: transparent !important;
    border: 2px solid #fff !important;
    font-size: 16px;
}

.loginPage a.btn.btn-primary {
    line-height: 48px;
}

.loginPage .toggleLoginLink {
    color: #fff !important;
    float: left;
    width: 100%;
    text-align: center;
    padding: 16px 0;
    margin-top: 26px;
    font-size: 16px;
    text-decoration: none !important;
    cursor: pointer;
}

.loginPage a.toggleLoginLink {
    margin-top: 0px;
}

.loginPage .fl-label {
    color: #006f93 !important;
}

.loginPage .fl-form.fl-style-2 label.fl-label {
    top: -6px;
    left: 0;
}

.loginPage .fl-form label.fl-label {
    font-size: 13px;
}

.loginPage .custom-select {
    position: relative;
    font-family: Arial;
    float: left;
    margin-right: 5px;
}

.loginPage .custom-select select {
    display: none; /*hide original SELECT element:*/
}

.loginPage .select-selected {
    background-color: transparent;
}

.loginPage .select-selected:after {
    position: absolute;
    content: '';
    top: 23px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

.loginPage .select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 15px;
}

.loginPage .select-items div {
    color: #ffffff;
    padding: 6px 16px;
    border-bottom: 2px solid #008b9c !important;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 36px;
}

.loginPage .select-selected {
    color: #ffffff;
    padding: 16px 16px;
    border-bottom: 2px solid #fff !important;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 56px;
}

.loginPage .select-items {
    position: absolute;
    background-color: #1663d6; /*top: 100%;*/
    top: -124px;
    left: 0;
    right: 0;
    z-index: 99;
}

.loginPage .select-hide {
    display: none;
}

.loginPage .select-items div:hover,
.loginPage .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.loginPage input,
.loginPage select {
    border-radius: 0 !important;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

/** Form inputs */
.radio-ib {
    display: inline-block;
}

.radio-ib span {
    display: inline-block;
    margin-top: 2px;
}

.radio-ib label {
    max-width: initial;
}

.check-input {
    position: relative;
    cursor: pointer;
}

.check-input input {
    opacity: 0;
    pointer-events: none;
}

.check-input input + span {
    position: absolute;
    top: 2px;
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    border: 1px solid #b8c2cc;
    background-color: white;
}

.check-input input:checked + span:before,
.check-input input:checked + span:after {
    content: '';
    background-color: white;
    display: block;
    position: absolute;
    pointer-events: none;
}

.check-input input:checked + span:before {
    width: 5px;
    height: 2px;
    top: 7px;
    -webkit-transform: rotate(43deg);
    transform: rotate(43deg);
    left: 2px;
}

.check-input input:checked + span:after {
    width: 9px;
    height: 2px;
    top: 5px;
    -webkit-transform: rotate(-63deg);
    transform: rotate(-63deg);
    right: 1px;
}

.main-box-body h2 {
    margin-top: 15px !important;
}

.main-box-body .description {
    color: #686868;
}

.checkbox-nice {
    cursor: pointer;
}

.checkbox-nice.checkbox-ib {
    display: inline-block;
}

/** Dropzone */
.dropzone {
    border-radius: 4px;
    border: 2px dashed #e7ebee;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.dropzone .dz-default {
    display: none;
}

.dropzone .dz-preview {
    display: none !important;
}

.dropzone p {
    text-transform: uppercase;
}

.dropzone-info {
    pointer-events: none;
    position: relative;
}

.dropzone-info button {
    pointer-events: all;
}

.dropzone-info h4 {
    font-weight: 600;
    font-size: 16px;
    color: #7d7d7d;
    margin-bottom: 15px;
}

.dropzone-info p {
    color: #b8c2cc;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 14px;
}

.dropzone-info h4,
.dropzone-info p,
.dropzone-info button {
    opacity: 1;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    outline: 0 !important;
}

.dropzone-info .spin {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.dropzone-info i.fa-spin {
    color: #8795a1;
}

.dropzone-info.loading h4,
.dropzone-info.loading p,
.dropzone-info.loading button {
    opacity: 0;
}

.dropzone-info.loading .spin {
    opacity: 1;
}

/** Files tables */
.file-info {
    margin-top: 10px;
}

.file-info table {
    width: 100%;
    background-color: #f8fafc;
}

.file-info table td {
    padding: 10px;
    font-size: 14px;
    color: #606f7b;
    border-bottom: 1px solid #dae1e7;
}

.file-info table td:last-child a {
    margin-top: 4px;
    display: inline-block;
}

.action-buttons {
    margin-bottom: 40px;
}

.mykid_poll .action-buttons .center-block {
    max-width: 280px;
}

.form-title {
    padding-left: 0;
}

/** Form thanks */
#content-wrapper {
    min-height: calc(100vh - 55px);
}

.form-thanks {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

.form-thanks .fa {
    color: green;
    font-size: 80px;
    margin-bottom: 30px;
}

.form-thanks .second {
    color: #555;
}

.forms-tabs {
    margin-bottom: -2px;
}

.forms-tabs > a {
    display: inline-block;
    background-clip: padding-box;
    font-size: 1.125em;
    font-weight: 300;
    outline: none;
    color: #555;
    border-radius: 3px 3px 0 0;
    border-left: 0;
    border-right: 0;
    padding: 13px 20px;
    margin-right: -4px;
    text-decoration: none;
}

.forms-tabs > a:hover,
.forms-tabs > a.active {
    background-color: white;
}

.col-left-nano-content {
    margin-right: 0 !important;
}

.hidden-comment,
.hide-options {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
}

@media (max-width: 690px) {
    .forms-tabs {
        background-color: white;
        margin-bottom: 10px;
        border-radius: 6px;
        margin-top: 60px;
    }

    .forms-tabs > a {
        display: block;
        border-bottom: 1px solid #ddd;
        margin-right: 0;
    }

    .forms-tabs > a:last-child {
        border-bottom: 0;
    }

    .forms-tabs > a.active {
        background-color: transparent;
        font-weight: 800;
        font-size: 14px;
    }

    #content-header.selector {
        padding: 10px;
        margin: 0;
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        z-index: 90;
    }

    #content-header.selector .pull-left {
        margin-top: 0 !important;
        width: 100% !important;
    }

    #content-header.selector .form-control {
        width: 100% !important;
    }

    button.submit-form {
        width: 100%;
        padding: 10px 20px;
        margin-left: 0 !important;
        margin-top: 10px;
    }
}

/** LOGIN / RECOVER PASSWORD */
.hide, .reset-pw-extra-inputs {
    display: none;
}

.input-group.icon-inherit {
    position: relative;
}

.icon-inherit .toogle-pw-visibility {
    color: #798391;
    position: absolute;
    right: 2px;
    height: calc(100% - 4px);
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 36px;
    justify-content: center;
    background: #f4f7fb;
    top: 2px;
    padding: 0 10px;
    z-index: 10;
}

.reset-pw-extra-inputs .input-group,
.reset-pw-extra-inputs .form-control {
    width: 100% !important;
}

.reset-pw-extra-inputs ul li {
    font-size: 14px;
    color: #798391;
    font-weight: 400;
}

.text-danger {
    color: #dc3545 !important;
}

.text-success {
    color: #198754 !important;
}

.reset-pw-extra-inputs .progress {
    transition: width 0.6s ease;
    height: 10px;
    margin-top: 3px;
}

.reset-pw-extra-inputs .progress-bar-success {
    background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
    background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
    background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
}

.reset-pw-extra-inputs .progress-bar-info {
    background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
    background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
    background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
}

.reset-pw-extra-inputs .progress-bar-warning {
    background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
    background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
    background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
}

.reset-pw-extra-inputs .progress-bar-danger {
    background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
    background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
    background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
}
.block-help {
    font-size: 12px;
    font-weight: 300;
    color: #798391;
    text-align: right;
    margin-bottom: 10px;
}

/** General classes */
.flex-row{
    display: flex;
    align-items: center;
}

/** Modernized inputs */
.input-group-next .form-control{
    border-radius: 8px;
}

.input-group-next > *:not(.input-group-next > *:last-child) {
    border-right: none;
}