﻿/*@charset "utf-8";*/
/*@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css";*/
/*@import "../css/menu.css";*/
/* CSS Document */
/* ! GENERAL START */
/**
This section is use for reset CSS.
*/

*,
* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
}

html,
body {
    min-height: 99%;
}

body {
    font-size: 16px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background: #fff;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #dfe7f3;
}

::-webkit-scrollbar-thumb {
    background-color: #8eabdc;
}

a {
    color: #053F6D;
    text-decoration: none;
    transition: color 0.3s ease 0s;
}

    a:hover {
        text-decoration: none;
    }

:focus {
    outline: 0;
}

.icons-cell {
    width: 1%;
    white-space: nowrap;
}

p:last-child {
    margin-bottom: 0;
}

b,
strong {
    font-weight: 700;
}

.text-white {
    color: #fff;
}

.text-blue {
    color: #3f9be4 !important;
}

.text-red {
    color: #f44336 !important;
}

.text-primary {
    color: #053f6d !important;
}

.text-secondary {
    color: #8EABDC !important;
}

textarea {
    width: 100% !important;
    min-height: 147px;
    overflow-y: auto;
    resize: vertical;
}

    textarea.form-control {
        min-height: 147px;
    }

p {
    margin-bottom: 15px;
}

    p:last-child {
        margin-bottom: 0;
    }

/* Buttons */

.btn {
    border-radius: 50px;
    outline: none;
    box-shadow: none;
    height: 44px;
    line-height: 40px;
    border-width: 2px;
    border-style: solid;
    border-color: #fff;
    color: #fff;
    transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
    font-size: 14px;
    font-weight: 400;
    padding: 0 35px;
    text-transform: uppercase;
    box-shadow: 0 1px 2px rgb(0 0 0 / 42%);
    width: 100%;
    max-width: 250px;
}

    .btn.btn-primary {
        background: #053F6D;
        border-color: #053F6D;
        color: #FFF;
    }

        .btn.btn-primary:hover,
        .btn.btn-primary:focus {
            width: 100%;
            background: #fff;
            color: #053F6D;
        }

        .btn.btn-primary.sr-only-focusable:active {
            width: 100%;
            background-color: #8EABDC;
            color: #fff;
        }

    .btn.btn-secondary {
        background: #8EABDC;
        border-color: #8EABDC;
        color: #FFF;
    }

        .btn.btn-secondary:hover,
        .btn.btn-secondary:focus {
            background: transparent;
            color: #8EABDC;
            border-color: #8EABDC;
        }

    .btn.btn-outline-primary {
        background: transparent;
        border-color: #053F6D;
        color: #053F6D;
    }

        .btn.btn-outline-primary:hover,
        .btn.btn-outline-primary:focus {
            background: #053F6D;
            color: #fff;
        }

    .btn.btn-outline-white {
        background: transparent;
        border-color: #fff;
        color: #fff;
    }

        .btn.btn-outline-white:hover,
        .btn.btn-outline-white:focus {
            background: #fff;
            color: #053F6D;
        }

.button-row {
    display: none;
}

.grid-button {
    background-color: transparent;
    border-color: transparent;
    color: #053F6D;
}

/* ul li */

ul.list-arrow-style {
    list-style: none;
    margin-bottom: 0;
}

    ul.list-arrow-style li {
        position: relative;
        padding-left: 20px;
    }

        ul.list-arrow-style li::before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            display: inline-block;
            font-weight: 900;
            position: absolute;
            font-size: 12px;
            line-height: 20px;
            left: 0;
            top: 3px;
        }

/* Commons */

.section-pad {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-title {
    margin-bottom: 30px;
    position: relative;
}

.title-underline:after {
    content: '';
    position: absolute;
    width: 100px;
    left: 0;
    bottom: -7px;
    height: 3px;
}

.title-underline.underline-primary::after {
    background-color: #053F6D;
}

.title-underline.underline-secondary::after {
    background-color: #8EABDC;
}

.title-underline.underline-white::after {
    background-color: #fff;
}

.grey-bg {
    background-color: #f4f4f4;
}

.light-grey-bg {
    background-color: rgb(248 249 250 / 52%);
}

/* Button end */

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.text-yellow {
    color: #d5aa41;
}
/* ! HEADINGS START */
/**
This section is use for all heading tag default CSS.
*/

/* Header  */

header {
    height: 70px;
    background-color: #343434;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    top: 0;
    /*width: 100%;*/
    left: 0;
    z-index: 1060;
}

.nexa-logo {
    margin-right: 35px;
}

    .nexa-logo img {
        max-width: 150px;
    }

.header-search-input {
    background-color: #2F81E7;
    border-radius: 20px;
    box-shadow: none;
    border: none;
    height: 38px;
    line-height: 38px;
    padding: 0 45px 0 25px;
    width: 280px;
}

.header-extralinks {
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.extra-links {
    margin-bottom: 0;
    padding: 0;
    height: 100%;
    align-items: inherit;
}

    .extra-links li {
        color: #fff;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 15px;
        background-color: transparent;
        transition: background ease 0.3s;
    }

a.notification-light::before {
    content: '';
    position: absolute;
    top: 0;
    right: -5px;
    height: 10px;
    width: 10px;
    background-color: #ff4f00;
    border-radius: 50%;
}

.extra-links li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    position: relative;
}

.extra-links li:hover {
    background-color: #646464;
}

.extra-links li a img {
    max-width: 20px;
}

.extra-links ul li:last-child {
    margin-right: 0;
}

/*----------------client-name section----------------*/

.client-name {
    /*max-width: 260px;*/
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    /*width: 240px;*/
}

@media screen and (min-width: 768px) {
    .client-name {
        width: 240px;
    }
}

/*@media (max-width:768px) {
    .welcome-user {
        font-size: 4vw;
    }
}

@media (max-width:576px) {
    .welcome-user {
        font-size: 7vw;
    }
}*/

/* Header dropdowns  */

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0;
    vertical-align: inherit;
    content: "\f107";
    border: none;
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-weight: 900;
    margin-left: 5px;
}

/*----------------toggeled sidebar----------------*/

.sub-link-menu-header {
    display: flex;
    align-items: center;
    height: 60px;
    transition: all 0.5s ease;
    padding-right: 25px;
    border-bottom: 1px solid rgb(142 171 220 / 19%);
    background-color: #dfe7f3;
    border-bottom: 1px solid rgb(142 171 220 / 22%);
}

/*----------------sidebar-wrapper----------------*/

.sidebar-wrapper {
    border-right: 2px solid #338bf8;
}

    .sidebar-wrapper ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: none;
    }

.sidebar-menu {
    overflow-x: hidden;
    overflow-y: auto;
}

@media screen and (min-width: 768px) {
    .sidebar-wrapper {
        min-width: 260px;
    }
}

/*----------------sidebar-content----------------*/

#sidebar {
    background: #f2f2f2;
}

@media screen and (min-width: 768px) {
    #sidebar {
        min-height: calc(100vh - 70px);
    }
}

/*--------------------sidebar-brand----------------------*/

.sidebar-wrapper .sidebar-menu ul > li > a {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 52px;
    margin-top: 4px;
    margin-bottom: 4px;
    min-height: 30px;
    font-size: 14px;
}

/*::-webkit-scrollbar {
    width: 1px;
    height: 7px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #8d9095;
    border: 0px none #ffffff;
    border-radius: 0px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #525965;
    }

    ::-webkit-scrollbar-thumb:active {
        background: #525965;
    }

::-webkit-scrollbar-track {
    background: rgb(47 129 231 / 18%);
    border: 0px none #ffffff;
    border-radius: 50px;
}

    ::-webkit-scrollbar-track:hover {
        background: transparent;
    }

    ::-webkit-scrollbar-track:active {
        background: transparent;
    }

::-webkit-scrollbar-corner {
    background: transparent;
}*/


/*-----------------------------custom-sidebar-------------------------------------------------*/

.custom-sidebar .sidebar-wrapper .sidebar-menu ul li a {
    color: #363636;
    font-weight: 600;
}

.sub-link-menu-header,
.sub-link-header-text {
    color: #1e3053;
    font-size: 15px;
    font-weight: 600;
    padding-left: 20px;
}

ul.sidebar-sublink-menu {
    padding-bottom: 0 !important;
    margin-bottom: 0px !important;
    padding-top: 10px;
    padding-bottom: 10px !important;
}

ul li.active {
    background-color: #8eabdc;
}

/* Analyse search  */

.sub-link-header-text i {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    background: #4995f3;
    color: #fbfdff;
    margin-right: 5px;
    font-size: 18px;
}

/*controls menu TOP icon circle size*/
.sidebar-user-img {
    margin-right: 10px;
    max-width: 50px;
}

.sider-bar-profile-area {
    display: flex;
    padding: 10px 15px;
    align-items: center;
    background: #484c5f;
}

    .sider-bar-profile-area h3 {
        font-size: 18px;
        margin-bottom: 0;
        color: white;
    }

/*.sub-link-menu-header .fa-angle-down {
    transform: rotate(-90deg);
    transition: all 0.3s ease;
}*/

.rotate-arrow {
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

.custom-sidebar .sidebar-wrapper .sidebar-menu ul li a:after {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    left: 30px;
    border: 1px solid #363636;
}

ul li {
    transition: all 0.3s ease;
}

    ul li:hover {
        background-color: #f8f9fa;
        border-radius: 5%;
    }


h1 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 1px;
}

h3 {
}

h4 {
}

h5 {
}

h6 {
}

h1 span.special-text,
h2 span.special-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

span.special-text {
    position: relative;
}

    span.special-text:after {
        content: '';
        position: absolute;
        height: 2px;
        width: 99%;
        bottom: 0;
        background-color: #fff;
        left: 0;
    }
/* Headings end */
/* ! PLACEHOLDER CSS START */
/**
This section is used for all form element placeholder.
*/

::-webkit-input-placeholder {
    color: #c4c4c4;
    opacity: 1;
}

:-moz-placeholder {
    color: #c4c4c4;
    opacity: 1;
}

::-moz-placeholder {
    color: #c4c4c4;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #c4c4c4;
    opacity: 1;
}

::placeholder {
    color: #c4c4c4;
}
/* placeholder css end */
/***************************************************************************************
* COMMON CSS STARTS
***************************************************************************************/

caption {
    caption-side: top;
}

.wrapper {
    width: 100%;
    margin-top: 80px;
}

.inner-container,
.inner-container-large {
    padding: 0 15px;
}

.cover-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    display: inline-block;
    border: none;
}

iframe {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    border: 0;
}

/* Form  control */

.form-group {
    margin-bottom: 20px;
}

    .form-group:last-child {
        margin-bottom: 0;
    }

.form-control {
    border-radius: 3px;
    border: 1px solid #C4C4C4;
    color: #053F6D;
    outline: none;
    box-shadow: none;
}

    .form-control:focus {
        box-shadow: none;
        border: 1px solid #707070;
    }

.required {
    color: #f44336;
}

.custom-checkbox-group {
    display: block;
}

    .custom-checkbox-group input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }

    .custom-checkbox-group label {
        position: relative;
        cursor: pointer;
        margin: 0;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

        .custom-checkbox-group label:before {
            content: '';
            -webkit-appearance: none;
            background-color: transparent;
            border: 2px solid #053f6d;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
            padding: 10px;
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 5px;
            border-radius: 5px;
        }

    .custom-checkbox-group input:checked + label:after {
        content: '';
        display: block;
        position: absolute;
        top: 3px;
        left: 9px;
        width: 6px;
        height: 14px;
        border: solid #053f6d;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .custom-checkbox-group input[type="radio"] ~ label:before {
        border-radius: 50%;
    }

    .custom-checkbox-group input[type="radio"]:checked + label:after {
        background: #053f6d;
        height: 18px;
        width: 18px;
        border-radius: 50%;
        left: 3px;
        top: 3px;
    }

/**
This section is use for Common button style.
*/
/* ! COMMON BUTTON CSS START */
/* ! HEADER CSS START */
/**
This section is use for site header style.
*/
.step-item-list {
    list-style: none;
}

    .step-item-list li {
        margin-bottom: 15px;
    }

ul.step-item-list a i {
    border: 1px solid #8EABDC;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    padding: 5px;
    height: 40px;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    color: #8EABDC;
}

ul.step-item-list a.active i {
    background-color: #8EABDC;
    color: #fff;
}

ul.step-item-list a span {
    font-size: 18px;
}

.register-steps-header {
    /*display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;*/
    background-color: #8eabdc;
    box-shadow: 0px 5px 8px 1px rgb(0 0 0 / 7%);
}

.welcome-user {
    font-size: 16px;
    color: white;
}

@media (max-width:992px) {
    .welcome-user {
        font-size: 2vw;
    }
}

@media (max-width:576px) {
    .welcome-user {
        display: none;
    }
}

.reg-ster-steps-logo img {
    max-width: 100%;
}

.steps-wrapper-content-items {
    display: none;
}

    .steps-wrapper-content-items.active {
        display: block;
    }

.reg-header-buttons a {
    display: inline-flex;
    align-items: center;
    color: white;
}

    .reg-header-buttons a i {
        color: white;
        font-size: 25px;
    }

        .reg-header-buttons a i:hover {
            color: #484c5f;
        }

.page-wrapper .page-content {
    display: inline-block;
    width: 99%;
    min-height: calc(100vh - 110px);
}

.page-wrapper.toggled .page-content {
    padding-left: 260px;
    margin-top: 70px;
}

.nav-pills .nav-item .nav-link {
    color: #053F6D;
    text-decoration: none;
    transition: color 0.3s ease 0s;
}

    .nav-pills .nav-item .nav-link.active {
        color: #f3f3f3;
        background-color: transparent;
        border-color: transparent transparent #f3f3f3;
        font-size: 20px;
        font-weight: 600;
        background: rgb(245 245 245 / 49%);
        background-color: rgb(5 57 103);
    }

.admin-home-list {
    list-style: none;
}

/*Limit dropdowns to maximum height*/
.select2-dropdown {
    max-height: 300px;
    overflow: auto;
}

/*Limit report tables to maximum height*/
.report-table {
    max-height: 500px;
    overflow: auto;
}

.top-scroll {
    transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
}

/*--------------------------------------------------------------
# JQuery Toggle-Display
--------------------------------------------------------------*/
.hide {
    display: none;
}

/*--------------------------------------------------------------
# Identity Area
--------------------------------------------------------------*/

.register-wrapper-left {
    justify-content: center;
    background-size: cover;
    background-position: left center;
}

    .register-wrapper-left:after {
        background-color: rgb(5 49 87);
        content: '';
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        opacity: 0.73;
    }

.register-left-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 20px 30px;
}

.register-wrapper-right {
    margin: auto;
}

.register-right-content {
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
}

.register-wrapper-right h2,
p {
    color: rgb(5 49 87);
}

    .register-wrapper-right h2 .special-text {
        color: #8fabdc;
    }

.reg-copyright {
    color: #fff;
    font-size: 12px;
    padding-bottom: 5%;
    position: absolute;
    bottom: 0;
}


/* Slide toggle */

.register-slide-wrapper {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.register-button-slides {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

    .register-button-slides > li {
        margin-right: 10px;
        padding-left: 0;
    }

        .register-button-slides > li:last-child {
            margin-right: 0;
        }

        .register-button-slides > li > .btn {
            padding-left: 15px;
            padding-right: 15px;
        }

            .register-button-slides > li > .btn.active {
                background-color: #8fabdc !important;
                border-color: #8fabdc !important;
            }

#tabs {
}

    #tabs h6.section-title {
        color: #eee;
    }

    #tabs .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        color: #f3f3f3;
        background-color: transparent;
        border-color: transparent transparent #f3f3f3;
        border-bottom: 4px solid !important;
        font-size: 20px;
        font-weight: 600;
        background: rgb(245 245 245 / 49%);
        background-color: rgb(5 57 103);
    }


@media (min-width:992px) {
    .register-wrapper-left {
        min-height: 100vh;
    }
}

@media (max-width:991px) {
    .reg-copyright {
        font-size: 10px;
        padding-bottom: 0;
        right: 0;
    }
}

@media (min-width:1500px) {
    .register-right-content {
        max-width: 60%;
        margin: 0 auto;
    }
}

.btn-google {
    background-color: #f3f3f3;
}

.btn.btn-other-login {
    min-width: 200px;
    background-color: #43464d;
    border-color: #43464d;
    color: white;
}

.text-underline {
    text-decoration: underline;
}

/* External login buttons */

.btn-google:hover {
    background: #b22222;
    color: #fff;
}

.btn-facebook:hover {
    background: #2b4db1;
    color: #fff;
}

.btn-twitter:hover {
    background: #007bb6;
    color: #fff;
}

.btn-microsoft:hover {
    background: #00618E;
    color: #fff;
}

.btn-MyID:hover {
    background: rgb(0 0 0 / 42%);
    color: #fff;
}

.btn-facebook {
    background: #305c99;
    color: #fff;
}

.btn-twitter {
    background: #00cdff;
    color: #fff;
}

.btn-google {
    background: #d24228;
    color: #fff;
}

.btn-linkedin {
    background: #007bb6;
    color: #fff;
}

.btn-microsoft {
    background: #007bb6;
    color: #fff;
}

.btn-MyID {
    background: #c4c4c4;
    color: #fff;
}

.rotated {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
