﻿.border-red {
  border-color: #dc3545;
}

.uppercase {
  text-transform: uppercase;
}

.displayNone {
  display: none !important;
}

.displayBlock {
  display: block;
}

.displayInlineBlock {
  display: inline-block;
}

.displayFlex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
}

.cursor-pointer {
  cursor: pointer;
}

.flex-1 {
  flex: 1;
}

.scrollY {
  overflow-y: scroll;
}

.alignCenter {
  align-items: center;
}

.bold {
  font-weight: 700;
}

.blue-color {
  color: #1095EA;
}

.red-color {
  color: #EB5757;
}

.green-color {
  color: green;
}

.invisible {
  visibility: hidden;
}

.scrollable {
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  opacity: 0.7;
  z-index: 999;
}
.spinner .pin {
  width: 60px;
  height: 60px;
  animation: spinner 700ms linear infinite;
  border-radius: 50%;
  border: 5px solid #ddd;
  border-top: 5px solid #003865;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -30px;
  margin-top: -30px;
}

.flex1 {
  flex: 1;
}

.top60 {
  height: calc(100% - 60px);
  top: 60px;
}

.loading-three-bounce {
  margin: 10px auto;
  width: 80px;
  text-align: center;
}
.loading-three-bounce .dot {
  width: 16px;
  height: 16px;
  background-color: #0b97d4;
  border-radius: 100%;
  display: inline-block;
  animation: loading-three-bounce 1.4s ease-in-out 0s infinite both;
}
.loading-three-bounce .dot1 {
  animation-delay: -0.32s;
}
.loading-three-bounce .dot2 {
  animation-delay: -0.16s;
}

@keyframes loading-three-bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.loading-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.4s;
}
.loading-overlay.show {
  opacity: 1;
  visibility: visible;
}
.loading-overlay .loading-target {
  border-radius: 10px;
  text-align: center;
  background: #ffffff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  transition-duration: 0.4s;
  padding: 20px;
}
.loading-overlay .loading-text {
  margin: 0 15px;
  font-size: 16px;
}
.loading-overlay .spinner {
  width: 25px;
  height: 25px;
  border-width: 2px;
  margin: 0;
  position: relative;
  left: auto;
}
.loading-overlay .spinner .pin {
  width: 25px;
  height: 25px;
  margin: 0;
  left: 0;
  top: 0;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

*[data-tooltip] {
  position: relative;
}
*[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  display: none;
  bottom: -6px;
  background: #708090;
  white-space: nowrap;
  padding: 0 10px;
  z-index: 12;
  font-size: 12px;
  color: #ffffff;
  border-radius: 3px;
  height: 30px;
  line-height: 30px;
  transform: translate(-50%, 100%);
}
*[data-tooltip]::after {
  left: 50%;
  bottom: -6px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  z-index: 12;
  pointer-events: none;
  border-color: rgba(65, 175, 210, 0);
  border-bottom-color: #708090;
  border-width: 6px;
  margin-left: -6px;
  display: none;
}
*[data-tooltip]:hover::before, *[data-tooltip]:hover::after {
  display: block;
  z-index: 110;
}

form {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
}
form .form-body {
  background: #fff;
}

.cms-checkbox,
.cms-radio {
  font-size: 14px;
  position: relative;
}

.cms-checkbox {
  font-size: 14px;
  position: relative;
}
.cms-checkbox .checkbox-label {
  font-size: 14px;
  color: #666666;
  cursor: pointer;
  padding-left: 25px;
}
.cms-checkbox .radio-label {
  font-size: 14px;
  color: #666;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
}
.cms-checkbox input[type=radio],
.cms-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.cms-checkbox input[type=radio] + .checkbox-label:before,
.cms-checkbox input[type=checkbox] + .checkbox-label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #E2E2E2;
  box-sizing: border-box;
  border-radius: 3px;
  position: absolute;
  left: 0px;
  top: 0px;
}
.cms-checkbox input[type=radio]:checked + .checkbox-label:before,
.cms-checkbox input[type=checkbox]:checked + .checkbox-label:before {
  border-color: rgba(16, 149, 234, 0.7);
}
.cms-checkbox input[type=radio]:checked + .checkbox-label:after,
.cms-checkbox input[type=checkbox]:checked + .checkbox-label:after {
  content: "";
  width: 6px;
  height: 10px;
  display: block;
  border: solid rgba(16, 149, 234, 0.7);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: 6px;
}
.cms-checkbox input[type=radio]:checked + .checkbox-label.disabled:before,
.cms-checkbox input[type=checkbox]:checked + .checkbox-label.disabled:before {
  border-color: #999;
}
.cms-checkbox input [type=radio]:checked + .checkbox-label.disabled:after,
.cms-checkbox input[type=checkbox]:checked + .checkbox-label.disabled:after {
  border-color: #999;
  color: #999;
}

.cms-radio {
  font-size: 14px;
  position: relative;
}
.cms-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.cms-radio .radio-label {
  font-size: 14px;
  color: #666666;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
}
.cms-radio input[type=radio] + .radio-label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #E2E2E2;
  box-sizing: border-box;
  border-radius: 100%;
  position: absolute;
  left: 0px;
  top: -1px;
}
.cms-radio input[type=radio]:checked + .radio-label:after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 3px;
  left: 4px;
  border-radius: 100%;
  background: #1095ea;
}

.cms-modal-box {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1052;
  display: none;
}
.cms-modal-box.show {
  display: block;
}
.cms-modal-box .cms-modal-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
}
.cms-modal-box .cms-modal-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  align-items: center;
}
.cms-modal-box .cms-modal-container .cms-modal-inner {
  margin: 0 auto;
  background: #fff;
}
.cms-modal-box .cms-modal-container.white {
  background: #fff;
}
.cms-modal-box .cms-modal-container.white .cms-modal-wrapper {
  border: 1px solid #ccc;
}
.cms-modal-box .cms-modal-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  padding: 10px;
  flex-grow: 1;
  background: #ffffff;
  border: 0;
  /*border-bottom: 1px solid $border-normal-color;*/
}
.cms-modal-box .cms-modal-content .message {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  word-break: break-word;
  max-width: 450px;
  text-align: left;
}
.cms-modal-box .cms-modal-content .message .icons {
  width: 32px;
  height: 32px;
  flex: none;
  background-image: url(../images/notify_icons.png);
  background-repeat: no-repeat;
  margin-right: 10px;
}
.cms-modal-box .cms-modal-content .message .icons.confirm {
  background-position: 0px 0px;
}
.cms-modal-box .cms-modal-content .message .icons.success {
  background-position: 0px -115px;
}
.cms-modal-box .cms-modal-content .message .icons.info {
  background-position: 0px 36px;
}
.cms-modal-box .cms-modal-content .message .icons.question {
  background-position: 0px 0px;
}
.cms-modal-box .cms-modal-content .message .icons.warning {
  background-position: 0px -77px;
}
.cms-modal-box .cms-modal-content .message .icons.error {
  background-position: 0px -151px;
}
.cms-modal-box .cms-modal-wrapper-nodrag,
.cms-modal-box .cms-modal-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 300px;
  position: absolute;
  border-radius: 4px;
  flex-direction: column;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cms-modal-box .cms-modal-wrapper-nodrag header,
.cms-modal-box .cms-modal-wrapper header {
  border-bottom: solid 1px #c8c8cc;
  color: #666;
  text-shadow: 1px 1px 1px #ffffff;
  padding: 8px 10px;
  position: relative;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: move;
  background-color: #f2f2f2;
  text-align: left;
}
.cms-modal-box .cms-modal-wrapper-nodrag header .btn_close,
.cms-modal-box .cms-modal-wrapper header .btn_close {
  outline: none;
  border: none;
  box-shadow: none;
  position: absolute;
  right: 4px;
  top: 50%;
  margin-top: -12px;
  background: url(../images/modal_close_icon.png) center center no-repeat;
  height: 24px;
  width: 24px;
  opacity: 0.8;
  cursor: pointer;
}
.cms-modal-box .cms-modal-wrapper-nodrag header .btn_close:active, .cms-modal-box .cms-modal-wrapper-nodrag header .btn_close:focus, .cms-modal-box .cms-modal-wrapper-nodrag header .btn_close:hover,
.cms-modal-box .cms-modal-wrapper header .btn_close:active,
.cms-modal-box .cms-modal-wrapper header .btn_close:focus,
.cms-modal-box .cms-modal-wrapper header .btn_close:hover {
  outline: none;
  box-shadow: none;
  opacity: 1;
}
.cms-modal-box .cms-modal-wrapper-nodrag footer,
.cms-modal-box .cms-modal-wrapper footer {
  background-color: #f2f2f2;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cms-modal-box .cms-modal-wrapper-nodrag .footer-btn,
.cms-modal-box .cms-modal-wrapper .footer-btn {
  flex: none;
  text-align: right;
  padding: 10px;
}
.cms-modal-box .cms-modal-wrapper-nodrag .footer-btn .btn-default,
.cms-modal-box .cms-modal-wrapper .footer-btn .btn-default {
  margin: 0 0 0 10px;
}
.cms-modal-box .cms-modal-wrapper-nodrag .footer-btn .btn,
.cms-modal-box .cms-modal-wrapper .footer-btn .btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid;
  background-color: #f6f7f9;
  border-color: #ced0d4;
  color: #000000;
  transition: all 0.2s ease-in-out;
  box-shadow: none;
  margin-left: 5px;
}
.cms-modal-box .cms-modal-wrapper-nodrag .footer-btn .btn,
.cms-modal-box .cms-modal-wrapper .footer-btn .btn {
  background: linear-gradient(#f4f4f4, #ececec);
  border: 1px solid #cccccc;
  border-radius: 3px;
  text-transform: uppercase;
  min-width: 40px;
  font-size: 11px;
  outline: none !important;
}
.cms-modal-box .cms-modal-wrapper-nodrag .footer-btn .btn.btn-primary,
.cms-modal-box .cms-modal-wrapper .footer-btn .btn.btn-primary {
  background-color: #4d90fe;
  background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed);
  background-image: linear-gradient(top, #4d90fe, #4787ed);
  border: 1px solid #3079ed;
  color: #ffffff;
}
.cms-modal-box .cms-modal-wrapper {
  top: auto;
  left: auto;
  margin: 0 auto;
  transform: none;
  position: relative;
  width: auto;
  width: 60%;
}
@media (max-width: 1279px) {
  .cms-modal-box .cms-modal-wrapper {
    /*width: 80%;*/
  }
  .cms-modal-box .cms-modal-wrapper.alert-msg-box {
    width: auto;
  }
}

.datetime-picker {
  min-width: 190px;
}
.datetime-picker > input {
  background: url(../images/date-picker-icon.png) #ffffff 5px center no-repeat !important;
  text-indent: 24px;
  font-size: 14px;
  text-align: left;
  padding: 0px 10px;
  border: solid 1px #E2E2E2;
  height: 32px;
  line-height: 32px;
  border-radius: 4px;
}

.cms-plugin-popup .plugin-wrapper {
  min-width: 410px;
}
.cms-plugin-popup .plugin-wrapper.top60 {
  top: 61px;
  height: calc(100% - 60px);
}
.cms-plugin-popup .plugin-wrapper.w360 {
  width: 360px;
}
.cms-plugin-popup .plugin-wrapper form {
  height: 100%;
}
.cms-plugin-popup .plugin-wrapper .plugin-content {
  padding: 10px 0px 10px 20px;
}
.cms-plugin-popup .plugin-wrapper .plugin-content .inner-content {
  overflow: auto;
  padding-right: 20px;
}

.alert-msg-box {
  max-width: 480px;
}

.cms-popup-overlay {
  width: 100%;
  position: absolute;
  height: 100%;
  flex: none;
  background: #000000;
  filter: alpha(opacity=15);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=15);
  opacity: 0.15;
  transition: opacity ease 200ms;
}

.cms-popup-container {
  position: fixed;
  left: 0px;
  top: 60px;
  width: 100%;
  height: calc(100% - 60px);
  z-index: 999;
  flex-direction: column;
}
.cms-popup-container .form-box-container {
  height: 100%;
  width: 100%;
}
.cms-popup-container .form-box-container .popup-content-inner {
  height: 100%;
  padding: 40px 0 0;
}
.cms-popup-container .form-box-container .popup-content-inner .main-content {
  padding: 0 0 40px;
}
.cms-popup-container .form-box-container .popup-content-inner .main-panel {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 1px #d3d3d3 solid;
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  width: 610px;
  min-height: 460px;
  margin: 0 auto;
  flex-direction: column;
  border-radius: 1px;
  position: relative;
  padding: 20px 30px;
}
.cms-popup-container .cms-popup-content > form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  height: calc(100% - 50px);
  width: 100%;
}

.cms-vietnambiz .ui-widget-overlay {
  background: #000000;
  opacity: 0.3;
  filter: Alpha(Opacity=0.3);
  overflow: scroll;
}
.cms-vietnambiz .rz-inputtext {
  outline: none;
}

.media-file-manager {
  /**/
}
.media-file-manager .m__ui-contextmenu.m__contextmenu-trigger {
  width: 100%;
  height: 100%;
}
.media-file-manager .m__ui-contextmenu.m__contextmenu-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  padding: 5px 0;
  min-width: 150px;
  font-size: 13px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.03);
  z-index: 999;
  border-radius: 6px;
}
.media-file-manager .m__ui-contextmenu.m__contextmenu-wrapper .m__menu-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 5px 10px;
  cursor: pointer;
}
.media-file-manager .m__ui-contextmenu.m__contextmenu-wrapper .m__menu-item:hover {
  background-color: #f2f2f2;
}
.media-file-manager .m__ui-contextmenu.m__contextmenu-wrapper .m__menu-item .m__item-icon {
  margin-right: 10px;
  width: 15px;
}
.media-file-manager .m__ui-contextmenu.m__contextmenu-wrapper .m__menu-divider {
  height: 1px;
  background-color: #f0f0f0;
  margin: 5px;
}
@keyframes context-popup {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.no-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-weight: 400;
  color: gray;
  border: 1px solid #cccccc;
  padding: 10px;
  margin-top: 40px;
  background: #ffffff;
  width: 100%;
}

.wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 1200px;
}
.wrapper > div {
  width: 100%;
}
.wrapper .change-password-popup,
.wrapper .account-profile-popup {
  padding: 20px;
  width: 480px;
}
.wrapper .change-password-popup .user-avatar,
.wrapper .account-profile-popup .user-avatar {
  text-align: center;
}
.wrapper .change-password-popup .user-avatar .file-input-wrap,
.wrapper .account-profile-popup .user-avatar .file-input-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
  width: 150px;
}
.wrapper .change-password-popup .user-avatar .file-input-wrap img,
.wrapper .account-profile-popup .user-avatar .file-input-wrap img {
  border: 8px solid #f5f5f5;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}
.wrapper .change-password-popup .user-avatar .file-input-wrap .edit,
.wrapper .account-profile-popup .user-avatar .file-input-wrap .edit {
  position: absolute;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: #eee;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  border: 5px solid #fff;
}
.wrapper .change-password-popup .validation-message,
.wrapper .account-profile-popup .validation-message {
  color: #dc3545;
  font-size: 14px;
}
.wrapper .change-password-popup {
  width: auto;
}
.wrapper .change-password-popup .hide-pass {
  border: 1px solid #ced4da;
  border-left: 0;
  margin-left: -1px;
  background: #ffffff;
  padding-right: 6px;
  outline: none;
  display: flex;
  align-items: center;
}
.wrapper .change-password-popup .form-group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.wrapper .change-password-popup .form-group label {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 160px;
  border: 1px solid #ced4da;
  border-right: 0;
  padding: 0 10px;
  position: relative;
  color: gray;
}
.wrapper .change-password-popup .form-group label::after {
  content: ":";
  position: absolute;
  right: 0px;
}
.wrapper .change-password-popup .form-group label.required::before {
  content: " *";
  color: #dc3545;
  padding-right: 4px;
}
.wrapper .change-password-popup .form-group .form-control {
  width: auto;
  border: 1px solid #ced4da;
  border-left: 0;
}
.wrapper .change-password-popup .validation-errors {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-height: 600px) {
  .wrapper .change-password-popup,
  .wrapper .account-profile-popup {
    max-height: 80vh;
    overflow: auto;
  }
}

.fullscreen {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
}

.form-group label.required::after {
  content: " *";
  color: #dc3545;
}

.scroll-wrapper,
.listing-items {
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 14px;
  position: relative;
  overflow: auto;
}

.top-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-between;
  background-color: #003865;
  top: 0;
  left: 0;
  height: 60px;
}
.top-header.fixed {
  width: 100%;
  /*z-index: 1050;*/
}
.top-header .header-brand {
  width: 260px;
  padding: 0 0 0 20px;
  margin: 0;
}
.top-header .header-brand .logo img {
  width: 200px;
}
.top-header .header-brand.icon {
  width: 100px;
}
.top-header .header-brand.icon .logo img {
  width: auto;
}
.top-header .header-top-menu {
  transition: all 0.4s;
}
.top-header .header-top-menu ul {
  list-style: none;
}
.top-header .header-top-menu .nav-items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.top-header .header-top-menu .nav-items .top-nav-item,
.top-header .header-top-menu .nav-items > .nav-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin-left: 20px;
  height: 60px;
}
.top-header .header-top-menu .nav-items .top-nav-item .item-link,
.top-header .header-top-menu .nav-items > .nav-item .item-link {
  text-transform: uppercase;
  padding: 5px 2px 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  white-space: nowrap;
}
.top-header .header-top-menu .nav-items .top-nav-item .item-link:hover,
.top-header .header-top-menu .nav-items > .nav-item .item-link:hover {
  color: #f48320;
}
.top-header .header-top-menu .nav-items .top-nav-item .item-link:active, .top-header .header-top-menu .nav-items .top-nav-item .item-link.active,
.top-header .header-top-menu .nav-items > .nav-item .item-link:active,
.top-header .header-top-menu .nav-items > .nav-item .item-link.active {
  color: #f48320;
}
.top-header .header-top-menu .nav-items .top-nav-item .item-link i,
.top-header .header-top-menu .nav-items > .nav-item .item-link i {
  margin-right: 8px;
}
.top-header .header-top-menu .nav-items .top-nav-item .item-link .video::before,
.top-header .header-top-menu .nav-items > .nav-item .item-link .video::before {
  content: "\f144";
}
.top-header .header-top-menu .nav-items .top-nav-item .item-link .cogs::before,
.top-header .header-top-menu .nav-items > .nav-item .item-link .cogs::before {
  content: "\f085";
}
.top-header .header-top-menu .nav-items .top-nav-item .item-link .statistic::before,
.top-header .header-top-menu .nav-items > .nav-item .item-link .statistic::before {
  content: "\f080";
}
.top-header .header-top-menu .nav-items .top-nav-item .item-link .royalty::before,
.top-header .header-top-menu .nav-items > .nav-item .item-link .royalty::before {
  content: "\f0d6";
}
.top-header .header-top-menu .nav-items .top-nav-item .item-link .news::before,
.top-header .header-top-menu .nav-items > .nav-item .item-link .news::before {
  content: "\f00b";
}
.top-header .header-top-menu .nav-items .top-nav-item .item-link .news-add::before,
.top-header .header-top-menu .nav-items > .nav-item .item-link .news-add::before {
  content: "\f044";
}
.top-header .header-top-menu .nav-items .top-nav-item .item-link .pin::before,
.top-header .header-top-menu .nav-items > .nav-item .item-link .pin::before {
  content: "\f0c6";
}
.top-header .header-top-menu .nav-items .top-nav-item:hover .sub-items,
.top-header .header-top-menu .nav-items > .nav-item:hover .sub-items {
  display: block;
}
.top-header .header-top-menu .nav-items .sub-items {
  display: none;
  list-style: none;
  position: absolute;
  top: 60px;
  left: 0;
  background: #ffffff;
  border: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  margin: 0;
  padding: 0;
  z-index: 999;
  min-width: 200px;
}
.top-header .header-top-menu .nav-items .sub-items .nav-item {
  border-bottom: 1px solid #ddd;
}
.top-header .header-top-menu .nav-items .sub-items .nav-item .item-link {
  font-weight: 400;
  color: #003865;
  display: block;
  font-size: 13px;
  white-space: nowrap;
  padding: 8px 15px;
}
.top-header .header-top-menu .nav-items .sub-items .nav-item .item-link:hover {
  background: #f7f7f7;
  color: #f48320;
}
.top-header .header-top-menu .nav-items .sub-items > li {
  border-bottom: dashed 1px #ddd;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  height: 38px;
  line-height: 38px;
}
.top-header .header-top-menu .nav-items .sub-items > li a {
  color: #797979;
  display: block;
  text-decoration: none;
  padding: 0 10px;
  white-space: nowrap;
}
.top-header .header-top-menu .nav-items .sub-items > li a:hover {
  background: #f7f7f7;
  color: #f48320;
}
.top-header .top-menu-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0 15px;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  order: 2;
  position: absolute;
  right: 0;
  height: 60px;
  z-index: 1000;
}
.top-header .top-menu-right .version-txt {
  color: #ffffff;
  padding-right: 10px;
  font-size: 14px;
  margin: 0;
  text-align: right;
  font-weight: 600;
}
.top-header .top-menu-right .version-txt a {
  margin: 5px 0 0;
  cursor: pointer;
}
.top-header .top-menu-right .version-txt span {
  font-weight: 400;
}
.top-header .top-menu-right .version-txt a.name {
  margin: 0;
  color: #f48221;
  display: block;
}
.top-header .top-menu-right .version-txt a.name span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}
.top-header .top-menu-right .dropdown-profile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-right: 25px;
  cursor: pointer;
  height: 60px;
  align-items: center;
}
.top-header .top-menu-right .dropdown-profile .avatar {
  width: 32px;
  height: 32px;
  position: relative;
}
.top-header .top-menu-right .dropdown-profile .avatar img {
  width: 100%;
  height: 100%;
  border: 2px solid #ffffff;
  transform: scale(1) !important;
  padding: 0 !important;
  object-fit: cover;
}
.top-header .top-menu-right .dropdown-profile .rounded-circle {
  border-radius: 50% !important;
  vertical-align: middle;
}
.top-header .top-menu-right .dropdown-profile .avatar-box {
  float: left;
  margin-right: 10px;
}
.top-header .top-menu-right .dropdown-profile .avatar-box img {
  border-radius: 100%;
  width: 100px;
  object-fit: cover;
  height: 100px;
}
.top-header .top-menu-right .dropdown-profile .dropdown-actions {
  display: none;
  position: absolute;
  min-width: 230px;
  padding-top: 35px;
  top: 25px;
  right: 5px;
  z-index: 9999;
  transition: all 0.3s ease;
}
.top-header .top-menu-right .dropdown-profile .dropdown-actions .actions-container {
  border: 1px solid #ddd;
  background-color: #ffffff;
  padding: 10px;
  overflow: hidden;
  border-radius: 4px;
}
.top-header .top-menu-right .dropdown-profile .dropdown-actions a {
  color: #000000;
  text-decoration: none;
}
.top-header .top-menu-right .dropdown-profile .dropdown-actions a:hover {
  color: #1095EA;
  text-decoration: none;
}
.top-header .top-menu-right .dropdown-profile .dropdown-actions a i {
  margin-right: 4px;
}
.top-header .top-menu-right .dropdown-profile .dropdown-actions p {
  padding: 6px 0px;
  margin: 0;
  white-space: nowrap;
}
.top-header .top-menu-right .dropdown-profile .dropdown-actions::before {
  border-bottom: 10px solid #ffffff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  right: 40px;
  display: block;
  font-size: 0;
  height: 0;
  top: 16px;
  line-height: 0;
  position: absolute;
  width: 0;
  content: "";
  border-top: 10px solid transparent;
}
.top-header .top-menu-right .dropdown-profile:hover .dropdown-actions {
  display: block;
}

.body-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}

.main-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
  position: relative;
}
.main-container .search-form {
  padding: 20px 8px 20px 20px;
  border-bottom: 1px solid #e2e2e2;
  background-color: #f8f8f8;
  line-height: 1;
}
.main-container .search-form.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.main-container .box-filter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 13px;
  width: 60%;
  flex: 1;
}
.main-container .filter-item {
  float: left;
  margin-right: 10px;
}
.main-container .filter-item button,
.main-container .filter-item input[type=text] {
  height: 32px;
  box-shadow: none;
  font-size: 13px;
}
.main-container .filter-item .btn-filter, .main-container .filter-item .input-group {
  border: 1px solid #ced4da;
}
.main-container .filter-item .btn-filter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: 1px;
  border-radius: 0;
  width: 40px;
  color: #003865;
  text-align: center;
  font-size: 13px;
  outline: none !important;
  box-shadow: none;
  border: 1px solid #ced4da;
  align-items: center;
}
.main-container .filter-item .btn-filter:hover {
  background: #e9ecef;
}
.main-container .search-keyword {
  width: 400px;
}
.main-container .adv-search {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.main-container .adv-search .dropdown-toggle {
  min-width: initial;
  height: 30px;
  margin: 0;
  border: 1px solid #ced4da;
  border-left: 0;
  outline: none !important;
  width: 30px;
}
.main-container .adv-search input[type=text] {
  height: 32px;
  font-size: 13px;
}

.box-func-default {
  background: #192d3f;
  width: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  z-index: 100;
  flex-shrink: 0;
}
.box-func-default .items .item {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  flex: none;
}
.box-func-default .items .item.expand-menu {
  display: none;
}
.box-func-default .items .item.square {
  width: 60px;
  height: 60px;
  border-top: 1px solid #233c52;
  border-bottom: 1px solid #10202e;
}
.box-func-default .items .item.square:hover, .box-func-default .items .item.square.active {
  background-color: #22384c;
}
.box-func-default .items .item.square:hover::before, .box-func-default .items .item.square.active::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 2px;
  background: #2ea2c7;
  height: 100%;
}
.box-func-default .items .item.square:first-child {
  border-top: none;
}
.box-func-default .items .item.square:last-child {
  border-bottom: none;
}
.box-func-default .items .item i {
  cursor: pointer;
  position: relative;
}
.box-func-default .items .item .icons {
  background-image: url(../images/sidebar-icons.png);
  background-repeat: no-repeat;
  display: block;
  width: 40px;
  height: 40px;
  flex: none;
}
.box-func-default .items .item .icons.dashboard {
  background-position: -404px -8px;
}
.box-func-default .items .item .icons.dashboard:hover {
  background-position: -450px -8px;
}
.box-func-default .items .item .icons.bullet {
  background-position: -111px -287px;
}
.box-func-default .items .item .icons.new-post {
  background-position: -308px -8px;
}
.box-func-default .items .item .icons.new-post:hover {
  background-position: -355px -8px;
}

.box-panel-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 260px;
  height: 100%;
  flex-grow: 1;
  flex: none;
  padding: 10px 0 10px 10px;
  border-right: 1px solid #e2e2e2;
  background: #ffffff;
  z-index: 10;
  flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  position: relative;
}
.box-panel-left header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 15px;
  height: 57px;
  align-items: center;
  padding-left: 40px;
  margin-bottom: 20px;
  margin-right: 10px;
  color: #3c3c3c;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(8, 18, 28, 0.1);
}
.box-panel-left .sidebar-body {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0 5px 0 0;
  flex-grow: 1;
  flex-direction: column;
  overflow-y: scroll;
}
.box-panel-left .sidebar-body .total-number {
  float: right;
  background: #feeca4;
  border-radius: 8px;
  padding: 1px 4px 0;
  font-weight: 400;
}
.box-panel-left .box-title {
  color: #003865;
  color: #6f7377;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 10px;
  font-size: 11px;
}
.box-panel-left .nav-sidebar {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.box-panel-left .nav-sidebar .nav-link-item {
  text-transform: capitalize;
}
.box-panel-left .nav-sidebar .nav-link-item a,
.box-panel-left .nav-sidebar .nav-link-item .no-link {
  border-radius: 0;
  letter-spacing: normal;
  padding: 6px 5px 4px 10px;
  display: block;
  text-decoration: none;
  text-transform: capitalize;
}
.box-panel-left .nav-sidebar .nav-link-item a.active,
.box-panel-left .nav-sidebar .nav-link-item .no-link.active {
  font-weight: 700;
  color: #003865;
  background-color: #f5f6fa;
}
.box-panel-left .nav-sidebar .nav-link-item a.active i,
.box-panel-left .nav-sidebar .nav-link-item .no-link.active i {
  opacity: 1;
}
.box-panel-left .nav-sidebar .nav-link-item a {
  cursor: pointer;
  color: #637585;
}
.box-panel-left .nav-sidebar .nav-link-item a:hover {
  color: #003865;
}
.box-panel-left .nav-sidebar .nav-link-item a:hover i {
  opacity: 1;
}
.box-panel-left .nav-sidebar .nav-link-item .no-link {
  cursor: default;
  color: #999;
}
.box-panel-left .nav-sidebar .nav-link-item .no-link:hover {
  color: #999;
  background: transparent;
}
.box-panel-left .nav-sidebar .nav-link-item .no-link:hover i {
  opacity: 0.7;
}
.box-panel-left .nav-sidebar .nav-link-item.mypost {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: auto;
  align-items: center;
  padding-left: 0px;
  margin-bottom: 20px;
  margin-right: 0px;
  border-bottom: 1px solid rgba(8, 18, 28, 0.1);
}
.box-panel-left .nav-sidebar .nav-link-item.mypost a, .box-panel-left .nav-sidebar .nav-link-item.mypost > .no-link {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  background: none;
  color: #666;
  width: 100%;
  padding-bottom: 10px;
}
.box-panel-left .nav-sidebar .nav-link-item.mypost a .total-number, .box-panel-left .nav-sidebar .nav-link-item.mypost > .no-link .total-number {
  float: right;
  background: #feeca4;
  border-radius: 8px;
  padding: 1px 4px 0;
  font-weight: 400;
}
.box-panel-left .nav-sidebar .nav-link-item.mypost:hover {
  background: none;
}
.box-panel-left .nav-sidebar .nav-link-item:hover, .box-panel-left .nav-sidebar .nav-link-item:focus {
  color: #003865;
  background-color: #f5f6fa;
}
.box-panel-left .nav-sidebar .nav-link-item i {
  margin-right: 12px;
  opacity: 0.7;
  display: inline-block;
  width: 13px;
  height: 16px;
}
.box-panel-left .nav-sidebar .nav-link-item .sprite-list {
  background: transparent url(../images/sprite-list.png) 0 0 no-repeat;
}
.box-panel-left .nav-sidebar .nav-link-item .ico-processingpost {
  background: none;
  font-size: 15px;
  color: #777;
  display: inline-block;
}
.box-panel-left .nav-sidebar .nav-link-item .ico-processingpost::before {
  content: "\f07b";
}
.box-panel-left .nav-sidebar .nav-link-item .ico-releasedpost {
  background-position: 0 -77px;
}
.box-panel-left .nav-sidebar .nav-link-item .ico-receivedreleasepost {
  background-position: 0 -58px;
}
.box-panel-left .nav-sidebar .nav-link-item .ico-waitingreleasepost {
  background-position: 0 -26px;
}
.box-panel-left .nav-sidebar .nav-link-item .ico-receivededitpost,
.box-panel-left .nav-sidebar .nav-link-item .ico-receivededitingpost {
  background-position: 0 -41px;
}
.box-panel-left .nav-sidebar .nav-link-item .ico-waitingeditpost,
.box-panel-left .nav-sidebar .nav-link-item .ico-waitingeditingpost {
  background-position: 0 -12px;
}
.box-panel-left .nav-sidebar .nav-link-item .ico-temppost {
  background-position: 0 3px;
}
.box-panel-left .nav-sidebar .nav-link-item .ico-returnpost,
.box-panel-left .nav-sidebar .nav-link-item .ico-myreturnpost {
  background-position: 0 -93px;
}
.box-panel-left .nav-sidebar .nav-link-item .ico-takendownpost {
  background-position: -1px -123px;
}
.box-panel-left .nav-sidebar .nav-link-item .ico-removedpost {
  background-position: 0 -137px;
}
.box-panel-left .nav-sidebar .nav-link-item .ico-calendar {
  background-position: 0 -155px;
}
.box-panel-left .nav-sidebar .nav-link-item .icons icon_content,
.box-panel-left .nav-sidebar .nav-link-item .news-type-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: transparent url(../images/news-type-icons.png) top left no-repeat;
}
.box-panel-left .nav-sidebar .nav-link-item .icons icon_content.magazine,
.box-panel-left .nav-sidebar .nav-link-item .news-type-icon.magazine {
  background-position: 0px -203px;
}

.box-panel-right {
  width: 100%;
  height: 100%;
  position: relative;
}

.page-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
  height: 100%;
}

.page-inner {
  width: 100%;
  height: 100%;
}

.btn-add-new,
.btn-default {
  font-family: "Roboto Condensed", "Roboto", sans-serif;
  cursor: pointer;
  background: #ffffff;
  border: solid 1px #d8d8d8;
  border-radius: 3px;
  box-shadow: 0 2px 0 #f5f5f5;
  color: #607180;
  font-size: 11px;
  line-height: 30px;
  padding: 0 16px;
  font-weight: bold;
  align-items: center;
  text-transform: uppercase;
  outline: none !important;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-add-new .fa,
.btn-add-new i,
.btn-default .fa,
.btn-default i {
  margin-right: 6px;
}
.btn-add-new:hover,
.btn-default:hover {
  color: #003865;
}

.btn-default {
  margin: 0 10px;
  min-width: 98px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
.btn-default.btn-danger {
  color: #ffffff;
  background-color: #EB5757;
  border: 1px solid #EB5757;
}
.btn-default.btn-danger:hover {
  background-color: #dc3545;
  border: 1px solid #dc3545;
}
.btn-default.save {
  background: #1095EA;
  border-color: #1095EA;
  color: #ffffff;
  border: 0;
}
.btn-default.warning {
  background: #f0ad4e;
  border-color: #f0ad4e;
  color: #ffffff;
}
.btn-default.blue {
  background: #1095EA;
  color: #ffffff;
}
.btn-default.remove {
  background: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
}
.btn-default.orange {
  background-color: #ec971f;
  border-color: #eb9316;
  color: #ffffff;
}
.btn-default.green {
  background: #5cb85c;
  border-color: #5cb85c;
  color: #ffffff;
}
.btn-default[disabled] {
  background: #bbb;
  cursor: not-allowed;
  color: gray;
}

.work-space {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s;
  background: #f8f8f8;
}

.work-space-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.work-space-main {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}
.work-space-main .btn-default {
  min-width: initial;
  height: 31px;
  margin: 0;
}
.work-space-main .box-pager {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  margin: 0 16px 0px 0;
}
.work-space-main .box-pager .box-paging {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 13px;
}
.work-space-main .box-pager .box-paging .info-text {
  color: #000000;
  margin: 0 20px;
  white-space: nowrap;
}
.work-space-main .box-pager .box-paging .info-text .number {
  color: #003865;
}
.work-space-main .box-pager .box-paging .pager-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.work-space-main .box-pager .box-paging .pager-display {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.work-space-main .box-pager .box-paging .pager-display .page-link {
  margin: 0 2px;
  min-height: 25px;
  min-width: 30px;
  align-items: center;
  border: 1px solid #bdbdbd;
}
.work-space-main .box-pager .box-paging .pager-display .page-link.current {
  background: #708090;
  border: 1px solid #708090;
  cursor: default;
}
.work-space-main .box-pager .box-paging .page-link {
  padding: 5px 10px;
  min-width: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  outline: none !important;
  box-shadow: none !important;
  border-color: #bdbdbd;
  justify-content: space-around;
  align-items: center;
  margin: 0 1px;
  border-radius: 3px;
  color: #003865;
  cursor: pointer;
}
.work-space-main .box-pager .box-paging .page-link.current, .work-space-main .box-pager .box-paging .page-link:hover {
  background: #003865;
  border: solid 1px #003865;
  color: #ffffff;
}
.work-space-main .box-pager .box-paging .page-link.current {
  cursor: default;
}
.work-space-main .box-pager .box-paging .page-link.first {
  margin-left: 0;
}
.work-space-main .box-pager .box-paging .page-link.last {
  margin-right: 0;
}
.work-space-main .box-pager .box-paging .page-link.disabled {
  color: #999;
  cursor: not-allowed;
  background: #f1f1f1;
}
.work-space-main .box-pager .box-paging .page-link.disabled:hover {
  background: #f1f1f1;
  border-color: #bdbdbd;
}
.work-space-main .box-pager .box-paging .page-link.total {
  cursor: default;
  color: #000000;
}
.work-space-main .box-pager .box-paging .page-link.total:hover {
  background: #ffffff;
  border-color: #bdbdbd;
}
.work-space-main .box-pager .box-paging .page-link.dot {
  border: 0;
  background: none !important;
  color: #999;
  cursor: default;
}

.rz-dropdown-panel .rz-dropdown-filter-container {
  padding: 5px 0;
}
.rz-dropdown-panel .rz-dropdown-item {
  font-size: 14px;
}

.rz-calendar .rz-inputtext {
  border-radius: 1px;
  border: 1px solid #ced4da;
  font-size: 14px;
}

.top-bar {
  flex: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 60px;
  align-items: center;
  padding: 0 20px;
  border-bottom: solid 1px #bdbdbd;
  background: #ffffff;
}

.data-list-container {
  padding: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.data-list-container > div {
  flex: auto;
}
.data-list-container .table-container {
  width: 100%;
  border-collapse: collapse;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
}
.data-list-container .table-container.border {
  border-color: #bdbdbd;
}
.data-list-container .table-container thead {
  min-height: 48px;
  font-size: 14px;
  align-items: center;
  font-weight: bold;
  background: #F5F6FA;
}
.data-list-container .table-container thead th {
  background: #F5F6FA;
}
.data-list-container .table-container tr {
  align-items: center;
  background: #ffffff;
}
.data-list-container .table-container tr:nth-child(even) {
  background-color: #f7f7f7;
}
.data-list-container .table-container th,
.data-list-container .table-container td {
  vertical-align: middle;
  padding: 15px 20px;
}
.data-list-container .list-item-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  width: 100%;
  border-top: 1px solid #E2E2E2;
  background: #F5F6FA;
  position: sticky;
  top: 0;
  z-index: 10;
}
.data-list-container .list-item-header .header-th {
  background-color: #F5F6FA !important;
  font-weight: 700;
  height: 50px;
}
.data-list-container .list-item-header,
.data-list-container .list-item-body {
  width: 100%;
  border: 1px solid #E2E2E2;
  border-top: 0;
}
.data-list-container .list-item-header .item,
.data-list-container .list-item-body .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #E2E2E2;
  align-items: center;
  background-color: #f7f7f7;
  width: 100%;
  padding: 10px;
}
.data-list-container .list-item-header .item:hover,
.data-list-container .list-item-body .item:hover {
  background-color: #F2F2F2;
}
.data-list-container .list-item-header .item:nth-child(odd),
.data-list-container .list-item-body .item:nth-child(odd) {
  background-color: #ffffff;
}
.data-list-container .list-item-header .item-view,
.data-list-container .list-item-body .item-view {
  width: 10%;
}
.data-list-container .list-item-header .item-view.avatar-cell,
.data-list-container .list-item-body .item-view.avatar-cell {
  width: 70px;
}
.data-list-container .list-item-header .item-view.checkbox-cell,
.data-list-container .list-item-body .item-view.checkbox-cell {
  width: 30px;
}
.data-list-container .list-item-header .item-view.jobtitle-cell,
.data-list-container .list-item-body .item-view.jobtitle-cell {
  flex: 1;
}
.data-list-container .list-item-header .item-view.actions-cell,
.data-list-container .list-item-body .item-view.actions-cell {
  padding-right: 0;
}
.data-list-container .list-item-header .status-cell,
.data-list-container .list-item-body .status-cell {
  width: 160px;
}
.data-list-container .list-item-header .status-cell .status,
.data-list-container .list-item-body .status-cell .status {
  color: #c4491a;
  /*padding: 1px 8px;
  display: inline-block; 
  white-space: nowrap;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-color: #ebb18f;
  background-color: #f5d3d3;*/
}
.data-list-container .list-item-header .status-cell .status i,
.data-list-container .list-item-body .status-cell .status i {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.data-list-container .list-item-header .status-cell .status.active,
.data-list-container .list-item-body .status-cell .status.active {
  color: #52c41a;
  /*border-color: #b7eb8f;
  background-color: #f6ffed;*/
}
.data-list-container .list-item-header .actions-cell,
.data-list-container .list-item-body .actions-cell {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  flex: none;
  padding-right: 0;
}
.data-list-container .list-item-header .actions-cell .action-detail button,
.data-list-container .list-item-body .actions-cell .action-detail button {
  color: #808080;
  border: 0;
  background: no-repeat;
  outline: none;
  width: 30px;
}
.data-list-container .list-item-header .actions-cell .action-detail button[disabled],
.data-list-container .list-item-body .actions-cell .action-detail button[disabled] {
  cursor: not-allowed;
}
.data-list-container .list-item-header .actions-cell .action-detail button:hover,
.data-list-container .list-item-body .actions-cell .action-detail button:hover {
  color: #000000;
}
.data-list-container .list-item-header .actions-cell .action-detail span,
.data-list-container .list-item-body .actions-cell .action-detail span {
  text-align: center;
  display: inline-block;
  color: gray;
  width: 30px;
}
.data-list-container .list-item-header .actions-cell .action-detail span:hover,
.data-list-container .list-item-body .actions-cell .action-detail span:hover {
  color: #000000;
  cursor: pointer;
}
.data-list-container .list-item-header .actions-cell .action-detail .sprite-icon,
.data-list-container .list-item-body .actions-cell .action-detail .sprite-icon {
  background: url(../images/sprite-list.png) no-repeat transparent;
  width: 16px;
  height: 16px;
  cursor: pointer;
  display: inline-block;
  margin: 0 10px;
}
.data-list-container .list-item-header .actions-cell .action-detail .sprite-icon.icon-pencil,
.data-list-container .list-item-body .actions-cell .action-detail .sprite-icon.icon-pencil {
  background-position: -26px -1px;
}
.data-list-container .list-item-header .actions-cell .action-detail .sprite-icon.icon-lock,
.data-list-container .list-item-body .actions-cell .action-detail .sprite-icon.icon-lock {
  background-position: -50px 0;
}
.data-list-container .list-item-header .actions-cell .action-detail .sprite-icon.icon-config,
.data-list-container .list-item-body .actions-cell .action-detail .sprite-icon.icon-config {
  background-position: -74px -1px;
}
.data-list-container .list-item-header .actions-cell .more-actions-btn,
.data-list-container .list-item-body .actions-cell .more-actions-btn {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #EEF5FF;
  background-color: #eef5ff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.data-list-container .list-item-header .actions-cell .more-actions-btn .dot,
.data-list-container .list-item-body .actions-cell .more-actions-btn .dot {
  width: 2px;
  height: 2px;
  border: 1px solid rgba(102, 102, 102, 0.7);
  border-radius: 100%;
  background-color: rgba(102, 102, 102, 0.7);
  margin-bottom: 2px;
}
.data-list-container .list-item-header .actions-cell .more-actions-btn .action-detail,
.data-list-container .list-item-body .actions-cell .more-actions-btn .action-detail {
  position: absolute;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  min-width: 150px;
  min-height: 75px;
  right: 10px;
  top: 40px;
  background-color: white;
}
.data-list-container .sprite-list {
  margin-right: 12px;
  opacity: 0.7;
  display: inline-block;
  width: 13px;
  height: 16px;
  background: transparent url(../images/sprite-list.png) 0 0 no-repeat;
}
.data-list-container .ico-processingpost {
  background: none;
  font-size: 15px;
  color: #777;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  -moz-osx-font-smoothing: grayscale;
}
.data-list-container .ico-processingpost::before {
  content: "\f07b";
}
.data-list-container .ico-releasepost {
  background-position: 0 -77px;
}
.data-list-container .ico-receivedreleasepost {
  background-position: 0 -58px;
}
.data-list-container .ico-waitingreleasepost {
  background-position: 0 -26px;
}
.data-list-container .ico-receivededitingpost {
  background-position: 0 -41px;
}
.data-list-container .ico-waitingeditingpost {
  background-position: 0 -12px;
}
.data-list-container .ico-temppost {
  background-position: 0 3px;
}
.data-list-container .ico-myreturnpost {
  background-position: 0 -93px;
}
.data-list-container .ico-takendownpost {
  background-position: -1px -123px;
}
.data-list-container .ico-removedpost {
  background-position: 0 -137px;
}
.data-list-container .ico-calendar {
  background-position: 0 -155px;
}

.login-page .login-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 14px;
  background-image: url(../images/login-background.jpg);
  background-color: #eef1f6;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.login-page .login-wrap.skin-1 {
  background-image: url("../images/background/login1.jpg");
}
.login-page .login-wrap.skin-2 {
  background-image: url("../images/background/login2.jpg");
}
.login-page .login-wrap.skin-3 {
  background-image: url("../images/background/login3.jpg");
}
.login-page .login-wrap.skin-4 {
  background-image: url("../images/background/login4.jpg");
}
.login-page .login-wrap.skin-5 {
  background-image: url("../images/background/login5.jpg");
}
.login-page .login-wrap.skin-6 {
  background-image: url("../images/background/login6.jpg");
}
.login-page .login-wrap.skin-7 {
  background-image: url("../images/background/login7.jpg");
}
.login-page .login-wrap.skin-8 {
  background-image: url("../images/background/login8.jpg");
}
.login-page .center-box-body {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login-page .login-container {
  width: 630px;
  text-align: center;
  overflow: auto;
}
.login-page .login-container .validation-message {
  color: #EB5757;
  font-size: 11px;
  font-style: italic;
}
.login-page .login-container .input-group-append {
  width: 38px;
  align-items: center;
  background: #ced4da;
  border: 1px solid #ced4da;
  border-right: 0;
  margin: 0;
  justify-content: center;
  padding: 0 10px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.login-page .login-wrap .list-opts {
  margin: 0px;
  padding: 0px;
}
.login-page .qrcode-img {
  margin-bottom: 16px;
}
.login-page label {
  color: #3f3f3f;
  font-size: 14px;
  margin-left: 0.3em;
}
.login-page .btn-submit {
  color: #ffffff;
  background-color: #71b4d1;
  border-color: #71b4d1;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 18px;
  font-weight: 700;
  font-size: 12px;
  margin-top: 15px;
  padding: 9px 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}
.login-page .btn-submit:hover {
  background-color: #0b97d4;
  border-color: #0b97d4;
}
.login-page .logo {
  margin: 5% auto;
  width: 160px;
  /*background: transparent url(../images/login-ims-logo.png) center center no-repeat;
  background-size: 100% 100%;*/
}
.login-page .break-line {
  width: 14%;
  background: #4b4b4b;
  height: 1px;
  display: block;
  margin: 6% auto;
}
.login-page .form-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  flex: none;
}
.login-page .form-wrap .verify-code {
  font-size: 18px;
  height: auto;
}
.login-page .form-wrap .image-qrcode {
  border: 1px solid #eee;
}
.login-page .form-wrap .message {
  font-weight: 700;
  font-size: 17px;
  color: #282828;
  margin-bottom: 20px;
}
.login-page .form-wrap .message .validation-summary-errors {
  font-size: 13px;
  margin-top: 10px;
  color: #ff0039;
}
.login-page .form-wrap .message .info-wrap {
  width: 320px;
}
.login-page .form-wrap .message .info-wrap input [type=text],
.login-page .form-wrap .message .info-wrap input[type=password] {
  font-size: 14px;
  max-width: 320px;
  background: #f4f7fb;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: none;
}
.login-page .form-wrap .message .info-wrap input [type=text]:focus,
.login-page .form-wrap .message .info-wrap input[type=password]:focus {
  background: #ffffff;
}
.login-page .form-wrap .message .info-wrap .border-red {
  border-color: #dc3545;
}
.login-page .form-wrap .message .info-wrap .otp-method {
  margin-bottom: 7px;
}
.login-page .form-wrap .message .info-wrap .otp-method > span {
  cursor: pointer;
}
.login-page .form-wrap .message .info-wrap .otp-method .icon-help {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../images/help-icon.png") center center no-repeat;
  background-size: 16px;
  cursor: pointer;
  margin-left: 5px;
  margin-bottom: -2px;
}
.login-page .form-wrap .message .info-wrap .otp-method .count-down {
  cursor: default;
  color: #717171;
}
.login-page .captcha-wrap {
  position: relative;
  margin-bottom: 30px;
}
.login-page .copyright {
  margin-bottom: 5%;
}

.dashboard-page {
  overflow: auto;
}
.dashboard-page .section-statistic-counter .statistic-counter {
  background: #eceff4;
  padding: 30px 30px 0px 30px;
  justify-content: flex-start;
  transition: all 0.2s ease-in-out;
}
.dashboard-page .section-statistic-counter .slider-counter {
  margin: 0;
  /*white-space: nowrap;*/
}
.dashboard-page .section-statistic-counter .slider-item {
  display: inline-block;
  margin: 0 30px 20px 0;
}
.dashboard-page .section-statistic-counter .counter-box {
  float: left;
  border: 1px solid #e2e3e7;
  border-radius: 5px;
  overflow: hidden;
  min-width: 170px;
}
.dashboard-page .section-statistic-counter .counter-box .box-content {
  background: #ffffff;
  padding: 7px 16px;
  height: 80px;
}
.dashboard-page .section-statistic-counter .counter-box .box-content .icon {
  width: 38px;
  height: 48px;
  float: right;
  margin-top: 8px;
  background-image: url(../images/dasboard-sprite-icons.png);
  background-repeat: no-repeat;
  background-color: transparent;
}
.dashboard-page .section-statistic-counter .counter-box .box-content .icon.icon-temppost {
  background-position: -8px -153px;
}
.dashboard-page .section-statistic-counter .counter-box .box-content .icon.icon-waitingeditingpost {
  background-position: -70px -10px;
}
.dashboard-page .section-statistic-counter .counter-box .box-content .icon.icon-receivededitingpost {
  background-position: -70px -82px;
}
.dashboard-page .section-statistic-counter .counter-box .box-content .icon.icon-myreturnpost {
  background-position: -70px -153px;
}
.dashboard-page .section-statistic-counter .counter-box .box-content .icon.icon-waitingreleasepost {
  background-position: -129px -10px;
}
.dashboard-page .section-statistic-counter .counter-box .box-content .icon.icon-releasepost {
  background-position: -205px -153px;
}
.dashboard-page .section-statistic-counter .counter-box .box-content .icon.icon-receivedreleasepost {
  background-position: -263px -153px;
}
.dashboard-page .section-statistic-counter .counter-box .box-content .icon.icon-removedpost {
  background-position: -248px -82px;
}
.dashboard-page .section-statistic-counter .counter-box .box-content .icon.icon-takendownpost {
  background-position: -189px -82px;
}
.dashboard-page .section-statistic-counter .counter-box .box-content .icon.icon-processingpost {
  background-position: -6px -82px;
  height: 44px;
  width: 44px;
}
.dashboard-page .section-statistic-counter .counter-box .title {
  height: 30px;
  background: #eef5fd;
  color: #6c7288;
  font-size: 13px;
  font-weight: bold;
  line-height: 30px;
  padding: 0 14px;
  cursor: pointer;
}
.dashboard-page .section-statistic-counter .counter-box .counter {
  color: #2ea2c7;
  font-weight: 700;
  font-size: 44px;
}
.dashboard-page .section-statistic-counter .counter-box a {
  text-decoration: none;
  width: 100%;
  color: #666;
}
.dashboard-page .section-statistic-counter .counter-box .fa {
  float: right;
  margin-top: 8px;
}
.dashboard-page .padding-box {
  margin: 30px 20px 0 30px;
}
.dashboard-page .widget-box-dashboard {
  background: #ffffff;
  border: 1px solid #d0dae3;
  border-radius: 5px;
  display: block;
  overflow: hidden;
  flex: none;
}
.dashboard-page .widget-box-dashboard header {
  color: #537c9c;
  background: #f4f9fd;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #d0dae3;
  height: 52px;
  line-height: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 20px;
  cursor: pointer;
  position: relative;
}
.dashboard-page .widget-box-dashboard header .count {
  position: absolute;
  background: #ffca28;
  color: #ffffff;
  margin-top: 9px;
  font-size: 11px;
  font-weight: normal;
  border-radius: 10%;
  height: 21px;
  line-height: 18px;
  min-width: 21px;
  padding: 2px 7px;
  margin-left: 6px;
}
.dashboard-page .widget-box-dashboard header .count sup {
  font-size: 65%;
}
.dashboard-page .widget-box-dashboard .box-content {
  padding: 15px 20px;
}
.dashboard-page .widget-box-dashboard .content-wrap {
  height: 325px;
}

.cms-modal-news-relation .cms-modal-wrapper {
  height: 92%;
  width: 60%;
}
@media screen and (max-width: 1279px) {
  .cms-modal-news-relation .cms-modal-wrapper {
    width: 80%;
  }
}
.cms-modal-news-relation .box-news-relation {
  background: #fff;
}
.cms-modal-news-relation .box-news-relation .list-search {
  height: auto !important;
}
.cms-modal-news-relation .box-news-relation .list-search .form-control {
  height: 32px;
}
.cms-modal-news-relation .box-news-relation .search-form {
  background: transparent;
  padding: 0;
  border: 0;
}
.cms-modal-news-relation .box-news-relation .search-form .filter-item {
  align-content: center;
}
.cms-modal-news-relation .box-news-relation .btn-close {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 30px;
  height: 30px;
  display: block;
  background: url(../images/close-icon.png) no-repeat center center;
  cursor: pointer;
  opacity: 0.8;
  text-indent: -9999px;
  transition: all 0.2s ease;
}
.cms-modal-news-relation .box-news-relation .btn-close:hover {
  transform: rotate(90deg);
  opacity: 1;
}
.cms-modal-news-relation .list-header {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.cms-modal-news-relation .cms-modal-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow-y: auto;
  padding: 0;
  height: calc(100% - 60px);
  flex-direction: column;
}
.cms-modal-news-relation .cms-modal-content .box-filter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0;
  align-items: center;
  background: #F4F4F4;
  padding: 10px;
}
.cms-modal-news-relation .cms-modal-content .box-filter .filter-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-right: 16px;
  align-items: center;
}
.cms-modal-news-relation .cms-modal-content .box-filter .filter-item input[type=text] {
  background: #ffffff;
  border: 1px solid rgba(103, 113, 129, 0.3);
  border-radius: 16px;
  height: 32px;
  width: 300px;
  outline: none;
  padding-left: 16px;
  margin-left: 10px;
}
.cms-modal-news-relation .box-news-relation {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0px;
  box-sizing: border-box;
  height: calc(100% - 60px);
  position: relative;
  flex-grow: 1;
  overflow-y: auto;
  width: 100%;
  flex-direction: column;
}
.cms-modal-news-relation .box-news-relation .postItems {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: calc(100% - 40px);
}
.cms-modal-news-relation .box-news-relation .postItem-heading {
  flex-grow: 1;
  word-wrap: break-word;
  margin-right: 10px;
}

.zone-page {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.zone-page .zone-info {
  width: 200px;
  position: relative;
}
.zone-page .main-content .hide {
  display: none !important;
}
.zone-page .main-content .children {
  margin-left: 20px;
}
.zone-page .main-content .zone {
  margin-bottom: 5px;
  margin-right: 5px;
  background-color: #f3f3f3;
}
.zone-page .main-content .zone .expand-btn {
  cursor: pointer;
  display: none;
  width: 12px;
  font-size: 20px;
  margin-left: 10px;
  margin-right: 5px;
  color: #888888;
  justify-content: center;
}
.zone-page .main-content .zone.hasSubZone .expand-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.zone-page .main-content .zone.odd {
  background-color: #f3f3f3;
}
.zone-page .main-content .zone.child {
  margin-left: 20px;
  background-color: white;
}
.zone-page .main-content .zone.child .expand-btn {
  display: none;
}
.zone-page .main-content .zone .parent {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 40px;
  align-items: center;
  cursor: default;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
}
.zone-page .main-content .zone .parent.no-sub .expand-btn {
  display: none;
}
.zone-page .main-content .zone .parent p {
  line-height: 19px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: inherit;
  margin: 0;
}
.zone-page .main-content .zone .parent > div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  align-items: center;
}
.zone-page .main-content .zone .parent > .text {
  color: #333;
  font-weight: 700;
  max-width: 330px;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  flex-grow: 1;
  line-height: 20px;
  padding: 10px;
  overflow: hidden;
}
.zone-page .main-content .zone .parent > .info {
  flex-grow: 1;
  justify-content: flex-end;
  opacity: 0.5;
  flex-shrink: 0;
}
.zone-page .main-content .zone .parent > .info > .item {
  margin-left: 10px;
  margin-right: 10px;
}
.zone-page .main-content .zone .parent > .info > .item .sort-order {
  width: 110px;
}
.zone-page .main-content .zone .parent > .actions {
  flex-basis: 50px;
  justify-content: center;
}
.zone-page .main-content .zone .parent > .actions > .action {
  margin-left: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  opacity: 0;
}
.zone-page .main-content .zone .parent > .actions > .action.edit-btn {
  text-decoration: none;
  color: #000000;
  padding: 5px;
  background: none;
  border: 0;
}
.zone-page .main-content .zone .parent:hover > .text,
.zone-page .main-content .zone .parent:hover > .info {
  opacity: 1;
}
.zone-page .main-content .zone .parent:hover > .actions > .action {
  visibility: visible;
  opacity: 0.9;
}
.zone-page .main-content .zone > .parent > .actions > .action {
  margin-left: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  opacity: 0;
}
.zone-page .main-content .zone > .parent > .actions > .action.edit-btn {
  padding: 5px;
}
.zone-page .popup-content-inner {
  height: 100%;
}
.zone-page .popup-content-inner > .cover-container {
  margin: -20px;
  margin-bottom: 20px;
  height: calc((100vw - 60px) / 6.25);
  position: relative;
  background-image: url(../images/bg_cover.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
}
.zone-page .popup-content-inner > .cover-container .media-changecover {
  width: 45px;
  height: 45px;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  left: 30px;
  position: absolute;
  top: 15px;
  background-color: #f0ad4e;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  z-index: 10;
  opacity: 0.8;
}
.zone-page .popup-content-inner .main-panel {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 680px;
  min-height: 462px;
  margin: 20px auto 0;
  background: #ffffff;
  flex-direction: column;
  border: 1px solid #ddd;
  position: relative;
  padding: 20px 0;
}
.zone-page .popup-content-inner .main-panel .row {
  padding: 0 30px;
}
.zone-page .popup-content-inner .main-panel .validation-message {
  color: #dc3545;
  font-size: 13px;
}
.zone-page .edit-item form {
  font-size: 14px;
}
.zone-page .edit-item form textarea {
  min-height: 60px;
}
.zone-page .edit-item .form-group label {
  text-align: right;
  margin-bottom: 0;
  margin-top: 6px;
  vertical-align: middle;
}
.zone-page .edit-item .avatar-picker {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
.zone-page .edit-item .avatar-picker .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 1px solid #bdbdbd;
  margin: 5px;
  position: relative;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.zone-page .edit-item .avatar-picker .item .item-avatar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: #f7f7f7;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  align-items: center;
  justify-content: center;
}
.zone-page .edit-item .avatar-picker .item .item-icon {
  opacity: 0.3;
}
.zone-page .edit-item .avatar-picker .item .item-desc {
  bottom: 10px;
  font-size: 12px;
  color: #737373;
  position: absolute;
}
.zone-page .edit-item .avatar-picker .item:first-child {
  width: 160px;
  height: 90px;
}
.zone-page .edit-item .avatar-picker .item:nth-child(2) {
  width: 171px;
  height: 90px;
}
.zone-page .edit-item .avatar-picker .item:nth-child(3) {
  width: 60px;
  height: 90px;
}
.zone-page .edit-item .avatar-picker .item:nth-child(4) {
  width: 90px;
  height: 90px;
}
.zone-page .edit-item .avatar-picker .item:last-child {
  width: 250px;
  height: 90px;
}
.zone-page .edit-item .avatar-picker .item.item-logo {
  width: 90px;
  height: 90px;
}
.zone-page .edit-item .avatar-picker .item .remove {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
}
.zone-page .edit-item .avatar-picker .item .remove:hover {
  color: #dc3545;
}
.zone-page .edit-item .avatar-picker .logo-picker {
  width: 90px;
  height: 90px;
  margin: 5px;
}
.zone-page .edit-item .avatar-picker .logo-picker .remove {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
}
.zone-page .edit-item .avatar-picker .logo-picker .remove:hover {
  color: #dc3545;
}
.zone-page .edit-item .logo-picker {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 60px;
  height: 60px;
  outline: 1px solid #bdbdbd;
  background-size: cover;
  position: relative;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.zone-page .edit-item .logo-picker i {
  margin: 0 4px;
}
.zone-page .edit-item .logo-picker:hover {
  outline: 1px solid #aaa;
}

#ZonePageManager .data-list-container .zone-items {
  list-style: none;
}
#ZonePageManager .data-list-container .zone-items .zone-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 40px;
  align-items: center;
  cursor: default;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  margin: 0 5px 4px 20px;
  background-color: #ffffff;
  margin-right: 20px;
}
#ZonePageManager .data-list-container .zone-items .zone-item .arrow {
  display: none;
}
#ZonePageManager .data-list-container .zone-items .zone-item:hover .item, #ZonePageManager .data-list-container .zone-items .zone-item:hover label {
  color: #000;
}
#ZonePageManager .data-list-container .zone-items .zone-item:hover .actions .edit-btn {
  opacity: 1;
}
#ZonePageManager .data-list-container .zone-items .zone-item .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: #999;
  margin: 0 10px;
}
#ZonePageManager .data-list-container .zone-items .zone-item.parent {
  margin-left: 0;
  background-color: #f3f3f3;
}
#ZonePageManager .data-list-container .zone-items .zone-item.parent .arrow {
  display: inline-block;
  margin-left: 10px;
}
#ZonePageManager .data-list-container .zone-items .zone-item .zone-name {
  color: #000;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  flex: 1;
  line-height: 20px;
  padding: 10px;
  overflow: hidden;
  opacity: 1;
}
#ZonePageManager .data-list-container .zone-items .zone-item .actions {
  margin: 0 10px;
}
#ZonePageManager .data-list-container .zone-items .zone-item .actions .edit-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 0;
  outline: none;
  margin-left: 5px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  opacity: 0;
  background: none;
}

.box-in-page {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 1px solid #bdbdbd;
  background: #ffffff;
  border-radius: 3px;
  overflow-y: auto;
  flex-grow: 1;
  position: relative;
  margin: 20px;
}
.box-in-page .scroll-wrapper {
  height: calc(100% - 140px);
  width: 100%;
  overflow-x: hidden;
}
.box-in-page .content-body {
  float: left;
  width: 100%;
  height: 100%;
  padding: 20px;
  min-height: calc(100% - 210px);
}
.box-in-page .box-list-items {
  float: left;
  width: calc(50% - 33px);
  border: 1px solid #bfbfc5;
  border-radius: 2px;
  height: 100%;
  position: relative;
}
.box-in-page .box-list-items .list-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 40px;
  align-items: center;
  background: #dedede;
}
.box-in-page .box-list-items .list-header span {
  color: #666;
  display: block;
  font-size: 16px;
  margin-left: 10px;
}
.box-in-page .box-list-items .list-search {
  border-bottom: 1px solid #e0e0e0;
  padding: 10px;
  position: relative;
  height: 50px;
}
.box-in-page .box-list-items .list-search .form-control {
  font-size: 13px;
  border-radius: 1px;
  color: #000000;
  height: 28px;
  padding: 0 10px;
}
.box-in-page .box-list-items .list-search .form-control.allow-search {
  padding: 0;
}
.box-in-page .box-list-items .list-search .form-control.allow-search .dropdown-menu.show {
  right: 10px !important;
  border-radius: 1px;
  left: auto;
  max-height: 400px;
  padding: 3px 0;
}
.box-in-page .box-list-items .list-search .form-control.allow-search .dropdown-menu .bootstrap-select {
  font-size: 13px;
}
.box-in-page .box-list-items .list-search .form-control.allow-search .dropdown-menu .bootstrap-select .no-results {
  font-size: 13px;
  padding: 3px;
  background: #f7f7f7;
  margin: 0 5px;
  white-space: nowrap;
}
.box-in-page .box-list-items .list-search .form-control.allow-search .dropdown-menu li a {
  font-size: 13px;
  padding: 5px 10px;
}
.box-in-page .box-list-items .list-search .form-control.allow-search .dropdown-menu li a:hover {
  background: #e7e7e7;
}
.box-in-page .box-list-items .list-search .form-control.allow-search .dropdown-toggle {
  font-size: 13px;
  border-radius: 1px;
  color: #000000;
  height: 28px;
  padding: 3px 10px;
  border: 1px solid #cccccc;
  background: #ffffff;
  outline: none !important;
  box-shadow: none !important;
}
.box-in-page .box-list-items .list-search .search-box {
  float: left;
  overflow: hidden;
  position: relative;
  width: 45%;
}
.box-in-page .box-list-items .list-search .search-box .input-group {
  height: 28px;
}
.box-in-page .box-list-items .list-search .search-box input {
  border-radius: 1px;
  height: 28px;
  box-shadow: none;
  font-size: 13px;
}
.box-in-page .box-list-items .list-search .search-box input:focus, .box-in-page .box-list-items .list-search .search-box input:active {
  box-shadow: none;
}
.box-in-page .box-list-items .list-search .search-box button {
  box-shadow: none;
  border-radius: 1px;
  color: #666;
  border: 1px solid #dedede;
  text-align: center;
  padding: 5px 10px;
  height: 28px;
  margin: 0;
}
.box-in-page .box-list-items .list-search .search-box button:hover {
  color: #000000;
  background: #dedede;
}
.box-in-page .box-list-items .list-search .search-box button:focus, .box-in-page .box-list-items .list-search .search-box button:active {
  box-shadow: none;
}
.box-in-page .box-list-items .list-search .list-zones {
  float: right;
  width: 45%;
}
.box-in-page .box-list-items .pager {
  border-bottom: 0px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  float: left;
  width: 100%;
  height: 47px;
  background: #f8f8f8;
  padding-top: 12px;
  padding-right: 10px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  position: relative;
}
.box-in-page .box-list-items .notification {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #f8f8f8;
  height: 50px;
  align-items: center;
  white-space: normal;
  padding: 0 10px;
  color: #087ecd;
  font-weight: bold;
  border: none;
  border-top: 1px solid #e0e0e0;
}
.box-in-page .box-list-items .button-save {
  position: absolute;
  right: 5px;
}
.box-in-page .box-list-items .btn-default {
  margin: 0;
  box-shadow: none;
  font-size: 13px;
  padding: 0 10px;
}
.box-in-page .box-list-arrow {
  width: 66px;
  float: left;
  margin-top: 170px;
  padding: 0 5px;
  text-align: center;
}
.box-in-page .box-list-arrow button {
  outline: none;
  width: 90%;
  height: 50px;
  border: 0;
  background: none;
  font-size: 34px;
  margin: 0 0 15px;
  border-bottom: 1px solid #e0e0e0;
  background: -webkit-linear-gradient(#E7E7E7, #efefef);
  background: -o-linear-gradient(#E7E7E7, #efefef);
  background: -moz-linear-gradient(#E7E7E7, #efefef);
  background: linear-gradient(#E7E7E7, #efefef);
  box-shadow: 0px 1px 1px #a79090;
}
.box-in-page .box-list-arrow button:last-child {
  border: 0;
}
.box-in-page .box-list-arrow button.disabled {
  opacity: 0.4;
  cursor: default;
}
.box-in-page .box-list-arrow button:active {
  font-size: 30px;
  background: #e2e2e2;
}
.box-in-page .list-container {
  height: calc(100% - 140px);
}
.box-in-page .box-pager {
  height: 50px;
  background: #f8f8f8;
  margin: 0;
  padding: 0 15px 0 0;
  border-top: 1px solid #e0e0e0;
}
.box-in-page .news-list-body {
  width: 100%;
  overflow-x: hidden;
}
.box-in-page .news-list-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #f8f8f8;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  color: #666;
  position: relative;
}
.box-in-page .news-list-item:active, .box-in-page .news-list-item.grabbing {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.box-in-page .news-list-item.selectedItem::before {
  position: absolute;
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  width: 15px;
  height: 9px;
  border-width: medium medium 3px 3px;
  border-style: none none solid solid;
  border-color: #2ECC71;
  border-image: none;
  background: none repeat scroll 0% 0% rgba(194, 35, 35, 0);
  content: "";
  right: 10px;
  top: 30%;
}
.box-in-page .news-list-item.red-color {
  background: rgba(235, 87, 87, 0.05);
}
.box-in-page .news-list-item.red-color:nth-child(2n+1) {
  background: rgba(235, 87, 87, 0.05);
}
.box-in-page .news-list-item.red-color .info {
  color: #EB5757;
}
.box-in-page .news-list-item.new::before {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #2ECC71;
  content: "";
  right: 10px;
  top: 30%;
  border-radius: 100%;
}
.box-in-page .news-list-item:nth-child(2n+1) {
  background: #ffffff;
}
.box-in-page .news-list-item .img-viewer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 60px;
  align-items: center;
}
.box-in-page .news-list-item .img-viewer img {
  display: inline-block;
  height: 30px;
  margin: 0 0px 0px 10px;
  width: 40px;
  border-radius: 3px;
}
.box-in-page .news-list-item .info {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
}
.box-in-page .news-list-item .info .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  padding-left: 10px;
  padding-right: 30px;
  width: unset;
  line-height: 1.7;
  font-weight: bold;
}
.box-in-page .news-list-item .info .content-item {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
  padding-left: 10px;
  width: unset;
  height: 45px;
  line-height: 45px;
  font-weight: bold;
  padding-right: 30px;
}
.box-in-page .news-list-item .publish-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  clear: both;
  line-height: 20px;
  padding: 0 10px;
  font-size: 12px;
  color: #a9a9a9;
}
.box-in-page .news-list-item .publish-info span {
  width: unset;
}
.box-in-page .news-list-item .publish-info i {
  margin-right: 5px;
  padding: 3px;
}
.box-in-page .news-list-item .publish-info .publish-viewcount {
  display: inline-block;
  margin-right: 15px;
}
.box-in-page .news-list-item input[type=checkbox] {
  display: none;
}
.box-in-page .news-list-item .label-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
}
.box-in-page .news-list-item input:checked ~ label {
  background-color: #e0efef;
}

.cms-page-manager .box-panel-left {
  transition: left 0.3s ease;
}
.cms-page-manager .box-panel-left .btn-close {
  display: none;
}
.cms-page-manager .box-panel-left header {
  margin-bottom: 0;
  height: 67px;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-sidebar {
  margin-top: 20px;
}
.cms-page-manager .box-panel-left .sidebar-body .borderBottom {
  border-top: 1px solid #e4e4e4;
}
.cms-page-manager .box-panel-left .sidebar-body .pb-3 {
  border-top: 1px solid #e4e4e4;
}
.cms-page-manager .box-panel-left .sidebar-body .pb-3:first-child {
  border: 0;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item {
  text-transform: inherit;
  font-size: 14px;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item a {
  color: #637585;
  display: block;
  width: 100%;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item a.active {
  font-weight: 700;
  color: #1c1d1e;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item a:hover {
  color: #1c1d1e;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item a:hover .icons {
  opacity: 1;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item .icons {
  margin-right: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  background: url(../images/gm_menuleft_icon_hover.png) no-repeat;
  opacity: 0.5;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item .icons.icon_user {
  background-position: 0 4px;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item .icons.icon_content {
  background-position: 0 -24px;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item .icons.icon_tag {
  background-position: 0 -52px;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item .icons.icon_event {
  background-position: 0 -83px;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item .icons.icon_vote {
  background-position: 0 -113px;
}
.cms-page-manager .box-panel-left .sidebar-body .nav-link-item .icons.icon_author {
  background-position: 0 -140px;
}

.news-page .box-panel-left {
  width: 280px;
}

.tag-page,
.account-page {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.tag-page .search-form,
.account-page .search-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding: 20px 8px 20px 20px;
  border-bottom: 1px solid #e2e2e2;
  background-color: #f8f8f8;
}
.tag-page .search-form button,
.tag-page .search-form input[type=text],
.account-page .search-form button,
.account-page .search-form input[type=text] {
  height: 32px;
  box-shadow: none;
  font-size: 13px;
}
.tag-page .search-form .box-filter,
.account-page .search-form .box-filter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 13px;
  width: 60%;
}
.tag-page .search-form .box-filter .filter-item,
.account-page .search-form .box-filter .filter-item {
  float: left;
  margin-right: 10px;
}
.tag-page .search-form .box-filter .filter-item button,
.tag-page .search-form .box-filter .filter-item input[type=text],
.account-page .search-form .box-filter .filter-item button,
.account-page .search-form .box-filter .filter-item input[type=text] {
  height: 32px;
  box-shadow: none;
  font-size: 13px;
}
.tag-page .search-form .box-filter .filter-item .btn-filter, .tag-page .search-form .box-filter .filter-item .input-group,
.account-page .search-form .box-filter .filter-item .btn-filter,
.account-page .search-form .box-filter .filter-item .input-group {
  border: 1px solid #ced4da;
}
.tag-page .search-form .box-filter .filter-item .btn-filter,
.account-page .search-form .box-filter .filter-item .btn-filter {
  font-size: 14px;
  margin-left: 1px;
}
.tag-page .search-form .box-filter .search-keyword,
.account-page .search-form .box-filter .search-keyword {
  width: 200px;
  font-size: 13px;
  height: 32px;
}
.tag-page .search-form .box-filter .btn-default,
.account-page .search-form .box-filter .btn-default {
  min-width: initial;
  height: 31px;
  margin: 0;
}
.tag-page .search-form .box-filter .btn-filter,
.account-page .search-form .box-filter .btn-filter {
  border: 0;
  border-radius: 0;
  width: 40px;
  color: #003865;
  text-align: center;
  font-size: 13px;
  outline: none !important;
  box-shadow: none;
  border-left: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
}
.tag-page .search-form .box-filter .btn-filter:hover,
.account-page .search-form .box-filter .btn-filter:hover {
  background: #e9ecef;
}
.tag-page .search-form .box-filter .btn-action,
.account-page .search-form .box-filter .btn-action {
  width: auto;
  white-space: nowrap;
}
.tag-page .list-item-header,
.tag-page .list-item-body,
.account-page .list-item-header,
.account-page .list-item-body {
  width: 100%;
  border: 1px solid #E2E2E2;
  border-top: 0;
}
.tag-page .list-item-header .item,
.tag-page .list-item-body .item,
.account-page .list-item-header .item,
.account-page .list-item-body .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #E2E2E2;
  align-items: center;
  background-color: #f7f7f7;
  width: 100%;
  padding: 10px;
}
.tag-page .list-item-header .item:nth-child(2n+1):not(.header-th),
.tag-page .list-item-body .item:nth-child(2n+1):not(.header-th),
.account-page .list-item-header .item:nth-child(2n+1):not(.header-th),
.account-page .list-item-body .item:nth-child(2n+1):not(.header-th) {
  background: #ffffff;
}
.tag-page .list-item-header .item-view,
.tag-page .list-item-body .item-view,
.account-page .list-item-header .item-view,
.account-page .list-item-body .item-view {
  padding-right: 15px;
  width: 16%;
}
.tag-page .list-item-header .item-view.checkbox-cell,
.tag-page .list-item-body .item-view.checkbox-cell,
.account-page .list-item-header .item-view.checkbox-cell,
.account-page .list-item-body .item-view.checkbox-cell {
  width: 30px;
}
.tag-page .list-item-header .checkbox-cell,
.tag-page .list-item-body .checkbox-cell,
.account-page .list-item-header .checkbox-cell,
.account-page .list-item-body .checkbox-cell {
  width: 30px;
}
.tag-page .list-item-header .avatar-cell,
.tag-page .list-item-body .avatar-cell,
.account-page .list-item-header .avatar-cell,
.account-page .list-item-body .avatar-cell {
  width: 70px;
}
.tag-page .list-item-header .avatar-cell .avatar,
.tag-page .list-item-body .avatar-cell .avatar,
.account-page .list-item-header .avatar-cell .avatar,
.account-page .list-item-body .avatar-cell .avatar {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: url(../images/avatar.png) center center/cover no-repeat;
}
.tag-page .list-item-header .avatar-cell .avatar img,
.tag-page .list-item-body .avatar-cell .avatar img,
.account-page .list-item-header .avatar-cell .avatar img,
.account-page .list-item-body .avatar-cell .avatar img {
  object-fit: cover;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.tag-page .list-item-header .email-cell .email-text,
.tag-page .list-item-body .email-cell .email-text,
.account-page .list-item-header .email-cell .email-text,
.account-page .list-item-body .email-cell .email-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tag-page .list-item-header .username-cell,
.tag-page .list-item-body .username-cell,
.account-page .list-item-header .username-cell,
.account-page .list-item-body .username-cell {
  font-weight: 700;
  color: #000000;
  min-width: 120px;
}
.tag-page .list-item-header .fullname-cell,
.tag-page .list-item-body .fullname-cell,
.account-page .list-item-header .fullname-cell,
.account-page .list-item-body .fullname-cell {
  flex: none;
  flex-grow: unset;
}
.tag-page .list-item-header .status-cell .status,
.tag-page .list-item-body .status-cell .status,
.account-page .list-item-header .status-cell .status,
.account-page .list-item-body .status-cell .status {
  color: #c4491a;
}
.tag-page .list-item-header .status-cell .status i,
.tag-page .list-item-body .status-cell .status i,
.account-page .list-item-header .status-cell .status i,
.account-page .list-item-body .status-cell .status i {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.tag-page .list-item-header .status-cell .status.active,
.tag-page .list-item-body .status-cell .status.active,
.account-page .list-item-header .status-cell .status.active,
.account-page .list-item-body .status-cell .status.active {
  color: #52c41a;
}
.tag-page .list-item-header .actions-cell,
.tag-page .list-item-body .actions-cell,
.account-page .list-item-header .actions-cell,
.account-page .list-item-body .actions-cell {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.tag-page .list-item-header .actions-cell .action-detail span,
.tag-page .list-item-body .actions-cell .action-detail span,
.account-page .list-item-header .actions-cell .action-detail span,
.account-page .list-item-body .actions-cell .action-detail span {
  text-align: center;
  display: inline-block;
  width: 30px;
}
.tag-page .list-item-header .actions-cell .action-detail span:hover,
.tag-page .list-item-body .actions-cell .action-detail span:hover,
.account-page .list-item-header .actions-cell .action-detail span:hover,
.account-page .list-item-body .actions-cell .action-detail span:hover {
  color: #000000;
  cursor: pointer;
}
.tag-page .list-item-header .actions-cell .action-detail .sprite-icon,
.tag-page .list-item-body .actions-cell .action-detail .sprite-icon,
.account-page .list-item-header .actions-cell .action-detail .sprite-icon,
.account-page .list-item-body .actions-cell .action-detail .sprite-icon {
  background: url(../images/sprite-list.png) no-repeat transparent;
  width: 16px;
  height: 16px;
  cursor: pointer;
  display: inline-block;
  margin: 0 10px;
}
.tag-page .list-item-header .actions-cell .action-detail .sprite-icon.icon-pencil,
.tag-page .list-item-body .actions-cell .action-detail .sprite-icon.icon-pencil,
.account-page .list-item-header .actions-cell .action-detail .sprite-icon.icon-pencil,
.account-page .list-item-body .actions-cell .action-detail .sprite-icon.icon-pencil {
  background-position: -26px -1px;
}
.tag-page .list-item-header .actions-cell .action-detail .sprite-icon.icon-lock,
.tag-page .list-item-body .actions-cell .action-detail .sprite-icon.icon-lock,
.account-page .list-item-header .actions-cell .action-detail .sprite-icon.icon-lock,
.account-page .list-item-body .actions-cell .action-detail .sprite-icon.icon-lock {
  background-position: -50px 0;
}
.tag-page .list-item-header .actions-cell .action-detail .sprite-icon.icon-config,
.tag-page .list-item-body .actions-cell .action-detail .sprite-icon.icon-config,
.account-page .list-item-header .actions-cell .action-detail .sprite-icon.icon-config,
.account-page .list-item-body .actions-cell .action-detail .sprite-icon.icon-config {
  background-position: -74px -1px;
}
.tag-page .list-item-header .actions-cell .more-actions-btn,
.tag-page .list-item-body .actions-cell .more-actions-btn,
.account-page .list-item-header .actions-cell .more-actions-btn,
.account-page .list-item-body .actions-cell .more-actions-btn {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #EEF5FF;
  background-color: #eef5ff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tag-page .list-item-header .actions-cell .more-actions-btn .dot,
.tag-page .list-item-body .actions-cell .more-actions-btn .dot,
.account-page .list-item-header .actions-cell .more-actions-btn .dot,
.account-page .list-item-body .actions-cell .more-actions-btn .dot {
  width: 2px;
  height: 2px;
  border: 1px solid rgba(102, 102, 102, 0.7);
  border-radius: 100%;
  background-color: rgba(102, 102, 102, 0.7);
  margin-bottom: 2px;
}
.tag-page .list-item-header .actions-cell .more-actions-btn .action-detail,
.tag-page .list-item-body .actions-cell .more-actions-btn .action-detail,
.account-page .list-item-header .actions-cell .more-actions-btn .action-detail,
.account-page .list-item-body .actions-cell .more-actions-btn .action-detail {
  position: absolute;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  min-width: 150px;
  min-height: 75px;
  right: 10px;
  top: 40px;
  background-color: white;
}
.tag-page .list-item-header,
.account-page .list-item-header {
  border-top: 1px solid #E2E2E2;
}

#RoleSetting {
  width: 100%;
  padding: 20px 0;
}
#RoleSetting .nav-tabs .nav-link {
  border: 1px solid transparent;
  color: #000000;
}
#RoleSetting .nav-tabs .nav-link.active {
  border-color: #ccc #ccc #fff;
}
#RoleSetting .tab-content {
  border: 1px solid #ccc;
  border-top: 0;
  overflow: auto;
  background: #fff;
  max-height: 70vh;
  min-height: 50vh;
  padding: 10px 0 20px 0;
}
#RoleSetting .feature-container,
#RoleSetting .function-container {
  padding: 10px 15px;
  background: #fff;
  border: 0px solid #ccc;
}
#RoleSetting .feature-container .function-items .item,
#RoleSetting .function-container .function-items .item {
  padding: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f1f1f1;
  background: #f7f7f7;
}
#RoleSetting .feature-container .function-items .item .parent-item,
#RoleSetting .function-container .function-items .item .parent-item {
  float: left;
  width: 30%;
}
#RoleSetting .feature-container .function-items .item .parent-item .func-name,
#RoleSetting .function-container .function-items .item .parent-item .func-name {
  font-weight: 600;
}
#RoleSetting .feature-container .function-items .item .parent-item input[type=checkbox]:checked + label,
#RoleSetting .function-container .function-items .item .parent-item input[type=checkbox]:checked + label {
  border-bottom: 1px dashed #1095ea;
  padding-bottom: 1px;
}
#RoleSetting .feature-container .function-items .item .sub-item,
#RoleSetting .function-container .function-items .item .sub-item {
  margin-left: 30%;
  display: flex;
  border-bottom: 1px dotted #ddd;
  margin-bottom: 10px;
}
#RoleSetting .feature-container .function-items .item .sub-item .cms-checkbox,
#RoleSetting .function-container .function-items .item .sub-item .cms-checkbox {
  flex: 1;
}
#RoleSetting .feature-container .function-items .item .sub-item .setup-buttons .btn-setup,
#RoleSetting .function-container .function-items .item .sub-item .setup-buttons .btn-setup {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 13px;
  outline: none;
  box-shadow: none;
}
#RoleSetting .feature-container .function-items .item .sub-item .func-name,
#RoleSetting .function-container .function-items .item .sub-item .func-name {
  padding-bottom: 10px;
  text-transform: capitalize;
}
#RoleSetting .feature-container .function-items .item input[type=checkbox]:checked + label,
#RoleSetting .function-container .function-items .item input[type=checkbox]:checked + label {
  color: #1095ea;
}
#RoleSetting .feature-container .feature-items {
  margin: 20px 0 0 0px;
  width: 40%;
  margin: 20px auto;
}
#RoleSetting .feature-container .feature-items .item {
  list-style: none;
  float: left;
  margin: 0 5px 5px 0;
}
#RoleSetting .feature-container .feature-items .item input[type=checkbox] {
  display: none;
}
#RoleSetting .feature-container .feature-items .item input[type=checkbox]:checked + label {
  border-color: rgba(16, 149, 234, 0.7);
  color: #003865;
  background-color: #f7f7f7;
}
#RoleSetting .feature-container .feature-item {
  width: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid #eee;
  flex-flow: column wrap;
  font-size: 13px;
  text-align: center;
  color: #999;
  background-color: #f2f2f2;
  cursor: pointer;
}
#RoleSetting .feature-container .feature-item i {
  display: block;
}

#RoleFunctionList,
#AccountPageManager,
.account-page {
  /*.switch {
      @include dimension(32px, 14px);
      position: absolute;
      display: inline-block;
      text-align: center;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);

      input {
          opacity: 0;
          width: 0;
          height: 0;
      }

      .m__round {
          border-radius: 30px;

          &::before {
              border-radius: 50%;
          }
      }

      .m__slider {
          position: absolute;
          cursor: pointer;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: #ddd;
          transition: .4s;
          outline: none;

          &::before {
              @include dimension(12px, 12px);
              position: absolute;
              content: "";
              left: 1px;
              bottom: 1px;
              background-color: #fff;
              transition: .4s;
          }
      }

      input:checked + .m__slider {
          background-color: $blue-color;
      }

      input:checked + .m__slider:before {
          transform: translateX(18px);
      }
  }*/
}
#RoleFunctionList .role-items,
#AccountPageManager .role-items,
.account-page .role-items {
  list-style: none;
  position: relative;
}
#RoleFunctionList .role-items .item,
#AccountPageManager .role-items .item,
.account-page .role-items .item {
  color: #666;
  position: relative;
}
#RoleFunctionList .role-items .item:hover,
#AccountPageManager .role-items .item:hover,
.account-page .role-items .item:hover {
  color: #000000;
}
#RoleFunctionList .role-items label,
#AccountPageManager .role-items label,
.account-page .role-items label {
  transition: 0.3s all ease;
  display: block;
  cursor: pointer;
  text-transform: capitalize;
}
#RoleFunctionList .role-items input[type=checkbox]:checked + label,
#RoleFunctionList .role-items input[type=radio]:checked + label,
#AccountPageManager .role-items input[type=checkbox]:checked + label,
#AccountPageManager .role-items input[type=radio]:checked + label,
.account-page .role-items input[type=checkbox]:checked + label,
.account-page .role-items input[type=radio]:checked + label {
  color: #000000;
}
#RoleFunctionList .role-items .func-name,
#AccountPageManager .role-items .func-name,
.account-page .role-items .func-name {
  border-top: 0.5px solid #f2f2f2;
  color: #666;
  border-left: 4px solid transparent;
}
#RoleFunctionList .role-items .func-name:hover,
#AccountPageManager .role-items .func-name:hover,
.account-page .role-items .func-name:hover {
  color: #000;
  border-left: 4px solid #999;
}
#RoleFunctionList .role-items input[type=checkbox]:checked + label,
#RoleFunctionList .role-items input[type=radio],
#AccountPageManager .role-items input[type=checkbox]:checked + label,
#AccountPageManager .role-items input[type=radio],
.account-page .role-items input[type=checkbox]:checked + label,
.account-page .role-items input[type=radio] {
  display: none;
}
#RoleFunctionList .role-items input[type=checkbox] + label,
#RoleFunctionList .role-items input[type=radio] + label,
#AccountPageManager .role-items input[type=checkbox] + label,
#AccountPageManager .role-items input[type=radio] + label,
.account-page .role-items input[type=checkbox] + label,
.account-page .role-items input[type=radio] + label {
  display: block;
  color: #666;
  border-left: 4px solid transparent;
}
#RoleFunctionList .role-items input[type=checkbox] + label:hover,
#RoleFunctionList .role-items input[type=radio] + label:hover,
#AccountPageManager .role-items input[type=checkbox] + label:hover,
#AccountPageManager .role-items input[type=radio] + label:hover,
.account-page .role-items input[type=checkbox] + label:hover,
.account-page .role-items input[type=radio] + label:hover {
  color: #000;
  border-left: 4px solid #999;
}
#RoleFunctionList .role-items input[type=checkbox]:checked + label,
#RoleFunctionList .role-items input[type=radio]:checked + label,
#AccountPageManager .role-items input[type=checkbox]:checked + label,
#AccountPageManager .role-items input[type=radio]:checked + label,
.account-page .role-items input[type=checkbox]:checked + label,
.account-page .role-items input[type=radio]:checked + label {
  font-weight: bold;
  background: white;
  border-left: 4px solid #5cb85c;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  color: #000000;
}
#RoleFunctionList .left-panel,
#AccountPageManager .left-panel,
.account-page .left-panel {
  overflow: auto;
  width: 320px;
}
#RoleFunctionList .right-panel,
#AccountPageManager .right-panel,
.account-page .right-panel {
  width: 100%;
  overflow: auto;
  position: relative;
}
#RoleFunctionList .cms-popup-content form,
#RoleFunctionList .account-form-profile,
#AccountPageManager .cms-popup-content form,
#AccountPageManager .account-form-profile,
.account-page .cms-popup-content form,
.account-page .account-form-profile {
  height: 100%;
  position: relative;
}
#RoleFunctionList .cms-popup-content form .main-panel,
#RoleFunctionList .account-form-profile .main-panel,
#AccountPageManager .cms-popup-content form .main-panel,
#AccountPageManager .account-form-profile .main-panel,
.account-page .cms-popup-content form .main-panel,
.account-page .account-form-profile .main-panel {
  width: 100%;
}
#RoleFunctionList .cms-popup-content form .main-panel span .username, #RoleFunctionList .cms-popup-content form .main-panel .username,
#RoleFunctionList .account-form-profile .main-panel span .username,
#RoleFunctionList .account-form-profile .main-panel .username,
#AccountPageManager .cms-popup-content form .main-panel span .username,
#AccountPageManager .cms-popup-content form .main-panel .username,
#AccountPageManager .account-form-profile .main-panel span .username,
#AccountPageManager .account-form-profile .main-panel .username,
.account-page .cms-popup-content form .main-panel span .username,
.account-page .cms-popup-content form .main-panel .username,
.account-page .account-form-profile .main-panel span .username,
.account-page .account-form-profile .main-panel .username {
  font-size: 17px;
  font-weight: 600;
  color: #1095EA;
}
#RoleFunctionList .cms-popup-content form .main-panel span.username,
#RoleFunctionList .account-form-profile .main-panel span.username,
#AccountPageManager .cms-popup-content form .main-panel span.username,
#AccountPageManager .account-form-profile .main-panel span.username,
.account-page .cms-popup-content form .main-panel span.username,
.account-page .account-form-profile .main-panel span.username {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border: 0;
  justify-content: center;
  cursor: default;
}
#RoleFunctionList .cms-popup-content form .main-panel span.username::before,
#RoleFunctionList .account-form-profile .main-panel span.username::before,
#AccountPageManager .cms-popup-content form .main-panel span.username::before,
#AccountPageManager .account-form-profile .main-panel span.username::before,
.account-page .cms-popup-content form .main-panel span.username::before,
.account-page .account-form-profile .main-panel span.username::before {
  content: "" !important;
}
#RoleFunctionList .cms-popup-content form .new-account-form,
#RoleFunctionList .account-form-profile .new-account-form,
#AccountPageManager .cms-popup-content form .new-account-form,
#AccountPageManager .account-form-profile .new-account-form,
.account-page .cms-popup-content form .new-account-form,
.account-page .account-form-profile .new-account-form {
  position: relative;
  max-width: 600px;
  width: 600px;
  padding: 20px 80px 40px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 auto;
}
#RoleFunctionList .cms-popup-content form .new-account-form .hide-pass,
#RoleFunctionList .account-form-profile .new-account-form .hide-pass,
#AccountPageManager .cms-popup-content form .new-account-form .hide-pass,
#AccountPageManager .account-form-profile .new-account-form .hide-pass,
.account-page .cms-popup-content form .new-account-form .hide-pass,
.account-page .account-form-profile .new-account-form .hide-pass {
  border: 1px solid #ced4da;
  border-left: 0;
  margin-left: -1px;
  background: #ffffff;
  padding-right: 6px;
  outline: none;
  display: flex;
  align-items: center;
}
#RoleFunctionList .cms-popup-content form .new-account-form .user-avatar,
#RoleFunctionList .account-form-profile .new-account-form .user-avatar,
#AccountPageManager .cms-popup-content form .new-account-form .user-avatar,
#AccountPageManager .account-form-profile .new-account-form .user-avatar,
.account-page .cms-popup-content form .new-account-form .user-avatar,
.account-page .account-form-profile .new-account-form .user-avatar {
  padding-bottom: 10px;
}
#RoleFunctionList .cms-popup-content form .new-account-form .content-inner,
#RoleFunctionList .account-form-profile .new-account-form .content-inner,
#AccountPageManager .cms-popup-content form .new-account-form .content-inner,
#AccountPageManager .account-form-profile .new-account-form .content-inner,
.account-page .cms-popup-content form .new-account-form .content-inner,
.account-page .account-form-profile .new-account-form .content-inner {
  height: calc(100% - 40px);
  width: 100%;
  padding-top: 40px;
  overflow: auto;
}
#RoleFunctionList .cms-popup-content form .new-account-form .form-group,
#RoleFunctionList .account-form-profile .new-account-form .form-group,
#AccountPageManager .cms-popup-content form .new-account-form .form-group,
#AccountPageManager .account-form-profile .new-account-form .form-group,
.account-page .cms-popup-content form .new-account-form .form-group,
.account-page .account-form-profile .new-account-form .form-group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#RoleFunctionList .cms-popup-content form .new-account-form .form-group label,
#RoleFunctionList .account-form-profile .new-account-form .form-group label,
#AccountPageManager .cms-popup-content form .new-account-form .form-group label,
#AccountPageManager .account-form-profile .new-account-form .form-group label,
.account-page .cms-popup-content form .new-account-form .form-group label,
.account-page .account-form-profile .new-account-form .form-group label {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  white-space: nowrap;
  align-items: center;
  min-width: 150px;
  border: 1px solid #ced4da;
  border-right: 0;
  padding: 0 10px;
  position: relative;
  color: gray;
}
#RoleFunctionList .cms-popup-content form .new-account-form .form-group label::after,
#RoleFunctionList .account-form-profile .new-account-form .form-group label::after,
#AccountPageManager .cms-popup-content form .new-account-form .form-group label::after,
#AccountPageManager .account-form-profile .new-account-form .form-group label::after,
.account-page .cms-popup-content form .new-account-form .form-group label::after,
.account-page .account-form-profile .new-account-form .form-group label::after {
  content: ":";
  position: absolute;
  right: 0px;
}
#RoleFunctionList .cms-popup-content form .new-account-form .form-group label.required::before,
#RoleFunctionList .account-form-profile .new-account-form .form-group label.required::before,
#AccountPageManager .cms-popup-content form .new-account-form .form-group label.required::before,
#AccountPageManager .account-form-profile .new-account-form .form-group label.required::before,
.account-page .cms-popup-content form .new-account-form .form-group label.required::before,
.account-page .account-form-profile .new-account-form .form-group label.required::before {
  content: " *";
  color: #dc3545;
  padding-right: 4px;
}
#RoleFunctionList .cms-popup-content form .new-account-form .form-group .form-control,
#RoleFunctionList .account-form-profile .new-account-form .form-group .form-control,
#AccountPageManager .cms-popup-content form .new-account-form .form-group .form-control,
#AccountPageManager .account-form-profile .new-account-form .form-group .form-control,
.account-page .cms-popup-content form .new-account-form .form-group .form-control,
.account-page .account-form-profile .new-account-form .form-group .form-control {
  border-left: 0;
}
#RoleFunctionList .cms-popup-content form .new-account-form .form-group .checkbox-label,
#RoleFunctionList .account-form-profile .new-account-form .form-group .checkbox-label,
#AccountPageManager .cms-popup-content form .new-account-form .form-group .checkbox-label,
#AccountPageManager .account-form-profile .new-account-form .form-group .checkbox-label,
.account-page .cms-popup-content form .new-account-form .form-group .checkbox-label,
.account-page .account-form-profile .new-account-form .form-group .checkbox-label {
  border: 0;
  padding-left: 24px;
}
#RoleFunctionList .cms-popup-content form .new-account-form .form-group .checkbox-label::after,
#RoleFunctionList .account-form-profile .new-account-form .form-group .checkbox-label::after,
#AccountPageManager .cms-popup-content form .new-account-form .form-group .checkbox-label::after,
#AccountPageManager .account-form-profile .new-account-form .form-group .checkbox-label::after,
.account-page .cms-popup-content form .new-account-form .form-group .checkbox-label::after,
.account-page .account-form-profile .new-account-form .form-group .checkbox-label::after {
  content: "";
}
#RoleFunctionList .cms-popup-content form .file-input-wrap,
#RoleFunctionList .account-form-profile .file-input-wrap,
#AccountPageManager .cms-popup-content form .file-input-wrap,
#AccountPageManager .account-form-profile .file-input-wrap,
.account-page .cms-popup-content form .file-input-wrap,
.account-page .account-form-profile .file-input-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
  width: 150px;
}
#RoleFunctionList .cms-popup-content form .file-input-wrap .edit,
#RoleFunctionList .account-form-profile .file-input-wrap .edit,
#AccountPageManager .cms-popup-content form .file-input-wrap .edit,
#AccountPageManager .account-form-profile .file-input-wrap .edit,
.account-page .cms-popup-content form .file-input-wrap .edit,
.account-page .account-form-profile .file-input-wrap .edit {
  position: absolute;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: #eee;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  border: 5px solid #fff;
}
#RoleFunctionList .cms-popup-content form .file-input-wrap img,
#RoleFunctionList .account-form-profile .file-input-wrap img,
#AccountPageManager .cms-popup-content form .file-input-wrap img,
#AccountPageManager .account-form-profile .file-input-wrap img,
.account-page .cms-popup-content form .file-input-wrap img,
.account-page .account-form-profile .file-input-wrap img {
  border: 8px solid #f5f5f5;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}
#RoleFunctionList .cms-popup-content form .file-input-wrap input[type=file],
#RoleFunctionList .account-form-profile .file-input-wrap input[type=file],
#AccountPageManager .cms-popup-content form .file-input-wrap input[type=file],
#AccountPageManager .account-form-profile .file-input-wrap input[type=file],
.account-page .cms-popup-content form .file-input-wrap input[type=file],
.account-page .account-form-profile .file-input-wrap input[type=file] {
  height: 150px;
}
#RoleFunctionList .cms-popup-content form .popup-body-content,
#RoleFunctionList .account-form-profile .popup-body-content,
#AccountPageManager .cms-popup-content form .popup-body-content,
#AccountPageManager .account-form-profile .popup-body-content,
.account-page .cms-popup-content form .popup-body-content,
.account-page .account-form-profile .popup-body-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#RoleFunctionList .cms-popup-content form .popup-content-inner,
#RoleFunctionList .account-form-profile .popup-content-inner,
#AccountPageManager .cms-popup-content form .popup-content-inner,
#AccountPageManager .account-form-profile .popup-content-inner,
.account-page .cms-popup-content form .popup-content-inner,
.account-page .account-form-profile .popup-content-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
#RoleFunctionList .cms-popup-content form .popup-content-inner .content-inner,
#RoleFunctionList .account-form-profile .popup-content-inner .content-inner,
#AccountPageManager .cms-popup-content form .popup-content-inner .content-inner,
#AccountPageManager .account-form-profile .popup-content-inner .content-inner,
.account-page .cms-popup-content form .popup-content-inner .content-inner,
.account-page .account-form-profile .popup-content-inner .content-inner {
  height: 100%;
  overflow: auto;
}
@media screen and (max-height: 600px) {
  #RoleFunctionList .cms-popup-content form .main-panel,
  #RoleFunctionList .account-form-profile .main-panel,
  #AccountPageManager .cms-popup-content form .main-panel,
  #AccountPageManager .account-form-profile .main-panel,
  .account-page .cms-popup-content form .main-panel,
  .account-page .account-form-profile .main-panel {
    margin-top: 300px;
  }
}
#RoleFunctionList .account-form-role,
#AccountPageManager .account-form-role,
.account-page .account-form-role {
  width: 100%;
  height: 100%;
  padding: 20px;
}
#RoleFunctionList .account-form-role ul, #RoleFunctionList .account-form-role li,
#AccountPageManager .account-form-role ul,
#AccountPageManager .account-form-role li,
.account-page .account-form-role ul,
.account-page .account-form-role li {
  list-style: none;
}
#RoleFunctionList .account-form-role .role-items,
#AccountPageManager .account-form-role .role-items,
.account-page .account-form-role .role-items {
  list-style: none;
  height: 70vh;
  overflow: auto;
  border-left: 0.5px solid #f2f2f2;
}
#RoleFunctionList .account-form-role .role-items .item,
#AccountPageManager .account-form-role .role-items .item,
.account-page .account-form-role .role-items .item {
  color: #666;
  position: relative;
}
#RoleFunctionList .account-form-role .role-items .item:hover,
#AccountPageManager .account-form-role .role-items .item:hover,
.account-page .account-form-role .role-items .item:hover {
  color: #000000;
}
#RoleFunctionList .account-form-role .role-items input[type=checkbox]:checked + label,
#RoleFunctionList .account-form-role .role-items input[type=radio]:checked + label,
#AccountPageManager .account-form-role .role-items input[type=checkbox]:checked + label,
#AccountPageManager .account-form-role .role-items input[type=radio]:checked + label,
.account-page .account-form-role .role-items input[type=checkbox]:checked + label,
.account-page .account-form-role .role-items input[type=radio]:checked + label {
  color: #000000;
}
#RoleFunctionList .account-form-role .role-items input[type=checkbox]:checked + label,
#RoleFunctionList .account-form-role .role-items input[type=radio],
#AccountPageManager .account-form-role .role-items input[type=checkbox]:checked + label,
#AccountPageManager .account-form-role .role-items input[type=radio],
.account-page .account-form-role .role-items input[type=checkbox]:checked + label,
.account-page .account-form-role .role-items input[type=radio] {
  display: none;
}
#RoleFunctionList .account-form-role .role-items input[type=checkbox] + label,
#RoleFunctionList .account-form-role .role-items input[type=radio] + label,
#AccountPageManager .account-form-role .role-items input[type=checkbox] + label,
#AccountPageManager .account-form-role .role-items input[type=radio] + label,
.account-page .account-form-role .role-items input[type=checkbox] + label,
.account-page .account-form-role .role-items input[type=radio] + label {
  padding: 8px 0px 8px 20px;
}
#RoleFunctionList .account-form-role .roles-container,
#AccountPageManager .account-form-role .roles-container,
.account-page .account-form-role .roles-container {
  background: #fff;
  border: 1px solid #ccc;
  height: 70vh;
  overflow: auto;
  padding: 20px;
}
#RoleFunctionList .account-form-role .roles-container.horizontal,
#AccountPageManager .account-form-role .roles-container.horizontal,
.account-page .account-form-role .roles-container.horizontal {
  margin: 0;
  overflow: initial;
  height: auto;
}
#RoleFunctionList .account-form-role .roles-container.horizontal .role-items,
#AccountPageManager .account-form-role .roles-container.horizontal .role-items,
.account-page .account-form-role .roles-container.horizontal .role-items {
  border: 0;
}
#RoleFunctionList .account-form-role .roles-container.horizontal .role-items .item,
#AccountPageManager .account-form-role .roles-container.horizontal .role-items .item,
.account-page .account-form-role .roles-container.horizontal .role-items .item {
  width: 100%;
}
#RoleFunctionList .account-form-role .roles-container.horizontal .role-items .item .parent-item,
#AccountPageManager .account-form-role .roles-container.horizontal .role-items .item .parent-item,
.account-page .account-form-role .roles-container.horizontal .role-items .item .parent-item {
  width: 30%;
  float: left;
}
#RoleFunctionList .account-form-role .roles-container.horizontal .role-items .item .parent-item .func-name,
#AccountPageManager .account-form-role .roles-container.horizontal .role-items .item .parent-item .func-name,
.account-page .account-form-role .roles-container.horizontal .role-items .item .parent-item .func-name {
  font-weight: 600;
}
#RoleFunctionList .account-form-role .roles-container.horizontal .role-items .item .sub-role-items,
#AccountPageManager .account-form-role .roles-container.horizontal .role-items .item .sub-role-items,
.account-page .account-form-role .roles-container.horizontal .role-items .item .sub-role-items {
  margin-left: 30%;
}
#RoleFunctionList .account-form-role .group-functions .sub-item,
#RoleFunctionList .account-form-role .group-functions .parent-item,
#AccountPageManager .account-form-role .group-functions .sub-item,
#AccountPageManager .account-form-role .group-functions .parent-item,
.account-page .account-form-role .group-functions .sub-item,
.account-page .account-form-role .group-functions .parent-item {
  position: relative;
  background: #fdfdfd;
}
#RoleFunctionList .account-form-role .group-functions .sub-item .func-name,
#RoleFunctionList .account-form-role .group-functions .parent-item .func-name,
#AccountPageManager .account-form-role .group-functions .sub-item .func-name,
#AccountPageManager .account-form-role .group-functions .parent-item .func-name,
.account-page .account-form-role .group-functions .sub-item .func-name,
.account-page .account-form-role .group-functions .parent-item .func-name {
  padding-left: 10px;
}
#RoleFunctionList .account-form-role .group-functions .sub-item .func-name .name,
#RoleFunctionList .account-form-role .group-functions .parent-item .func-name .name,
#AccountPageManager .account-form-role .group-functions .sub-item .func-name .name,
#AccountPageManager .account-form-role .group-functions .parent-item .func-name .name,
.account-page .account-form-role .group-functions .sub-item .func-name .name,
.account-page .account-form-role .group-functions .parent-item .func-name .name {
  margin-left: 5px;
}
#RoleFunctionList .account-form-role .group-functions .sub-role-items .func-name .name,
#AccountPageManager .account-form-role .group-functions .sub-role-items .func-name .name,
.account-page .account-form-role .group-functions .sub-role-items .func-name .name {
  padding-left: 20px;
}
#RoleFunctionList .account-form-permission,
#AccountPageManager .account-form-permission,
.account-page .account-form-permission {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  position: relative;
  flex-direction: column;
  background-color: #fff;
  padding: 20px;
}
#RoleFunctionList .account-form-permission .avatar,
#AccountPageManager .account-form-permission .avatar,
.account-page .account-form-permission .avatar {
  position: relative;
}
#RoleFunctionList .account-form-permission .avatar .info,
#AccountPageManager .account-form-permission .avatar .info,
.account-page .account-form-permission .avatar .info {
  border-bottom: dotted 1px #ccc;
  padding: 0 0 15px;
  margin-bottom: 20px;
}
#RoleFunctionList .account-form-permission .avatar .image,
#AccountPageManager .account-form-permission .avatar .image,
.account-page .account-form-permission .avatar .image {
  position: relative;
  width: 150px;
  display: block;
  margin: 0 auto;
}
#RoleFunctionList .account-form-permission .avatar .image i,
#AccountPageManager .account-form-permission .avatar .image i,
.account-page .account-form-permission .avatar .image i {
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 0px;
  z-index: 99;
  right: 10px;
  cursor: pointer;
  border-radius: 50%;
  background: #f2f2f2;
  text-align: center;
  line-height: 26px;
  border: 4px solid #fff;
}
#RoleFunctionList .account-form-permission .avatar img,
#AccountPageManager .account-form-permission .avatar img,
.account-page .account-form-permission .avatar img {
  display: block;
  margin: 40px auto 0;
}
#RoleFunctionList .account-form-permission .username,
#AccountPageManager .account-form-permission .username,
.account-page .account-form-permission .username {
  font-size: 23px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
#RoleFunctionList .account-form-permission .popup-content-inner,
#AccountPageManager .account-form-permission .popup-content-inner,
.account-page .account-form-permission .popup-content-inner {
  padding: 40px;
  width: 100%;
}
#RoleFunctionList .account-form-permission .permission-container,
#AccountPageManager .account-form-permission .permission-container,
.account-page .account-form-permission .permission-container {
  background: #fff;
  border: 1px solid #ddd;
  min-height: 70vh;
}
#RoleFunctionList .account-form-permission .permission-container .row,
#AccountPageManager .account-form-permission .permission-container .row,
.account-page .account-form-permission .permission-container .row {
  padding: 0px;
  margin: 0;
  height: 100%;
}
#RoleFunctionList .account-form-permission .permission-container .row .col-4,
#AccountPageManager .account-form-permission .permission-container .row .col-4,
.account-page .account-form-permission .permission-container .row .col-4 {
  padding: 0;
}
#RoleFunctionList .account-form-permission .permission-container .row .col-4:first-child,
#AccountPageManager .account-form-permission .permission-container .row .col-4:first-child,
.account-page .account-form-permission .permission-container .row .col-4:first-child {
  box-shadow: inset -5px 0px 2px -5px rgba(0, 0, 0, 0.3);
}
#RoleFunctionList .account-form-permission .header-title,
#AccountPageManager .account-form-permission .header-title,
.account-page .account-form-permission .header-title {
  text-transform: capitalize;
  margin: 10px auto;
  text-align: center;
  color: #637585;
  font-size: 16px;
  padding: 10px;
  font-weight: bold;
  border-bottom: 1px solid;
  height: 42px;
}
#RoleFunctionList .account-form-permission .function-title,
#AccountPageManager .account-form-permission .function-title,
.account-page .account-form-permission .function-title {
  position: relative;
}
#RoleFunctionList .account-form-permission .function-title .title,
#AccountPageManager .account-form-permission .function-title .title,
.account-page .account-form-permission .function-title .title {
  text-align: left;
  padding: 20px 24px;
  text-transform: uppercase;
}
#RoleFunctionList .account-form-permission .feature-container,
#RoleFunctionList .account-form-permission .zone-container,
#AccountPageManager .account-form-permission .feature-container,
#AccountPageManager .account-form-permission .zone-container,
.account-page .account-form-permission .feature-container,
.account-page .account-form-permission .zone-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  position: relative;
}
#RoleFunctionList .account-form-permission .col-list-item,
#AccountPageManager .account-form-permission .col-list-item,
.account-page .account-form-permission .col-list-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  list-style: none;
  height: 60vh;
}
#RoleFunctionList .account-form-permission .col-list-item .item,
#AccountPageManager .account-form-permission .col-list-item .item,
.account-page .account-form-permission .col-list-item .item {
  padding-left: 25px;
}
#RoleFunctionList .account-form-permission .col-list-item .item.parent,
#AccountPageManager .account-form-permission .col-list-item .item.parent,
.account-page .account-form-permission .col-list-item .item.parent {
  font-weight: 600;
  padding-left: 0px;
}
#RoleFunctionList .account-form-permission .col-list-item .item.parent.visible label,
#AccountPageManager .account-form-permission .col-list-item .item.parent.visible label,
.account-page .account-form-permission .col-list-item .item.parent.visible label {
  color: #999;
}
#RoleFunctionList .account-form-permission .col-list-item .item label,
#AccountPageManager .account-form-permission .col-list-item .item label,
.account-page .account-form-permission .col-list-item .item label {
  margin: 4px 0;
}
#RoleFunctionList .account-form-permission .col-list-item .sub-title,
#AccountPageManager .account-form-permission .col-list-item .sub-title,
.account-page .account-form-permission .col-list-item .sub-title {
  margin: 20px 20px 10px 20px;
  display: block;
}
#RoleFunctionList .account-form-permission .col-list-item .list-items,
#AccountPageManager .account-form-permission .col-list-item .list-items,
.account-page .account-form-permission .col-list-item .list-items {
  margin-left: 20px;
  height: 70vh;
  overflow: auto;
}
#RoleFunctionList .account-form-permission .role-items input[type=checkbox] + label,
#RoleFunctionList .account-form-permission .role-items input[type=radio] + label,
#AccountPageManager .account-form-permission .role-items input[type=checkbox] + label,
#AccountPageManager .account-form-permission .role-items input[type=radio] + label,
.account-page .account-form-permission .role-items input[type=checkbox] + label,
.account-page .account-form-permission .role-items input[type=radio] + label {
  padding: 8px 0px 8px 10px;
}
#RoleFunctionList .account-form-permission .switch,
#AccountPageManager .account-form-permission .switch,
.account-page .account-form-permission .switch {
  right: 0;
}
#RoleFunctionList .account-form-permission .page-functions,
#AccountPageManager .account-form-permission .page-functions,
.account-page .account-form-permission .page-functions {
  height: 100%;
  width: 100%;
  padding: 40px 25px;
}
#RoleFunctionList .account-form-permission .page-functions .container,
#AccountPageManager .account-form-permission .page-functions .container,
.account-page .account-form-permission .page-functions .container {
  background: #fff;
  border: 1px solid #ccc;
  max-height: 70vh;
  padding: 25px;
  overflow: auto;
}
#RoleFunctionList .validation-errors,
#AccountPageManager .validation-errors,
.account-page .validation-errors {
  list-style: square;
  padding: 0 15px;
  font-size: 13px;
  color: #dc3545;
  margin: 0;
}
#RoleFunctionList .reset-pass-popup .form-group,
#AccountPageManager .reset-pass-popup .form-group,
.account-page .reset-pass-popup .form-group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#RoleFunctionList .reset-pass-popup .form-group label,
#AccountPageManager .reset-pass-popup .form-group label,
.account-page .reset-pass-popup .form-group label {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 160px;
  border: 1px solid #ced4da;
  border-right: 0;
  padding: 0 10px;
  position: relative;
  color: gray;
}
#RoleFunctionList .reset-pass-popup .form-group label::after,
#AccountPageManager .reset-pass-popup .form-group label::after,
.account-page .reset-pass-popup .form-group label::after {
  content: ":";
  position: absolute;
  right: 0px;
}
#RoleFunctionList .reset-pass-popup .form-group label.required::before,
#AccountPageManager .reset-pass-popup .form-group label.required::before,
.account-page .reset-pass-popup .form-group label.required::before {
  content: " *";
  color: #dc3545;
  padding-right: 4px;
}
#RoleFunctionList .reset-pass-popup .form-group .form-control,
#AccountPageManager .reset-pass-popup .form-group .form-control,
.account-page .reset-pass-popup .form-group .form-control {
  border-left: 0;
  width: auto;
}
#RoleFunctionList .hide-pass,
#AccountPageManager .hide-pass,
.account-page .hide-pass {
  border: 1px solid #ced4da;
  border-left: 0;
  margin-left: -1px;
  background: #ffffff;
  padding-right: 6px;
  outline: none;
  color: #666;
  display: flex;
  align-items: center;
}
#RoleFunctionList .hide-pass:hover,
#AccountPageManager .hide-pass:hover,
.account-page .hide-pass:hover {
  color: #000000;
}

#AccountPageManager .edit-account-form {
  display: block;
}
#AccountPageManager .edit-account-form .plugin-wrapper {
  top: 61px;
  width: 410px;
  height: calc(100% - 59px);
}
#AccountPageManager .edit-account-form .plugin-wrapper .plugin-content {
  padding: 10px 0px 10px 20px;
}
#AccountPageManager .edit-account-form .plugin-wrapper .plugin-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 0 0 10px;
  height: 50px;
}
#AccountPageManager .edit-account-form .user-avatar {
  text-align: center;
}
#AccountPageManager .edit-account-form .user-avatar .file-input-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
  width: 150px;
}
#AccountPageManager .edit-account-form .user-avatar .file-input-wrap .edit {
  position: absolute;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: #eee;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  border: 5px solid #fff;
}
#AccountPageManager .edit-account-form .user-avatar .file-input-wrap img {
  border: 8px solid #f5f5f5;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}
#AccountPageManager .edit-account-form .user-avatar .file-input-wrap input[type=file] {
  height: 150px;
}
#AccountPageManager .edit-account-form .username {
  font-size: 23px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 5px;
  border: 0;
}
#AccountPageManager .edit-account-form .role-name {
  font-weight: 600;
  text-align: center;
  display: block;
}
#AccountPageManager .validation-message {
  color: #dc3545;
  font-size: 13px;
}
#AccountPageManager .tab-content {
  overflow: auto;
  background: #fff;
  max-height: 70vh;
  padding: 10px 0 20px 0;
}
#AccountPageManager .function-container,
#AccountPageManager .feature-container {
  height: auto;
  overflow: inherit;
}
#AccountPageManager #zoneVideoAccess .zone-access,
#AccountPageManager #zoneAccess .zone-access {
  font-size: 14px;
  padding: 0 20px 20px 20px;
  position: relative;
}
#AccountPageManager #zoneVideoAccess .zone-access .item,
#AccountPageManager #zoneAccess .zone-access .item {
  margin: 7px 0 15px;
}
#AccountPageManager #zoneVideoAccess .zone-access .parent-item label,
#AccountPageManager #zoneAccess .zone-access .parent-item label {
  font-weight: 600;
}
#AccountPageManager #zoneVideoAccess .zone-access .sub-item,
#AccountPageManager #zoneAccess .zone-access .sub-item {
  margin-left: 30px;
}
#AccountPageManager #zoneVideoAccess .zone-access .sub-item label,
#AccountPageManager #zoneAccess .zone-access .sub-item label {
  margin: 4px 0;
}
#AccountPageManager #zoneVideoAccess .header-container,
#AccountPageManager #zoneAccess .header-container {
  background: #f7f7f7;
  border-bottom: 1px solid #eee;
  padding: 10px 20px 10px;
  margin: 0 -20px 15px;
  top: 0;
  z-index: 90;
}
#AccountPageManager .cms-body-container {
  overflow: auto;
}

#AccountRoleEdit .nav-tabs .nav-link {
  border: 1px solid transparent;
  color: #000000;
}
#AccountRoleEdit .nav-tabs .nav-link.active {
  border-color: #ccc #ccc #fff;
}
#AccountRoleEdit .tab-content {
  border: 1px solid #ccc;
  border-top: 0;
  overflow: auto;
  background: #fff;
  max-height: 70vh;
  padding: 10px 0 20px 0;
}
#AccountRoleEdit .feature-container,
#AccountRoleEdit .function-container {
  min-height: 400px;
  background: #fff;
  border: 0px solid #ccc;
}
#AccountRoleEdit .feature-container .select-zone-button,
#AccountRoleEdit .function-container .select-zone-button {
  text-align: right;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
#AccountRoleEdit .feature-container .select-zone-button button,
#AccountRoleEdit .function-container .select-zone-button button {
  box-shadow: none;
  outline: none;
}
#AccountRoleEdit .feature-container .sub-item,
#AccountRoleEdit .function-container .sub-item {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
#AccountRoleEdit .feature-container .sub-item .cms-checkbox,
#AccountRoleEdit .function-container .sub-item .cms-checkbox {
  flex: 1;
}
#AccountRoleEdit .feature-container .function-items .item,
#AccountRoleEdit .function-container .function-items .item {
  padding: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f1f1f1;
}
#AccountRoleEdit .feature-container .function-items .item .parent-item,
#AccountRoleEdit .function-container .function-items .item .parent-item {
  float: left;
  width: 30%;
}
#AccountRoleEdit .feature-container .function-items .item .parent-item .func-name,
#AccountRoleEdit .function-container .function-items .item .parent-item .func-name {
  font-weight: 600;
}
#AccountRoleEdit .feature-container .function-items .item .parent-item input[type=checkbox]:checked + label,
#AccountRoleEdit .function-container .function-items .item .parent-item input[type=checkbox]:checked + label {
  border-bottom: 1px dashed #1095ea;
}
#AccountRoleEdit .feature-container .function-items .item .sub-item,
#AccountRoleEdit .function-container .function-items .item .sub-item {
  margin-left: 30%;
}
#AccountRoleEdit .feature-container .function-items .item input[type=checkbox]:checked + label,
#AccountRoleEdit .function-container .function-items .item input[type=checkbox]:checked + label {
  color: #1095ea;
}
#AccountRoleEdit .feature-container .feature-items {
  margin: 20px 0 0 0px;
  width: 40%;
  margin: 20px auto;
  overflow: hidden;
}
#AccountRoleEdit .feature-container .feature-items .item {
  list-style: none;
  float: left;
  margin: 0 5px 5px 0;
}
#AccountRoleEdit .feature-container .feature-items .item input[type=checkbox] {
  display: none;
}
#AccountRoleEdit .feature-container .feature-items .item input[type=checkbox]:checked + label {
  border-color: rgba(16, 149, 234, 0.7);
  color: #003865;
  background-color: #f7f7f7;
}
#AccountRoleEdit .feature-container .feature-item {
  width: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid #eee;
  flex-flow: column wrap;
  font-size: 13px;
  text-align: center;
  color: #999;
  background-color: #f2f2f2;
  cursor: pointer;
}
#AccountRoleEdit .feature-container .feature-item i {
  display: block;
}
#AccountRoleEdit .account-form-role {
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow: auto;
}
#AccountRoleEdit .account-form-role .container {
  padding: 0;
}
#AccountRoleEdit .tab-header-container {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 15px 20px 15px 0;
  display: flex;
  justify-content: flex-end;
  background: #fff;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
}
#AccountRoleEdit .btn-setup {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 13px;
}
#AccountRoleEdit .tab-content {
  border: 1px solid #dee2e6;
  border-top: 0;
  overflow: auto;
  background: #fff;
  max-height: 70vh;
  padding: 0px 0 0px 0;
}
#AccountRoleEdit .zone-container,
#AccountRoleEdit .function-container {
  padding: 10px;
}
#AccountRoleEdit .zone-container .item,
#AccountRoleEdit .function-container .item {
  list-style: none;
  overflow: hidden;
  padding: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f1f1f1;
  background: #f7f7f7;
}
#AccountRoleEdit .zone-container .item .parent-item,
#AccountRoleEdit .function-container .item .parent-item {
  float: left;
  width: 20%;
  margin: 7px 0;
}
#AccountRoleEdit .zone-container .item .parent-item .func-name,
#AccountRoleEdit .function-container .item .parent-item .func-name {
  font-weight: 600;
}
#AccountRoleEdit .zone-container .item .parent-item .func-name.active,
#AccountRoleEdit .function-container .item .parent-item .func-name.active {
  color: #1095EA;
  border-bottom: 1px dashed #1095EA;
}
#AccountRoleEdit .zone-container .item .parent-item input[type=checkbox]:checked + label,
#AccountRoleEdit .function-container .item .parent-item input[type=checkbox]:checked + label {
  border-bottom: 1px dashed #1095EA;
}
#AccountRoleEdit .zone-container .item .sub-item,
#AccountRoleEdit .function-container .item .sub-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-left: 20%;
  overflow: hidden;
  padding: 7px 0;
  border-bottom: 1px dotted #ccc;
}
#AccountRoleEdit .zone-container .item .cms-checkbox,
#AccountRoleEdit .function-container .item .cms-checkbox {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
}
#AccountRoleEdit .zone-container .item .func-name,
#AccountRoleEdit .function-container .item .func-name {
  padding-bottom: 0px;
}
#AccountRoleEdit .zone-container .item input[type=checkbox]:checked + label,
#AccountRoleEdit .function-container .item input[type=checkbox]:checked + label {
  color: #1095ea;
}
#AccountRoleEdit .zone-container .item .visible label,
#AccountRoleEdit .function-container .item .visible label {
  color: #999;
}
#AccountRoleEdit .function-container {
  position: relative;
}
#AccountRoleEdit .function-container .function-items .parent-item input[type=checkbox] {
  display: none;
}
#AccountRoleEdit .feature-container .list-items {
  margin: 20px 0 0 0px;
  float: left;
}
#AccountRoleEdit .feature-container .list-items .item {
  float: left;
  margin: 0 5px 5px 0;
}
#AccountRoleEdit .feature-container .feature-item {
  width: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid #eee;
  flex-flow: column wrap;
  font-size: 13px;
  text-align: center;
  color: #999;
  background-color: #f2f2f2;
  cursor: pointer;
}
#AccountRoleEdit .feature-container input[type=checkbox]:checked + label {
  border-color: rgba(16, 149, 234, 0.7);
  color: #003865;
  background-color: #f7f7f7;
}
#AccountRoleEdit .page-function {
  position: relative;
}
#AccountRoleEdit .page-function.role-items {
  height: auto;
  border-right: 1px solid #ccc;
}
#AccountRoleEdit .page-function .item {
  position: relative;
}
#AccountRoleEdit .page-function .item .name {
  flex: 1;
}

#AccountPermissionManager .cms-plugin-popup .plugin-wrapper .plugin-content.normal,
#RoleFeatureList .cms-plugin-popup .plugin-wrapper .plugin-content.normal,
#RoleFunctionList .cms-plugin-popup .plugin-wrapper .plugin-content.normal {
  padding: 20px;
}
#AccountPermissionManager .cms-plugin-popup .plugin-wrapper .plugin-footer,
#RoleFeatureList .cms-plugin-popup .plugin-wrapper .plugin-footer,
#RoleFunctionList .cms-plugin-popup .plugin-wrapper .plugin-footer {
  padding: 10px 10px 10px 20px;
}
#AccountPermissionManager .settings-form-popup .plugin-wrapper,
#RoleFeatureList .settings-form-popup .plugin-wrapper,
#RoleFunctionList .settings-form-popup .plugin-wrapper {
  width: 360px;
  height: calc(100% - 60px);
  top: 60px;
}
#AccountPermissionManager .left-panel,
#RoleFeatureList .left-panel,
#RoleFunctionList .left-panel {
  padding-top: 40px;
}
#AccountPermissionManager .data-list-container .list-item-header,
#RoleFeatureList .data-list-container .list-item-header,
#RoleFunctionList .data-list-container .list-item-header {
  border-top: 1px solid #E2E2E2;
}
#AccountPermissionManager .data-list-container .list-item-header .item-view,
#AccountPermissionManager .data-list-container .list-item-body .item-view,
#RoleFeatureList .data-list-container .list-item-header .item-view,
#RoleFeatureList .data-list-container .list-item-body .item-view,
#RoleFunctionList .data-list-container .list-item-header .item-view,
#RoleFunctionList .data-list-container .list-item-body .item-view {
  width: 15%;
}
#AccountPermissionManager .data-list-container .list-item-header .item-view.checkbox-cell,
#AccountPermissionManager .data-list-container .list-item-body .item-view.checkbox-cell,
#RoleFeatureList .data-list-container .list-item-header .item-view.checkbox-cell,
#RoleFeatureList .data-list-container .list-item-body .item-view.checkbox-cell,
#RoleFunctionList .data-list-container .list-item-header .item-view.checkbox-cell,
#RoleFunctionList .data-list-container .list-item-body .item-view.checkbox-cell {
  width: 30px;
}
#AccountPermissionManager .data-list-container .list-item-header .item-view.actions-cell,
#AccountPermissionManager .data-list-container .list-item-body .item-view.actions-cell,
#RoleFeatureList .data-list-container .list-item-header .item-view.actions-cell,
#RoleFeatureList .data-list-container .list-item-body .item-view.actions-cell,
#RoleFunctionList .data-list-container .list-item-header .item-view.actions-cell,
#RoleFunctionList .data-list-container .list-item-body .item-view.actions-cell {
  width: 7%;
  white-space: nowrap;
}
#AccountPermissionManager .data-list-container .list-item-header .item-view.sort-order,
#AccountPermissionManager .data-list-container .list-item-body .item-view.sort-order,
#RoleFeatureList .data-list-container .list-item-header .item-view.sort-order,
#RoleFeatureList .data-list-container .list-item-body .item-view.sort-order,
#RoleFunctionList .data-list-container .list-item-header .item-view.sort-order,
#RoleFunctionList .data-list-container .list-item-body .item-view.sort-order {
  width: 7%;
  text-align: center;
  margin-right: 20px;
}
#AccountPermissionManager .data-list-container .list-item-header .item .icon-cell,
#AccountPermissionManager .data-list-container .list-item-body .item .icon-cell,
#RoleFeatureList .data-list-container .list-item-header .item .icon-cell,
#RoleFeatureList .data-list-container .list-item-body .item .icon-cell,
#RoleFunctionList .data-list-container .list-item-header .item .icon-cell,
#RoleFunctionList .data-list-container .list-item-body .item .icon-cell {
  width: 3%;
}
#AccountPermissionManager .data-list-container .list-item-header .item .actions-cell,
#AccountPermissionManager .data-list-container .list-item-body .item .actions-cell,
#RoleFeatureList .data-list-container .list-item-header .item .actions-cell,
#RoleFeatureList .data-list-container .list-item-body .item .actions-cell,
#RoleFunctionList .data-list-container .list-item-header .item .actions-cell,
#RoleFunctionList .data-list-container .list-item-body .item .actions-cell {
  width: 7%;
}
#AccountPermissionManager .data-list-container .list-item-header .item .item-view i,
#AccountPermissionManager .data-list-container .list-item-body .item .item-view i,
#RoleFeatureList .data-list-container .list-item-header .item .item-view i,
#RoleFeatureList .data-list-container .list-item-body .item .item-view i,
#RoleFunctionList .data-list-container .list-item-header .item .item-view i,
#RoleFunctionList .data-list-container .list-item-body .item .item-view i {
  margin-right: 5px;
}
#AccountPermissionManager .data-list-container .list-item-header .item .name-cell,
#AccountPermissionManager .data-list-container .list-item-body .item .name-cell,
#RoleFeatureList .data-list-container .list-item-header .item .name-cell,
#RoleFeatureList .data-list-container .list-item-body .item .name-cell,
#RoleFunctionList .data-list-container .list-item-header .item .name-cell,
#RoleFunctionList .data-list-container .list-item-body .item .name-cell {
  margin-right: 10px;
  width: 30%;
}
#AccountPermissionManager .data-list-container .list-item-header .item .name-cell > span,
#AccountPermissionManager .data-list-container .list-item-body .item .name-cell > span,
#RoleFeatureList .data-list-container .list-item-header .item .name-cell > span,
#RoleFeatureList .data-list-container .list-item-body .item .name-cell > span,
#RoleFunctionList .data-list-container .list-item-header .item .name-cell > span,
#RoleFunctionList .data-list-container .list-item-body .item .name-cell > span {
  display: inline-block;
  padding-left: 40px;
}
#AccountPermissionManager .data-list-container .list-item-header .item .name-cell .status,
#AccountPermissionManager .data-list-container .list-item-body .item .name-cell .status,
#RoleFeatureList .data-list-container .list-item-header .item .name-cell .status,
#RoleFeatureList .data-list-container .list-item-body .item .name-cell .status,
#RoleFunctionList .data-list-container .list-item-header .item .name-cell .status,
#RoleFunctionList .data-list-container .list-item-body .item .name-cell .status {
  text-align: center;
}
#AccountPermissionManager .data-list-container .list-item-header .item.parent .item-view span,
#AccountPermissionManager .data-list-container .list-item-body .item.parent .item-view span,
#RoleFeatureList .data-list-container .list-item-header .item.parent .item-view span,
#RoleFeatureList .data-list-container .list-item-body .item.parent .item-view span,
#RoleFunctionList .data-list-container .list-item-header .item.parent .item-view span,
#RoleFunctionList .data-list-container .list-item-body .item.parent .item-view span {
  padding-left: 10px;
}
#AccountPermissionManager .data-list-container .list-item-header .item.parent .item-view span i,
#AccountPermissionManager .data-list-container .list-item-body .item.parent .item-view span i,
#RoleFeatureList .data-list-container .list-item-header .item.parent .item-view span i,
#RoleFeatureList .data-list-container .list-item-body .item.parent .item-view span i,
#RoleFunctionList .data-list-container .list-item-header .item.parent .item-view span i,
#RoleFunctionList .data-list-container .list-item-body .item.parent .item-view span i {
  margin-right: 5px;
}
#AccountPermissionManager .data-list-container .list-item-header .sprite-list,
#AccountPermissionManager .data-list-container .list-item-body .sprite-list,
#RoleFeatureList .data-list-container .list-item-header .sprite-list,
#RoleFeatureList .data-list-container .list-item-body .sprite-list,
#RoleFunctionList .data-list-container .list-item-header .sprite-list,
#RoleFunctionList .data-list-container .list-item-body .sprite-list {
  opacity: 1;
}
#AccountPermissionManager .data-list-container .list-item-header .icons,
#AccountPermissionManager .data-list-container .list-item-body .icons,
#RoleFeatureList .data-list-container .list-item-header .icons,
#RoleFeatureList .data-list-container .list-item-body .icons,
#RoleFunctionList .data-list-container .list-item-header .icons,
#RoleFunctionList .data-list-container .list-item-body .icons {
  margin-right: 0;
  display: inline-block;
  width: 15px;
  height: 25px;
  vertical-align: middle;
  background: url(../images/gm_menuleft_icon_hover.png) no-repeat;
}
#AccountPermissionManager .data-list-container .list-item-header .icons.icon_user,
#AccountPermissionManager .data-list-container .list-item-body .icons.icon_user,
#RoleFeatureList .data-list-container .list-item-header .icons.icon_user,
#RoleFeatureList .data-list-container .list-item-body .icons.icon_user,
#RoleFunctionList .data-list-container .list-item-header .icons.icon_user,
#RoleFunctionList .data-list-container .list-item-body .icons.icon_user {
  background-position: 0 4px;
}
#AccountPermissionManager .data-list-container .list-item-header .icons.icon_content,
#AccountPermissionManager .data-list-container .list-item-body .icons.icon_content,
#RoleFeatureList .data-list-container .list-item-header .icons.icon_content,
#RoleFeatureList .data-list-container .list-item-body .icons.icon_content,
#RoleFunctionList .data-list-container .list-item-header .icons.icon_content,
#RoleFunctionList .data-list-container .list-item-body .icons.icon_content {
  background-position: 0 -24px;
}
#AccountPermissionManager .data-list-container .list-item-header .icons.icon_tag,
#AccountPermissionManager .data-list-container .list-item-body .icons.icon_tag,
#RoleFeatureList .data-list-container .list-item-header .icons.icon_tag,
#RoleFeatureList .data-list-container .list-item-body .icons.icon_tag,
#RoleFunctionList .data-list-container .list-item-header .icons.icon_tag,
#RoleFunctionList .data-list-container .list-item-body .icons.icon_tag {
  background-position: 0 -52px;
}
#AccountPermissionManager .data-list-container .list-item-header .icons.icon_event,
#AccountPermissionManager .data-list-container .list-item-body .icons.icon_event,
#RoleFeatureList .data-list-container .list-item-header .icons.icon_event,
#RoleFeatureList .data-list-container .list-item-body .icons.icon_event,
#RoleFunctionList .data-list-container .list-item-header .icons.icon_event,
#RoleFunctionList .data-list-container .list-item-body .icons.icon_event {
  background-position: 0 -83px;
}
#AccountPermissionManager .data-list-container .list-item-header .icons.icon_vote,
#AccountPermissionManager .data-list-container .list-item-body .icons.icon_vote,
#RoleFeatureList .data-list-container .list-item-header .icons.icon_vote,
#RoleFeatureList .data-list-container .list-item-body .icons.icon_vote,
#RoleFunctionList .data-list-container .list-item-header .icons.icon_vote,
#RoleFunctionList .data-list-container .list-item-body .icons.icon_vote {
  background-position: 0 -113px;
}
#AccountPermissionManager .data-list-container .list-item-header .icons.icon_author,
#AccountPermissionManager .data-list-container .list-item-body .icons.icon_author,
#RoleFeatureList .data-list-container .list-item-header .icons.icon_author,
#RoleFeatureList .data-list-container .list-item-body .icons.icon_author,
#RoleFunctionList .data-list-container .list-item-header .icons.icon_author,
#RoleFunctionList .data-list-container .list-item-body .icons.icon_author {
  background-position: 0 -140px;
}

#AccountFunctionManager .data-list-container .list-item-header {
  border-top: 1px solid #E2E2E2;
}
#AccountFunctionManager .data-list-container .list-item-header .item-view,
#AccountFunctionManager .data-list-container .list-item-body .item-view {
  width: 15%;
}
#AccountFunctionManager .data-list-container .list-item-header .item-view.checkbox-cell,
#AccountFunctionManager .data-list-container .list-item-body .item-view.checkbox-cell {
  width: 20px;
}
#AccountFunctionManager .data-list-container .list-item-header .item-view.actions-cell,
#AccountFunctionManager .data-list-container .list-item-body .item-view.actions-cell {
  width: 7%;
}
#AccountFunctionManager .data-list-container .list-item-header .item-view.sort-order,
#AccountFunctionManager .data-list-container .list-item-body .item-view.sort-order {
  width: 7%;
  text-align: center;
  margin-right: 20px;
}
#AccountFunctionManager .data-list-container .list-item-header .item .icon-cell,
#AccountFunctionManager .data-list-container .list-item-body .item .icon-cell {
  width: 3%;
}
#AccountFunctionManager .data-list-container .list-item-header .item i,
#AccountFunctionManager .data-list-container .list-item-body .item i {
  margin-right: 5px;
}
#AccountFunctionManager .data-list-container .list-item-header .item .actions-cell,
#AccountFunctionManager .data-list-container .list-item-body .item .actions-cell {
  width: 7%;
}
#AccountFunctionManager .data-list-container .list-item-header .item .name-cell,
#AccountFunctionManager .data-list-container .list-item-body .item .name-cell {
  margin-right: 10px;
  width: 30%;
}
#AccountFunctionManager .data-list-container .list-item-header .item .name-cell > span,
#AccountFunctionManager .data-list-container .list-item-body .item .name-cell > span {
  display: inline-block;
  padding-left: 35px;
}
#AccountFunctionManager .data-list-container .list-item-header .item .name-cell .status,
#AccountFunctionManager .data-list-container .list-item-body .item .name-cell .status {
  text-align: center;
}
#AccountFunctionManager .data-list-container .list-item-header .item.parent > .item-view > span,
#AccountFunctionManager .data-list-container .list-item-body .item.parent > .item-view > span {
  padding-left: 0px;
}
#AccountFunctionManager .data-list-container .list-item-header .icons,
#AccountFunctionManager .data-list-container .list-item-body .icons {
  margin-right: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  background: url(../images/gm_menuleft_icon_hover.png) no-repeat;
  opacity: 0.5;
}
#AccountFunctionManager .data-list-container .list-item-header .icons.icon_user,
#AccountFunctionManager .data-list-container .list-item-body .icons.icon_user {
  background-position: 0 4px;
}
#AccountFunctionManager .data-list-container .list-item-header .icons.icon_content,
#AccountFunctionManager .data-list-container .list-item-body .icons.icon_content {
  background-position: 0 -24px;
}
#AccountFunctionManager .data-list-container .list-item-header .icons.icon_tag,
#AccountFunctionManager .data-list-container .list-item-body .icons.icon_tag {
  background-position: 0 -52px;
}
#AccountFunctionManager .data-list-container .list-item-header .icons.icon_event,
#AccountFunctionManager .data-list-container .list-item-body .icons.icon_event {
  background-position: 0 -83px;
}
#AccountFunctionManager .data-list-container .list-item-header .icons.icon_vote,
#AccountFunctionManager .data-list-container .list-item-body .icons.icon_vote {
  background-position: 0 -113px;
}
#AccountFunctionManager .data-list-container .list-item-header .icons.icon_author,
#AccountFunctionManager .data-list-container .list-item-body .icons.icon_author {
  background-position: 0 -140px;
}

#RoleFeatureList .data-list-container .list-item-body .item {
  padding-left: 10px;
}

#RoleFolderList .data-list-container .list-item-header {
  border-top: 1px solid #E2E2E2;
}
#RoleFolderList .folder-item.child {
  margin-left: 30px;
}

#RoleSettingManager .text-header {
  padding: 0;
  margin: 0;
}
#RoleSettingManager .text-header .tab {
  margin: 0;
  border: 1px solid #ccc;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  margin-right: 4px;
  display: inline-block;
}
#RoleSettingManager .text-header .tab label {
  background: #f7f7f7;
  padding: 10px;
  color: #666;
  cursor: pointer;
}
#RoleSettingManager .text-header .tab label:hover {
  color: #000000;
}
#RoleSettingManager .text-header .tab input[type=radio]:checked + label {
  background: #fff;
  font-weight: 600;
  color: #000000;
}

#featureAccess .modal-body {
  padding: 0 1rem 1rem;
}
#featureAccess .feature-container .feature-items {
  margin: 20px 0 0 0px;
  width: 90%;
  margin: 20px auto;
}
#featureAccess .feature-container .feature-items .item {
  list-style: none;
  float: left;
  margin: 0 5px 5px 0;
}
#featureAccess .feature-container .feature-items .item input[type=checkbox] {
  display: none;
}
#featureAccess .feature-container .feature-items .item input[type=checkbox]:checked + label {
  border-color: rgba(16, 149, 234, 0.7);
  color: #003865;
  background-color: #f7f7f7;
}
#featureAccess .feature-container .feature-item {
  width: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid #eee;
  flex-flow: column wrap;
  font-size: 13px;
  text-align: center;
  color: #999;
  background-color: #f2f2f2;
  cursor: pointer;
}
#featureAccess .feature-container .feature-item:hover {
  color: #003865;
}
#featureAccess .feature-container .feature-item.not-allow {
  cursor: not-allowed;
  color: #ccc;
  border: 1px solid #eee;
}
#featureAccess .feature-container .feature-item i {
  display: block;
}

/* Tag Page */
.topic-page .list-item-header .avatar-cell,
.topic-page .list-item-body .avatar-cell,
.tag-page .list-item-header .avatar-cell,
.tag-page .list-item-body .avatar-cell {
  width: 10%;
}
.topic-page .list-item-header .name-cell,
.topic-page .list-item-body .name-cell,
.tag-page .list-item-header .name-cell,
.tag-page .list-item-body .name-cell {
  width: 28%;
  flex: 1;
}
.topic-page .list-item-header .ishottag-cell,
.topic-page .list-item-header .invisibled-cell,
.topic-page .list-item-body .ishottag-cell,
.topic-page .list-item-body .invisibled-cell,
.tag-page .list-item-header .ishottag-cell,
.tag-page .list-item-header .invisibled-cell,
.tag-page .list-item-body .ishottag-cell,
.tag-page .list-item-body .invisibled-cell {
  text-align: center;
}
.topic-page .list-item-header .ishottag-cell,
.topic-page .list-item-header .invisibled-cell,
.topic-page .list-item-body .ishottag-cell,
.topic-page .list-item-body .invisibled-cell,
.tag-page .list-item-header .ishottag-cell,
.tag-page .list-item-header .invisibled-cell,
.tag-page .list-item-body .ishottag-cell,
.tag-page .list-item-body .invisibled-cell {
  width: 10%;
}
.topic-page .list-item-header .actions-cell .sprite-icon.icon-new,
.topic-page .list-item-body .actions-cell .sprite-icon.icon-new,
.tag-page .list-item-header .actions-cell .sprite-icon.icon-new,
.tag-page .list-item-body .actions-cell .sprite-icon.icon-new {
  background-position: 0 -590px;
}

.cms-form-wrap .form-group > label,
.topic-page .form-group > label {
  font-size: 14px;
  text-align: right;
  padding-top: 5px;
}
.cms-form-wrap .avatar-picker,
.topic-page .avatar-picker {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
.cms-form-wrap .avatar-picker .item,
.topic-page .avatar-picker .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 1px solid #bdbdbd;
  margin: 5px;
  position: relative;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.cms-form-wrap .avatar-picker .item .item-avatar,
.topic-page .avatar-picker .item .item-avatar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: #f7f7f7;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  align-items: center;
  justify-content: center;
}
.cms-form-wrap .avatar-picker .item .item-icon,
.topic-page .avatar-picker .item .item-icon {
  opacity: 0.3;
}
.cms-form-wrap .avatar-picker .item .item-desc,
.topic-page .avatar-picker .item .item-desc {
  bottom: 10px;
  font-size: 12px;
  color: #737373;
  position: absolute;
}
.cms-form-wrap .avatar-picker .item:first-child,
.topic-page .avatar-picker .item:first-child {
  width: 160px;
  height: 90px;
}
.cms-form-wrap .avatar-picker .item:nth-child(2),
.topic-page .avatar-picker .item:nth-child(2) {
  width: 171px;
  height: 90px;
}
.cms-form-wrap .avatar-picker .item:nth-child(3),
.topic-page .avatar-picker .item:nth-child(3) {
  width: 60px;
  height: 90px;
}
.cms-form-wrap .avatar-picker .item:nth-child(4),
.topic-page .avatar-picker .item:nth-child(4) {
  width: 90px;
  height: 90px;
}
.cms-form-wrap .avatar-picker .item:last-child,
.topic-page .avatar-picker .item:last-child {
  width: 250px;
  height: 90px;
}
.cms-form-wrap .avatar-picker .item.item-logo,
.topic-page .avatar-picker .item.item-logo {
  width: 90px;
  height: 90px;
}
.cms-form-wrap .avatar-picker .item .remove,
.topic-page .avatar-picker .item .remove {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
}
.cms-form-wrap .avatar-picker .item .remove:hover,
.topic-page .avatar-picker .item .remove:hover {
  color: #dc3545;
}
.cms-form-wrap .avatar-picker .logo-picker,
.topic-page .avatar-picker .logo-picker {
  width: 90px;
  height: 90px;
  margin: 5px;
}
.cms-form-wrap .avatar-picker .logo-picker .remove,
.topic-page .avatar-picker .logo-picker .remove {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
}
.cms-form-wrap .avatar-picker .logo-picker .remove:hover,
.topic-page .avatar-picker .logo-picker .remove:hover {
  color: #dc3545;
}
.cms-form-wrap .logo-picker,
.topic-page .logo-picker {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 60px;
  height: 60px;
  outline: 1px solid #bdbdbd;
  background-size: cover;
  position: relative;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.cms-form-wrap .logo-picker i,
.topic-page .logo-picker i {
  margin: 0 4px;
}
.cms-form-wrap .logo-picker:hover,
.topic-page .logo-picker:hover {
  outline: 1px solid #aaa;
}

.expert-form-edit .cms-form-wrap .avatar-picker .item:last-child {
  width: 120px;
  min-height: 90px;
  height: auto;
}
.expert-form-edit .cms-form-wrap .avatar-picker .item-avatar img {
  width: 120px;
  min-height: 90px;
}

.cms-popup-content .edit-item .popup-content-inner {
  padding: 40px 0;
}

/* embed pages */
.box-list-embed-page {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 1px solid #bdbdbd;
  background: #ffffff;
  border-radius: 3px;
  overflow-y: auto;
  flex-grow: 1;
  position: relative;
  margin: 20px;
}
.box-list-embed-page .scroll-wrapper {
  height: calc(100% - 140px);
  width: 100%;
  overflow-x: hidden;
}
.box-list-embed-page .content-body {
  float: left;
  width: 100%;
  height: 100%;
  padding: 20px;
  min-height: calc(100% - 210px);
}
.box-list-embed-page .box-list-items {
  float: left;
  width: calc(50% - 33px);
  border: 1px solid #bfbfc5;
  border-radius: 2px;
  height: 100%;
  position: relative;
}
.box-list-embed-page .box-list-items .list-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 40px;
  align-items: center;
  background: #dedede;
}
.box-list-embed-page .box-list-items .list-header span {
  color: #666;
  display: block;
  font-size: 16px;
  margin-left: 10px;
}
.box-list-embed-page .box-list-items .list-search {
  border-bottom: 1px solid #e0e0e0;
  padding: 10px;
  position: relative;
  height: 50px;
}
.box-list-embed-page .box-list-items .list-search .search-form {
  padding: 0;
  background: transparent;
  border: 0;
}
.box-list-embed-page .box-list-items .list-search .search-box {
  float: left;
  overflow: hidden;
  position: relative;
  width: 45%;
}
.box-list-embed-page .box-list-items .list-search .search-box button {
  box-shadow: none;
  border-radius: 1px;
  color: #666;
  border: 1px solid #dedede;
  text-align: center;
  padding: 5px 10px;
  height: 28px;
  margin: 0;
}
.box-list-embed-page .box-list-items .list-search .search-box button:hover {
  color: #000000;
  background: #dedede;
}
.box-list-embed-page .box-list-items .list-search .search-box button:focus, .box-list-embed-page .box-list-items .list-search .search-box button:active {
  box-shadow: none;
}
.box-list-embed-page .box-list-items .pager {
  border-bottom: 0px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  float: left;
  width: 100%;
  height: 47px;
  background: #f8f8f8;
  padding-top: 12px;
  padding-right: 10px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  position: relative;
}
.box-list-embed-page .box-list-items .notification {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #f8f8f8;
  height: 50px;
  align-items: center;
  white-space: normal;
  padding: 0 10px;
  color: #087ecd;
  font-weight: bold;
  border: none;
  border-top: 1px solid #e0e0e0;
}
.box-list-embed-page .box-list-items .button-save {
  position: absolute;
  right: 5px;
}
.box-list-embed-page .box-list-items .btn-default {
  margin: 0;
  box-shadow: none;
  font-size: 13px;
  padding: 0 10px;
}
.box-list-embed-page .box-list-arrow {
  width: 66px;
  float: left;
  margin-top: 170px;
  padding: 0 5px;
  text-align: center;
}
.box-list-embed-page .box-list-arrow button {
  outline: none;
  width: 90%;
  height: 50px;
  border: 0;
  background: none;
  font-size: 34px;
  margin: 0 0 15px;
  border-bottom: 1px solid #e0e0e0;
  background: -webkit-linear-gradient(#E7E7E7, #efefef);
  background: -o-linear-gradient(#E7E7E7, #efefef);
  background: -moz-linear-gradient(#E7E7E7, #efefef);
  background: linear-gradient(#E7E7E7, #efefef);
  box-shadow: 0px 1px 1px #a79090;
}
.box-list-embed-page .box-list-arrow button:last-child {
  border: 0;
}
.box-list-embed-page .box-list-arrow button.disabled {
  opacity: 0.4;
  cursor: default;
}
.box-list-embed-page .box-list-arrow button:active {
  font-size: 30px;
  background: #e2e2e2;
}
.box-list-embed-page .list-container {
  height: calc(100% - 140px);
}
.box-list-embed-page .box-pager {
  height: 50px;
  background: #f8f8f8;
  margin: 0;
  padding: 0 15px 0 0;
  border-top: 1px solid #e0e0e0;
}
.box-list-embed-page .news-list-body {
  width: 100%;
  overflow-x: hidden;
}
.box-list-embed-page .news-list-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #f8f8f8;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  color: #666;
  position: relative;
}
.box-list-embed-page .news-list-item:active, .box-list-embed-page .news-list-item.grabbing {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.box-list-embed-page .news-list-item.selectedItem::before {
  position: absolute;
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  width: 15px;
  height: 9px;
  border-width: medium medium 3px 3px;
  border-style: none none solid solid;
  border-color: #2ECC71;
  border-image: none;
  background: none repeat scroll 0% 0% rgba(194, 35, 35, 0);
  content: "";
  right: 10px;
  top: 30%;
}
.box-list-embed-page .news-list-item.red-color {
  background: rgba(235, 87, 87, 0.05);
}
.box-list-embed-page .news-list-item.red-color:nth-child(2n+1) {
  background: rgba(235, 87, 87, 0.05);
}
.box-list-embed-page .news-list-item.red-color .info {
  color: #EB5757;
}
.box-list-embed-page .news-list-item.new::before {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #2ECC71;
  content: "";
  right: 10px;
  top: 30%;
  border-radius: 100%;
}
.box-list-embed-page .news-list-item:nth-child(2n+1) {
  background: #ffffff;
}
.box-list-embed-page .news-list-item .img-viewer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 60px;
  align-items: center;
}
.box-list-embed-page .news-list-item .img-viewer img {
  display: inline-block;
  height: 30px;
  margin: 0 0px 0px 10px;
  width: 40px;
  border-radius: 3px;
}
.box-list-embed-page .news-list-item .info {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
}
.box-list-embed-page .news-list-item .info .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  padding-left: 10px;
  padding-right: 30px;
  width: unset;
  line-height: 1.7;
  font-weight: 400;
}
.box-list-embed-page .news-list-item .info .content-item {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
  padding-left: 10px;
  width: unset;
  height: 45px;
  line-height: 45px;
  font-weight: bold;
  padding-right: 30px;
}
.box-list-embed-page .news-list-item .info .publish-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  clear: both;
  line-height: 20px;
  padding: 0 10px;
  font-size: 12px;
  color: #a9a9a9;
}
.box-list-embed-page .news-list-item .info .publish-info span {
  width: unset;
}
.box-list-embed-page .news-list-item .info .publish-info i {
  margin-right: 5px;
  padding: 3px;
}
.box-list-embed-page .news-list-item .info .publish-info .publish-viewcount {
  display: inline-block;
  margin-right: 15px;
}
.box-list-embed-page .news-list-item input[type=checkbox] {
  display: none;
}
.box-list-embed-page .news-list-item input:checked ~ label {
  background-color: #e0efef;
}
.box-list-embed-page .news-list-item .label-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
}

.logs-page .search-form {
  padding-bottom: 20px;
}
.logs-page .search-form .filter-item label {
  display: block;
  padding-bottom: 5px;
}
.logs-page .search-form .filter-item .btn-filter {
  width: auto;
}
.logs-page .search-form .filter-item .btn-filter i {
  margin-right: 5px;
}

.statistic-page .statistic-manager {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: #333;
  flex-direction: column;
  width: 100%;
  margin-bottom: 100px;
}
.statistic-page .statistic-manager .manager-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  background: #f1f1f1;
  align-items: center;
}
.statistic-page .statistic-manager .manager-toolbar .toolbar-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex: 1;
  align-items: center;
}
.statistic-page .statistic-manager .manager-toolbar .toolbar-right {
  padding: 0 10px;
}
.statistic-page .statistic-manager .manager-toolbar .toolbar-right .box-pager {
  margin: 0;
}
.statistic-page .statistic-manager .manager-main {
  flex: 1;
  padding: 10px 5px 10px 10px;
  height: 100%;
  overflow: auto;
  background: #ffffff;
}
.statistic-page .statistic-manager .statistic-listing {
  border-collapse: collapse;
  border: 1px solid #e2e2e2;
  table-layout: fixed;
  width: 100%;
}
.statistic-page .statistic-manager .statistic-listing thead {
  background-color: #f5f5f5;
}
.statistic-page .statistic-manager .statistic-listing th {
  background-color: #f5f5f5;
  font-size: 13px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #e2e2e2;
  text-align: center;
}
.statistic-page .statistic-manager .statistic-listing tr:nth-child(odd) {
  background-color: #ffffff;
}
.statistic-page .statistic-manager .statistic-listing tr:nth-child(even) {
  background-color: #f9f9f9;
}
.statistic-page .statistic-manager .statistic-listing tr td {
  padding: 4px 6px;
  border: 1px solid #e2e2e2;
}
.statistic-page .statistic-manager .statistic-listing tr td.number {
  text-align: right;
}

#RoyaltyPageManager .setting-royalty-type .validation-message {
  color: #dc3545;
}
#RoyaltyPageManager .floating-message {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  padding: 10px;
  width: 30%;
  display: none;
}
#RoyaltyPageManager .floating-message.show {
  display: block;
}
#RoyaltyPageManager .royalty-manager {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: #333;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
#RoyaltyPageManager .royalty-manager .search-form {
  padding: 0;
  background: transparent;
  border: 0;
}
#RoyaltyPageManager .royalty-manager .search-form .box-filter {
  width: 100%;
}
#RoyaltyPageManager .royalty-manager .manager-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #ddd;
  min-height: 65px;
  align-items: center;
  background: #f1f1f1;
  width: 100%;
  overflow: hidden;
  padding: 10px 10px 0;
}
#RoyaltyPageManager .royalty-manager .manager-header .box-filter .filter-item {
  float: left;
  margin-right: 15px;
}
#RoyaltyPageManager .royalty-manager .manager-header .box-filter .filter-item > label {
  display: block;
  margin-bottom: 4px;
}
#RoyaltyPageManager .royalty-manager .manager-header .box-filter input[type=text] {
  outline: none;
  height: 31px;
  border: 1px solid #cccccc;
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 2px;
}
#RoyaltyPageManager .royalty-manager .manager-header .box-filter .rz-dropdown {
  font-size: 13px;
  height: 31px;
  border-radius: 2px;
  border: 1px solid #cccccc;
  padding-top: 5px;
}
#RoyaltyPageManager .royalty-manager .manager-toolbar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  background: #f1f1f1;
  align-items: center;
}
#RoyaltyPageManager .royalty-manager .manager-toolbar .toolbar-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex: 1;
  align-items: center;
}
#RoyaltyPageManager .royalty-manager .manager-toolbar .toolbar-right {
  padding: 0 10px;
}
#RoyaltyPageManager .royalty-manager .manager-toolbar .toolbar-right .box-pager {
  margin: 0;
}
#RoyaltyPageManager .royalty-manager .manager-main {
  flex: 1;
  padding: 10px 5px 10px 10px;
  height: 100%;
  overflow: auto;
  background: #ffffff;
}
#RoyaltyPageManager .royalty-manager .royalty-listing {
  border-collapse: collapse;
  border: 1px solid #e2e2e2;
  table-layout: fixed;
  width: 100%;
}
#RoyaltyPageManager .royalty-manager .royalty-listing thead {
  background-color: #f5f5f5;
}
#RoyaltyPageManager .royalty-manager .royalty-listing th {
  background-color: #f5f5f5;
  font-size: 13px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #e2e2e2;
  text-align: center;
}
#RoyaltyPageManager .royalty-manager .royalty-listing tr:nth-child(odd) {
  background-color: #ffffff;
}
#RoyaltyPageManager .royalty-manager .royalty-listing tr:nth-child(even) {
  background-color: #f9f9f9;
}
#RoyaltyPageManager .royalty-manager .royalty-listing tr td {
  padding: 4px 6px;
  border: 1px solid #e2e2e2;
}
#RoyaltyPageManager .royalty-manager .royalty-listing tr td.number {
  text-align: right;
}
#RoyaltyPageManager .royalty-coeftype {
  background: #fff;
  height: 100%;
  position: relative;
}
#RoyaltyPageManager .royalty-coeftype .search-form {
  padding: 10px;
}
#RoyaltyPageManager .royalty-coeftype .search-form .box-pager {
  margin: 0;
}
#RoyaltyPageManager .royalty-coeftype .search-form .filter-item > .checkbox-label::before {
  top: 7px;
  left: 1px;
}
#RoyaltyPageManager .royalty-coeftype .search-form .filter-item > .checkbox-label::after {
  top: 9px;
  left: 7px;
}
#RoyaltyPageManager .royalty-coeftype .search-form .filter-item .btn-default {
  margin: 0;
  min-width: initial;
}
#RoyaltyPageManager .royalty-coeftype .box-pager {
  width: 100%;
}
#RoyaltyPageManager .royalty-coeftype .flex-end {
  justify-content: flex-end;
}
#RoyaltyPageManager .royalty-coeftype .category-main {
  padding: 0 5px 0 0;
  width: 100%;
  height: calc(100% - 60px);
  overflow: auto;
}
#RoyaltyPageManager .royalty-coeftype .category-main .make-scrollbar {
  height: 100%;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item {
  display: flex;
  padding: 15px 20px;
  align-items: center;
  color: #666;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item {
  margin-right: 20px;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item:nth-child(even) {
  background: #f7f7f7;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item:nth-child(odd) {
  background: #ffffff;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item:hover {
  background: #f2f2f2;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-avatar {
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-avatar img {
  object-fit: cover;
  height: 100%;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-penname, #RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-name {
  width: 200px;
  font-weight: bold;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-penname {
  font-weight: normal;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-email {
  flex: 1;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-title {
  width: 100px;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-price {
  width: 100px;
  text-align: right;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-description {
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-status {
  width: 150px;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-action {
  width: 80px;
  white-space: nowrap;
  justify-content: flex-end;
  display: flex;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-action .remove, #RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-action .edit, #RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-action .lock {
  border: none;
  outline: none;
  cursor: pointer;
  color: #999;
  margin-left: 20px;
  font-size: 16px;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-action .edit:hover {
  color: #1095EA;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-action .remove:hover {
  color: #dc3545;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .item-action .lock:hover {
  color: #f48320;
}
#RoyaltyPageManager .royalty-coeftype .category-main .category-item .flex1 {
  flex: 1;
}
#RoyaltyPageManager .royalty-setting {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}
#RoyaltyPageManager .royalty-setting .title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  font-size: 14px;
}
#RoyaltyPageManager .royalty-setting .setting-main {
  padding: 20px;
}
#RoyaltyPageManager .royalty-setting .setting-footer {
  border-top: 1px solid #ddd;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#RoyaltyPageManager .royalty-setting .coefficient-main {
  display: flex;
  width: 100%;
  min-height: 100%;
}
#RoyaltyPageManager .royalty-setting .coefficient-main .main-column {
  border-left: 1px dashed #ddd;
  width: calc(50% - 3px);
  min-height: 100%;
}
#RoyaltyPageManager .royalty-setting .coef-access label {
  display: block;
}
#RoyaltyPageManager .royalty-setting .coef-access .btn {
  outline: none;
  color: #666;
}
#RoyaltyPageManager .royalty-setting .coef-access .btn:hover {
  color: #dc3545;
}
#RoyaltyPageManager .royalty-setting .coef-access .remove-btn {
  border: 0;
  width: 30px;
  text-align: center;
  outline: none;
  background: none;
  margin-top: 2px;
  height: 30px;
  border-radius: 50%;
}
#RoyaltyPageManager .royalty-setting .coef-access .remove-btn[disabled] {
  cursor: not-allowed;
  display: none;
}
#RoyaltyPageManager .royalty-setting .coef-access .remove-btn[disabled]:hover {
  background: none;
  color: #666;
}
#RoyaltyPageManager .royalty-setting .coef-access .remove-btn:hover {
  background: #ccc;
  color: #dc3545;
}
#RoyaltyPageManager .royalty-setting .btn-coef-access {
  border: 1px dashed #ddd;
  padding: 10px;
  text-align: center;
  color: #696969;
  cursor: pointer;
  text-transform: capitalize;
  width: 100%;
  margin: 0;
  padding: 5px 0;
  display: block;
}
#RoyaltyPageManager .settings-form-popup .plugin-wrapper {
  width: 360px;
  height: calc(100% - 60px);
  top: 60px;
}
#RoyaltyPageManager .settings-form-popup .plugin-wrapper .plugin-content {
  padding-right: 5px;
}
#RoyaltyPageManager .settings-form-popup .plugin-wrapper .inner-content {
  overflow: auto;
  padding: 0 5px 0 0;
}
#RoyaltyPageManager .settings-form-popup .file-input-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  height: 150px;
  position: relative;
}
#RoyaltyPageManager .settings-form-popup .file-input-wrap input[type=file] {
  width: 150px;
  height: 150px;
}
#RoyaltyPageManager .settings-form-popup .file-input-wrap img {
  border-radius: 50%;
  background: #f7f7f7;
  border: dashed 1px #ccc;
}
#RoyaltyPageManager .settings-form-popup .file-input-wrap .edit, #RoyaltyPageManager .settings-form-popup .file-input-wrap > span {
  position: absolute;
  left: 58%;
  width: 40px;
  background: #f0f0f0;
  text-align: center;
  border-radius: 50%;
  height: 40px;
  line-height: 30px;
  border: 5px solid #fff;
}
#RoyaltyPageManager .settings-form-popup .file-input-wrap .edit:hover, #RoyaltyPageManager .settings-form-popup .file-input-wrap > span:hover {
  color: #1095EA;
}
#RoyaltyPageManager .setting-form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#RoyaltyPageManager .setting-form .form-header {
  background: #f0f0f0;
  border-bottom: 1px solid #cccccc;
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  font-weight: 600;
  color: #696969;
  text-transform: uppercase;
}
#RoyaltyPageManager .setting-form .form-body {
  flex: 1;
}
#RoyaltyPageManager .setting-form .form-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 40px;
  border-top: 1px solid #ddd;
  align-items: center;
  justify-content: center;
}
#RoyaltyPageManager .royalty-popup-manager {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
#RoyaltyPageManager .royalty-popup-manager .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.3);
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager {
  width: 92%;
  height: 92%;
  background: #fff;
  border-radius: 6px;
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main-container {
  height: 100%;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header {
  background: transparent;
  width: 100%;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header .dialog-titlebar {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-image: url(../images/bg_header_dialog.png);
  background-repeat: repeat-x;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 1em 10px;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header .dialog-titlebar i {
  margin-right: 10px;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header .dialog-titlebar .header-title {
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: 0.5px;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header .dialog-titlebar .header-custom {
  flex: 1;
  width: 100%;
  height: calc(100% - 5px);
  margin-bottom: 5px;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header .dialog-titlebar .header-custom .layout-tool {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header .dialog-titlebar .header-custom .tool-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 10px;
  cursor: pointer;
  position: relative;
  color: #000;
  font-size: 13px;
  font-weight: 400;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header .dialog-titlebar .header-custom .tool-item label:hover {
  background-color: #e5e5e5;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header .dialog-titlebar .header-custom .tool-item label.active {
  background: #333;
  color: #fff;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header .dialog-titlebar .header-custom .tool-item input[type=radio] {
  display: none;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header .dialog-titlebar .header-custom .tool-item input[type=radio]:checked + label {
  content: "";
  background: #333;
  color: #fff;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-header .titlebar-close {
  outline: none;
  display: inline-block;
  border: 0;
  top: 15px;
  width: 25px;
  right: 10px;
  height: 15px;
  position: absolute;
  cursor: pointer;
  background: transparent url(../images/icon_close_15x15.png) 8px no-repeat;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-sidebar {
  width: 220px;
  min-width: 220px;
  border-right: 1px solid #ddd;
  height: 100%;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-sidebar .sidebar-item {
  align-items: center;
  cursor: pointer;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-sidebar .sidebar-item i {
  width: 25px;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-sidebar .sidebar-item label {
  cursor: pointer;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  padding: 5px 10px 5px 20px;
  display: block;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-sidebar .sidebar-item label:hover {
  background: #f2f2f2;
  color: #000000;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-sidebar .sidebar-item input[type=radio] {
  display: none;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-sidebar .sidebar-item input[type=radio]:checked + label {
  color: #2ea2c7;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-container {
  flex: 1;
  padding: 20px;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-container .title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  font-size: 14px;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-container .royalty-setting {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  position: relative;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-container .royalty-setting .setting-main {
  flex: 1;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-container .royalty-setting .setting-footer {
  border-top: 1px solid #ddd;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-container .royalty-setting .coefficient-main {
  display: flex;
  width: 100%;
  min-height: 100%;
}
#RoyaltyPageManager .royalty-popup-manager .dialog-file-manager .dialog-main .tab-container .royalty-setting .coefficient-main .main-column {
  border-left: 1px dashed #ddd;
  width: calc(50% - 3px);
  min-height: 100%;
}

select,
.dropdown-select-search,
.dropdown-info-filter,
.dropdown-zone-search {
  font-size: 13px;
  padding-top: 5px;
  height: 32px;
  border-radius: 2px;
  border: 1px solid rgba(103, 113, 129, 0.3);
  width: 200px;
  outline: none;
}

.cms-popup-message-box {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 9999;
  width: 30%;
  transform: translate(0px, -50%);
  white-space: normal;
}
.cms-popup-message-box .fas, .cms-popup-message-box i {
  font-size: 32px;
  margin-right: 20px;
}
.cms-popup-message-box .tx-success {
  font-size: 1.25em;
  font-weight: 500;
}

select.dropdown-info-filter {
  padding: 0px 10px;
}

.form-control {
  outline: none;
  box-shadow: none;
  border-radius: 1px;
  font-size: 14px;
  padding: 6px 10px;
}
.form-control:focus, .form-control:active {
  outline: none;
  box-shadow: none;
}

.rz-datepicker-calendar td .rz-state-default,
.rz-dropdown {
  font-size: 13px;
}

.rz-datepicker-calendar td .rz-state-default:hover {
  background: #f2f2f2;
  color: #000000;
}

.w30 {
  width: 30px;
}

.w50 {
  width: 50px;
}

.w70 {
  width: 70px;
}

.w100 {
  width: 100px;
}

.w120 {
  width: 120px;
}

.w150 {
  width: 150px;
}

.w170 {
  width: 170px;
}

.w200 {
  width: 200px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w320 {
  width: 320px;
}

.w360 {
  width: 360px;
}

.w400 {
  width: 400px !important;
}

.mw400 {
  min-width: 400px;
}

.w480 {
  width: 480px;
}

.w640 {
  width: 640px;
}

.w100p {
  width: 100%;
}

.h50 {
  height: 50px;
}

.h60 {
  height: 60px;
}

.w-auto {
  width: auto !important;
}

.validation-message,
.validation-errors {
  color: #dc3545;
  padding: 0;
  margin: 0;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.bg-access-denied {
  background-image: url(../images/bg_magazine.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.z10k {
  z-index: 100000;
}

.dropdown-zone-search .search-text {
  /*position: absolute;
  top: 0px;
  left: 1px;
  right: 30px;
  display: none;
  z-index: 2;
  border: 0;*/
}
.dropdown-zone-search .search-text input[type=text] {
  height: 31px;
  font-size: 13px;
  border: 0;
}
.dropdown-zone-search.show .search-text {
  display: block;
}

.dropdown-zone-search {
  background: #fff;
  position: relative;
}
.dropdown-zone-search .clear-search {
  position: absolute;
  right: 20px;
  top: 0px;
  height: 30px;
  align-items: center;
  padding: 0 8px;
  display: none;
  cursor: pointer;
  color: #999;
}
.dropdown-zone-search .clear-search.active {
  display: flex;
}
.dropdown-zone-search .clear-search:hover {
  color: #333;
}
.dropdown-zone-search .search-text {
  border: 0;
  height: 33px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #87a5bb;
  top: auto;
  left: auto;
  right: auto;
}
.dropdown-zone-search .dropdown-menu {
  height: 360px;
  max-height: 360px;
  background: #fff;
  border: 1px solid #87a5bb;
  margin: 0;
  padding: 0;
  border-radius: 2px;
  width: 100%;
  box-shadow: 1px 0 4px #ddd;
}
.dropdown-zone-search .select-items-zone {
  min-width: 100%;
  max-height: 325px;
  overflow: auto;
  padding: 0;
  background: #fff;
}
.dropdown-zone-search .select-items-zone label[data-parent="0"] {
  font-weight: 600;
}
.dropdown-zone-search .select-items-zone label[data-visible="1"] {
  color: #999;
  font-weight: 400;
}
.dropdown-zone-search .select-items-zone .select-item {
  font-size: 15px;
  padding: 7px 10px;
  border-bottom: 1px solid #f1f1f1;
}
.dropdown-zone-search .select-items-zone .select-item.selected {
  background: #59a6cd;
}
.dropdown-zone-search .select-items-zone .select-item:hover {
  background: #59a6cd;
}
.dropdown-zone-search .select-items-zone .select-item:hover .checkbox-label, .dropdown-zone-search .select-items-zone .select-item:hover label {
  display: block;
  color: #fff;
  background: none;
}
.dropdown-zone-search .dropdown-toggle {
  width: 100%;
  display: block;
  line-height: 30px;
  padding-left: 10px;
  height: 30px;
  margin-top: -5px;
}
.dropdown-zone-search .dropdown-toggle i {
  float: right;
  padding: 8px;
}
.dropdown-zone-search .dropdown-toggle::after {
  content: none;
}

.dropdown-zone-search .select-item .child::before {
  content: "-- ";
  color: #333;
}
.dropdown-zone-search .select-item .child[data-visible="1"]::before {
  color: #999;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 992px) {
  .header-top-menu {
    padding: 0 25px;
    width: auto;
    position: relative;
    background-color: transparent;
    overflow: visible;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    order: 2;
    transform: none;
    z-index: auto;
    flex: 1;
  }
  .top-menu-right {
    padding: 0 20px 0 0;
    order: 3;
  }
}
@media (min-width: 1200px) {
  .header-top-menu {
    padding: 0;
  }
}
