/* MaterialDesignIcons.com */
@font-face {
    font-family: "Material Design Icons";
    src: url("../fonts/materialdesignicons/materialdesignicons-webfont.eot?v=5.3.45");
    src: url("../fonts/materialdesignicons/materialdesignicons-webfont.eot?#iefix&v=5.3.45") format("embedded-opentype"), url("../fonts/materialdesignicons/materialdesignicons-webfont.woff2?v=5.3.45") format("woff2"), url("../fonts/materialdesignicons/materialdesignicons-webfont.woff?v=5.3.45") format("woff"), url("../fonts/materialdesignicons/materialdesignicons-webfont.ttf?v=5.3.45") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.mdi-chevron-down::before {
    content: "\F0140";
}

#panel-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f5ece7;
    background: linear-gradient(90deg, rgba(245, 236, 231, 0.5) 0%, rgba(239, 233, 245, 0.5) 100%);
}

@media (max-width: 991.98px) {
    #panel-wrapper {
        display: block;
    }
}

#panel-wrapper #sidebar {
    width: 300px;
    overflow: hidden;
    min-height: 100%;
    padding: 0 10px;
    background: #FBFBFB;
}

@media (max-width: 991.98px) {
    #panel-wrapper #sidebar {
        height: 100%;
        position: fixed;
        top: 0;
        right: -100%;
        transition: all 0.5s ease-in-out;
        z-index: 1000;
        background: #fff;
    }

    #panel-wrapper #sidebar.open {
        right: 0;
        background: #fff;
        border-left: 1px solid #eee;
        z-index: 1200;
    }

    #panel-wrapper #sidebar.open .toggleSidebar {
        right: 230px;
        transition: all 0.75s ease-in-out;
    }

    #panel-wrapper #sidebar.open .toggleSidebar .mdi-menu:before {
        content: "\F0156";
    }
}

@media (max-width: 991.98px) and (max-width: 575.98px) {
    #panel-wrapper #sidebar.open .toggleSidebar {
        right: 81%;
        transition: all 0.75s ease-in-out;
    }
}

@media (max-width: 575.98px) {
    #panel-wrapper #sidebar {
        width: 100%;
    }
}

#panel-wrapper #sidebar .toggleSidebar {
    display: none;
    font-size: 30px;
    cursor: pointer;
    width: 50px;
    height: 40px;
    color: #000;
    position: fixed;
    top: 8px;
    right: 16px;
    transition: all 0.75s ease-in-out;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 991.98px) {
    #panel-wrapper #sidebar .toggleSidebar {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

#panel-wrapper #sidebar .sidebar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
}

#panel-wrapper #sidebar .sidebar-header .logo {
    width: 155px;
    height: 100px;
}

#panel-wrapper #sidebar .navigation {
    padding: 0;
    margin: 0;
}

@media (max-width: 991.98px) {
    #panel-wrapper #sidebar .navigation {
        height: calc(100% - 280px);
        overflow-y: scroll;
    }
}

#panel-wrapper #sidebar .navigation li {
    display: block;
    width: 100%;
    padding: 8px;
}

#panel-wrapper #sidebar .navigation li a {
    color: #626262;
    display: flex;
    width: 100%;
    padding: 12px 16px;
    position: relative;
    border-radius: 11px;
}

#panel-wrapper #sidebar .navigation li a .menu-icon {
    width: 24px;
    height: 24px;
    margin-left: 12px;
    filter: invert(37%) sepia(59%) saturate(0%) hue-rotate(197deg) brightness(103%) contrast(95%);
}

#panel-wrapper #sidebar .navigation li a:hover, #panel-wrapper #sidebar .navigation li a.active {
    color: #fff;
    background: #7fc1c5;
    background: linear-gradient(90deg, #7fc1c5 0%, #359298 100%);
}

#panel-wrapper #sidebar .navigation li a:hover .menu-icon, #panel-wrapper #sidebar .navigation li a.active .menu-icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(347deg) brightness(103%) contrast(105%);
}

#panel-wrapper #sidebar .navigation li.has-submenu > a:after {
    content: "\F0140";
    font-family: "Material Design Icons";
    display: block;
    position: absolute;
    left: 16px;
    top: 4px;
    color: #000;
    font-size: 24px;
}

#panel-wrapper #sidebar .navigation li.has-submenu > a:hover:after, #panel-wrapper #sidebar .navigation li.has-submenu > a.active:after {
    color: #fff;
}

#panel-wrapper #sidebar .navigation li.has-submenu .submenu {
    display: none;
    border-right: 1px solid #dadada;
    margin-right: 28px;
    margin-top: -14px;
    padding: 24px 0 0;
}

#panel-wrapper #sidebar .navigation li.has-submenu .submenu li {
    padding: 0;
    position: relative;
}

#panel-wrapper #sidebar .navigation li.has-submenu .submenu li:before {
    content: "";
    display: block;
    position: absolute;
    right: -8px;
    top: 16px;
    width: 16px;
    height: 16px;
    background: #dadada;
    border-radius: 50%;
    border: 3px solid #f5f8f9;
}

#panel-wrapper #sidebar .navigation li.has-submenu .submenu li:hover:before, #panel-wrapper #sidebar .navigation li.has-submenu .submenu li.active:before {
    background: #000;
}

#panel-wrapper #sidebar .navigation li.has-submenu .submenu li a {
    color: #707070;
    background: none;
}

#panel-wrapper #sidebar .navigation li.has-submenu.open > a:after {
    transform: rotate(180deg);
}

#panel-wrapper #panel-header {
    margin-bottom: 24px;
}

@media (max-width: 991.98px) {
    #panel-wrapper #panel-header {
        margin-top: 48px;
    }
}

#panel-wrapper #panel-header .toggle-sidebar-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 16px;
}

#panel-wrapper #panel-header .toggle-sidebar-wrapper img {
    height: 54px;
    width: 54px;
}

#panel-wrapper #panel-header .page-title h4 {
    color: #13120E;
    font-size: 24px;
}

#panel-wrapper #panel-header .page-title .timer {
    padding: 14px;
    background: #fff;
    border-radius: 12px;
    color: #626262;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 140px;
}

#panel-wrapper #panel-header .page-title .timer .icon {
    display: inline-block;
    background: url(/images/icons/timer.svg) center center no-repeat;
    width: 32px;
    height: 32px;
    margin-left: 16px;
}

#panel-wrapper #panel-header .user-details {
    padding: 5px 5px 5px 16px;
    background: #fff;
    border-radius: 12px;
    color: #626262;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #EEFF00;
    box-sizing: border-box;
    height: 80px;
}

@media (max-width: 991.98px) {
    #panel-wrapper #panel-header .user-details {
        margin-top: 12px;
    }
}

#panel-wrapper #panel-header .user-details .user {
    display: flex;
    align-items: center;
}

#panel-wrapper #panel-header .user-details .user img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
}

#panel-wrapper #panel-header .user-details .user .username {
    display: inline-block;
    margin-right: 8px;
    font-weight: bold;
}

#panel-wrapper #panel-header .user-details .user .username span {
    display: block;
}

#panel-wrapper .table--order table thead th {
    color: #000;
    border-bottom: 0;
    text-align: center;
}

#panel-wrapper #content {
    width: calc(100% - 300px);
    padding: 24px;
    min-height: 100%;
}

@media (max-width: 991.98px) {
    #panel-wrapper #content {
        width: 100%;
    }
}

#panel-wrapper #content .card {
    border-radius: 10px;
    border: none;
    margin-bottom: 24px;
    box-shadow: none;
}

#panel-wrapper #content .card .card-header {
    padding: 8px;
    background: none;
    border: none;
    margin: 16px;
}

#panel-wrapper #content .card .card-header h5 {
    font-weight: normal;
}

#panel-wrapper #content .card .card-body {
    padding: 0 24px 24px;
}

#panel-wrapper #content .card .card-body.without-header {
    padding: 24px;
}

#panel-wrapper #content .form-control {
    background: #f5e8f2;
    border: none;
}

#dashboard .stats .card-body {
    padding: 8px;
}

#dashboard .stats .amount .header {
    display: flex;
    align-items: center;
}

#dashboard .stats .amount .header .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

#dashboard .stats .amount .header .icon.sv {
    background: #FFA8A8;
}

#dashboard .stats .amount .header .icon.pv {
    background: #9EFCFC;
}

#dashboard .stats .amount .header .icon.gv {
    background: #CEF9C9;
}

#dashboard .stats .amount .header .title {
    margin-right: 24px;
    color: #989898;
}

#dashboard .stats .amount .money {
    text-align: left;
}

#dashboard .stats .amount .money .value {
    color: #000;
    font-size: 24px;
    font-weight: bold;
}

#dashboard .stats .amount .money .unit {
    color: #989898;
    font-size: 14px;
}

#dashboard .stats .amount .caption {
    color: #989898;
}

#dashboard .chart select {
    border-radius: 12px;
    border-color: #777;
    padding: 0;
    height: 34px;
    min-width: 100px;
    text-align: center;
}

#dashboard .chart .badge {
    font-size: 16px;
    color: #777;
    border-radius: 0;
    font-weight: normal;
}

#dashboard .chart .badge.badge-primary {
    background: #f5e8f2;
}

#dashboard .chart #chartContainer {
    height: 300px;
    width: 100%;
}

@media (max-width: 991.98px) {
    #dashboard .chart #chartContainer {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    #dashboard .chart #chartContainer {
        height: 150px;
    }
}

@media (max-width: 575.98px) {
    #dashboard .chart #chartContainer {
        height: 100px;
    }
}

#dashboard .notifications .card-header {
    border-bottom: 1px solid #000 !important;
    display: flex;
}

#dashboard .notifications .card-header img {
    height: 32px;
    width: 32px;
    margin-left: 10px;
}

#dashboard .notifications .item {
    padding: 8px 16px;
    margin-bottom: 16px;
}

#dashboard .notifications .item a {
    color: #777;
}

#dashboard .notifications .item a p {
    margin: 0;
    font-size: 14px;
}

#dashboard .not-level {
    border-right: 12px solid red !important;
    position: relative;
}

#dashboard .not-level .card-header {
    color: #ce4f4f;
    margin: 16px 16px 0 0 !important;
}

#dashboard .not-level .card-body {
    display: flex;
    flex-direction: column;
}

#dashboard .not-level .card-body span {
    font-size: 13px;
    color: #707070;
}

#dashboard .not-level .card-body img {
    position: absolute;
    left: 0;
    top: 5%;
    transform: translate(50%, 50%);
    height: 60px;
    width: 60px;
    filter: invert(69%) sepia(26%) saturate(422%) hue-rotate(314deg) brightness(104%) contrast(83%);
}

#dashboard .level {
    border-right: 12px solid #6532fc !important;
}

#dashboard .level .card-header {
    color: #2769a3;
    margin: 16px 16px 0 0 !important;
}

#dashboard .level .card-body {
    display: flex;
    flex-direction: column;
    padding: 0 24px 0 !important;
}

#dashboard .level .card-body p, #dashboard .level .card-body li {
    font-size: 13px;
    color: #707070;
}

#dashboard .level .card-body li {
    margin: 12px 0;
}

#dashboard .level .card-body img {
    position: absolute;
    left: 16px;
    top: 16px;
    height: 22px;
    width: 22px;
}

#dashboard .table-responsive th, #dashboard .table-responsive td {
    border-top: none;
    color: #707070;
    font-weight: normal;
    text-align: center;
    vertical-align: baseline;
    padding: 12px 0 0 0;
}

#dashboard .table-responsive tbody:first-child {
    margin-top: 30px;
}

#dashboard .table-responsive .btn-rounded {
    border-radius: 40px !important;
    background: #e5e5e5;
    color: #3cb53c;
}

#orders .table thead {
    background: #f8f2fc;
}

#commissions .table-bg {
    background: #f8f2fc;
    padding: 4px;
}

#commissions .table-bg .table {
    margin-bottom: 0;
}

#commissions .table-bg .table .bg-success {
    background: lightgreen !important;
}

#commissions .table-bg .table .positive, #commissions .table-bg .table .negative {
    direction: ltr;
}

#commissions .table-bg .table .negative {
    color: red;
}

#commissions .table-bg .table .positive {
    color: green;
}

#subsets-sales .table-bg {
    background: #f1eef5;
    padding: 4px;
}

#subsets-sales .table-bg .table {
    margin-bottom: 0;
    color: #777;
}

#subsets-sales .table-bg .table th, #subsets-sales .table-bg .table td {
    border-bottom: 1px solid #FF7268;
}

#subsets-sales .table-bg .table th:first-child, #subsets-sales .table-bg .table td:first-child {
    box-shadow: -3px 0px 3px rgba(0, 0, 0, 0.16);
}

#subsets-sales .table-bg .table thead th {
    color: #FF7268;
}

#subsets-sales .table-bg .table tbody tr td:first-child {
    font-weight: bold;
}

#rewards table, #rewards tr, #rewards td, #rewards th, #rewards thead, #rewards tbody, #rewards tfoot {
    border: none !important;
    color: #999;
    text-align: center;
}

#rewards table tr {
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

#rewards table tr.spacer {
    height: 32px;
    box-shadow: none;
}

#rewards table td.title {
    min-width: 266px;
}

#rewards table td.title span {
    border-radius: 40px;
    background: #ffc146;
    color: #FF7268;
    font-size: 18px;
    padding: 10px 8px;
}

#rewards table td.personal-sale, #rewards table td.role {
    min-width: 150px;
}

#rewards table td.group-sale {
    min-width: 205px;
}

#rewards table td.details {
    min-width: 244px;
}

#rewards table span {
    display: block;
}

#rewards table span.title {
    padding-bottom: 4px;
    border-bottom: 1px solid #777;
    margin-bottom: 4px;
}

#rewards table span.value {
    color: #FF7268;
    font-weight: bold;
}

#rewards table span.description {
    font-size: 12px;
}

#rewards table .badge {
    padding: 8px;
    border-radius: 40px;
}

#tabs-tickets .messages-list {
    margin: 32px 0;
}

#tabs-tickets .messages-list .message-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
}

#tabs-tickets .messages-list .message-item .info {
    background: #eee;
    padding: 16px;
    margin-bottom: 16px;
}

#tabs-tickets .messages-list .message-item .content {
    padding: 16px 0;
}

#settings .upload-profile {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #DFD8D8;
    border-radius: 4px;
}

@media (max-width: 767.98px) {
    #settings .upload-profile {
        display: block;
        text-align: center;
    }
}

#settings .upload-profile img {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 3px solid #f0f1f3;
    margin-left: 48px;
}

@media (max-width: 767.98px) {
    #settings .upload-profile img {
        margin-bottom: 16px;
    }
}

#settings .upload-profile p {
    margin: 8px 0 0 0;
    color: #c5c5c5;
    font-size: 14px;
}

@media (max-width: 767.98px) {
    #settings .upload-profile {
        margin-bottom: 16px;
    }
}

#settings .choose-gender .form-group {
    margin: 0;
}

#settings .choose-gender .form-group label {
    border-radius: 8px;
    padding: 8px;
    border: 1px solid transparent;
    margin: 0;
}

#settings .choose-gender .form-group [type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

#settings .choose-gender .form-group [type=radio] + label {
    cursor: pointer;
}

#settings .choose-gender .form-group [type=radio]:checked + label {
    border: 1px solid #707070;
}

#settings .user-details {
    margin-top: 24px;
}

#settings .user-details .form-control {
    background: #f0f1f3;
}

#settings .user-details .label {
    color: #ccc;
    font-size: 14px;
}

#settings .user-details .label .verify-field {
    padding: 1px 8px;
    margin-right: 8px;
    border-radius: 4px;
    font-size: 12px;
}

#settings .user-details .label .verify-field.done {
    color: #00b600;
    background: #f6ffed;
    border: 1px solid #b7eb8f;
}

#settings .user-details .label .verify-field.pending {
    color: #fff;
    background: #c8c8c8;
    border: 1px solid #aeaeae;
}

#settings .user-details .label .verify-field.has-error {
    color: #fff;
    background: #ff9090;
    border: 1px solid #d16767;
}

#settings .wallets .item {
    margin-bottom: 24px;
}

#settings .wallets .item .name {
    color: #666;
}

#settings .wallets .item .form-control {
    background: #f5efef;
}

#settings .wallets .item .wallet-address {
    font-family: Arial;
    font-weight: bold;
    letter-spacing: 2px;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 1.2em;
    white-space: nowrap;
    direction: ltr;
}

#settings .wallets .item .copy-wallet-address {
    cursor: pointer;
    position: relative;
}

#settings .wallets .item .copy-wallet-address.active:after {
    content: "\6A9\67E\6CC   \634\62F";
    position: absolute;
    bottom: -32px;
    right: 0;
    padding: 4px 8px;
    background: #baefdb;
    color: #1e8449;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
    width: 80px;
    text-align: center;
    border-radius: 4px;
}

#settings .modal-add-wallet .title {
    margin-bottom: 48px;
}

#settings .modal-add-wallet .form-group {
    display: flex;
}

#settings .modal-add-wallet .form-group label {
    width: 100px;
}

#settings .modal-add-wallet .form-group .form-control {
    background: #f6f6f6;
}

#settings .modal-add-wallet .btn {
    float: left;
}

.baby-gridview .gridview-item-per-page label * {
    display: inline;
}

.baby-gridview .gridview-item-per-page label .form-control {
    width: 100px;
    margin: 0 10px;
}
.baby-gridview .gridview-item-per-page label * {
    display: inline;
}
