img {
    max-width: 100%}
.hidden {
    display: none !important;
}
.table-summary {
    float: left;
    padding: 15px 0;
}
.table-order {
    float: right;
    padding: 15px 0;
}
ul {
    padding: 0;
}
li {
    list-style: none;
}
.cl-children {
    padding-left: 20px;
}
.collapsed .cl-children {
    display: none;
}
.collapsible .cl-label {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.cl-label-plus {
    display: none;
}
.cl-label-minus {
    display: block;
}
.collapsed .cl-label-plus {
    display: block;
}
.collapsed .cl-label-minus {
    display: none;
}

/*.collapsible>.cl-label:after {*/
/*    font-family: "Font Awesome 5 Free";*/
/*    content: "";*/
/*    font-weight: 900;*/
/*    float: right;*/
/*}*/
/*.collapsible.collapsed>.cl-label:after {*/
/*    font-family: "Font Awesome 5 Free";*/
/*    content: "";*/
/*    font-weight: 900;*/
/*}*/

.nav-link {
    color: #565959;
}

#header .logo {
    padding: 17px;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 14px;
        padding-left: 14px;
    }
}

.nav-link:hover {
    color: #2c476f;
}

.ws-tab-content {
    display: none;
}
.ws-scroll-tabs .ws-tab-content, .ws-tab-content.active {
    display: block;
}
.ws-tab-item {
    cursor: pointer;
}
.popup-container {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .8);
    display: flex;
    padding: 25px;
}
.popup-block {
    margin: auto;
    background-color: #fff;
    position: relative;
    outline: 0;
    box-shadow: 0 0 14px 5px #000;
    width: 96%;
    max-width: 600px;
    padding: 15px;
}
.popup-block .close-popup {
    cursor: pointer;
}
.popup-block .close-x {
    position: absolute;
    right: -20px;
    top: -20px;
    text-align: center;
    cursor: pointer;
    z-index: 9;
    padding: 5px;
}
.popup-block .close-x span {
    background: #fff;
    border-radius: 50%;
    border: 2px solid #757575;
    width: 32px;
    height: 32px;
    display: block;
    font-size: 18px;
    font-weight: bold;
    padding: 1px;
}
.popup-content {
    padding: 10px;
    height: 100%;
}
.popup-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 28px;
}
.popup-content-loading {
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-header {
    padding: 10px;
    background: #eee;
}
.popup-footer {
    padding: 10px;
    border-top: 1px solid #ddd;
}
.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #888d90;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.action-confirmation-block .action-confirmation-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #2a92b1;
    font-size: 21px;
}
.action-confirmation-block .action-confirmation-desc {
    margin-bottom: 10px;
}
.action-confirmation-block .action-confirmation-button a {
    margin-right: 10px;
    padding: 5px 10px;
}
.action-confirmation-block .action-confirmation-button .close-popup {
    padding: 5px 10px;
}
.action-link {
    cursor: pointer;
}
.active-1 .unblock-user {
    display: none;
}
.active-0 {
    color: #ddd;
}
.active-0 a {
    color: #ddd;
}
.active-0 .block-user {
    display: none;
}


#action-messages {
    position: fixed;
    bottom: 15px;
    right: 15px;
    border-radius: 5px;
    max-height: 300px;
    overflow-y: auto;
}
.action-message {
    border: 2px solid #ddd;
    background: #fff;
    box-shadow: 0 0 9px 2px #bbb;
    margin: 15px;
    padding: 15px;
    font-weight: 500;
}
.action-message-info {
    color: #222;
    border-bottom: 2px solid #222;
}
.action-message-danger {
    color: red;
    border-bottom: 2px solid red;
}
.action-message-warning {
    color: #ffc107;
    border-bottom: 2px solid #ffc107;
}

.content-message {
    border: 2px solid;
    background: #fff;
    margin: 10px 0;
    padding: 15px;
    font-weight: 500;
}
.content-message svg {
    font-size: 24px;
    margin-right: 5px;
}
.content-message-info {
    color: #222;
    border-color: #222;
}
.content-message-danger {
    color: red;
    border-color: red;
}
.content-message-warning {
    color: #ffc107;
    border-color: #ffc107;
}


.fixed-element {
    position: fixed;
    top: 0;
    z-index: 10;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}@keyframes spin {
     0% {
         transform: rotate(0deg);
     }
     100% {
         transform: rotate(360deg);
     }
 }.nav-opened .nav-content {
      display: block;
  }
.mobile-navigation .nav-icon {
    cursor: pointer;
    display: none;
}


/*Toggle Menu*/
.topbar-nav {
    display: none;
    align-items: center;
    margin: 0 -10px;
}

.topbar-nav-item {
    display: inline-flex;
    align-items: center;
    padding: 11px 0;
    margin: 0 10px;
}

.toggle-nav {
    width: 32px;
    height: 32px;
    display: block;
    transition: all .4s;
}

.toggle-line {
    position: relative;
    display: block;
    width: 28px;
    height: 1px;
    line-height: 0;
    background: #fff;
    margin: 5.5px 0;
    transition: all .4s;
}

.toggle-line:nth-last-of-type(3) {
    width: 85%;
}

.toggle-line:nth-last-of-type(2) {
    width: 70%;
}
.toggle-menu {
    margin-right: 15px;
}
.toggle-nav.active .toggle-line:nth-last-of-type(4) {
    transform-origin: top left;
    transform: rotate(45deg);
    top: -1px;
}
.toggle-nav.active .toggle-line {
    width: 30px;
}
.toggle-nav.active .toggle-line:nth-last-of-type(3) {
    opacity: 0;
}
.toggle-nav.active .toggle-line:nth-last-of-type(2) {
    opacity: 0;
}
.toggle-nav.active .toggle-line:nth-last-of-type(1) {
    transform-origin: bottom left;
    transform: rotate(-45deg);
    bottom: -1px;
}


.popup-simple {
    cursor: pointer;
}

.position-fixed {
    position: fixed;
    top: 0;
}

.navbar-toggler{
    border: 1px solid #333;
}

@media screen and (max-width: 767px) {
    .popup-block {
        padding: 6px;
    }
    .nav-content {
        display: none;
    }
    .mobile-navigation .nav-icon {
        display: block;
    }
    .popup-container {
        padding: 15px 10px;
    }
}

@media screen and (max-width: 992px) {
    .topbar-nav {
        display: flex;
    }
}

/*ADVANCED_TABLE_VIEW*/

#filter-block .collapse-header{
    background: #ffc107 !important;
}