@font-face {
    font-family: "Open-Sans";
    src: url("../fonts/OpenSans/OpenSans-Regular.ttf");
}

@font-face {
    font-family: "Open-Sans-bold";
    src: url("../fonts/OpenSans/OpenSans-Bold.ttf");
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    outline: none;
    font-family: "Open-Sans", Montserrat;
    font-weight: 400;
}

html {
    font-size: 100%;
}

@media (max-width: 500px) {
    html {
        font-size: 90%;
    }
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    padding: 10px 40px;
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    background-color: #0d5a9b;
    border: 1px solid #0d5a9b;
    border-radius: 4px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media (max-width: 900px) {
    .button,
    button,
    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        padding: 5px 20px;
        color: white;
        text-align: center;
        font-size: 14px;
        font-weight: normal;
    }
}

.button:hover,
.button:active,
.button:focus,
button:hover,
button:active,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:active,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="button"]:hover,
input[type="button"]:active,
input[type="button"]:focus {
    outline: 0;
    background-color: #333333;
}

.navbar-toggler:hover,
.navbar-toggler:active {
    background: #ffffff !important;
    color: #0d5a9b;
}

.btn-secondary {
    color: #fff;
    background-color: #0d5a9b;
    border-color: #0d5a9b;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}

.center {
    text-align: center !important;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #D3D3D3 !important;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #D3D3D3 !important;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #D3D3D3 !important;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #D3D3D3 !important;
}

.form-area {
    background: #ffffff;
    overflow-x: hidden;
}

.left-side {
    background-color: white;
    height: 100vh;
    padding: 30px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .left-side {
        height: 70px;
        padding: 10px;
    }
}

.left-side .logo {
    max-width: 230px;
}

@media (max-width: 900px) {
    .left-side .logo {
        max-width: 100px;
    }
}

.right-side {
    background: url(../img/login-bg.jpg) rgba(0, 0, 0, 0.5) no-repeat center;
    background-size: cover;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .right-side {
        height: auto;
        padding: 20px 0;
        background: #fff;
    }
}

.right-side .login-form {
    width: 350px;
    padding: 5px;
}

@media (max-width: 900px) {
    .right-side .login-form {
        max-width: 400px;
        padding: 20px;
    }

        .right-side .login-form .button-area {
            text-align: center;
        }
}

.right-side .login-form .heading-area {
    margin: 20px 0;
}

    .right-side .login-form .heading-area p {
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 0.1rem;
        color: #acacac;
    }

@media (max-width: 900px) {
    .right-side .login-form .heading-area {
        text-align: center;
    }
}

.right-side .login-form .heading-area .heading-title {
    font-size: 2.5rem;
    color: #333333;
    letter-spacing: 0.1rem;
    font-weight: bold;
}

    .right-side .login-form .heading-area .heading-title span {
        color: #0d5a9b;
        font-weight: bold;
    }

.right-side .login-form .input-wrapper {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

    .right-side .login-form .input-wrapper .input-wrapper lable {
        font-weight: 600 !important;
    }

@media (max-width: 900px) {
    .right-side .login-form .input-wrapper {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.right-side .login-form .input-wrapper .forgot-pw {
    color: #333333;
    font-size: 13px;
}

    .right-side .login-form .input-wrapper .forgot-pw:hover {
        text-decoration: none;
        color: #0d5a9b;
    }

.right-side .login-form .input-wrapper .login-input {
    background: #fff;
    height: 50px;
    color: #333333;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1rem;
    border: 2px solid #acacac;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .right-side .login-form .input-wrapper .login-input {
        background: #ffffff;
        border: 1px solid #f1f1f1;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.1rem;
        height: 38px;
    }
}

.body {
    font-size: 100% !important;
    background-color: #e5e8ef;
}

.top-nav .logo {
    padding: 0;
    margin: 0;
}

    .top-nav .logo img {
        height: 40px;
        width: auto;
    }

.top-nav .form-control {
    border: none;
    border-bottom: 1px solid #777777;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    margin-right: 0;
}

.top-nav .btn-outline-light {
    border: none;
    border-bottom: 1px solid #777777;
    border-radius: 0;
}

.top-nav i {
    color: #0d5a9b;
    font-size: 18px;
}

.top-nav .admin {
    color: #0d5a9b;
    font-size: 14px;
    font-weight: 600;
}

.top-nav .admin-mail {
    color: #333333;
    font-size: 12px;
    font-weight: 600;
}

.top-nav .badge-pill {
    position: absolute;
    right: 15px;
    top: -5px;
}

.top-nav .text-padding {
    padding: 0;
}

.top-nav .dropdown-item {
    font-size: 14px;
}

@media (max-width: 900px) {
    .top-nav .side-togg {
        display: none !important;
    }

    .top-nav .badge-pill {
        position: relative;
        right: 7px;
        top: -8px;
    }

    .top-nav .text-padding {
        padding: 5px;
    }
}

.top-nav .nav-link:hover,
.top-nav .nav-link .active {
    background: #e5e8ef !important;
    -webkit-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
}

@media all and (min-width: 992px) {
    .navbar {
        padding: 0.3rem 1rem;
    }

        .navbar .nav-item .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: 0.3s;
            transition: 0.3s;
            margin-top: 0;
        }

        .navbar .nav-item:hover .nav-link {
            color: #fff;
        }

        .navbar .dropdown-menu.fade-down {
            top: 80%;
            -webkit-transform: rotateX(-75deg);
            transform: rotateX(-75deg);
            -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
        }

        .navbar .dropdown-menu.fade-up {
            top: 180%;
        }

        .navbar .nav-item:hover .dropdown-menu {
            -webkit-transition: 0.3s;
            transition: 0.3s;
            opacity: 1;
            visibility: visible;
            top: 100%;
            -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
        }
}

.bg-mattBlackLight {
    background-color: #fff;
}

.text-mattBlackLight {
    color: #ffffff;
}

.wrapper {
    margin-top: 3.5rem;
}

    .wrapper .sideMenu {
        background: #0d5a9b;
        color: #ffffff;
        position: fixed;
        top: 0;
        bottom: 0;
        margin: 3.5rem auto auto;
        left: 0;
        width: 16.5rem;
        -webkit-transition: all ease 0.25s;
        transition: all ease 0.25s;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        /*z-index: 2000;*/
    }

    .wrapper .content {
        padding: 0 15px;
        margin-left: 0rem;
        -webkit-transition: all ease 0.25s;
        transition: all ease 0.25s;
    }

    .wrapper.active .sideMenu {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .wrapper .col-form-label,
    .wrapper .form-control {
        font-size: 14px;
        font-weight: 400;
    }

    .wrapper navbar-toggler:hover {
        background: transparent;
    }

.nav-link {
    padding: 12px;
}

.nav-link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: block;
    white-space: nowrap;
}

    .nav-link .icon {
        margin-right: 0.25rem;
        font-size: 1.25rem;
        vertical-align: middle;
        color: #fff;
        height: 1.375rem;
        width: 1.375rem;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .nav-link .text {
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        text-wrap: inherit
    }

    .nav-link:hover, .nav-link.active {
        background: #1175ca;
        -webkit-transition: background-color 0.5s ease-out;
        transition: background-color 0.5s ease-out;
    }

        .nav-link:hover .icon,
        .nav-link:hover .text, .nav-link.active .icon,
        .nav-link.active .text {
            color: #fff;
        }

.card-header {
    color: #0d5a9b;
    font-weight: 700;
}

.general-table-area {
    max-height: 400px;
    overflow-x: auto;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .wrapper .sideMenu {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .wrapper .content {
        margin-left: 16.5rem;
    }

    .wrapper.active .sideMenu {
        width: 5rem;
    }

        .wrapper.active .sideMenu .nav-link {
            text-align: center;
        }

            .wrapper.active .sideMenu .nav-link .icon {
                margin-right: 0;
            }

            .wrapper.active .sideMenu .nav-link .text {
                display: none;
            }

    .wrapper.active .content {
        margin-left: 5rem;
    }
}

.report {
    padding-top: 10px;
}

    .report h4 {
        color: #0d5a9b;
        font-weight: bolder;
        font-size: 30px;
    }

    .report h5 {
        color: #333333;
        font-weight: bolder;
        font-size: 28px;
    }

.competitors h5 {
    color: #0d5a9b;
}

.area-map {
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .dropdown-mob {
        text-align: center;
        padding: 15px !important;
    }

    .report h4 {
        font-size: 22px;
    }

    .report h5 {
        font-size: 22px;
    }
}

.rep-table .m-width {
    min-width: 250px !important;
}

.authorizations {
    width: 500px;
    text-align: center;
}


/** Validation Summary CSS Starting*/
.field-validation-error {
    color: red;
    font-size: 0.7em;
    /*font-weight: bold;*/
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    /*border: 1px solid #e80c4d;*/
    border: 1px solid red;
    background: #FFCECE !important;
}



input[type="checkbox"].input-validation-error {
    border: 0 none;
}


input[type="checkbox"] {
    width: 18px;
    height: 15px;
}

.validation-summary-errors {
    color: red;
    font-weight: bold;
    font-size: 0.1em;
}

.validation-summary-valid {
    display: none;
}

.message-info {
    border: 1px solid;
    clear: both;
    padding: 10px 20px;
}

.message-error {
    clear: both;
    color: red;
    font-size: 0.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.message-success {
    color: #7ac0da;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.error {
    color: #e80c4d;
}

.max-drop-down {
    height: 220px;
    max-width: 420px;
    overflow-y: scroll;
    font-size: 13px;
}

.small-font {
    font-size: 13px;
}

.m-img {
    width: 36px;
    height: 36px;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
}

.mini-btn {
    padding: .25rem .5rem !important;
    font-size: .875rem !important;
    line-height: 1.5 !important;
    border-radius: .2rem;
}

.mini-inputbtn {
    padding: .32rem 1.5rem !important;
    font-size: .875rem !important;
    line-height: 1.5 !important;
    border-radius: .2rem;
}

.blu-gradiant {
    background: rgb(68, 179, 241);
    background: linear-gradient(0deg, rgba(68, 179, 241, 1) 0%, rgba(236, 248, 253, 1) 100%);
}

.seagreen-gradiant {
    background: rgb(118, 215, 221);
    background: linear-gradient(0deg, rgba(118, 215, 221, 1) 0%, rgba(237, 249, 251, 1) 100%);
}

.yellow-gradiant {
    background: rgb(242, 203, 49);
    background: linear-gradient(0deg, rgba(242, 203, 49, 1) 0%, rgba(254, 250, 238, 1) 100%);
}

.dashboard {
    font-size: 16px !important;
    font-weight: bold;
}

    .dashboard a {
        font-size: 16px !important;
        font-weight: bold;
        color: #000;
        text-decoration: none;
    }
/****Ending of Validation summary*/

/*******Dta Table Validations*/

div.dataTables_wrapper {
    /*max-width: 1000px;*/
    margin: 10px 10px;
    font-size: 13px;
}

.dataTables_wrapper .dataTables_filter input {
    padding: 3px 5px;
}

.bg-veka {
    color: white;
    background-color: #0d5a9b;
}

table.dataTable tbody th,
table.dataTable tbody td {
    padding: 5px 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 1px;
    margin: 5px;
}
/******End of Datatable Validations*/


.add-btn {
    text-align: right !important;
}
/*Slim Scroll*/
.slimScrollBar {
    background-color: white !important;
    opacity: 0.9 !important;
}
/*Loader*/
#preloader {
    background: #e5eff1 url(/assets/img/loader.gif) no-repeat center center;
    background-size: 8%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100vh;
    width: 100%;
    z-index: 100;
}

.c-height {
    min-height: 150px;
    margin-bottom: 20px;
}
/*New Gradiants*/
.gradient-1 {
    background: rgba(0, 0, 0, 0) linear-gradient(-135deg, #004891 0%, #007d99 100%) repeat scroll 0 0
}

.gradient-2 {
    background: rgba(0, 0, 0, 0) linear-gradient(-135deg, #8854d0 0%, #a55eea 100%) repeat scroll 0 0
}

.gradient-3 {
    background: rgba(0, 0, 0, 0) linear-gradient(-135deg, #20bf6b 0%, #26de81 100%) repeat scroll 0 0;
}

.wrapword {
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 wrapword
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    white-space: -webkit-pre-wrap; /* Newer versions of Chrome/Safari*/
    word-break: break-all;
    white-space: normal;
    display: inline-table;
    padding-right: 30px
}

.nav-tabs .nav-link {
    background: transparent;
    border-bottom: 2PX solid #0d5a9b
}