:root { 
    --default: #ffc107;
    --dark-gold: #ffbf00;
    --bg-color-beige: #fffff6;
    --bg-color-white: #fff;
    --bg-color-gold-gradient-right: linear-gradient(to right, #B38728, #EFC267, #FCF6BA);
    --bg-color-blue-gradient: linear-gradient(43deg,#00101f,#14233a,#2e475d,#ffc1072b,#14233a80,#00101f);
    --bg-color-navy-blue-gradient: linear-gradient(114deg, #00101F 0%, #14233A 25%, #2E475D 60%, #14233A 80%, #00101F 90%);
    --bg-color-dark-gold: #af9138;
    --header-color: #182186;
    --scroll-thumb: #ffc107;
    --border-color-gold: #fecf41;
    --border-color-orange: #ff9041;
}

.text-themecolor {
    color: var(--header-color) !important;
}

html {
    background: transparent;
}

html body .page-wrapper {
    background-color: #ffffffde;
}

html body.loggedin {
    padding: .5vw;
    background: #b48811;
    background: -moz-linear-gradient(top, #ebd197 0%, #b48811 50%, #a2790d 51%, #bb9b49 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebd197), color-stop(50%,#b48811), color-stop(51%,#a2790d), color-stop(100%,#bb9b49));
    background: -webkit-linear-gradient(top, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%);
    background: -o-linear-gradient(top, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%);
    background: -ms-linear-gradient(top, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%);
    background: linear-gradient(to bottom, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebd197', endColorstr='#b48811',GradientType=0 );
}

body{
    color: #67757c;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--default);
    font-weight: 600;
}

a {
    color: var(--header-color);
}

a:hover {
    color: var(--default);
}

.text-info{
    color: var(--default)!important;
}

.text-success {
    color: #a6dba4!important;
}

.text-muted{
    color: var(--gray-dark)!important;
}

#main-wrapper .container-fluid {
    padding: 25px 25px;
    height: 88vh;
    overflow: auto;
    margin-top: 25px;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #b48811; background: -moz-linear-gradient(top, #ebd197 0%, #b48811 50%, #a2790d 51%, #bb9b49 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebd197), color-stop(50%,#b48811), color-stop(51%,#a2790d), color-stop(100%,#bb9b49)); background: -webkit-linear-gradient(top, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%); background: -o-linear-gradient(top, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%); background: -ms-linear-gradient(top, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%); background: linear-gradient(to bottom, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebd197', endColorstr='#b48811',GradientType=0 );
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #b48811; background: -moz-linear-gradient(top, #ebd197 0%, #b48811 50%, #a2790d 51%, #bb9b49 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebd197), color-stop(50%,#b48811), color-stop(51%,#a2790d), color-stop(100%,#bb9b49)); background: -webkit-linear-gradient(top, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%); background: -o-linear-gradient(top, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%); background: -ms-linear-gradient(top, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%); background: linear-gradient(to bottom, #ebd197 0%,#b48811 50%,#a2790d 51%,#bb9b49 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebd197', endColorstr='#b48811',GradientType=0 );
}

.wt-scrollbar::-webkit-scrollbar {
    width: 8px
}

.wt-scrollbar::-webkit-scrollbar-track {
    background-color: var(--bg-color-white);
}

.wt-scrollbar::-webkit-scrollbar-thumb {
    --bg-opacity: 1;
    background-color: #aaa;
    border-radius:3px;
    -webkit-transition: background-color .2s linear,width .2s ease-in-out;
}

.wt-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: rgb(var(--scroll-thumb)/var(--bg-opacity));
}

.ps__thumb-y {
    background-color: rgb(var(--scroll-thumb));
}

.ps__thumb-x {
    background-color: rgb(var(--scroll-thumb));
}

.btn-info,
.btn-danger{
    color: #182186;
}

/* btn-info */
.btn-info, .btn-info.disabled {
    background: var(--default);
    border: 1px solid var(--border-color-gold);
    transition: 0.2s ease-in;
}

.btn-info:hover, .btn-info.disabled:hover {
    background: var(--dark-gold);
    border: 1px solid var(--border-color-gold);
}

.btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: var(--bg-color-dark-gold);
    border-color: var(--border-color-orange);
}

.btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus, .show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgb(195 172 58 / 50%);
}

.btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info.focus:active, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover, .btn-info.focus, .btn-info:focus, .show > .btn-info.dropdown-toggle {
    background: var(--dark-gold);
    border: 1px solid var(--border-color-gold);
}

.btn-info.disabled, .btn-info:disabled {
    background: var(--bg-color-dark-gold);
    border-color: #ffc1074f;
}

/* btn-danger */
.btn-danger, .btn-danger.disabled {
    background: var(--default);
    border: 1px solid var(--border-color-gold);
    transition: 0.2s ease-in;
    padding: 5px 29px;
}

.btn-danger:hover, .btn-danger.disabled:hover {
    background: #F5564E;
    border: 1px solid var(--border-color-gold);
}

.btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #EA5455;
    border-color: var(--border-color-orange);
}

.btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgb(195 172 58 / 50%);
}

.btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger.focus:active, .btn-danger:active:focus, .btn-danger:active:hover, .open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover, .btn-danger.focus, .btn-danger:focus, .show > .btn-danger.dropdown-toggle {
    background: #EA5455;
    border: 1px solid var(--border-color-gold);
}

.btn-danger.disabled, .btn-danger:disabled {
    background: #5d0505;
    border-color: #ffc1074f;
    color: #fff;
}

.topbar ul.dropdown-user li .dw-user-box .u-text .btn:hover {
    background: var(--dark-gold);
    border-color: var(--border-color-orange);
    color: var(--bg-color-beige)!important;
}

.topbar ul.dropdown-user li .dw-user-box .btn-danger, .btn-danger.disabled {
    background: var(--bg-color-gold-gradient-right);
    border-color: var(--border-color-gold);
    color: var(--dark)!important;
    font-weight: 600;
}

.topbar ul.dropdown-user li a:hover {
    background: var(--bg-color-gold-gradient-right);
    color: var(--dark);
}

.topbar .navbar-header .exit-panel{
    padding-left: 12px;
}

.dropdown-menu {
    background-color: var(--bg-color-beige);
}

.btn-add-circle {
    padding: 10px 12px;
}

.list-actions-search {
    color: var(--default)!important;
    background-color: var(--bg-color-white)!important;
}

.list-actions-button {
    border: 0px;
    padding: 4px 8px 1px 8px;
    font-size: 22px;
    font-weight: bold;
    background-color: transparent!important;
    color: #1F4690 !important;
    height: 37px;
    filter: drop-shadow(1px 1px 1px #5555cc);
}

.list-actions-button:hover {
    background-color: transparent !important;
    color: #fdc008 !important;
    filter: drop-shadow(1px 1px 1px #666);
    -moz-animation: jello 2s ease-out;
    -moz-animation-iteration-count: 1;
    -o-animation:  jello 2s ease-out;
    -o-animation-iteration-count: 1;
    -webkit-animation: jello 2s ease-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.list-actions-button.active {
    background-color: #ffc1074f !important;
    color: #494f9b !important;
}

#list-page-actions .btn-danger, .btn-danger.disabled{
    background: var(--bg-color-gold-gradient-right);
    border-color: var(--border-color-gold);
    color: var(--dark)!important;
    font-weight: 600;
}

#list-page-actions .btn-danger:hover, .btn-danger.disabled:hover {
    background: var(--dark-gold);
    border-color: var(--border-color-orange);
    color: var(--bg-color-beige)!important;
}

.logged-out body{
    background-color:#14233A;
    background-image: var(--bg-color-blue-gradient);
    background-size: 300% 300%!important;
    animation: gradient-animation 25s ease infinite;
    color: #e9dbb0;
}

.logged-out body #main-wrapper .login-box,
.logged-out body #main-wrapper .signup-box {
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    width: 400px;
    backdrop-filter: blur(9.8px);
    -webkit-backdrop-filter: blur(9.8px);
    border-radius: 15px;
    border: 2px solid rgb(238 187 97 / 64%);
    background-color: #2b416280;
    background-image: linear-gradient(114deg, #00101f82 0%, #14233a78 25%, #2e475d7d 60%, #14233AD6 80%, #00101f7a 90%);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    position: relative;
    z-index: 4;
}

.logged-out body #main-wrapper .login-logo,
.logged-out body #main-wrapper .signup-logo {
    z-index: 5;
    position: relative;
}

.signup-logo img {
    max-width: 200px;
}

.logged-out body .login-background .x-right {
    max-width: 40%;
    right: 10%;
    top: 0;
}

.login-box .form-control{
    color: #e9dbb0;
}

.login-logo img,
.signup-logo img {
    max-width: 100px;
}

.form-control {
    background-color: #ffffff;
    border-color: transparent!important;
    border-bottom: 2px solid #ffc107b3!important;
}

.form-control:focus {
    color: var(--dark-gold);
}

.form-material .form-control, .form-material .form-control.focus, .form-material .form-control:focus {
    background-image: linear-gradient(#abafc8, #abafc8), linear-gradient(var(--default), #ffc519);
    border: 0 none;
    border-radius: 0;
    border-bottom: unset!important;
    box-shadow: none;
    float: none;
    padding: 0px 8px;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #e9dbb0!important;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #e9dbb0!important;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #e9dbb0!important;
}
:-moz-placeholder { /* Firefox 18- */
    color: #e9dbb0!important;
    opacity: 1;
}
::placeholder {
    color: #e9dbb0!important;
}

.fix-header .topbar {
    position: fixed;
    width: 99%;
    margin-left: 0;
    height: 7.94vh;
}

.topbar {
    font-weight: 400;
    background: transparent;
}

.topbar .top-navbar .navbar-header {
    line-height: 72px;
    padding-left: 0px;
    border-right: 0px solid #7278bb47;
    border-bottom: 0px solid #7278bb47;
    margin-top: 0;
    background: transparent;
}

.topbar .navbar-collapse {
    padding: 0px 30px;
    border-bottom: 0px solid #eeeff0;
}

.topbar .navbar-light .navbar-nav .nav-item > a.nav-link .lucide-alarm-clock{
    -moz-animation: tada 2s ease-out;
    -moz-animation-iteration-count: infinite;
    -o-animation: tada 2s ease-out;
    -o-animation-iteration-count: infinite;
    -webkit-animation: tada 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.topbar .navbar-light .navbar-nav .nav-item > a.nav-link .lucide-bell{
    -moz-animation: swing 2s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
    -moz-animation-iteration-count: infinite;
    -o-animation: swing 2s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
    -o-animation-iteration-count: infinite;
    -webkit-animation: swing 2s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    stroke: #d1a200;
}


.navbar-header .logo {
    text-align: center;
}
.navbar-header .logo-large {
    max-height: 60px;
}

.fix-header .page-wrapper {
    padding-top: 50px;
    padding-bottom: 0px;
    max-height: 90vh;
    min-height: 97vh!important;
    border-radius: 15px;
    box-shadow: unset;
}

#main-sidenav {
    height: 100%;
    padding-right: 0;
}

.left-sidebar {
    position: absolute;
    width: 200px;
    height: 98%;
    top: .5vw;
    z-index: 20;
    padding-top: 70px;
    border-right: 1px solid #eeeff0;
    backdrop-filter : blur(5px) saturate(147%) ;
    -webkit-backdrop-filter: blur(5px) saturate(147%);
    background-color: #132f54d9;
    border-radius: 25px;
    border: 3px solid rgb(255 255 255 / 25%);
    background-color: #2b4162;
    background-image: linear-gradient(114deg, #00101F 0%, #14233A 25%, #2E475D 60%, #14233A 80%, #00101F 90%);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.left-sidebar svg, .navbar svg {
    overflow: hidden;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.fix-sidebar .logo-large {
    display: inline-block;
    max-width: 150px;
}

.sidebar-nav {
    background: transparent;
    padding: 2px 0 0 0px;
}

.sidebar-nav ul li a {
    color: #8d97ad;
    padding: 12px 25px 10px 15px;
    display: block;
    font-size: 14px;
    font-weight: 300;
}

.sidebar-nav .has-arrow::after {
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #8d97ad;
    right: 10px;
    -webkit-transform: rotate(135deg) translate(0, -50%);
    -ms-transform: rotate(135deg) translate(0, -50%);
    -o-transform: rotate(135deg) translate(0, -50%); 
    transform: rotate(135deg) translate(0, -50%);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    top: 45%;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.sidebar-nav ul li a.active, .sidebar-nav ul li a:hover {
    color: #e9dbb0;
}

.sidebar-nav > ul > li.active > a {
    color: var(--dark);
    border-color: #fecf41;
    background: linear-gradient(to right, #B38728, #EFC267, #FCF6BA);
    font-weight: 900;
}

.sidebar-nav > ul > li.active > a i {
    color: var(--default);
    border-color: var(--default);
}

.sidebar-nav ul li a.active i, .sidebar-nav ul li a:hover i {
    color: var(--default);
}

#sidebarnav {
    padding-top: 0;
    padding-bottom: 40px;
}

.mini-sidebar .sidebar-nav #sidebarnav > li > a {
    width: 68px;
}

.mini-sidebar .page-wrapper {
    margin-left: 85px;
}

.mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
    background: var(--bg-color-beige);
    color: var(--dark);
}

.mini-sidebar .sidebar-nav #sidebarnav > li > ul {
    background: var(--bg-color-beige);
    color: var(--dark);
}

.settings .left-sidebar{
    padding-top: 7vh;
    padding-bottom: 1vh;
}

.settings .left-sidebar .sidebar-nav {
    height: 100vh;
    padding-right: 0px;
    padding-top: 5px;
    background: transparent;
}

.settings .left-sidebar .sidenav-menu-item ul li a.active {
    color: var(--default);
}

.right-sidebar {
    background: var(--bg-color-beige);
}

.right-sidebar .rpanel-title {
    background: var(--bg-color-navy-blue-gradient);
}

.right-sidebar .rpanel-title svg{
    width: 18px;
    height: 18px;
}

.loggedin span.custom-control-description{
    color: var(--header-color);
}

.custom-checkbox .custom-control-indicator {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid var(--default);
    background-color: transparent;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
    border: 2px solid var(--default);
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffc107' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

[type="checkbox"].filled-in:checked.chk-col-light-blue + label:after {
    border: 1px solid #67757c;
    background-color: var(--default);
}

[type="checkbox"].filled-in:checked.chk-col-light-blue + label:before {
    border-right: 2px solid #182186 !important;
    border-bottom: 2px solid #182186 !important;
}

.img-circle{
    border-radius: 100%;
    border: 2px solid #ffc107;
}

.kanban .kanban-wrapper .boards .board .board-body {
    box-shadow: rgba(17, 12, 46, 0.1) 0px 48px 100px 0px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: lch(0 0 0 / 0.05);
    border-top: 10px #67757c solid;
    border-left: 2px solid #ffffff70!important;
    border-bottom: 2px solid #ffffff70!important;
    border-right: 2px solid #ffffff70!important;
}

.kanban-card .x-footer .x-assigned span.initial-profile-small{
    margin-left:-12px;
}

.card-modal .card-right-panel {
    background-color: #fcf3de59;
}

.card-no-border .card {
    border-radius: 15px;
    border: 0px solid rgb(235 235 235 / 30%);
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.card-embed-fix .card{
    border: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.card-modal .modal-dialog .modal-content #cardModalTabMenu ul li a {
    border-color: var(--default);
}

.card-modal .modal-dialog .modal-content #cardModalTabMenu ul li a.active {
    color: var(--default);
    font-weight: 500;
    background-color: #2E4374;
}

.card-modal .card-right-panel .x-element.x-element-info {
    background-color: #ffc1074f !important;
    color: var(--dark);
}

.card-modal .card-right-panel .x-element.x-element-info .x-highlight {
    color: #2E4374;
}

.card-modal .card-right-panel .x-assigned-user .avatar-xsmall {
    border: 2px solid var(--default);
    max-width: 35px;
    width: 35px;
    height: 34px;
}

.card-reminders-container #reminders-existing-new {
    background-color: var(--bg-color-beige);
}

.card-modal .card-left-panel .card-show-form-data {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 800px;
}

.card-modal .card-left-panel .card-show-form-data .x-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 1px;
}

.card-modal .card-left-panel .card-show-form-data .log-row {
    font-size: 13px;
    background-color: #ebf2f5;
    color: #3e4852;
    margin-bottom: 10px;
    border-radius: 5px;
}

.card-modal .card-left-panel .card-show-form-data .log-row .log-text {
    padding: 5px;
}

.modal .modal-content {
    background-color: var(--bg-color-beige);
}

.modal .modal-dialog .modal-header .modal-title {
    color: var(--default);
}

.page-titles {
    background: #fcf3de59;
    margin-bottom: 20px;
    padding: 0px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.page-titles .breadcrumb .breadcrumb-item.active {
    color: var(--default);
    filter: drop-shadow(1px 1px 1px #666);
}

.timeline .x-meta a.link {
    color: #182186;
    font-weight: 500;
}

.profile_header.client {
    background: var(--bg-color-navy-blue-gradient);
    border-radius: 15px 15px 0px 0px;
    color: var(--bg-color-white);
}

.profile-tab li a.nav-link:hover, .customtab li a.nav-link:hover{
    color: var(--default);
}

.profile-tab li a.nav-link.active, .customtab li a.nav-link.active{
    color: var(--default);
    border-bottom: 2px solid var(--default);
}

.client .tab-body-embedded, .project .tab-body-embedded {
    background-color: var(--bg-color-beige);
}

.payments .invoice-wrapper {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fbfcfd;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.payments .invoice-wrapper .invoice-dates table tr td:first-child {
    font-weight: 500;
}

.payments .invoice-wrapper .invoice-dates table tr td:nth-child(2) {
    padding-left: 25px;
}

.payments .invoice-wrapper .invoice-dues table tr td:nth-child(2) span {
    padding-left: 8px;
}

.payments .invoice-wrapper .invoice-dues table tr td:nth-child(2) span .label {
    padding-left: 17px;
    padding-right: 17px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.payments .invoice-wrapper .invoice-details{
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
}

.label-light-info {
    background-color: #ffc1074f !important;
    color: var(--dark);
}

.chat-main-box {
    left: 0;
}

#nprogress .bar{
    background: var(--border-color-orange);
}
#nprogress .peg{
    box-shadow:0 0 10px #e9dbb0,0 0 5px #e9dbb0;
}

footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}


.webform body{
    background-color: #14233A;
    background-image: var(--bg-color-navy-blue-gradient);
    color: var(--default);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.webform body.view .webform-logo {
    background-color: transparent!important;
    margin: auto;
    text-align: center;
}
.webform body.view .webform-logo img {
    max-width: 300px;
    max-height: 200px;
    height: auto;
    width: 5vw;
}
.webform .form-heading{
    text-align: center;
}
.webform .form-control{
    background-image: linear-gradient(#ffc107, #ffc107), linear-gradient(#abafc8, #abafc8);
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
    float: none;
    padding: 0px 8px;
    background-color: rgba(0, 0, 0, 0);
    background-position: center bottom, center calc(100% - 2px);
    background-repeat: no-repeat;
    background-size: 0 2px, 100% 1px;
    transition: background 0s ease-out 0s;
    border-bottom: 3px solid transparent!important;
    color: #e9dbb0;
}
.webform body .wrapper .webform-fields-wrapper .form-heading h4 {
    border-bottom: 0px;
}
.webform .btn-info{
    background: var(--default);
    border: 1px solid var(--default);
    color: #182186;
    font-weight: 400;
    font-size: 18px;
    padding: 10px 40px;
}

.webform .btn-info:hover{
    background-color: #e9dbb0;
}

.webform .select2-container--above .form-control,
.webform .select2-container--below .form-control {
    background-color: #fff;
}

.initial-profile-small {
    background-color: var(--initial-bg-color);
    color: white!important;
    opacity: 1; 
    display: inline-block; 
    font-weight: bold; 
    border-radius: 50%; 
    vertical-align: middle; 
    width: 30px; 
    height: 30px; 
    line-height: 30px; 
    text-align: center; 
}

.initial-profile-medium {
    background-color: var(--initial-bg-color);
    color: white!important;
    opacity: 1; 
    display: inline-block; 
    font-weight: bold; 
    border-radius: 50%; 
    vertical-align: middle; 
    width: 40px; 
    height: 40px; 
    line-height: 40px; 
    text-align: center; 
}

.initial-profile-large {
    background-color: var(--initial-bg-color);
    color: white!important;
    opacity: 1; 
    display: inline-block; 
    font-weight: bold; 
    border-radius: 50%; 
    vertical-align: middle; 
    width: 50px; 
    height: 50px; 
    line-height: 50px; 
    text-align: center; 
}

.initial-profile-md-square {
    background-color: var(--initial-bg-color);
    color: white!important;
    opacity: 1; 
    display: inline-block; 
    font-weight: bold; 
    font-size: 30px;
    border-radius: 5px; 
    vertical-align: middle; 
    width: 70px; 
    height: 70px; 
    line-height: 70px; 
    text-align: center; 
}


/*-- ============================================================== 
 Phone and below ipad(767px) 
 ============================================================== */

 @media(max-width:767px) {
    .logged-out body #main-wrapper .login-box,
    .logged-out body #main-wrapper .signup-box
     {
        width: calc(100% - 10vw)!important;
        margin-left: 5vw;
    }

    .logged-out body #main-wrapper .login-logo,
    .logged-out body #main-wrapper .signup-logo {
        margin: 5px auto;
        left: 0;
    }

    .left-sidebar {
        height: 90%;
        top: 8vh;
        padding-top: 10px!important;
    }

    .mini-sidebar .page-wrapper {
        margin-left: 0px;
    }

    .mini-sidebar .sidebar-nav #sidebarnav > li > a {
        width: unset;
    }

    .webform body.view .webform-logo img {
        max-width: 300px;
        max-height: 200px;
        height: auto;
        width: 25vw;
    }

    .webform body .wrapper {
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
        padding-top: 30px;
    }

    .webform .col-form-label{
        padding-top: calc(.375rem + 1px);
        padding-bottom: calc(.375rem + 1px);
        margin-bottom: 0;
        font-size: 1.4em;
        line-height: 1.5;
    }

    .webform .btn-info, .btn-info.disabled {
        width: 100%;
        font-size: 1.4rem!important;
        text-align: center!important;
        padding: 10px !important;
        font-weight: 900;
    }
 }


/*-- ============================================================== 
 WT - Reverse - max-width: 1023px
 ============================================================== */

 @media (max-width: 1023px) {
    .page-wrapper {
        margin-left: 0px;
    }
}

/*-- ============================================================== 
 Small Desktop & above all (1024px) 
 ============================================================== */
@media(max-width:400px) {
    .left-sidebar {
        height: 88%;
        top: 10vh;
        padding-top: 10px!important;
    }

    .mini-sidebar .page-wrapper {
        margin-left: 0px;
    }

    .mini-sidebar .sidebar-nav #sidebarnav > li > a {
        width: unset;
    }
}

@media(max-width:320px) {
    .left-sidebar {
        height: 85%;
        top: 12vh;
        padding-top: 10px!important;
    }

    .mini-sidebar .page-wrapper {
        margin-left: 0px;
    }

    .mini-sidebar .sidebar-nav #sidebarnav > li > a {
        width: unset;
    }
}