﻿:root {
    --base-color: #4e4e4e;
    --base-color-secondary: #ebebeb;
    --button-fore-color: #fff;
    --button-fore-color-secondary: #4e4e4e;
    --button-background-mouseover-color: #222222;
    --button-fore-mouseover-color: #ffffff;
    --input-padding-x: 1.5rem;
    --input-padding-y: .75rem;
    --base-header-footer-bgcolor: #e5e5e5;
    --base-header-footer-color: #87764e;
    --base-link-color: #ff9933;
}

/*opensans fonts*/
@font-face {
    font-family: sans-serif;
    src: url('fonts/Light/OpenSans-Light.eot');
    src: local('Open Sans Light'), local('OpenSans-Light'), url('fonts/Light/OpenSans-Light.eot?#iefix') format('embedded-opentype'), url('fonts/Light/OpenSans-Light.woff2') format("woff2"), url('fonts/Light/OpenSans-Light.woff') format("woff"), url('fonts/Light/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: sans-serif;
    src: url('fonts/Regular/OpenSans-Regular.eot');
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url('fonts/Regular/OpenSans-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Regular/OpenSans-Regular.woff2') format("woff2"), url('fonts/Regular/OpenSans-Regular.woff') format("woff"), url('fonts/Regular/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: sans-serif;
    src: url('fonts/Semibold/OpenSans-Semibold.eot');
    src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url('fonts/Semibold/OpenSans-Semibold.eot?#iefix') format('embedded-opentype'), url('fonts/Semibold/OpenSans-Semibold.woff2') format("woff2"), url('fonts/Semibold/OpenSans-Semibold.woff') format("woff"), url('fonts/Semibold/OpenSans-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: sans-serif;
    src: url('fonts/Bold/OpenSans-Bold.eot');
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url('fonts/Bold/OpenSans-Bold.eot?#iefix') format('embedded-opentype'), url('fonts/Bold/OpenSans-Bold.woff2') format("woff2"), url('fonts/Bold/OpenSans-Bold.woff') format("woff"), url('fonts/Bold/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal
}

html, body {
    font-family: sans-serif !important;
    color: #000000;
    height: 100%;
    font-size: 14px;
}

a {
    color: var(--base-color);
}

a:hover {
    text-decoration: underline;
    color: var(--base-color);
}
.form-group {
    margin: 0 0 1rem;
}

    .form-group label {
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

.btn-wrapper {
    display: flex;
    margin: 0 0 1rem;
}

    .btn-wrapper .btn {
        margin-right: 30px;
    }

        .btn-wrapper .btn:last-child {
            margin-right: 0;
        }

.profile .dropdown .dropdown-item i {
    margin-right: 10px;
    width:14px;
}

.profile .dropdown-item.active, .profile .dropdown-item:active {
    color: #1e2125;
}

.profile .btn-black {
    border: none;
}
#loader {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../images/loader.png') 50% 50% no-repeat rgba(255,255,255,0.5);
}

#mainbody {
    /*background: url(../images/loginbg.png) no-repeat;*/
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    min-height: 100%;
}

.dropdown-item:active {
    background-color: transparent !important;
}

.maincontainer {
    padding-bottom: 40px;
    /*height:100%;*/
}

    #loginheader button {
    width: 50%;
}

.logobar {
    padding: 1rem 0;
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
    height: 8rem;
    color: var(--base-header-footer-color);
    background: var(--base-header-footer-bgcolor);
}

    .logobar .logo img {
        width: auto;
        height: auto;
        max-width: 23.5rem;
    }

    .logobar .logoright {
        font-size: 1.2rem;
        font-weight: 600;
    }

.loginwrap .btn-group {
    box-shadow: 0px 0px 6px #00000029;
}

.card-signin .btn-secondary {
    color: #000;
    background-color: #fff;
    border-color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-size: 12px;
    font-weight: 700;
    height: 56px;
}

    .card-signin .btn-secondary.active {
        color: #fff !important;
        background-color: var(--base-color) !important;
        border-color: var(--base-color) !important;
    }

.hrline {
    position: relative;
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
}

    .hrline::before,
    .hrline::after {
        position: absolute;
        top: 8px;
        content: "";
        width: 45%;
        height: 1px;
        background-color: #999;
    }

    .hrline:before {
        left: 0;
    }

    .hrline:after {
        right: 0;
    }
.orange {
    color: var(--base-link-color) !important;
}
.card-signin {
    background: rgba(255,255,255,.9);
    border: 0;
    border-radius: 0.4rem;
    /*box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);*/
    /*backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);*/
}
/*for firefox blur fix*/
@-moz-document url-prefix() {
    body {
        background: url(../images/loginbg.png) 0 / cover fixed;
    }

    #mainbody {
        background: none;
    }

    .card-signin {
        overflow: hidden;
    }

        .card-signin:before {
            position: absolute;
            content: "";
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            filter: blur(20px);
            background: url(../images/loginbg.png) 0 / cover fixed;
            z-index: -1;
        }
}

.card-signin .card-title {
    margin-bottom: .5rem;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 600;
}

.card-signin .card-description {
    padding: 0 2rem;
    color: #222222;
}

.card-signin .card-body {
    padding: 2rem 3rem 5rem;
}

.form-signin {
    width: 100%;
}

    .form-signin .btn {
        font-size: 80%;
        border-radius: 6px;
        font-weight: bold;
        padding: 0;
        height: 36px;
        transition: all 0.2s;
    }

.form-label-group {
    position: relative;
    margin-bottom: .75rem;
}

    .form-label-group label {
        font-size: 12px;
        margin-bottom: 0;
    }

    .form-label-group input,
    .form-label-group .form-control {
        height: 40px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        font-size: 1rem;
        padding-top: 0;
        padding-bottom: 0;
        /* border: 0; */
    }
.text-label {
    font-size: 12px;
    margin-bottom: 0;
}
    .text-label a {
        color: var(--base-link-color)
    }
    .form-check label {
    font-size: 12px;
    margin-bottom: 0;
}
.text-right {
    text-align: right !important;
}
/*.input-group .form-control {
    border-right: 0;
}*/

.form-label-group input::-webkit-input-placeholder,
.form-label-group .form-control::-webkit-input-placeholder {
    color: #666666;
    font-size: 12px;
}

.form-label-group input:-ms-input-placeholder,
.form-label-group .form-control:-ms-input-placeholder {
    color: #666666;
    font-size: 12px;
}

.form-label-group input::-ms-input-placeholder,
.form-label-group .form-control::-ms-input-placeholder {
    color: #666666;
    font-size: 12px;
}

.form-label-group input::-moz-placeholder,
.form-label-group .form-control::-moz-placeholder {
    color: #666666;
    font-size: 12px;
}

.form-label-group input::placeholder,
.form-label-group .form-control::placeholder {
    color: #666666;
    font-size: 12px;
}

.button-group-2 .btn {
    width: 48%;
}

    .button-group-2 .btn:nth-child(1) {
        margin-right: 1%;
    }

    .button-group-2 .btn:nth-child(2) {
        margin-left: 1%;
    }

.btn-black {
    color: var(--button-fore-color);
    background-color: var(--base-color);
    border: 2px solid var(--base-color);
    transition: .4s;
    border-radius: 6px;
    -webkit-border-radius: 6px;
}

.btn-black:disabled {
    background: #999999;
    color: #222222;
    border: 2px solid #999999;
    opacity: 1 !important;
}

.btn-black:disabled:hover {
    background-color: #999999;
    color: #222222 !important;
    border: 2px solid #999999;
    opacity: 1 !important;
}

.btn.withicon:disabled:hover svg {
    fill: #222222 !important;
}

.btn-black-line {
    color: #222222;
    border: 2px solid #222222;
    transition: .4s;
    border-radius: 6px;
    -webkit-border-radius: 6px;
}

.btn-black:hover {
    background-color: var(--button-background-mouseover-color);
    border-color: var(--button-background-mouseover-color);
    color: var(--button-fore-mouseover-color) !important;
}

.btn-black-line:hover {
    border-color: #222222;
    background-color: #222222;
    color: white;
}

.btn-blue {
    color: white;
    background-color: #4B7FF7;
    border-radius: 6px;
    -webkit-border-radius: 6px;
}

.btn-skyblue {
    color: var(--button-fore-color);
    background-color: var(--base-color);
    border-radius: 6px;
    -webkit-border-radius: 6px;
}

.btn-skyblue:hover {
    background-color: var(--button-background-mouseover-color);
    border-color: var(--button-background-mouseover-color);
    color: var(--button-fore-mouseover-color) !important;
}

.form-signin .btn-black:hover {
    color: #ffffff !important;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.02rem rgba(0,123,255,.25);
}
.profile a:hover{
    text-decoration: none !important;
}
.footer {
    background: var(--base-header-footer-bgcolor);
    height: 40px;
    margin-top: -41px;
    position: relative;
    border-top: 1px solid #ebebeb;
}

    .footer nav {
        height: 40px;
        font-size: 11px;
        font-weight: 600;
    }

        .footer nav .nav-item {
            margin-right: 1rem;
        }

        .footer nav.navbar-light .navbar-nav .nav-link {
            text-transform: uppercase;
            color: var(--base-header-footer-color);
        }

            .footer nav.navbar-light .navbar-nav .nav-link:hover {
                color: var(--base-color);
            }

        .footer nav .copy {
            color: #666666;
        }

.pwdbtn {
    height: 40px;
    background-color: #fff;
    border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    padding: 2px 10px;
    border: 1px solid #ced4da;
    border-left: 0;
}

    .pwdbtn .btn:focus, .pwdbtn .btn:active {
        border: 0;
        box-shadow: none;
    }

.fs-85 {
    font-size: .85rem;
}
.btn.btn-black {
    padding: .375rem .75rem;
}
/* Fallback for Edge
  -------------------------------------------------- */

@supports (-ms-ime-align: auto) {
    .form-label-group > label {
        display: none;
    }

    .form-label-group input::-ms-input-placeholder {
        color: #777;
    }
}

/* Fallback for IE
  -------------------------------------------------- */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-label-group > label {
        display: none;
    }

    .form-label-group input:-ms-input-placeholder {
        color: #777;
    }
}

.regwrap .card-signin .card-body {
    padding-bottom: 2.5rem;
}

.regwrap .reg-title {
    color: #222222;
    background: #ffffff;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 0.4rem 0.4rem 0 0;
    padding: 1rem 0;
}

    .regwrap .reg-title .card-description {
        font-size: 14px;
        margin-bottom: 0;
        padding: 0 2rem;
    }

.form-newaccount label {
    line-height: 1rem;
    width: 100%;
    font-size: 1rem !important;
}

    .form-newaccount label div.a1 {
        border: 1px solid #999;
    }

    .form-newaccount label ul {
        margin: 0;
        padding-left: 1rem;
        line-height: 1.25rem;
        font-weight: 400;
    }

        .form-newaccount label ul li {
            padding: .1rem 0;
            line-height: 1.5;
        }

    .form-newaccount label p {
        line-height: 1.5;
    }

/*checkbox*/
.span_pseudo, .chiller_cb span:before, .chiller_cb span:after {
    content: "";
    display: inline-block;
    background: #4E8E3C;
    width: 0;
    height: 0.2rem;
    position: absolute;
    transform-origin: 0% 0%;
}

.chiller_cb {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

    .chiller_cb input {
        display: none;
    }

        .chiller_cb input:checked ~ span {
            background: transparent;
            border-color: #4E8E3C;
        }

            .chiller_cb input:checked ~ span:before {
                width: .6rem;
                height: 0.14rem;
                transition: width 0.1s;
                transition-delay: 0.3s;
            }

            .chiller_cb input:checked ~ span:after {
                width: 0.25rem;
                height: 0.14rem;
                transition: width 0.1s;
                transition-delay: 0.2s;
            }

        .chiller_cb input:disabled ~ span {
            background: #ececec;
            border-color: #dcdcdc;
        }

        .chiller_cb input:disabled ~ label {
            color: #000;
        }

            .chiller_cb input:disabled ~ label:hover {
                cursor: default;
            }

    .chiller_cb label {
        padding-left: 2rem;
        position: relative;
        z-index: 2;
        cursor: pointer;
        margin-bottom: 0;
        font-size: 14px;
        line-height: 1rem;
        color: #000000;
        font-weight: 400;
    }

    .chiller_cb span {
        display: inline-block;
        width: 14px;
        height: 14px;
        border: .14rem solid #000000;
        border-radius: 100%;
        position: absolute;
        left: 0;
        transition: all 0.2s;
        z-index: 1;
        box-sizing: content-box;
    }

.term_cb span {
    border-radius: 3px;
}

.chiller_cb span:before {
    transform: rotate(-42deg);
    top: .73rem;
    left: 0.3rem;
}

.chiller_cb span:after {
    transform: rotate(55deg);
    bottom: 0.395rem;
    left: 0.273rem;
}

.chiller_cb.chiller_rd span {
    width: 14px;
    height: 14px;
}

.chiller_cb.chiller_rd input:checked ~ span:before {
    width: 8px;
    height: 8px;
    transition: width 0.1s;
    transition-delay: 0.3s;
    border-radius: 100%;
    top: 0.475rem;
    left: .075rem;
}

.chiller_cb.chiller_rd input:checked ~ span:after {
    display: none;
}

.error {
    font-size: 12px;
    padding-top: 5px;
    color: red;
    display: block;
}

.error-hightlight-outline {
    border: 1px solid #d9534f !important;
}

.error-duplicate {
    font-size: 12px;
    padding-top: 5px;
    color: red;
    display: block;
    padding-bottom: 10px;
}

.error-fileupload {
    font-size: 12px;
    padding-top: 5px;
    color: red;
    display: block;
}

/*Account Setup Wizard*/
.accountsetup .progressbar {
    color: #222222;
    background: #ffffff;
    /*box-shadow: 0px 0px 6px #00000029;*/
    border-radius: 0.4rem 0.4rem 0 0;
    padding: 1rem 0;
}
/*progress wizard*/
.bs-wizard {
    margin-top: 40px;
}

/*Form Wizard*/
.progress {
    position: relative;
    display: flex;
    background: none;
    height: auto;
    overflow: visible;
    border-radius: 0;
    max-width: 80%;
    margin: 3rem auto;
}

    .progress:before {
        content: "";
        background: #000;
        width: 80%;
        height: 6px;
        position: absolute;
        top: 9px;
        left: 10%;
    }

    .progress-upload:before {
        content: "";
        background: #000;
        width: 75% !important;
        height: 6px;
        position: absolute;
        top: 9px;
        left: 12.5% !important;
    }

    .progress .progress-track {
        position: absolute;
        top: 5px;
        width: 100%;
        height: 2px;
        background-color: #dfe3e4;
        z-index: -1;
    }

    .progress .progress-step {
        position: relative;
        width: 100%;
        font-size: 12px;
        text-align: center;
    }

        .progress .progress-step:last-child:after {
            display: none;
        }

        .progress .progress-step:before {
            content: "";
            display: flex;
            margin: 0 auto;
            margin-bottom: 10px;
            width: 25px;
            height: 25px;
            background: #000;
            border: .25rem solid #000;
            border-radius: 100%;
            color: #fff;
            font-size: 8px;
        }

        .progress .progress-step:after {
            content: "";
            position: absolute;
            top: 11px;
            left: 50%;
            width: 0%;
            transition: width 1s ease-in;
            height: 2px;
            background: #dfe3e4;
            z-index: 1;
        }

        .progress .progress-step.is-active {
            color: var(--base-color);
        }

            .progress .progress-step.is-active:before {
                border: 4px solid #000;
                animation: pulse 2s infinite;
                background: var(--base-color);
                transition: background-color 0.8s ease-out;
            }

            .progress .progress-step.is-active:after {
                width: 8%;
                background: var(--base-color);
                transition: width 1.4s ease-in;
            }

        .progress .progress-step.is-complete {
            color: var(--base-color);
        }

            .progress .progress-step.is-complete:before {
                font-family: FontAwesome;
                font-size: 10px;
                color: #fff;
                background: var(--base-color);
                border: 4px solid #000;
            }

            .progress .progress-step.is-complete:after {
                background: var(--base-color);
                animation: nextStep 1s;
                animation-fill-mode: forwards;
            }

        .progress .progress-step .textdata {
            margin-top: -55px;
            position: relative;
            font-size: 10px;
            color: #666666;
            font-weight: 700;
            text-transform: uppercase;
        }

            .progress .progress-step .textdata .chkicn {
                position: absolute;
                top: 15px;
                left: 50%;
                top: 28px;
                font-size: 8px;
                -webkit-transform: translateX(-50%);
                -moz-transform: translateX(-50%);
                transform: translateX(-50%);
                z-index: 10;
                display: none;
                color: #000;
            }

        .progress .progress-step.is-complete .textdata .chkicn {
            display: block;
        }

    /*#dxFilesSwitch {
        width: 12% !important;
    }*/

@keyframes pulse {
    0% {
        /* box-shadow: 0 0 0 0 rgba(33, 131, 221, 0.4); */
        box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 153, 51, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 51, 0);
    }
}

@keyframes nextStep {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}
/*END Form Wizard*/

/*Top navigation*/
.topnavigation .nav-item .badge {
    font-size: 11px;
    font-weight: 400;
    border-radius: 100%;
    -webkit-border-radius: 100%;
}

.warningicn {
    font-size: 11px;
    color: #d00000;
    vertical-align: middle;
}

.warningicn-yellow {
    font-size: 1.5rem;
    color: #eed202;
    vertical-align: middle;
}

.warningicn-red {
    font-size: 1.5rem;
    color: #d00000;
    vertical-align: middle;
}

.topnavigation .nav-link {
    font-size: 12px;
    color: #222222;
    text-transform: uppercase;
    margin-left: 2rem;
    font-weight: 700;
    padding-bottom: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: inline-block;
}

    .topnavigation .nav-link.btn {
        color: var(--button-fore-color);
        width: 100px;
        height: 36px;
        border: 0;
        line-height: 2;
        margin-top: -3px;
    }

    .topnavigation .nav-link {
        border: 2px solid #ffffff;
    }

    .topnavigation .nav-link:hover {
        border-bottom: 2px solid var(--button-background-mouseover-color);
    }

    .topnavigation .navbar-nav .dropdown-toggle::after {
        vertical-align: .2em;
        border-top: .35em solid;
    }

.topnavigation .navbar-nav .dropdown-menu {
    box-shadow: 0px 4px 6px 0 rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 4px 6px 0 rgba(0,0,0,0.1);
}

.topnavigation .dropdown-item {
    font-size: 12px;
    color: #222222;
    text-transform: uppercase;
    font-weight: 700;
    padding: .5rem 1rem;
}

.topnavwrap .topnavlogo {
    display: none;
}

.topnavigation .navbar-toggler {
}

    .topnavigation .navbar-toggler:focus {
        border: 0;
        outline: 0;
    }

    .topnavigation .navbar-toggler .navbar-toggler-icon {
        width: 1.75em;
        height: 1.75rem;
    }

    .topnavigation .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
        background: url("../images/hamburger.svg") no-repeat;
        background-size: 28px;
    }

    .topnavigation .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: url("../images/hamburger-close.svg") no-repeat;
        background-size: 28px;
    }

/*Table css*/
.bootstrap-table .toolbar {
    padding: 1rem 0;
    position: relative;
}

    .bootstrap-table .toolbar .btn {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .05rem;
        font-weight: 600;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        padding: 8px 10px;
    }

        .bootstrap-table .toolbar .btn i {
            margin-right: 5px;
        }

    .bootstrap-table .toolbar .autosaved {
        font-size: 10px;
        text-transform: uppercase;
        color: #666666;
        font-weight: 600;
        position: absolute;
        right: 0;
        bottom: 1rem;
    }

.bootstrap-table .table {
    background: #fff;
    font-size: 14px;
}

    .bootstrap-table .table thead {
        box-shadow: 0px 3px 6px #00000029;
    }

        .bootstrap-table .table thead th {
            font-size: 10px;
            padding: .75rem;
            text-transform: uppercase;
            font-weight: 700;
            text-align: left;
            min-width: 145px;
        }

    .bootstrap-table .table .chkboxth {
        width: 40px;
        vertical-align: middle;
        min-width: unset;
    }

        .bootstrap-table .table .chkboxth .chkbox {
            border: 1px solid #707070;
            border-radius: 0;
            -webkit-border-radius: 0;
        }

    .bootstrap-table .table td {
        padding: .65rem;
    }

    .bootstrap-table .table tr.editrow {
        background: #F8F8F8;
    }

        .bootstrap-table .table tr.editrow input[type="text"] {
            border: .1rem solid #707070;
            padding: .1rem .4rem;
            width: 100%;
        }

    .bootstrap-table .table thead th .icon {
        padding: .2rem;
        vertical-align: text-top;
    }

    .bootstrap-table .table thead th .sorticon i {
        font-size: 14px;
    }

    .bootstrap-table .table thead th .filtericon i {
        font-size: 8px;
    }

/*Table css for data privacy agreement*/

.dpa-table thead th {
    position: sticky;
    top: -15px;
    z-index: 1;
}

.toolbar-bottom {
    padding: 1rem 0;
    border-top: 1px solid #222222;
}

    .toolbar-bottom .btn {
        font-size: 12px;
        letter-spacing: .05rem;
        font-weight: 600;
        min-width: 140px;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        padding: 8px 10px;
    }

.schooltbl {
    width: 55%;
}

.usertbl {
    width: 75%;
}

.admintbl {
    width: 95%;
}

.tellus-wrap {
    width: 35%;
}
/*card*/
.card {
    box-shadow: 0px 0px 6px #00000029;
    -webkit-box-shadow: 0px 0px 6px #00000029;
    border-radius: 6px;
    -webkit-border-radius: 6px;
}

.form-newaccount > .card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
    cursor: pointer;
}

.form-newaccount > .plantype:hover {
    transform: none;
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.form-newaccount > .card {
    padding: 1rem !important;
}

.card-input-element:checked + .card {
    border: 2px solid #f89938;
}

/*Popover*/
.popover {
    width: 180px;
    text-align: left;
}

    .popover .popover-header {
        background: #000000;
        color: #fff;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .05rem;
        text-transform: uppercase;
    }

    .popover p {
        font-size: 10px;
        color: #000;
        font-weight: 600;
    }

    .popover.bs-popover-bottom > .arrow:after {
        border-bottom-color: #000;
    }

    .popover.bs-popover-bottom .popover-header:before {
        border-bottom: 0 !important;
    }

/*Tabs*/
.nav-pills.navtabs .nav-item {
    margin-right: 2rem;
}

.nav-pills.navtabs .nav-link {
    border-bottom: 2px solid #fff;
    border-radius: 0;
    color: #666666;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    padding: 0;
    padding-bottom: .2rem;
    letter-spacing: 0.03rem;
    display: inline-block;
}

    .nav-pills.navtabs .nav-link.active {
        border-bottom: 3px solid var(--base-color);
        background: none;
        color: #222222;
    }

/*users screen*/
.uploadfiles .progressbar {
    background: #fff;
    padding: 1rem 2rem 0;
}

.uploadfiles .card-body {
    padding: 1.5rem 2rem 3rem;
}

.uploadcards .cardwrap {
    width: 180px;
}

.uploadcards .card {
    width: 180px;
    height: 180px;
    background: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
    border: 4px solid #ffffff;
    cursor: pointer;
    border-radius: 8px;
}

    .uploadcards .card .icon svg {
        fill: #222222;
    }

.uploadcards p {
    color: #666666;
    font-size: 12px;
}

    .uploadcards p.description {
        color: #222222;
        font-size: 14px;
    }

.uploadcards .card.active {
    border: 4px solid #222222;
}

    .uploadcards .card.active .icon svg {
        fill: var(--base-color);
    }

    .uploadcards .card.active p {
        color: #222222;
    }

.uploadfiles .uploadfilecontent {
    width: 70%;
    margin: 0 auto;
}

.uploadfiles .withoutbgcolor .table {
    background: none;
}

    .uploadfiles .withoutbgcolor .table thead {
        box-shadow: none;
    }

        .uploadfiles .withoutbgcolor .table thead th {
            padding-bottom: .2rem;
            border-top: 0;
            border-bottom: 1px solid #707070;
        }

    .uploadfiles .withoutbgcolor .table td {
        border-bottom: 1px solid #707070;
    }

.uploadfiles .withoutbgcolor .dx-datagrid {
    background: none !important;
}

.uploadfiles .withoutbgcolor .dx-texteditor.dx-editor-outlined {
    background: none !important;
    border: 1px solid #333 !important;
}

.uploadfiles .withoutbgcolor .dx-placeholder {
    color: #333 !important;
}

.uploadfiles .withoutbgcolor .dx-datagrid .dx-datagrid-headers {
    border-bottom: 1px solid #333;
}

.uploadfiles .withoutbgcolor .dx-datagrid .dx-data-row > td {
    padding: .85rem .65rem;
    border: 0;
    border-bottom: 1px solid #333;
}

.uploadfiles .withoutbgcolor .dx-datagrid-header-panel {
    border-bottom: none !important;
}

.uploadfiles .withoutbgcolor .dx-datagrid-borders .dx-datagrid-rowsview, .dx-datagrid-headers + .dx-datagrid-rowsview {
    border-top: none !important;
}

.uploadfiles .warning-close {
    position: absolute;
    right: 8px;
    top: 2px;
    cursor: pointer;
}

.uploadfiles .fileuploadinfo .warning-close.icon i {
    font-size: 1rem;
}

.btn.tblbtn {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .05rem;
}

.btn.withicon {
    fill: white;
    vertical-align: middle;
}

    .btn.withicon svg {
        width: 15px;
        height: 12px;
        fill: #222222;
        margin-right: 5px;
    }

    .btn.withicon:hover svg {
        fill: #fff;
    }

/*File upload model*/
.font-12 {
    font-size: 12px;
}

.font-10 {
    font-size: 10px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-20 {
    font-size: 20px;
}

.fileuploadmodal .dropfilebox .dx-fileuploader-input-wrapper {
    background: #F2F2F2;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px dashed #C9C9C9;
    width: 100%;
    display: flex;
    height: 180px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.fileuploadmodal .dropfilebox p {
    width: 100%;
    text-align: center;
}

    .fileuploadmodal .dropfilebox p svg {
        fill: #000;
        width: 15px;
    }

.fileuploadmodal .chiller_cb {
    padding: 0.3rem 0;
}

.fileuploadmodal .listedfiles table {
    border-collapse: collapse;
}

.fileuploadmodal .listedfiles td {
    font-size: 14px;
    padding: .3rem .5rem .3rem .2rem;
}

.fileuploadmodal .dx-fileuploader-button {
    color: white;
    background-color: #222222;
    border: 2px solid #222222;
    transition: .4s;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    order: 2;
    width: 200px;
    margin: 0 auto;
}

    .fileuploadmodal .dx-fileuploader-button:hover {
        background-color: var(--base-color);
        border-color: var(--base-color);
        color: #000;
    }

.fileuploadmodal .dx-fileuploader-input-container {
    height: auto;
}

.fileuploadmodal .dx-fileuploader-files-container .dx-fileuploader-upload-button,
.fileuploadmodal .dx-fileuploader-files-container .dx-fileuploader-upload-button:hover {
    display: none;
}

.fileuploadmodal .dx-fileuploader-upload-button,
.fileuploadmodal .dx-fileuploader-upload-button:hover {
    display: none;
}

.fileuploadmodal .dx-fileuploader-cancel-button,
.fileuploadmodal .dx-fileuploader-cancel-button:hover {
    background-color: transparent;
    border: 0;
    width: auto;
}

.fileuploadmodal .dx-fileuploader-dragover .dx-fileuploader-input-container {
    height: 100%;
}

.fileuploadmodal .dx-fileuploader-file-status-message {
    height: auto;
    white-space: normal;
}

.fileuploadmodal .dx-fileuploader-file-container {
    padding-bottom: 1rem;
}

    .fileuploadmodal .dx-fileuploader-file-container .dx-fileuploader-button-container {
        margin-left: 15px;
        float: right;
    }

    .fileuploadmodal .dx-fileuploader-file-container .dx-fileuploader-file {
        width: auto;
        flex: 0 1;
    }

.rednote {
    color: #9D0000;
    white-space: normal;
}

.upload-option-note {
    font-size: 14px;
    color: red;
}

    .upload-option-note .icon i {
        color: #333;
    }

.fileuploadmodal .uploadFileOption {
    top: 5px;
}

.fileuploadmodal .toolbar-bottom {
    padding: 0;
    border-top: 0;
}

.fileuploadmodal .chiller_cb label {
    line-height: 1.3rem;
}

.fileuploadmodal .chiller_cb .spnwipewarning {
    display: contents !important;
    color: red;
    font-style: italic;
    font-size: 13px;
}

.modal {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.modal-header {
    box-shadow: 0px 0px 6px #00000029;
    -webkit-box-shadow: 0px 0px 6px #00000029;
}

.modal-dialog {
    overflow-y: initial !important
}

.modal-body {
    max-height: 500px;
    overflow-y: auto;
}

.modal-dialog {
    max-width: 76% !important;
}

.fileuploadmodal .modal-dialog {
    max-width: 600px !important;
}

.errorfile .modal-body {
    max-height: 650px !important;
}

/*profile tab*/
.cleverbox {
    margin-top: 2.5rem;
    border-radius: 6px;
    -webkit-border-radius: 6px;
}

/*user tab*/
.userinfo .icon i {
    font-size: 1.75rem;
}

.userinfo .mw-50 {
    max-width: 50%;
}

.mwidth-50 {
    max-width: 50%;
}

.mwidth-80 {
    max-width: 80%;
}

.mwidth-85 {
    max-width: 85%;
}

/*plans tab*/
.planscard .planstbl {
    font-size: 12px;
}

    .planscard .planstbl tr td {
        vertical-align: middle;
        padding: 1rem;
    }

        .planscard .planstbl tr td:nth-child(1) {
            width: 40%;
        }

        .planscard .planstbl tr td:nth-child(2) {
            width: 30%;
        }

        .planscard .planstbl tr td:nth-child(3) {
            width: 30%;
            text-align: center;
        }

/*bordered input*/
.inputform .form-control {
    border: 1px solid #D0D0D0;
    height: 40px;
}

#expirationdatemm, #expirationdateyy, #cvc {
    width: 80px;
}

/*visualizer*/
.other-card-body {
    background: rgba(255,255,255,.675);
    padding: 2rem;
    border-radius: 0 0 6px 6px;
    -webkit-border-radius: 0 0 6px 6px;
    box-shadow: 0px 0px 6px #00000029;
    -webkit-box-shadow: 0px 0px 6px #00000029;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
}

.visualizerbody {
    background: none;
    backdrop-filter: none;
    box-shadow: none;
}

    .visualizerbody .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .visualizerbody .column {
        background: none;
        backdrop-filter: none;
        box-shadow: none;
        padding-right: 5px;
        padding-left: 5px;
    }

    /*.visualizerbody #pills-admin {
        padding: 5px;
    }*/

    .visualizerbody .card .noboxtitle {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: .01rem;
        color: #3f6182;
    }

    .visualizerbody .card .noboxbigtitle {
        font-size: 20px;
        font-weight: 400;
        letter-spacing: .01rem;
        margin-top: 1rem;
        margin-bottom: 0;
        color: #3f6182;
    }

    .visualizerbody .card {
        border-radius: 0;
        padding: 1rem;
        background: #f0efee;
        margin-bottom: .75rem;
    }

        .visualizerbody .card.overall {
            background: #f0efee url(../images/overall-satisfaction.jpg) 94% 10% no-repeat;
            background-size: 35%;
        }

        .visualizerbody .card.toprating {
            background: #f0efee url(../images/top-rated.jpg) 94% 10% no-repeat;
            background-size: 35%;
        }

        .visualizerbody .card .icon {
            width: 50%;
        }

        .visualizerbody .card .bigfont {
            font-size: 18px;
        }


    .visualizerbody .countby .info .purple {
        color: #866bc9;
        font-size: 16px;
        font-weight: 600;
    }

    .visualizerbody .countby .info .pink {
        color: #fb6b88;
        font-size: 16px;
        font-weight: 600;
    }

    .visualizerbody .countby .info .number {
        color: #2c5277;
        font-size: 24px;
        font-weight: 400;
    }

    .visualizerbody .box {
        background: #ffffff;
        padding: 0;
    }

        .visualizerbody .box .card-body {
            padding: 1rem;
            height: 226px;
            min-height: 226px;
        }

    .visualizerbody .boxtitle {
        font-size: 14px;
        font-weight: 600;
        color: #494f5d;
        background: #f2f2f2;
        padding: .75rem;
        border-bottom: 1px solid #efefef;
        margin-bottom: 0;
    }

    .visualizerbody .form-control.grey {
        background: #e9e9e9;
        border-color: #e9e9e9;
    }

    .visualizerbody .box .img-fluid {
        max-height: 100%;
    }

    .visualizerbody .subcol2 .box .card-body {
        height: 161px;
        min-height: 161px;
    }

    .visualizerbody .nav-link:hover {
        cursor: pointer;
    }

    .visualizerbody .username {
        font-size: 14px;
        margin-bottom: .5rem;
        font-weight: 700;
    }

/*Overwrite devexpress CSS*/
.status-icon {
    height: 16px;
    width: 16px;
    display: inline-block;
    margin-right: 8px;
}

.middle {
    vertical-align: middle;
}

.dx-datagrid-headers {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
    min-width: 145px;
    vertical-align: bottom;
    border-bottom: 0px solid #dee2e6;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1);
    font-family: sans-serif !important;
    color: #000;
    letter-spacing: 0.025rem;
}

.dx-datagrid-borders > .dx-datagrid-rowsview {
    border-left: 0;
    border-right: 0;
}

.dx-datagrid-content .dx-datagrid-table .dx-row > td, .dx-datagrid-content .dx-datagrid-table .dx-row > tr > td {
    vertical-align: middle;
}

.dx-datagrid-borders > .dx-datagrid-headers, .dx-datagrid-headers .dx-datagrid-table .dx-row > td {
    border: 0;
}

.dx-datagrid-header-panel .dx-toolbar {
    background: transparent;
}

.dx-toolbar .dx-toolbar-items-container {
    height: 50px;
}

.dx-datagrid .dx-row > td {
    padding: .85rem .65rem;
    border: 0;
    border-bottom: 1px solid #dee2e6;
}

.dx-datagrid .dx-column-indicators {
}

    .dx-datagrid .dx-column-indicators .dx-header-filter {
        font-size: 9px;
        color: #000;
    }

.dx-datagrid-focus-overlay {
    display: none !important;
}

.dx-datagrid-content .dx-datagrid-table .dx-row .dx-cell-modified {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

    .dx-datagrid-content .dx-datagrid-table .dx-row .dx-cell-modified .dx-texteditor-container {
        border: .1rem solid #707070;
    }

.dx-datagrid-headers .dx-texteditor-input, .dx-datagrid-rowsview .dx-texteditor-input {
    min-height: 26px;
}

.dx-datagrid-rowsview .dx-row-focused.dx-data-row:not(.dx-row-lines) > td, .dx-datagrid-rowsview .dx-row-focused.dx-data-row:not(.dx-row-lines) > tr:first-child > td,
.dx-datagrid-rowsview .dx-row-focused.dx-data-row .dx-command-edit:not(.dx-focused) .dx-link, .dx-datagrid-rowsview .dx-row-focused.dx-data-row > td:not(.dx-focused), .dx-datagrid-rowsview .dx-row-focused.dx-data-row > tr > td:not(.dx-focused) {
    border-color: #dee2e6;
    background: #dee2e6;
    color: #000;
}

.dx-datagrid-search-panel.dx-searchbox {
    margin-right: 15px !important;
    margin-left: 0px;
}

.dx-datagrid-header-panel .dx-toolbar {
    margin-bottom: 0px !important;
}

.dx-datagrid-headers .dx-datagrid-table .dx-row > td {
    padding: .85rem .65rem !important;
    vertical-align: middle !important;
    position: relative;
}

.dx-datagrid .dx-link {
    color: #000;
}

.dx-datagrid-rowsview .dx-row.error-hightlight-outline td {
    border-top: 0.15rem solid #d9534f !important;
    border-bottom: 0.15rem solid #d9534f !important;
}

.edit-popup .dx-toolbar .dx-toolbar-after {
    width: auto !important;
}

#dvInfoRole, #dvInfoAccess, #dvInfoACTCode {
    position: absolute;
    right: 30px;
    top: 13px;
}

#dvNSCInfoStatus, #dvSAInfoStatus {
    position: absolute;
    right: 30px;
    top: 10px;
}

.file-in-progress {
    background: url('../images/pageloader1.png') 90% 10px no-repeat rgba(255,255,255,0);
    background-size: 12%;
}

.paddingLeft10 {
    padding-left: 10px;
}

.paddingLeft25 {
    padding-left: 25px;
}

.padding0 {
    padding: 0 !important;
}

.marginBottom0 {
    margin-bottom: 0px;
}

.marginBottom2 {
    margin-bottom: 2rem;
}

.embedContainer {
    height: 720px;
    background: #fff;
    text-align: center;
    position: relative;
}

.embedContainer .nodata {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 200px;
}

.word-wrapped {
    white-space: normal;
    word-wrap: break-word;
}

.settings .toolbar-bottom {
    border-top: 0;
}

.font-style-italic {
    font-style: italic;
}

.uploadfiles .timer {
    font-size: 14px;
    font-style: italic;
}

/*Support page css*/
.accordion .fa {
    margin-right: 0.5rem;
}

.accordion .btn-link:focus,
.accordion .btn-link:active {
    outline: none;
    box-shadow: none;
}

.accordion .btn-link {
    color: #000;
}

.accordion .btn-link:hover{
    text-decoration: none !important;
}

.usertbl .dx-dropdowneditor-button {
    width: 25px !important;
    min-width: 25px !important;
}

.usertbl .dx-dropdowneditor-icon {
    width: 23px !important;
}

.usertbl .dx-show-clear-button .dx-clear-button-area {
    width: 20px !important;
    min-width: 20px !important;
}

.usertbl .dx-show-clear-button .dx-icon-clear {
    width: 18px !important;
    padding-left: 0px !important;
}

/* About */
.card-about {
    background: #ffffff;
    padding: 2rem;
}

    .card-about.card-feedback {
        background: rgba(255,255,255,.675);
    }

.card-signin .card-title.text-normal {
    text-transform: none;
}

.abouttbl {
    width: 70%;
}

.aboutfulltbl {
    width: 100%;
}

.link-orange {
    color: #ed7d31;
    font-weight: 600;
}

.card-signin.card-about .card-body {
    padding: 2rem;
}

/* Members section */
.members-section {
    margin-top: 2rem;
}

.profile-card {
    width: 100%;
    min-height: 400px;
    height: 100%;
    perspective: 1000px;
    cursor: pointer;
}

.profile-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.profile-card:hover .profile-card-back {
    min-height: 400px;
    max-height: 800px;
    bottom: 0;
    height: auto;
    width: 150%;
}

.profile-card:hover .profile-card-inner {
    transform: rotateY(180deg);
}

.profile-card-front, .profile-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.profile-card-front {
    background-color: #fff;
    color: #000;
    box-shadow: 0 6px 12px rgba(247,153,57,.3);
    padding: 15px 10px;
    max-height: 400px;
}

.profile-card-back {
    background-color: #fff;
    transform: rotateY(180deg);
    box-shadow: 0 6px 12px rgba(247,153,57,.3);
    border: 1px solid #000;
    overflow: hidden;
}

.profile-card .profile-card-front .profile-image {
    margin: 1rem 0;
}

    .profile-card .profile-card-front .profile-image img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin: 0 auto;
        object-fit: cover;
    }

.profile-card .profile-card-front .profile-link {
    text-align: right;
}

    .profile-card .profile-card-front .profile-link a {
        color: #eac79c;
        display: block;
        margin: 0 0 1rem;
    }

.profile-card .profile-card-front .member-name {
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.profile-card .profile-card-front .member-designation {
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0.5rem 0 1rem;
}

.profile-card .member-email {
    margin: 0 0 1rem;
    font-size: 9px;
}

    .profile-card .member-email a {
        color: #eac79c;
        margin: 0.5rem 0 1rem;
    }

.profile-card .member-phone {
    margin: 0.5rem 0;
}

    .profile-card .member-phone a {
        color: #000000;
    }

.profile-card .profile-card-back .profile-name-wrapper {
    background: #f79939;
    padding: 10px 8px;
    color: #ffffff;
}

    .profile-card .profile-card-back .profile-name-wrapper .profile-image {
        float: left;
    }

        .profile-card .profile-card-back .profile-name-wrapper .profile-image img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin: 0 auto;
            object-fit: cover;
        }

.profile-card .profile-card-back .profile-name-content {
    margin-left: 40px;
    text-align: left;
    font-size: 10px;
}

    .profile-card .profile-card-back .profile-name-content .member-name {
        margin: 0 0 0.5rem;
    }

.profile-card .profile-card-back .profile-back-content {
    padding: 10px;
    text-align: left;
    font-size: 11px;
}

.socialmedia-icons {
    margin: 0.5rem 0 0;
    padding: 0;
    list-style: none;
}

    .socialmedia-icons li {
        display: inline-block;
        margin: 0 2px;
    }

        .socialmedia-icons li:first-child {
            margin-left: 0;
        }

        .socialmedia-icons li:last-child {
            margin-right: 0;
        }

        .socialmedia-icons li a {
            font-size: 24px;
        }

    .socialmedia-icons ul li a em.fas {
        font-family: "Font Awesome 5 Brands" !important;
    }

    .socialmedia-icons .fa, .socialmedia-icons .far, .socialmedia-icons .fas {
        font-family: "Font Awesome 5 Brands" !important;
    }

        .socialmedia-icons .fas.fa-facebook-square {
            color: #3a5898;
        }

        .socialmedia-icons .fas.fa-linkedin {
            color: #0176b6;
        }

        .socialmedia-icons .fas.fa-twitter-square {
            color: #1ba0f3;
        }

        .socialmedia-icons .fas.fa-envelope-square {
            color: #5ab4e5;
            font-family: "Font Awesome 5 Free" !important;
        }

        .socialmedia-icons .fas.fa-vimeo-square {
            color: #1ab7ea;
        }

/* Contactus */
.contact-section {
    margin-top: 3rem;
}

    .contact-section .socialmedia-icons li a {
        font-size: 36px;
    }

    .contact-section .socialmedia-icons li {
        margin: 0 5px;
    }

        .contact-section .socialmedia-icons li:first-child {
            margin-left: 0;
        }

        .contact-section .socialmedia-icons li:last-child {
            margin-right: 0;
        }

.mt-0 {
    margin-top: 0rem;
}

.mt-8 {
    margin: 4rem 0 0;
}

.ml-1 {
    margin-left: 1rem;
}

.blue-text {
    color: #00b0f0;
}

.orange-text {
    color: #ed7d31;
}

.video-container {
    margin: 1rem 0;
    width: auto;
    height: auto;
}

    .video-container iframe, .video-container object, .video-container embed {
        max-width: 100%;
        min-height: 400px;
        border: 0;
    }

.accordion .video-container iframe, .accordion .video-container object, .accordion .video-container embed {
    min-height: 250px;
}

.cur-pointer {
    cursor: pointer;
}

.grid-icons {
    display: flex;
}

    .grid-icons span {
        font-size: 18px;
        cursor: pointer;
        padding: 5px;
        border: 1px solid #999;
        border-radius: 4px;
        margin-right: 5px;
        width: 30px;
        height: 35px;
        display: flex;
        line-height: 35px;
        justify-content: center;
        align-items: center;
    }

.grid-icons span img {
    height: 20px;
    width: auto;
}

.uploadfiles .dx-switch {
    display: block !important;
    float: right;
}

.uploadfiles .dx-switch-handle:before {
    background-color: var(--base-color) !important;
}

.wipeall {
    position: absolute;
    right:50px;
    top: 90px;
}

.accountsetup .dx-switch-handle:before {
    background-color: var(--base-color) !important;
}

.user-unlock-msg {
    text-align: center;
    padding-top: 20px;
    color: green;
    font-size: 20px;
}

/*Custom branding*/
.branding .progressbar {
    background: #fff; padding: 1rem 2rem 0.5rem;
}

.paddingLeft0 {
    padding-left: 0px;
}

.paddingTop10 {
    padding-top: 10px;
}

.marginLeft115 {
    margin-left: 115px;
}

.marginLeftMinus20 {
    margin-left: -20px;
}

.branding-bottom .btn {
    font-size: 12px; letter-spacing: .05rem; font-weight: 600; min-width: 50px; border-radius: 6px; -webkit-border-radius: 6px; padding: 8px 10px;
}

.img-select-wrapper {
    position: relative;
}
.img-select-wrapper .img-select {
    position: absolute; width: 111px; left: 10%; top: 30%; height: 35px; opacity: 0; cursor: pointer;
}

.custom-color-lable {
    padding-left: 15px; padding-top: 10px;
}

.custom-color-lable-for-mouseover {
    padding-left: 15px; padding-top: 0px;
}

.custom-sample-picker {
    width: 18%; height: 38px; border-radius: 50%; background-color: var(--base-color); border: 1px solid #000000;
}

.custom-sample-button {
    font-size: 12px; letter-spacing: .05rem; font-weight: 600; min-width: 50px; border-radius: 6px; -webkit-border-radius: 6px; padding: 8px 10px;
    border: 2px solid var(--base-color); transition: .4s; text-align: center; vertical-align: middle; user-select: none; line-height: 1.5; display: inline-block;
    text-transform: uppercase; background-color: var(--base-color);
}

.custom-progress {
    position: relative; display: flex; background: none; height: auto; overflow: visible; border-radius: 0; max-width: 80%; margin: 0rem 0rem 2rem -35px;
}

.custom-progress:before {
    content: ""; background: #000; width: 80%; height: 6px; position: absolute; top: 9px; left: 10%;
}

.custom-progress .custom-progress-track {
    position: absolute; top: 5px; width: 100%; height: 2px; z-index: -1;
}

.custom-progress .custom-progress-step {
    position: relative; width: 100%; font-size: 12px; text-align: center;
}

.custom-progress .custom-progress-step:last-child:after {
    display: none;
}

.custom-progress .custom-progress-step:before {
    content: ""; display: flex; margin: 0 auto; margin-bottom: 10px; width: 25px; height: 25px; background: #000; border: .25rem solid #000; border-radius: 100%; color: #fff; font-size: 8px;
}

.custom-progress .custom-progress-step:after {
    content: ""; position: absolute; top: 11px; left: 50%; width: 0%; transition: width 1s ease-in; height: 2px; background: #dfe3e4; z-index: 1;
}

.custom-progress .custom-progress-step.is-active {
    color: var(--base-color);
}

.custom-progress .custom-progress-step.is-active:before {
    border: 4px solid #000;
    /*animation: pulse 2s infinite;*/
    background: var(--base-color);
    transition: background-color 0.8s ease-out;
}

.custom-progress .custom-progress-step.is-active:after {
    width: 8%;
    background: var(--base-color);
    transition: width 1.4s ease-in;
}

.custom-progress .custom-progress-step.is-complete {
    color: var(--base-color);
}

.custom-progress .custom-progress-step .textdata {
    margin-top: -55px; position: relative; font-size: 10px; color: #666666; font-weight: 700; text-transform: uppercase;
}

.custom-progress .custom-progress-step .textdata .chkicn {
    position: absolute; top: 15px; left: 50%; top: 28px; font-size: 8px; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); transform: translateX(-50%); z-index: 10;
    display: none; color: #000;
}

.custom-progress .custom-progress-step.is-complete .textdata .chkicn {
    display: block;
}

.custom-color-link {
    font-size: 16px;
    color: var(--base-color);
    font-weight: 600;
}

.branding .dx-switch-handle:before {
    background-color: var(--base-color);
}

.custom-sample-button:hover {
    background-color: #222222;
    border-color: #222222;
    color: #fff;
}

.reset-branding {
    position: absolute;
    right: 50px;
    top: 80px;
}

.success {
    font-size: 12px;
    padding-top: 10px;
    color: #28a745;
    display: block;
}

#dvInfobmhc {
    position: absolute;
    left: 190px;
    top: 0px;
}

#dvInfobmfc {
    position: absolute;
    left: 176px;
    top: 10px;
}

.enterprise-code {
    border: 0px !important;
    padding: 5px 15px 0px 15px;
}

.enterprise-code input {
    height: 36px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    font-size: 1rem;
    padding-top: 0;
    padding-bottom: 0;
}

.flex-wrap {
    flex-wrap: wrap;
}

.dv-multi-account-search {
    position: relative;
    float: right;
    margin-top: 10px;
    width: 400px;
}

.dv-multi-account-border-top {
    border-top: 1px solid #f2f2f2;
}

.dv-multi-account-content-wrapper {
    height: 650px;
    overflow-y: auto;
    margin-top: 10px;
}

.dv-no-multi-account-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    flex-wrap: wrap;
}

.dv-multi-account-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 20px;
    flex-wrap: wrap;
}

.dv-multi-sub-account-content {
    width: 22%;
    box-shadow: 0px 0px 20px #00000014;
    padding: 20px;
    white-space: normal;
    position: relative;
    border-left: 3px solid #026ebc;
    position: relative;
    min-height: 100px;
    margin-bottom: 30px;
    margin-right: 30px;
    font-weight: 600;
}

.dv-multi-sub-account-content .sign-in {
    position: absolute;
    right: 6%;
    bottom: 6%;
    height: 32px;
    border: 1px solid;
    padding: 5px;
    border-radius: 4px;
    width: 28px;
    cursor: pointer;
}

.dv-multi-sub-account-content .stop-sign-in {
    position: absolute;
    right: 6%;
    bottom: 6%;
    height: 32px;
    padding: 5px;
    border-radius: 4px;
    width: 28px;
}

.dv-multi-sub-account-content .stop-sign-in i {
    font-size: 23px !important;
    color: red !important;
}

.clear-both {
    clear: both;
}

.btn-reupload {
    text-decoration: none !important;
    color: var(--button-fore-color) !important;
}

#myModalRN .modal-body {
    max-height: 400px;
    overflow-y: auto;
}

#myModalRN .modal-dialog {
    max-width: 65% !important;
}

.stfiletype {
    box-shadow: 0px 0px 6px #00000029;
    -webkit-box-shadow: 0px 0px 6px #00000029;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    display: flex;
    flex-direction: row;
    padding-left: 1.6rem;
    padding-top: 1rem;
}

.mtb-14
{
    margin-top: 14px;
    margin-bottom: 14px;
}

.show-clear-file
{
    right: 0;
    position: absolute;
    bottom: -75px;
}

.file-upload-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #ebebeb;
}

.file-upload-setup {
    /*display: flex;
    align-items: center;
    padding: 0 2rem;
    justify-content: center;*/
}

.file-upload-footerwrap {
    width: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-upload-height {
    height: 480px;
}

.file-upload-bb {
    border-bottom: 1px solid #ebebeb;
}

.p-file-upload {
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.fs-185 {
    font-size: 1.8rem;
}

.mb-25 {
    margin-bottom: 25px;
}

.clear-all {
    color: red !important;
    font-weight: bold;
    cursor: pointer;
}

.file-upload-position {
    left: 30%;
    top: 55%;
}

.file-upload-cancelwrap {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0px 0px 5px;
}

.dv1NSCTimer {
    width: 42%;
}

.dv2NSCTimer {
    width: 28%;
    padding-top: 8px;
}

.dv1SATimer {
    width: 58%;
}

.dv2SATimer {
    width: 42%;
    padding-top: 15px;
}

.file-upload-video-container {
    margin: 3rem 0 1rem 0;
    width: auto;
    height: auto;
}

.file-upload-video-container iframe, .file-upload-video-container object, .file-upload-video-container embed {
    max-width: 100%;
    min-height: 380px;
    border: 0;
}
.footer .navbar-collapse{
    justify-content:center !important;
}
.terms p{
    margin:10px;
}