﻿:root {
    --error-color: #e34f4f;
}

.no-selection {
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none
}

.fl-form .fl-wrap {
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fl-form input.fl-input,
.fl-form select.fl-select,
.fl-form textarea.fl-textarea {
    width: 100%;
    outline: 0;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    background-color: white;
    box-sizing: border-box;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
}

    .fl-form input.fl-input:-moz-placeholder,
    .fl-form select.fl-select:-moz-placeholder,
    .fl-form textarea.fl-textarea:-moz-placeholder {
        color: #555;
        font-weight: 400;
    }

    .fl-form input.fl-input::-moz-placeholder,
    .fl-form select.fl-select::-moz-placeholder,
    .fl-form textarea.fl-textarea::-moz-placeholder {
        color: #555;
        font-weight: 400;
    }

    .fl-form input.fl-input:-ms-input-placeholder,
    .fl-form select.fl-select:-ms-input-placeholder,
    .fl-form textarea.fl-textarea:-ms-input-placeholder {
        color: #555;
        font-weight: 400;
        color: #FFF !important;
    }

    .fl-form input.fl-input::-webkit-input-placeholder,
    .fl-form select.fl-select::-webkit-input-placeholder,
    .fl-form textarea.fl-textarea::-webkit-input-placeholder {
        color: #555;
        font-weight: 400;
    }

.fl-form select.fl-select {
    position: relative;
    color: #555;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .fl-form select.fl-select::-ms-expand {
        display: none;
    }

.fl-form .fl-is-active input.fl-input,
.fl-form .fl-is-active select.fl-select,
.fl-form .fl-is-active textarea.fl-textarea {
    color: #222;
    background-color: white;
    border-color: none;
}

.fl-form .fl-has-focus input.fl-input,
.fl-form .fl-has-focus select.fl-select,
.fl-form .fl-has-focus textarea.fl-textarea {
    background-color: white;
    border-color: none;
}

.fl-form label.fl-label {
    opacity: 0;
    visibility: hidden;
    display: block;
    position: absolute;
    top: -11px;
    left: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    border-top-left-radius: 3px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

body[dir=rtl] .fl-form label.fl-label {
    left: unset;
    right: 0;
}

.fl-form .fl-is-active label.fl-label {
    opacity: 1;
    visibility: visible;
}

.fl-form .fl-has-focus label.fl-label {
    color: #555;
}


.fl-form .fl-is-required:before
{
    opacity: 1;
    content: '';
    display: block;
    position: absolute;
    top: 1px;
    right: 18px;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 8px 0 0;
    z-index: 1;
}

body[dir=rtl] .fl-form .fl-is-required:before {
    right: unset;
    left: 18px;
}

.fl-form .fl-is-required.fl-is-active:before {
    opacity: 0;
}

.fl-form.fl-style-1 input.fl-input,
.fl-form.fl-style-1 select.fl-select,
.fl-form.fl-style-1 textarea.fl-textarea {
    padding: 8px 16px;
}

.fl-form.fl-style-1 select.fl-select {
    height: 46px;
}

.fl-form.fl-style-1 .fl-is-active input.fl-input,
.fl-form.fl-style-1 .fl-is-active select.fl-select,
.fl-form.fl-style-1 .fl-is-active textarea.fl-textarea {
    padding: 8px 16px;
}

.fl-form.fl-style-1 label.fl-label {
    top: 1px;
    left: 13px;
    background-color: transparent;
    padding: 16px 4px;
}

    .fl-form.fl-style-1 label.fl-label:before {
        content: '';
        display: block;
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 1px;
        background-color: white;
        z-index: -1;
    }

.fl-form.fl-style-1 .fl-is-active label.fl-label {
    top: -10px;
    padding: 4px;
}

    .fl-form.fl-style-1 .fl-is-active label.fl-label:before {
        top: 10px;
    }

body[dir=rtl] .fl-form.fl-style-1 label.fl-label {
    left: unset;
    right: 13px;
}

.fl-form.fl-style-2 input.fl-input,
.fl-form.fl-style-2 select.fl-select,
.fl-form.fl-style-2 textarea.fl-textarea {
    padding: 16px;
}

.fl-form.fl-style-2 select.fl-select {
    height: 62px;
}

.fl-form.fl-style-2 .fl-is-active input.fl-input,
.fl-form.fl-style-2 .fl-is-active select.fl-select,
.fl-form.fl-style-2 .fl-is-active textarea.fl-textarea {
    padding: 24px 16px 8px;
}

.fl-form.fl-style-2 label.fl-label {
    top: 1px;
    left: 9.8px;
    padding: 8px 4px 4px;
}

.fl-form.fl-style-2 .fl-is-required:before {
    padding-top: 16px;
}

body[dir=rtl] .fl-form.fl-style-2 label.fl-label {
    left: unset;
    right: 13px;
}

.fl-form .fl-wrap-select:after {
    content: '';
    position: absolute;
    display: block;
    top: 1px;
    right: 6px;
    height: calc(100% - 2px);
    width: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'%3E%3Cpath fill='%23555' d='M 4 0 L 0 6.5 L 8 6.5 L 4 0 z M 0 9.5 L 4 16 L 4 16 L 8 9.5 z'/%3E%3C/svg%3E") no-repeat;
    background-position: 100% 50%;
    background-size: 7px 14px;
    z-index: 2;
}

body[dir=rtl] .fl-form .fl-wrap-select:after {
    right: unset;
    left: 6px;
}

.ltr, input[type=number], input[type=password], input[type=email] {
    direction: ltr !important;
    text-align: left !important;
}

    input.ltr::placeholder, input[type=number]::placeholder, input[type=password]::placeholder, input[type=email]::placeholder {
        direction: rtl !important;
        text-align: right !important;
    }

.login-method, .login-method:hover {
    text-align: right;
    margin-top: 60px;
    font-size: 14px;
    color: #68737d;
}

    .login-method:last-child {
        margin-right: 10px
    }

label.error {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
    position: absolute;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    top: -20px;
    right: 15px;
    z-index: 2;
    height: 25px;
    line-height: 1;
    background-color: var(--error-color);
    color: #fff;
    font-weight: normal;
    display: inline-block;
    padding: 6px 8px;
    opacity: 0.9;
}

    label.error:after {
        content: '';
        position: absolute;
        border-style: solid;
        border-width: 6px;
        border-color: var(--error-color) var(--error-color) transparent transparent;
        display: block;
        width: 0;
        z-index: 1;
        bottom: -12px;
        right: 20%;
    }

.form-control:focus {
    box-shadow: none;
}

.fl-form .fl-wrap-select:after {
    left: 6px;
    right: inherit;
}

.fl-form.fl-style-1 label.fl-label {
    left: unset;
    right: 13px;
}

.fl-form label.fl-label {
    left: unset;
    right: 0;
}

/*-------- 1.3 Structure --------*/
/* Preloader */

#loader_form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}

[data-loader="circle-side-2"] {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    -webkit-animation: circle infinite .95s linear;
    -moz-animation: circle infinite .95s linear;
    -o-animation: circle infinite .95s linear;
    animation: circle infinite .95s linear;
    border: 2px solid #333;
    border-top-color: rgba(0, 0, 0, 0.2);
    border-right-color: rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(0, 0, 0, 0.2);
    border-radius: 100%;
}

@-webkit-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.fl-is-required
{
    margin: 4px auto;
}