﻿@font-face {
    font-family: TT Travels Bold;
    src: url("../fonts/TT Travels-Black.otf") format("opentype");
}

@font-face {
    font-family: TT Travels Regular;
    src: url("../fonts/TT Travels-Regular.otf") format("opentype");
}

@font-face {
    font-family: TT Travels DemiBold;
    src: url("../fonts/TT Travels-DemiBold.otf") format("opentype");
}

/** base css **/
body {
    background: url("../Content/LogInContent/images/mainback.svg") no-repeat center center fixed;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    font-family: TT Travels Regular;
    font-size: 14px;
}



ul, li {
    margin: 0;
    padding: 0;
}

a, a:hover {
    text-decoration: none;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input:focus, select:focus, textarea:focus, button:focus {
    outline: none;
}

.container {
    width: 1280px;
    margin: 0 auto;
}

/** variables **/
:root {
    --white_color: #ffffff;
    --black_color: #000000;
}

/** mixins **/
/** typography **/
h1 {
    font-size: 30px;
    text-transform: uppercase;
    color: #1F507D;
    letter-spacing: 1px;
    font-family: TT Travels DemiBold;
}

h2 {
    font-size: 28px;
    text-transform: uppercase;
    color: #1F507D;
    letter-spacing: 1px;
    font-family: TT Travels DemiBold;
}

h3 {
    font-size: 25px;
    text-transform: uppercase;
    color: #1F507D;
    letter-spacing: 1px;
    font-family: TT Travels DemiBold;
}

h4 {
    font-size: 20px;
    text-transform: uppercase;
    color: #1F507D;
    letter-spacing: 1px;
    font-family: TT Travels DemiBold;
}

h5 {
    font-size: 19px;
    text-transform: uppercase;
    color: #1F507D;
    letter-spacing: 1px;
    font-family: TT Travels DemiBold;
}

h6 {
    font-size: 18px;
    text-transform: uppercase;
    color: #1F507D;
    letter-spacing: 1px;
    font-family: TT Travels DemiBold;
}

/** button css **/
.primary_btn {
    background: #00CC75;
    text-transform: uppercase;
    padding: 10px 25px;
    color: var(--white_color);
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    font-family: TT Travels DemiBold;
    letter-spacing: 0.5px;
}

    .primary_btn:hover {
        background: var(--white_color);
        color: #00CC75;
    }
/**loginpage css**/

.wrapper {
    width: 100%;
    float: left;
}

.login_section {
    float: left;
    width: 100%;
}

.logo_block {
    float: left;
    width: 30% !important;
}

.login_block {
    float: left;
    width: 65%;
    padding: 20px 0;
}
.logout {
    padding: 0 15px;
}

    .login_block .block_title {
        float: left;
        width: 100%;
    }

    .login_block .block_content {
        float: left;
        width: 100%;
    }

    .login_block .block_title h4 {
        padding: 0;
        margin: 0 0 15px 0;
    }

.loginform {
    float: left;
    width: 66%;
}

    .loginform .form-group {
        float: left;
        width: 50%;
    }

        .loginform .form-group input {
            float: left;
            width: 90%;
            border-color: #97A2B4;
            border-width: 0 0 1px 0;
            border-style: solid;
            background: none;
            padding: 10px 0;
            color: #97A2B4;
        }

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #97A2B4;
    font-family: TT Travels DemiBold;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #97A2B4;
    font-family: TT Travels DemiBold;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #97A2B4;
    font-family: TT Travels DemiBold;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #97A2B4;
    font-family: TT Travels DemiBold;
}

.remember_block {
    float: left;
    width: 45%;
    margin: 15px 0;
    color: #1F507D;
    font-family: TT Travels DemiBold;
}

    .remember_block input {
        position: relative;
        top: 2px;
        left: -4px;
    }

.forgotpwd_block {
    float: left;
    width: 50%;
    text-align: right;
    margin: 15px 0;
    color: #1F507D;
    font-family: TT Travels DemiBold;
}

.loginform .form-group.submit_block {
    float: left;
    width: 100%;
    text-align: center;
    margin: 15px 0;
}

input[type=checkbox] + label {
    display: block;
    margin: 0;
    cursor: pointer;
    padding: 0;
}

input[type=checkbox] {
    display: none;
}

    input[type=checkbox] + label:before {
        content: "✔";
        border: 0.1em solid #97A2B4;
        border-radius: 0.2em;
        display: inline-block;
        width: 13px;
        height: 13px;
        padding-left: 0;
        padding-bottom: 0;
        margin-right: 8px;
        vertical-align: bottom;
        color: transparent;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        text-align: center;
        font-size: 9px;
        line-height: 14px;
        /* margin-top: -8px; */
        position: relative;
        top: -4px;
    }

    input[type=checkbox] + label:active:before {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    input[type=checkbox]:checked + label:before {
        background-color: #00CC75;
        border: 1px solid transparent;
        color: var(--white_color);
    }

    input[type=checkbox]:disabled + label:before {
        -webkit-transform: scale(1);
        transform: scale(1);
        border-color: #aaa;
    }

    input[type=checkbox]:checked:disabled + label:before {
        -webkit-transform: scale(1);
        transform: scale(1);
        background-color: #00CC75;
        border-color: #97A2B4;
    }
/**loginoptions page css **/
.wrapper {
    width: 100%;
    float: left;
}

.login_section {
    float: left;
    width: 100%;
}

.logo_block {
    float: left;
    width: 35%;
    padding: 20px 0;
}

.login_block {
    float: left;
    width: 65%;
}

.loginoptions_block {
    float: left;
    width: 65%;
    margin: 20px 0;
}

    .loginoptions_block ul li {
        list-style: none;
        display: inline-block;
        width: 24%;
        text-align: center;
        margin-right: 5px;
    }

        .loginoptions_block ul li img {
            width: 42%;
            margin-bottom: 12px;
        }

        .loginoptions_block ul li span {
            color: #1F507D;
            font-weight: 700;
            font-family: TT Travels DemiBold;
        }


@media (max-width: 1280px) {
    .logo_block.options {
        width: 22% !important;
    }

    .loginoptions_block {
        width: 70% !important;
    }
}

@media (max-width: 1200px) {
    .container {
        width: 992px;
    }

    .logo_block {
        width: 24% !important;
        margin-right: 15px;
    }

        .logo_block img {
            width: 100%;
        }

    .login_block {
        float: left;
        width: 68% !important;
        padding: 20px 0;
    }

    .loginoptions_block ul li {
        height: 200px;
        vertical-align: text-bottom;
        margin-right: 0;
    }

    .loginoptions_block {
        width: 76%;
    }
    span.step-title {
        font-size: 10px !important;
    }
   
 

}

@media (max-width: 992px) {
    .logo_block {
        width: 24%;
        margin-right: 15px;
    }

    .container {
        width: 768px;
    }
    .header-inner {
        /* margin-bottom: 10px; */
        float: left;
        padding: 10px 0;
    }
    div#gantt d.k-gantt-layout.k-gantt-treelist {
        width: 100% !important;
    }
 
}

@media (max-width: 768px) {

    .logo_block {
        width: 100% !important;
        margin-right: 0;
        text-align: center;
        padding: 0;
    }

    .login_block {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .logo_block img {
        width: auto;
    }

    .loginform {
        float: left;
        width: 100%;
    }

    .container {
        width: 100%;
    }

    .logo_block.options {
        width: 100%;
    }

    .loginoptions_block {
        width: 100% !important;
        padding: 0 15px;
    }
    .logout {
        padding: 0 15px;
        position: absolute;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .loginform .form-group {
        float: left;
        width: 100%;
        margin: 5px 0;
    }

        .loginform .form-group input {
            width: 100%;
        }

    .remember_block {
        width: 50%;
    }

    .loginoptions_block ul li {
        width: 100%;
        text-align: center;
        height: auto;
        margin-bottom: 15px;
    }
}
