/* YotuWP plugin */
h3.yotu-video-title {
    font-size: 17px !important;
    height: 25px !important;
}

/* Google button */
.btn-xnclab-google {
    color: #333;
    background-color: #e8e8e8;
    background-image: linear-gradient(#EDEDED, #E0E0E0);
    border-color: rgba(0, 0, 0, 0.08);
}

.btn-xnclab-google:focus, .btn-xnclab-google:hover {
    color: #333;
    background-color: #E1F1FF;
    background-image: linear-gradient(#E1F1FF, #C5DBF5);
    border-color: #B0CCF2;
}

.fa-style-xnclab-google {
    display: inline-block;
    background: url("../images/google-g.svg") center no-repeat;
}

.btn-xnclab-google:hover .fa-style-xnclab-google {
    border-color: #B0CCF2;
}


/* NCLab modal styling  */
.modal-nclab .modal-header {
    position: relative;
    background: transparent;
}

.modal-nclab .modal-header .logo {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 64px;
    z-index: 1;
    background-image: url("../images/nclab-logo.png");
    background-repeat: no-repeat;
    background-position: right 50% top 50%;
    background-size: 48px;
    padding: 20px;
}

.modal-nclab .modal-header h3 {
    position: relative;
    z-index: 2;
    font-size: 24px;
    padding: 0 0 0 46px;
    margin-right: 60px;
    clear: none;
}

.modal-nclab .modal-header .close {
    font-size: 36px;
}

.modal-nclab .modal-body {
    padding: 20px;
}

.modalInfoText {
    font-size: 14px;
    margin: 0 0 20px 0;
    display: block;
}


/*  Ext JS fixes */
.x-form-invalid-under ul {
    margin: 0;
    position: absolute;
    /*top: 40px;*/
    left: 2px;
    background-color: white;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #C0272B;
    z-index: 10000;
}

.ajax-panel {
    /*background-image: url("../images/spin.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;*/
    background: transparent;
    min-width: 50px;
    min-height: 50px;
}


/* Nette Forms */
.netteForm {
    background-image: url("../images/spin.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18%;
    font-family: 'Open Sans', sans-serif !important;
    position: relative;
}

.no-js .netteForm {
    display: none !important;
}

.netteForm > * {
    visibility: hidden;
}

.netteForm .form-text {
    font-size: 14px;
    margin: 0;
    vertical-align: middle;
}

/*.netteForm .control-label {*/
/*    vertical-align: middle;*/
/*}*/

.netteForm label {
    display: inline;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
}
.netteForm .date-form-group,
.netteForm input[type=text],
.netteForm input[type=email],
.netteForm input[type=password],
.netteForm input[type=tel],
.netteForm input[type=url],
.netteForm input[type=search],
.netteForm input[type=date],
.netteForm textarea {
    margin: 0 !important;
}

.netteForm .form-control {
    line-height: normal;
}

.netteForm #rlogin {
    margin-bottom: 20px;
}

#coursesAll {
    margin-bottom: 0;
}

.netteForm .courses-select-parent,
.netteForm .courses-select-parent label {
    margin-bottom: 0;
}

.netteForm .courses-select-parent-last {
    margin-bottom: 1rem;
}

label.error {
    color: red;
}

label#register-accept-error {
    float: right;
}

input:focus {
    border: 1px solid #66afe9 !important;
}

input.error {
    border: 1px solid red;
}

.netteForm .help-block {
    color: #444;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
}

.netteForm .forgot-block {
    display: block;
    color: #444 !important;
}

.netteForm .forgot-block a {
    color: #ed6639 !important;
    text-decoration: underline !important;
}

blockquote {
    color: #fdff00;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.formErrors, .formSuccess {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}


/* Help tips */
.help-tip {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    text-align: center;
    background-color: #00A4E8;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 15px;
    line-height: 19px;
    cursor: help;
}

.help-tip:hover {
    background-color: #00709F;
}

.help-tip:before {
    content: '?';
    font-weight: bold;
    color: #fff;
}

.help-tip:hover p {
    display: block;
    transform-origin: 100% 0;
    animation: fadeIn 0.3s ease-in-out;
}

.help-tip p {
    z-index: 2;
    display: none;
    text-align: left;
    background-color: #1E2021;
    padding: 20px;
    width: 300px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    right: -4px;
    color: #FFF;
    font-size: 13px;
    line-height: 1.4;
}

.help-tip p:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-bottom-color: #1E2021;
    right: 10px;
    top: -12px;
}

/* Prevents the tooltip from being hidden */
.help-tip p:after {
    width: 100%;
    height: 40px;
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
}

.forgot {
    cursor: pointer;
    font-size: 14px;
}

/* CSS animation */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    100% {
        opacity: 100%;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}


/* Loaders */
.ajax-loader-input {
    background: url("../images/spin.svg") center no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 23px;
    height: 32px;
    width: 22px;
}

.ajax-loader-input.big {
    background: url("../images/spin.svg") center no-repeat;
    background-size: contain;
    position: absolute;
    top: 25% !important;
    left: 45% !important;
    height: 120px !important;
    width: 120px !important;
    transform: translate3d(-60px, -60px, 0);
}


/* Password strength */
.progress-bar-password {
    position: absolute;
    width: 35%;
    top: -4px;
    right: 16px;
    clear: both;
}

.progress-bar-password .progress {
    height: 10px;
    margin-bottom: 0;
}

#password-strength-label {
    font-size: 11px;
    font-weight: normal;
    line-height: 11px;
    transform: translate3d(1px, 1px, 0);
}

.web-statement .checkbox label {
    margin-bottom: 0 !important;
    padding-left: 0 !important;
}

.web-statement .checkbox input {
    display: none !important;
}
