/** --------------------------------------------------- 1.  Base --------------------------------------------------- */
/** Set up a decent box model on the root element */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Roboto:300,400,500,700");
html {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/** Basic styles for links */
a {
    color:#d36229; text-decoration: none;
}

img {
    max-width: 100%;
}

ul, ol {
    padding: 0; margin: 0; list-style: none;
}

.verticalCenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.body-container {
    padding: 80px 0 25px 0;
    min-height: calc(100vh - 83px);
    position: relative;
    height: 100%;
}

@media all and (max-width: 991px) {
    .body-container {
        transition: .5s;
        min-height: calc(100vh - 85px);
    }
}

@media all and (max-width: 767px) {
    .body-container {
        transition: .5s;
        padding: 30px 0;
        min-height: 500px;
    }
}

@media all and (max-width: 767px) {
    .sm-position-relative {
        transition: .5s;
        position: relative !important;
    }
}

.form-control:hover, .form-control:active, .form-control:focus, button.form-control:hover, button.form-control:active, button.form-control:focus, textarea.form-control:hover, textarea.form-control:active, textarea.form-control:focus, select.custom-select:hover, select.custom-select:active, select.custom-select:focus, input.form-control:hover, input.form-control:active, input.form-control:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.deActiveButton input, .deActive {
    opacity: .5; cursor: not-allowed;
    pointer-events: none;
}

.w-50p {
    width: 50px;
}

.w-100p {
    width: 100px;
}

.width-225 {
    width: 225px;
    min-width: 225px;
}

.width-390 {
    width: 390px;
    min-width: 390px;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.min-w-150 {
    min-width: 150px;
}

.site-color {
    color: #d36229 !important;
}

.fnt-80 {
    font-size: 80px;
}

.cvh-100 {
    min-height: calc(100vh - 160px);
    height: 100%;
}

.not-found-logo img {
    max-width: 90%;
    width: 300px;
}

.fileName {
    font-size: 11px;
}

.error-message {
    overflow-wrap: break-word;
}

.note-editable ol, .note-editable ul {
    padding: inherit;
    margin: inherit;
}

.note-editable ol {
    list-style: decimal;
}

.note-editable ul {
    list-style: disc;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color:#d36229;
}

.error_details {
    overflow: hidden;
    position: relative;
    display: block;
    word-break: break-word;
}

header {
    margin-bottom: 20px;
}

ul.approvals-nav .nav-item {
    max-width: 250px; margin: auto;
}

/** Basic typography style for copy text */
body {
    color: #111; font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

p {
    color: #111;
}

a {
    color:#d36229;
}

h1, h2, h3, h4 {
    color: #111;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
}

h5, h6 {
    color: #111;
    font-family: "Roboto",
    sans-serif;
    font-style: normal;
    font-weight: 400;
}

/** -------------- Box Shadow ------------------ **/
.box-shadow-1 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.box-shadow-2 {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.box-shadow-3 {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/** --------------------------------------------------- 2.  Layout --------------------------------------------------- */
.navbar-brand {
    padding: 0 0 4px 0;
}

.navbar-brand img {
    max-width: 100px; width: 100%;
}

.navbar.navbar-light {
    background-color: #ffffff;
    background-image: url("/static/o-solution/img/header-bck-e7f6a6cc22d4099701f0041855fbe21e.png");
    background-repeat: repeat-x;
}

.navbar.navbar-light ul .nav-item {
    position: relative;
}

.navbar.navbar-light ul .nav-item .nav-link {
    color: #111;
}

@media all and (max-width: 991px) {
    .navbar.navbar-light ul .nav-item .nav-link {
        transition: .5s;
        padding: .5rem .4rem;
    }
}

.navbar.navbar-light ul .nav-item .nav-link.active {
    color:#d36229;
}

.navbar.navbar-light ul .nav-item .nav-link:hover, .navbar.navbar-light ul .nav-item .nav-link:active, .navbar.navbar-light ul .nav-item .nav-link:focus {
    color:#d36229;
}

.navbar.navbar-light ul .nav-item .sub-menu {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 5px 15px;
    position: absolute;
    left: 15px;
    min-width: 140px;
    transform: translate(0, 40px);
    z-index: -99999;
    visibility: hidden;
    transition: all 0.10s;
}

.navbar.navbar-light ul .nav-item .sub-menu.large {
    min-width: 220px;
}

.navbar.navbar-light ul .nav-item .sub-menu li {
    padding: 3px 0;
    display: block;
}

.navbar.navbar-light ul .nav-item .sub-menu li a {
    color: #222222;
    white-space: nowrap;
}

.navbar.navbar-light ul .nav-item .sub-menu li a.active {
    color:#d36229;
}

.navbar.navbar-light ul .nav-item .sub-menu li a:hover, .navbar.navbar-light ul .nav-item .sub-menu li a:active, .navbar.navbar-light ul .nav-item .sub-menu li a:focus {
    color:#d36229;
}

.navbar.navbar-light ul .nav-item:last-child .sub-menu { left: auto; right: 0; }

.navbar.navbar-light ul .nav-item:hover .sub-menu { transform: translate(0, 0); z-index: 99999; visibility: visible; transition: all .4s; }

footer {
    background: #eeeeee url("/static/o-solution/img/menu-sidebar-d8e4663c9e8e4013fc64c7a027413a71.png") repeat-x 0 -11px;
}

@media all and (max-width: 767px) {
    footer {
        transition: .5s; background: #eaeaea; padding: 15px 0;
    }
}

@media all and (max-width: 767px) { footer .top { transition: .5s; display: none; } }

footer nav {
    padding: 0;
    /*background: url("/static/o-solution/img/menu-sidebar-d8e4663c9e8e4013fc64c7a027413a71.png") no-repeat center right;*/
}

footer nav a.nav-link {
    padding: 10px 5px;
    width: 190px;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    top: 12px;
    float: left;
    cursor: pointer;
    font-size: 12px;
    background: url("/static/o-solution/img/menu-sidebar-d8e4663c9e8e4013fc64c7a027413a71.png") no-repeat center left;
}

footer img.icon { width: auto; height: 13px; margin: 0 8px 0 0; vertical-align: top; }

footer .bottom ul { text-align: right; list-style: none; }

@media all and (max-width: 767px) { footer .bottom ul { transition: .5s; text-align: left; } }

footer .bottom ul li {
    display: inline-block;
    padding: 7px 0;
    list-style: none;
    line-height: 10px;
}

@media all and (max-width: 767px) {
    footer .bottom ul li {
        transition: .5s; display: block;
        border-bottom: 1px solid #c7c7c7;
        padding: 0;
    }
}

footer .bottom ul li a {
    color: #021826;
    border-right: 1px solid #6c757d;
    padding: 0 9px 0 7px;
    font-size: 11px;
}

@media all and (max-width: 767px) { footer .bottom ul li a { transition: .5s; font-size: 14px; border-right: none; padding: 12px 0; display: inline-block; } }

footer .bottom ul li:last-child a { border: none; }

footer .bottom p { font-size: 11px; padding: 4px 0 0 0; margin: 0; }

@media all and (max-width: 767px) { footer .bottom p { transition: .5s; padding-top: 10px; } }

.session-bar { background-color: #f7f7f7; top: 78px; position: fixed; width: 100%; padding: 5px; z-index: 999; font-size: 13px; overflow: hidden; text-align: center; font-weight: 300; box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.05); }

@media all and (max-width: 767px) { .session-bar { position: absolute; } }

/** --------------------------------------------------- 3.  Components --------------------------------------------------- */
/* --------------------- 3.1 Buttons --------------------- */
.main-btn {
    background-color:#d36229;
    padding: 5px 25px;
    border-color:#d36229;
    border-radius: 3px;
    color: #ffffff;
}

.previous-btn {
    background-color: black;
    padding: 5px 25px;
    border-color: black;
    border-radius: 3px;
    color: #ffffff;
}

.main-btn:hover, .main-btn:active, .main-btn:focus { outline: 0; box-shadow: none; color: #ffffff; }

.previous-btn:hover, .previous-btn:active, .previous-btn:focus { outline: 0; box-shadow: none; color: #ffffff; }

.cancel-btn { border-color: #EDEDED; background-color: #EDEDED; color: #111; height: 38px; padding: 5px 25px; border-radius: 3px; }

.cancel-btn:hover, .cancel-btn:active, .cancel-btn:focus { outline: 0; box-shadow: none; color: #111; }

.table.basic-table tr th:first-child { text-align: center; }

.table.basic-table tr th, .table.basic-table tr td { border-color: #c7c7c7; vertical-align: top; }

.table.basic-table tr:hover .checkBox label span.icon:after { opacity: 0.4; }

.table.basic-table tr:hover .checkBox input[type=checkbox]:checked + label span.icon:after { opacity: 1; }

.table.basic-table.tr-pointer tbody tr { cursor: pointer; }

.table.basic-table.action-td-center tr td:last-child { text-align: center; }

.table.basic-table.action-td-260 tr th:last-child { min-width: 260px; width: 260px; }

.table.basic-table.action-td-205 tr th:last-child { min-width: 205px; width: 205px; }

.table.basic-table.email-config-table tr td:nth-child(4) { word-break: break-all; min-width: 160px; }

.table.basic-table.email-config-table tr td:nth-child(5) { word-break: break-all; min-width: 160px; }

.checkBox { position: relative; display: inline-block; padding: 0 0 0 10px; }

.checkBox label { cursor: pointer; margin: 0; }

.checkBox label span.icon { width: 18px; height: 18px; cursor: pointer; position: absolute; top: 0; left: 0; border: 1px solid #666; border-radius: 0; }

.checkBox label span.icon:after { content: ''; width: 12px; height: 7px; position: absolute; top: 2px; left: 2px; border: 2px solid#d36229; border-top: none; border-right: none; background: transparent; opacity: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); }

.checkBox label span.text { padding: 0 15px 0 0; }

.checkBox label:hover span.icon::after { opacity: 0.4; }

.checkBox input[type=checkbox] { visibility: hidden; }

.checkBox input[type=checkbox]:checked + label span.icon:after { opacity: 1; }

.radioBox { position: relative; display: inline-block; padding: 0 0 0 10px; margin-top: 5px; }

.radioBox label { cursor: pointer; margin: 0; }

.radioBox label span.icon { width: 18px; height: 18px; cursor: pointer; position: absolute; top: 0; left: 0; border: 1px solid #666; border-radius: 50%; }

.radioBox label span.icon:after { content: ''; width: 12px; height: 12px; position: absolute; top: 2px; left: 2px; border: 2px solid#d36229; border-top: none; border-right: none; background:#d36229; opacity: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); border-radius: 50%; }

.radioBox label span.text { padding: 0 15px 0 13px; }

.radioBox label:hover span.icon:after { opacity: 0.4; }

.radioBox input[type=radio] { visibility: hidden; width: 0; }

.radioBox input[type=radio]:checked + label span.icon { border-color:#d36229; }

.radioBox input[type=radio]:checked + label span.icon:after { opacity: 1; }

.pagination li.page-item a.page-link { color: #222222; outline: 0; box-shadow: none; }

.pagination li.page-item.active a.page-link { background-color:#d36229; border-color:#d36229; color: #ffffff; }

.pagination li.page-item.disabled a.page-link { color: #6c757d; }

.select2.select2-container .select2-selection { min-height: 40px; }

.select2.select2-container .select2-selection .select2-selection__rendered { line-height: 26px; }

.select2.select2-container .select2-selection .select2-selection__arrow { top: 9px; }

.select2.select2-container .select2-selection--multiple { background-color: #fff; border: 1px solid #ced4da !important; outline: 0; }

body .pre-loader { display: none; }

body .pre-loader svg { display: block; margin: auto; position: fixed; z-index: 999999; top: calc(50% - 100px); left: 0; right: 0; }

body .pre-loader:after { content: ''; background-color: rgba(0, 0, 0, 0.3); position: fixed; left: 0; height: 100%; top: 0; width: 100%; z-index: 9999; }

body.loading .pre-loader { display: block; }

.form-control.error { border: 1px solid darkorange !important; }

label.error { color: darkorange !important; margin-top: 5px; }

.form-control + label.error { display: none; }

.form-control.error + label.error { display: block; }

.datepicker { z-index: 99999 !important; }

.datepicker .datepicker-days table tr td.today, .datepicker .datepicker-days table tr td.today.disabled, .datepicker .datepicker-days table tr td.today.disabled:hover, .datepicker .datepicker-days table tr td.today:hover { background: radial-gradient(ellipse at 50% 50%, rgba(255, 69, 0, 0.3) 0%, rgba(255, 69, 0, 0.19) 100%) !important; }

.datepicker table tr td span.active.active:hover.active, .datepicker table tr td span.active.active.active, .datepicker .datepicker-years tr td.year:hover.active, .datepicker .datepicker-years tr td.year.active, .datepicker .datepicker-months tr td.month:hover.active, .datepicker .datepicker-months tr td.month.active, .datepicker .datepicker-days tr td.day:hover.active, .datepicker .datepicker-days tr td.day.active { background-color: #d36229 !important; background-image: none; }

.datepicker .datepicker-switch { width: 200px !important; }

.datepicker .datepicker-days tr td.day { width: 35px; height: 32px; }

#filter button.main-btn { min-width: 80px; height: 38px; align-items: center; display: flex; justify-content: center; }

#filter button.previous-btn { min-width: 80px; height: 38px; align-items: center; display: flex; justify-content: center; }

#filter i, #filter svg { color:#d36229; font-size: 18px; cursor: pointer; margin-top: 0px; }

/** --------------------------------------------------- 4.  Pages --------------------------------------------------- */
/* --------------------- 4.1 Pages --------------------- */
.form-page .card h2 { color: #111; }

.form-page .card button.form-control:hover, .form-page .card button.form-control:active, .form-page .card button.form-control:focus, .form-page .card textarea.form-control:hover, .form-page .card textarea.form-control:active, .form-page .card textarea.form-control:focus, .form-page .card select.custom-select:hover, .form-page .card select.custom-select:active, .form-page .card select.custom-select:focus, .form-page .card input.form-control:hover, .form-page .card input.form-control:active, .form-page .card input.form-control:focus { outline: 0; box-shadow: none; }

.form-page .card .select2, .form-page .card select { width: 100% !important; }

.form-group.is-invalid .invalid-feedback { display: block !important; }

#menuAssign .menu-list { min-height: 250px; height: 250px; overflow: auto; }

#menuAssign .menu-list a.nav-link { width: 100%; }

#menuAssign .nav-pills .nav-link { color: #000000; }

#menuAssign .nav-pills .nav-link.active, #menuAssign .nav-pills .show > .nav-link { color: #fff; background-color:#d36229; border-radius: 0; }

.sftp-step table.table tr td, .sftp-step table.table tr th { font-size: 12px; padding-left: 5px; padding-right: 5px; }

.sftp-step table.table tr td:first-child { text-align: center; }

.sftp-step table.table tr td .error { color: #ff0000; }

.sftp-step table.table tr td i, .sftp-step table.table tr td svg { font-size: 26px; color: #1c7430; }

.sftp-step table.table tr td i.fa-times-circle, .sftp-step table.table tr td svg.fa-times-circle { color: #ff0000; }

.lan-id-search input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.lan-id-search button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.details-info p {
    font-size: 14px;
    color: #111;
    min-height: 22px;
}

.details-info p.title {
    font-weight: 600;
    margin: 0;
}

.user-session-page h4 {
    font-size: 22px;
}

.user-session-page tr th {
    width: 40%;
    max-width: 200px;
}

.user-session-page tr td {
    width: 60%;
}

/*# sourceMappingURL=main.css.map */

/*------------------------------------------------*/
.form-control:focus {
    border-color: #d36229;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgb(230, 90, 50);
}

.form-select:focus {
    border-color: #d36229;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgb(230, 90, 50);
}

.dropdown-menu li > a:focus {
    background-color: #d36229;
}

select:active, select:hover {
    outline-color: #d36229;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
    line-height: 37px;
}
.select2-container *:focus {
    outline-color: #d36229;
    outline-width: 1px;
}

.btn-group-sm>.btn, .btn-sm {
    padding: 5px 1rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}


