﻿/*CSS VARIABLES*/
:root {
    /*favorite color*/
    --main-color: rgb(30,178,255);
    --light-gray: rgb(240,240,240);
    --white: rgb(255, 255, 255);
    --black: #000000;
    --main-red: rgb(194, 1, 22);
    --main-font: 'Nunito Sans', sans-serif;
    --color-green: #3cb371;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--main-font);
    background: var(--white);
    min-width: 400px; /*Set minimum width of browser to 400px*/
    width: expression(document.body.clientWidth > 420 ? "420px" : "auto" ); /* sets max-width for IE6 */
}


footer {
    bottom: 0;
    padding: 10px;
    position: fixed;
    width: 100%;
    height: 12%;
    background: var(--black);
}

.login-container {
    padding: 4%;
    background: transparent
}

    .login-container .login-box {
        width: 340px;
        margin: 0 auto;
        padding: 10px;
        background: var(--white);
        border-radius: 10px;
        background: var(--white);
        box-shadow: 0 4px 8px 0 rgb(45 45 45 / 20%), 0 6px 20px 0 rgb(45 45 45 / 10%);
    }

.login-body {
    padding: 10px;
}

.login-title {
    padding: 5px;
    margin-bottom: 10px;
/*    background: rgb(245, 245, 245);*/
    border-bottom: 1px solid rgb(207,207,207);
    box-shadow: 0 1px whitesmoke;
}

    .login-title label {
        width: 100%;
        font-size: 1.3em;
        text-align: center;
        line-height: 40px;
        color: rgb(194, 1, 22);
        text-shadow: 0 1px var(--white);
    }

.login-content {
    padding: 10px;
    border-radius: 4px;
    /*box-shadow: 0 1px 1px 0 #2d2d2d, 0 6px 10px 0 var(--black);*/
    /*box-shadow: 0 1px 1px 0 var(--white), 0 6px 10px 0 rgba(45,45, 45, 0.19);*/
}

.dropdown-header {
    border-width: 0 0 1px 0;
    text-transform: uppercase;
}

    .dropdown-header > span {
        display: inline-block;
        padding: 1px;
    }

        .dropdown-header > span:first-child {
            width: 60px;
        }

.selected-value {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background-size: 100%;
    margin-right: 5px;
    border-radius: 50%;
}

#languages-list .k-item {
    line-height: 1px;
    min-width: 10px;
}

.k-input {
    height: 30px !important;
}

#languages-list .k-item > span {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin: 5px 10px 1px 10px;
}

    #languages-list .k-item > span:first-child {
        -moz-box-shadow: inset 0 0 30px rgba(0,0,0,.3);
        -webkit-box-shadow: inset 0 0 30px rgba(0,0,0,.3);
        box-shadow: inset 0 0 30px rgba(0,0,0,.3);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-size: 100%;
        background-repeat: no-repeat;
    }

#languages-list p {
    margin: 0;
    padding: 0;
    font-size: .8em;
}

.tab-content {
    margin-top: 20px;
}

.login-content label {
    font-family: var(--main-font);
    color: rgba(0, 0, 0, 0.6);
}

.k-textbox {
    width: 100%;
    height: 34px;
    border-radius: 5px;
    font-family: var(--main-font);
}

label {
    font-family: var(--main-font);
}

.nav-tabs {
    padding-left: 1px;
    border: none;
}

.text-danger {
    font-size: 12px;
}

.lpf-btn-primary {
    margin-left: 20px;
    margin-top: 10px;
    border-radius: 10px;
    font-family: var(--main-font);
}

.lpf-btn-primary {
    margin: 10px;
    width: 94%;
    border-radius: 20px;
    background-color: var(--main-color);
    color: var(--white);
}

    .lpf-btn-primary:hover {
        background-color: rgb(30,150,255);
        color: var(--white);
        transition: .3s;
    }

/**  =====================
  Lpf-preloader css start
==========================  **/
#loader {
    display: none;
}

.loader-overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    overflow-x: hidden; /* Disable horizontal scroll */
}

.overlay-box {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay-content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 70px;
    height: 70px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--white);
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/**== End of the loader--*/

