@-webkit-keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-15px);
  }
  40% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-4px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-15px);
  }
  40% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-4px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@-webkit-keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
#go-up {
  display: none;
}
@media only screen and (min-width: 992px) {
  #go-up {
    position: fixed;
    display: block;
    bottom: 20px;
    left: -100px;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 12pt;
    background: #0069ff;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px -5px #0069ff;
    transition: all 0.2s linear;
    z-index: 9999;
  }
  #go-up.active {
    left: 20px;
  }
  #go-up > i {
    display: block;
    width: 100%;
    line-height: 40px;
  }
  #go-up > i:hover + .tooltip {
    top: -32px;
    opacity: 1;
  }
  #go-up > .tooltip {
    position: absolute;
    display: block;
    top: 0px;
    left: -25%;
    padding: 5px 10px;
    background: #2a384a;
    color: #fff;
    z-index: -1;
    font-size: 8pt;
    line-height: 12pt;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.2s linear;
    border-radius: 4px;
    box-shadow: 2px 2px 10px -5px black;
  }
  #go-up > .tooltip:after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2a384a transparent transparent transparent;
  }
}

#bug-report {
  position: fixed;
  display: block;
  bottom: 80px;
  left: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 12pt;
  background: #ff5271;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 20px -5px #ff5271;
  transition: all 0.2s linear;
  z-index: 9999;
}
#bug-report > i {
  display: block;
  width: 100%;
  line-height: 40px;
}
#bug-report > i:hover + .tooltip {
  top: -32px;
  opacity: 1;
}
#bug-report > .tooltip {
  position: absolute;
  display: block;
  top: 0px;
  left: -25%;
  padding: 5px 10px;
  background: #2a384a;
  color: #fff;
  z-index: -1;
  font-size: 8pt;
  line-height: 12pt;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.2s linear;
  border-radius: 4px;
  box-shadow: 2px 2px 10px -5px black;
}
#bug-report > .tooltip:after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #2a384a transparent transparent transparent;
}
#bug-report .bug-report-content {
  display: none;
}

/* Header */
#main-header {
  position: fixed;
  top: 0;
  right: 0;
  height: 80px;
  padding: 10px 20px;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 992px) {
  #main-header {
    padding: 10px 50px;
  }
}
#main-header .logo {
  position: relative;
  float: right;
  width: 190px;
  background-image: url("/asset/img/logo.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 60px;
  padding: 5px 70px 5px 0;
}
@media only screen and (min-width: 992px) {
  #main-header .logo {
    width: 210px;
  }
}
#main-header .logo > h1 {
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  font-size: 16pt;
  color: #0069ff;
  line-height: 30px;
}
@media only screen and (min-width: 992px) {
  #main-header .logo > h1 {
    font-size: 18pt;
  }
}
#main-header .logo > h2 {
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  font-size: 8pt;
  line-height: 20px;
}
@media only screen and (min-width: 992px) {
  #main-header .logo > h2 {
    font-size: 9pt;
  }
}
#main-header .menus {
  position: relative;
  overflow: hidden;
  display: none;
  float: right;
  margin-right: 5vw;
  max-width: calc(100% - 530px);
  height: 70px;
}
@media only screen and (min-width: 992px) {
  #main-header .menus {
    display: inline-block;
  }
}
#main-header .menus .menu {
  position: relative;
  float: right;
  line-height: 60px;
}
#main-header .menus .menu:not(:last-child) {
  margin-left: 30px;
}
#main-header .menus .menu:hover > a {
  color: #0069ff;
}
#main-header .menus .menu:hover > a > i {
  transform: rotate(-90deg);
}
#main-header .menus .menu:hover.has-submenu > a:after {
  content: "";
  position: absolute;
  top: 45px;
  right: 50%;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #f4f4f6 transparent;
}
#main-header .menus .menu .submenus {
  position: fixed;
  display: none;
  right: 5vw;
  top: 75px;
  width: 90vw;
  max-width: 1100px;
  background: #f4f4f6;
  z-index: 9999;
  border-radius: 8px;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
#main-header .menus .menu .submenus .submenu {
  position: relative;
  float: right;
  width: 50%;
  padding: 30px 30px;
  line-height: 1.5;
}
#main-header .menus .menu .submenus .submenu h4 {
  font-size: 14pt;
  color: #9ca2aa;
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  margin-bottom: 10px;
}
#main-header .menus .menu .submenus .submenu .submenu-item {
  padding: 15px 75px 15px 15px;
  border-radius: 8px;
  transition: all 0.2s linear;
}
#main-header .menus .menu .submenus .submenu .submenu-item:hover {
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0) 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="white",endColorstr="white",GradientType=1);
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
#main-header .menus .menu .submenus .submenu .submenu-item .submenu-item-bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 45px;
}
#main-header .menus .menu .submenus .submenu .submenu-item h5 {
  font-size: 12pt;
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  color: #0069ff;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#main-header .menus .menu .submenus .submenu .submenu-item h6 {
  font-size: 11pt;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#main-header .menus .menu .submenus .submenu .view-all {
  line-height: 50px;
  background: #fff;
  color: #1fc198;
  padding: 0 20px;
  margin-top: 15px;
  border-radius: 8px;
  transition: all 0.2s linear;
}
#main-header .menus .menu .submenus .submenu .view-all:hover {
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
#main-header .menus .menu .submenus .submenu .view-all > i {
  position: relative;
  float: right;
  line-height: 50px;
  margin-left: 15px;
  font-size: 18pt;
}
#main-header .menus .menu > a {
  position: relative;
  display: inline-block;
  padding: 0 5px;
  cursor: pointer;
  transition: all 0.2s linear;
}
#main-header .menus .menu > a > i {
  position: relative;
  float: right;
  font-size: 16pt;
  line-height: 60px;
  margin-left: 8px;
  color: #1fc198;
  transition: all 0.2s linear;
}
#main-header .login {
  position: relative;
  display: none;
  float: left;
  margin-top: 8px;
}
@media only screen and (min-width: 992px) {
  #main-header .login {
    display: inline-block;
  }
}
#main-header .header-btn {
  position: relative;
  float: left;
  line-height: 40px;
  width: 42px;
  height: 42px;
  margin: 8px 0 0 0;
  text-align: center;
  border: 1px solid #cfe3ff;
  border-radius: 4px;
  transition: all 0.2s linear;
}
@media only screen and (min-width: 992px) {
  #main-header .header-btn {
    border: 1px solid transparent;
    margin: 8px 0 0 20px;
  }
}
#main-header .header-btn:hover {
  background: #cfe3ff;
  border: 1px solid #cfe3ff;
}
#main-header .header-btn .icon {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  cursor: pointer;
}
#main-header .header-btn.notification-toggler {
  display: none;
}
@media only screen and (min-width: 992px) {
  #main-header .header-btn.notification-toggler {
    display: inline-block;
  }
}
#main-header .header-btn.notification-toggler .icon {
  background-image: url("/asset/img/icon/notifications.svg");
}
#main-header .header-btn.notification-toggler .icon .has-notification {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  background: #ff5271;
  bottom: 5px;
  left: 5px;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  transform-origin: bottom;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 50%;
}
#main-header .header-btn.notification-toggler:hover:after {
  content: "";
  position: absolute;
  top: 36px;
  right: 11px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #f4f4f6 transparent;
}
#main-header .header-btn.notification-toggler .announcements {
  position: fixed;
  display: none;
  left: 50px;
  top: 75px;
  width: 500px;
  line-height: 35px;
  padding: 20px 40px;
  text-align: right;
  background: #f4f4f6;
  z-index: 9999;
  border-radius: 8px;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
#main-header .header-btn.notification-toggler .announcements h4 {
  position: relative;
  float: right;
  font-size: 14pt;
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  color: #0069ff;
  margin-bottom: 20px;
}
#main-header .header-btn.notification-toggler .announcements .all {
  position: relative;
  float: left;
  color: #1fc198;
  border-bottom: 1px dashed #1fc198;
  margin-bottom: 20px;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder {
  overflow: hidden auto;
  max-height: 45vh;
  padding-left: 10px;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  display: block;
  background: #fff;
  border-radius: 2.5px;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder::-webkit-scrollbar-track {
  height: 5px;
  border: 0;
  background-clip: padding-box;
  background-color: #fff;
  border-radius: 2.5px;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder::-webkit-scrollbar-thumb {
  height: 5px;
  border: 0;
  background-clip: padding-box;
  background-color: #0069ff;
  border-radius: 2.5px;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder::-webkit-scrollbar-thumb:hover {
  background-color: #005fe6;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder::-webkit-scrollbar-corner {
  background-color: transparent;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement {
  border-radius: 8px;
  background: #fff;
  color: #000f24;
  padding: 10px 20px;
  margin-bottom: 15px;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement:last-child {
  margin-bottom: 0;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement .date {
  color: #d4dce8;
  padding-right: 35px;
  background-repeat: no-repeat;
  background-position: right 3px;
  background-size: 25px;
  background-image: url("/asset/img/icon/calendar-gray.svg");
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement .date .delimiter {
  position: relative;
  display: inline-block;
  margin: 0 10px;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement h2 {
  font-size: 14pt;
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement h2 > a {
  color: #0069ff;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement .excerpt {
  margin: 5px 0;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement .view {
  position: relative;
  display: inline-block;
  color: #d4dce8;
  padding-right: 25px;
  background-repeat: no-repeat;
  background-position: right 6px;
  background-size: 20px;
  background-image: url("/asset/img/icon/internal-link-gray.svg");
  transition: all 0.2s linear;
}
#main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement .view:hover, #main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement .view:active, #main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement .view:focus {
  color: #1fc198;
}
#main-header .header-btn.mode-toggler .icon {
  background-image: url("/asset/img/icon/mode-night.svg");
}
#main-header .header-btn.mode-toggler .icon:hover + .tooltip {
  top: 50px;
  opacity: 1;
  visibility: visible;
}
#main-header .header-btn.mode-toggler .tooltip {
  position: absolute;
  display: block;
  width: 80px;
  font-size: 8pt;
  line-height: 25px;
  top: 45px;
  left: 0;
  background: #2a384a;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  border-radius: 4px;
  box-shadow: 2px 2px 10px -5px black;
  transition: all 0.2s linear;
}
#main-header .header-btn.mode-toggler .tooltip:before {
  content: " ";
  position: absolute;
  display: block;
  bottom: 100%;
  left: 15px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #2a384a transparent;
}
#main-header .header-btn.mode-toggler .tooltip:after {
  content: attr(data-content);
}
#main-header .header-btn.search-toggler {
  margin-left: 8px;
}
@media only screen and (min-width: 992px) {
  #main-header .header-btn.search-toggler {
    margin: 8px 0 0 20px;
  }
}
#main-header .header-btn.search-toggler .icon {
  background-image: url("/asset/img/icon/search.svg");
}
#main-header .header-btn.search-toggler .icon:hover + .tooltip {
  top: 50px;
  opacity: 1;
  visibility: visible;
}
#main-header .header-btn.search-toggler .tooltip {
  position: absolute;
  display: block;
  width: 80px;
  font-size: 8pt;
  line-height: 25px;
  top: 45px;
  left: 0;
  background: #2a384a;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  border-radius: 4px;
  box-shadow: 2px 2px 10px -5px black;
  transition: all 0.2s linear;
}
#main-header .header-btn.search-toggler .tooltip:before {
  content: " ";
  position: absolute;
  display: block;
  bottom: 100%;
  left: 15px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #2a384a transparent;
}
#main-header .header-btn.search-toggler .tooltip:after {
  content: attr(data-content);
}

#main-header-res {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 60px;
  padding: 10px 20px;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 -5px 20px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 992px) {
  #main-header-res {
    display: none;
  }
}
#main-header-res .header-btns {
  width: 180px;
  margin: 0 auto;
  z-index: 3;
}
#main-header-res .header-btns .header-btn {
  position: relative;
  float: right;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  cursor: pointer;
  z-index: 1001;
}
#main-header-res .header-btns .header-btn.active .close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
#main-header-res .header-btns .header-btn .close {
  position: absolute;
  display: block;
  width: 50px;
  height: 37px;
  right: -5px;
  border-radius: 1em/0.5em;
  top: 0;
  background: #0069ff;
  z-index: 2;
  opacity: 0;
  transition: all 0.2s linear;
  transform: scale(0) rotate(180deg);
}
#main-header-res .header-btns .header-btn .close:before, #main-header-res .header-btns .header-btn .close:after {
  content: " ";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  top: 0;
  right: 0;
}
#main-header-res .header-btns .header-btn .close:before {
  transform: rotate(60deg);
}
#main-header-res .header-btns .header-btn .close:after {
  transform: rotate(-60deg);
}
#main-header-res .header-btns .header-btn .close .icon-close {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  background-image: url("/asset/img/icon/close.svg");
  z-index: 1;
}
#main-header-res .header-btns .header-btn .icon {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
}
#main-header-res .header-btns .header-btn.notification-toggler .icon {
  background-image: url("/asset/img/icon/notifications.svg");
}
#main-header-res .header-btns .header-btn.notification-toggler .icon .has-notification {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  background: #ff5271;
  bottom: 5px;
  left: 5px;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  transform-origin: bottom;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 50%;
}
#main-header-res .header-btns .header-btn.menu-toggler .icon {
  background-image: url("/asset/img/icon/menu.svg");
}
#main-header-res .header-btns .header-btn.user-toggler .icon {
  background-image: url("/asset/img/icon/user.svg");
}
#main-header-res .header-btns .menu-box {
  position: fixed;
  display: block;
  overflow: hidden;
  bottom: -100vh;
  right: 0;
  height: calc(100vh - 42px);
  width: 100%;
  line-height: 100px;
  color: #fff;
  background-color: #0069ff;
  background-repeat: no-repeat;
  background-position: 5% 95%;
  background-size: 60%;
  background-image: url("/asset/img/menu-bg.svg");
  z-index: 1;
  border-radius: 50% 50% 0 0;
  transition: all 0.2s linear;
}
#main-header-res .header-btns .menu-box:after, #main-header-res .header-btns .menu-box:before {
  content: " ";
  position: absolute;
  display: block;
  height: 8px;
  background: #fff;
  bottom: 0;
  z-index: 3;
}
#main-header-res .header-btns .menu-box:after {
  right: 0;
  border-radius: 8px 0 0 0;
}
#main-header-res .header-btns .menu-box:before {
  left: 0;
  border-radius: 0 8px 0 0;
}
#main-header-res .header-btns .menu-box[data-menu=user]:after {
  width: calc(50% - 85px);
}
#main-header-res .header-btns .menu-box[data-menu=user]:before {
  width: calc(50% + 35px);
}
#main-header-res .header-btns .menu-box[data-menu=user] h4 {
  font-size: 16pt;
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  margin-bottom: 20px;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .input {
  margin-bottom: 15px;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .input > input {
  direction: ltr;
  border-radius: 4px;
  border: 0;
  line-height: 40px;
  font-size: 11pt;
  font-family: "Shabnam-FD", Tahoma, monospace;
  background: #fff;
  color: #000f24;
  outline: none;
  resize: none;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .input > input:focus ~ label, #main-header-res .header-btns .menu-box[data-menu=user] #login-form .input > input:active ~ label {
  color: #0069ff;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .input > input#email-res {
  padding: 0 100px 0 45px;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .input > input#password-res {
  padding: 0 75px 0 45px;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .input > label {
  position: absolute;
  display: inline-block;
  top: 0;
  line-height: 40px;
  color: #9ca2aa;
  padding: 0 15px;
  z-index: 1;
  transition: all 0.2s linear;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .input > label.right {
  right: 0;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .input > label.left {
  left: 0;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .submit {
  margin: 10px 0;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .submit > i {
  margin: 0 -8px 0 0;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .link {
  margin-top: 10px;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .link > a, #main-header-res .header-btns .menu-box[data-menu=user] #login-form .link > .recovery-password {
  position: relative;
  display: inline-block;
  border-bottom: 1px dashed #fff;
  cursor: pointer;
  transition: all 0.2s linear;
}
#main-header-res .header-btns .menu-box[data-menu=user] #login-form .link > a:focus, #main-header-res .header-btns .menu-box[data-menu=user] #login-form .link > a:active, #main-header-res .header-btns .menu-box[data-menu=user] #login-form .link > a:hover, #main-header-res .header-btns .menu-box[data-menu=user] #login-form .link > .recovery-password:focus, #main-header-res .header-btns .menu-box[data-menu=user] #login-form .link > .recovery-password:active, #main-header-res .header-btns .menu-box[data-menu=user] #login-form .link > .recovery-password:hover {
  color: #1fc198;
  border-bottom: 1px dashed #1fc198;
}
#main-header-res .header-btns .menu-box[data-menu=user] .user-avatar {
  position: relative;
  float: right;
  width: 50px;
  height: 50px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  background-image: url("/asset/img/icon/user.svg");
  border-radius: 50%;
}
#main-header-res .header-btns .menu-box[data-menu=user] .user-info {
  position: relative;
  float: left;
  width: calc(100% - 60px);
  height: 50px;
  line-height: 25px;
}
#main-header-res .header-btns .menu-box[data-menu=user] .user-info .name {
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
}
#main-header-res .header-btns .menu-box[data-menu=user] .user-info .logout {
  color: #ff5271;
}
#main-header-res .header-btns .menu-box[data-menu=menu]:after, #main-header-res .header-btns .menu-box[data-menu=menu]:before {
  width: calc(50% - 25px);
}
#main-header-res .header-btns .menu-box[data-menu=menu] .login {
  border-radius: 8px;
}
#main-header-res .header-btns .menu-box[data-menu=menu] .login > i {
  color: #0069ff;
}
#main-header-res .header-btns .menu-box[data-menu=notification]:after {
  width: calc(50% + 35px);
}
#main-header-res .header-btns .menu-box[data-menu=notification]:before {
  width: calc(50% - 85px);
}
#main-header-res .header-btns .menu-box[data-menu=notification] h4 {
  position: relative;
  float: right;
  font-size: 16pt;
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  margin-bottom: 20px;
}
#main-header-res .header-btns .menu-box[data-menu=notification] .all {
  position: relative;
  float: left;
  color: #1fc198;
  border-bottom: 1px dashed #1fc198;
  margin-bottom: 20px;
}
#main-header-res .header-btns .menu-box[data-menu=notification] .announcement {
  border-radius: 8px;
  background: #fff;
  color: #000f24;
  padding: 10px 20px;
  margin-bottom: 15px;
}
#main-header-res .header-btns .menu-box[data-menu=notification] .announcement .date {
  color: #d4dce8;
  padding-right: 35px;
  background-repeat: no-repeat;
  background-position: right 3px;
  background-size: 25px;
  background-image: url("/asset/img/icon/calendar-gray.svg");
}
#main-header-res .header-btns .menu-box[data-menu=notification] .announcement .date .delimiter {
  position: relative;
  display: inline-block;
  margin: 0 10px;
}
#main-header-res .header-btns .menu-box[data-menu=notification] .announcement h2 {
  font-size: 16pt;
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
}
#main-header-res .header-btns .menu-box[data-menu=notification] .announcement h2 > a {
  color: #0069ff;
}
#main-header-res .header-btns .menu-box[data-menu=notification] .announcement .excerpt {
  margin: 5px 0;
}
#main-header-res .header-btns .menu-box[data-menu=notification] .announcement .view {
  position: relative;
  display: inline-block;
  color: #d4dce8;
  padding-right: 25px;
  background-repeat: no-repeat;
  background-position: right 6px;
  background-size: 20px;
  background-image: url("/asset/img/icon/internal-link-gray.svg");
  transition: all 0.2s linear;
}
#main-header-res .header-btns .menu-box[data-menu=notification] .announcement .view:hover, #main-header-res .header-btns .menu-box[data-menu=notification] .announcement .view:active, #main-header-res .header-btns .menu-box[data-menu=notification] .announcement .view:focus {
  color: #1fc198;
}
#main-header-res .header-btns .menu-box.active {
  bottom: 42px;
}
#main-header-res .header-btns .menu-box.active.fit {
  line-height: 35px;
  z-index: 2;
  border-radius: 0;
}
#main-header-res .header-btns .menu-box.active.fit .menu-box-inner {
  padding: 70px 20px;
}
#main-header-res .header-btns .menu-box .menu-box-inner {
  overflow: hidden auto;
  height: calc(100% - 30px);
  padding: 50% 20px;
  transition: all 0.2s linear;
}
#main-header-res .header-btns .menu-box .bottom-blue {
  content: " ";
  position: absolute;
  display: block;
  height: 28px;
  background: #0069ff;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
#main-header-res .header-btns .menu-box .menus {
  margin-top: 20px;
}
#main-header-res .header-btns .menu-box .menus .menu .delimiter {
  height: 1px;
  background: #cfe3ff;
  margin: 10px 0;
}
#main-header-res .header-btns .menu-box .menus .menu .badge {
  position: relative;
  float: left;
  line-height: 15px;
  padding: 5px 10px;
  font-size: 9pt;
  margin-top: 5px;
  border-radius: 8px;
}
#main-header-res .header-btns .menu-box .menus .menu .badge.red {
  background: #ff5271;
  color: #fff;
}
#main-header-res .header-btns .menu-box .menus .menu .badge.green {
  background: #1fc198;
  color: #fff;
}
#main-header-res .header-btns .menu-box .menus .menu .badge.light {
  background: #cfe3ff;
  color: #000f24;
}
#main-header-res .header-btns .menu-box .menus .menu.has-submenu > span > i {
  position: relative;
  float: right;
  line-height: 35px;
  margin-left: 10px;
  color: #1fc198;
  font-size: 14pt;
  transition: all 0.2s linear;
}
#main-header-res .header-btns .menu-box .menus .menu.has-submenu > .submenu {
  display: block;
  padding: 0 40px 20px 0;
}
#main-header-res .header-btns .menu-box .menus .menu.has-submenu > .submenu > .submenu-item > a.all > i {
  position: relative;
  float: right;
  width: 25px;
  color: #1fc198;
  line-height: 35px;
  margin-left: 10px;
  text-align: center;
}
#main-header-res .header-btns .menu-box .menus .menu.has-submenu > .submenu > .submenu-item > a:not(.all) {
  padding-right: 35px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 25px;
}
#main-header-res .header-btns .menu-box .menus .menu.has-submenu > .submenu > .submenu-item > a .bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  transform-origin: bottom;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
#main-header-res .header-btns .menu-box .menus .menu.has-submenu.active > span > i {
  transform: rotate(-90deg);
}

#search-popup {
  position: fixed;
  display: none;
  overflow: hidden;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 20px;
}
#search-popup .search-popup-outside {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}
#search-popup .search-popup-wrapper {
  text-align: right;
  padding: 20px 20px 80px 20px;
  width: 100%;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
#search-popup .search-popup-wrapper .search-popup-title {
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  font-size: 14pt;
  color: #0069ff;
}
#search-popup .search-popup-wrapper .search-popup-field {
  margin-top: 20px;
}
#search-popup .search-popup-wrapper .search-popup-field .search-field {
  padding-right: 40px;
}
#search-popup .search-popup-wrapper .search-popup-field .search-icon {
  position: absolute;
  display: block;
  width: 40px;
  top: 1px;
  right: 1px;
  text-align: center;
  background-image: url("/asset/img/icon/search.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  border-radius: 0 4px 4px 0;
}
#search-popup .search-popup-wrapper .search-popup-status {
  margin-bottom: 10px;
  transition: all 0.2s linear;
}
#search-popup .search-popup-wrapper .search-popup-status.blink {
  -webkit-animation: blinker 0.5s linear infinite;
  animation: blinker 0.5s linear infinite;
}
#search-popup .search-popup-wrapper .search-popup-results {
  overflow: hidden auto;
  height: calc(100% - 134px);
  padding-left: 10px;
}
#search-popup .search-popup-wrapper .search-popup-results::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  display: block;
  background: #fff;
  border-radius: 2.5px;
}
#search-popup .search-popup-wrapper .search-popup-results::-webkit-scrollbar-track {
  height: 5px;
  border: 0;
  background-clip: padding-box;
  background-color: #fff;
  border-radius: 2.5px;
}
#search-popup .search-popup-wrapper .search-popup-results::-webkit-scrollbar-thumb {
  height: 5px;
  border: 0;
  background-clip: padding-box;
  background-color: #0069ff;
  border-radius: 2.5px;
}
#search-popup .search-popup-wrapper .search-popup-results::-webkit-scrollbar-thumb:hover {
  background-color: #005fe6;
}
#search-popup .search-popup-wrapper .search-popup-results::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
#search-popup .search-popup-wrapper .search-popup-results::-webkit-scrollbar-corner {
  background-color: transparent;
}
#search-popup .search-popup-wrapper .search-popup-results .search-popup-box {
  margin: 0 auto;
  padding-bottom: 10px;
}
#search-popup .search-popup-wrapper .search-popup-results .search-popup-box .insectionbox .insectionbox-title {
  padding: 5px 10px;
  line-height: 25px;
}
#search-popup .search-popup-wrapper .search-popup-results .search-popup-box .insectionbox .insectionbox-title-icon {
  line-height: 25px;
  height: 25px;
}
#search-popup .search-popup-wrapper .search-popup-results .search-popup-box .result-box-item {
  padding: 10px;
  transition: all 0.2s linear;
}
#search-popup .search-popup-wrapper .search-popup-results .search-popup-box .result-box-item:hover {
  background: #e6e6e6;
}
#search-popup .search-popup-wrapper .search-popup-results .search-popup-box .result-box-item .result-box-item-title {
  color: #0069ff;
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  font-size: 10pt;
}
#search-popup .search-popup-wrapper .search-popup-results .search-popup-box .result-box-item .result-box-item-subtitle {
  color: #808080;
  font-size: 9pt;
}
#search-popup .search-popup-wrapper .search-popup-results .search-popup-box .search-popup-box-more {
  margin: 10px 0;
}
#search-popup .search-popup-wrapper .search-popup-close {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 20px;
  right: 0;
  text-align: center;
}
#search-popup .search-popup-wrapper .search-popup-close > i {
  position: relative;
  display: block;
  width: 42px;
  margin: 0 auto;
  font-size: 14pt;
  line-height: 40px;
  color: #0069ff;
  border: 1px solid #cfe3ff;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s linear;
}
#search-popup .search-popup-wrapper .search-popup-close > i:hover {
  background: #cfe3ff;
}

/* Main */
#main {
  margin-top: 80px;
  margin-bottom: 40px;
}
#main .section-title {
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  font-size: 20pt;
  line-height: 40px;
  text-align: right;
  color: #0069ff;
  margin-bottom: 20px;
}
@media only screen and (min-width: 770px) and (min-height: 500px) {
  #main .section-title {
    font-size: 24pt;
    line-height: 60px;
    text-align: center;
  }
}
#main .section-title > span {
  display: none;
}
@media only screen and (min-width: 770px) and (min-height: 500px) {
  #main .section-title > span {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 100%;
    font-size: 40pt;
    color: rgba(0, 105, 255, 0.1);
  }
}
#main .section-desc {
  font-size: 12pt;
  text-align: right;
  line-height: 35px;
  margin-bottom: 20px;
}
#main .section-desc.center-desc {
  text-align: right;
}
@media only screen and (min-width: 770px) and (min-height: 500px) {
  #main .section-desc.center-desc {
    text-align: center;
  }
}
#main .section-desc.center-bold-desc {
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  text-align: right;
}
@media only screen and (min-width: 770px) and (min-height: 500px) {
  #main .section-desc.center-bold-desc {
    text-align: center;
  }
}
#main .section-desc > a {
  color: #0069ff;
  margin: 0 4px;
  transition: all 0.2s linear;
}
#main .section-desc > a:hover {
  color: #1fc198;
}

/* Footer */
#main-footer {
  color: #fff;
  margin-bottom: 60px;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  #main-footer {
    margin-bottom: 0;
  }
}
#main-footer .wbg {
  position: absolute;
  display: block;
  width: 100%;
  top: 30px;
  height: calc(100% - 30px);
  right: 0;
  background: #000f24;
}
#main-footer .center-content {
  text-align: center;
  margin-bottom: 20px;
}
#main-footer .center-content .hexagon-holder {
  position: relative;
  display: inline-block;
  width: 84px;
  height: 57px;
  border-radius: 1em/0.5em;
  background: #eee;
  z-index: 3;
}
#main-footer .center-content .hexagon-holder:before, #main-footer .center-content .hexagon-holder:after {
  content: " ";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  top: 0;
  right: 0;
}
#main-footer .center-content .hexagon-holder:before {
  transform: rotate(60deg);
}
#main-footer .center-content .hexagon-holder:after {
  transform: rotate(-60deg);
}
#main-footer .center-content .hexagon-holder .hexagon {
  position: absolute;
  display: block;
  top: 2px;
  right: 2px;
  width: 80px;
  height: 54px;
  border-radius: 1em/0.5em;
  background: #fff;
  z-index: 4;
}
#main-footer .center-content .hexagon-holder .hexagon:before, #main-footer .center-content .hexagon-holder .hexagon:after {
  content: " ";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  top: 0;
  right: 0;
}
#main-footer .center-content .hexagon-holder .hexagon:before {
  transform: rotate(60deg);
}
#main-footer .center-content .hexagon-holder .hexagon:after {
  transform: rotate(-60deg);
}
#main-footer .center-content .hexagon-holder .hexagon .logo {
  position: absolute;
  display: block;
  width: 100%;
  height: calc(100% + 40px);
  top: -20px;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("/asset/img/logo.svg");
  z-index: 1;
}
#main-footer .footer-title {
  font-size: 12pt;
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  color: #0069ff;
  margin: 20px 0;
}
#main-footer .links {
  padding-right: 20px;
}
#main-footer .links .link > a {
  position: relative;
  display: inline-block;
  padding: 8px 0 8px 5px;
  transition: all 0.2s linear;
}
#main-footer .links .link > a:hover {
  padding: 8px 5px 8px 0;
  color: #1fc198;
}
@media only screen and (min-width: 770px) and (min-height: 500px) {
  #main-footer .partners {
    text-align: center;
  }
}
#main-footer .partners .partner {
  position: relative;
  display: block;
  overflow: hidden;
  width: 120px;
  margin: 0 20px 20px 20px;
  text-align: center;
}
@media only screen and (min-width: 770px) and (min-height: 500px) {
  #main-footer .partners .partner {
    display: inline-block;
  }
}
#main-footer .partners .partner:hover > img {
  filter: grayscale(0%);
}
#main-footer .partners .partner > img {
  height: auto;
  filter: grayscale(100%);
}
#main-footer .copyright {
  border-top: 1px solid rgba(0, 105, 255, 0.15);
  padding: 20px 0;
}

/* Icons */
.hdlicons.hi-web {
  background-image: url("/asset/img/icon/web.svg");
}
.hdlicons.hi-web-white {
  background-image: url("/asset/img/icon/web-white.svg");
}
.hdlicons.hi-dl {
  background-image: url("/asset/img/icon/dl.svg");
}
.hdlicons.hi-dl-white {
  background-image: url("/asset/img/icon/dl-white.svg");
}
.hdlicons.hi-dedi {
  background-image: url("/asset/img/icon/dedi.svg");
}
.hdlicons.hi-dedi-white {
  background-image: url("/asset/img/icon/dedi-white.svg");
}
.hdlicons.hi-vps {
  background-image: url("/asset/img/icon/vps.svg");
}
.hdlicons.hi-vps-white {
  background-image: url("/asset/img/icon/vps-white.svg");
}
.hdlicons.hi-webdesign {
  background-image: url("/asset/img/icon/webdesign.svg");
}
.hdlicons.hi-webdesign-white {
  background-image: url("/asset/img/icon/webdesign-white.svg");
}
.hdlicons.hi-scan {
  background-image: url("/asset/img/icon/scan.svg");
}
.hdlicons.hi-scan-white {
  background-image: url("/asset/img/icon/scan-white.svg");
}
.hdlicons.hi-plugin {
  background-image: url("/asset/img/icon/plugin.svg");
}
.hdlicons.hi-plugin-white {
  background-image: url("/asset/img/icon/plugin-white.svg");
}
.hdlicons.hi-pwa {
  background-image: url("/asset/img/icon/pwa.svg");
}
.hdlicons.hi-pwa-white {
  background-image: url("/asset/img/icon/pwa-white.svg");
}
.hdlicons.hi-wp {
  background-image: url("/asset/img/icon/wp.svg");
}
.hdlicons.hi-wp-white {
  background-image: url("/asset/img/icon/wp-white.svg");
}
.hdlicons.hi-db {
  background-image: url("/asset/img/icon/db.svg");
}
.hdlicons.hi-db-white {
  background-image: url("/asset/img/icon/db-white.svg");
}
.hdlicons.hi-payment-methods {
  background-image: url("/asset/img/icon/payment-methods.svg");
}
.hdlicons.hi-payment-methods-white {
  background-image: url("/asset/img/icon/payment-methods-white.svg");
}
.hdlicons.hi-departments {
  background-image: url("/asset/img/icon/departments.svg");
}
.hdlicons.hi-departments-white {
  background-image: url("/asset/img/icon/departments-white.svg");
}
.hdlicons.hi-servers {
  background-image: url("/asset/img/icon/servers.svg");
}
.hdlicons.hi-servers-white {
  background-image: url("/asset/img/icon/servers-white.svg");
}
.hdlicons.hi-predefineds {
  background-image: url("/asset/img/icon/predefineds.svg");
}
.hdlicons.hi-predefineds-white {
  background-image: url("/asset/img/icon/predefineds-white.svg");
}
.hdlicons.hi-subaccounts {
  background-image: url("/asset/img/icon/subaccounts.svg");
}
.hdlicons.hi-subaccounts-white {
  background-image: url("/asset/img/icon/subaccounts-white.svg");
}
.hdlicons.hi-permissions {
  background-image: url("/asset/img/icon/permissions.svg");
}
.hdlicons.hi-permissions-white {
  background-image: url("/asset/img/icon/permissions-white.svg");
}
.hdlicons.hi-roles {
  background-image: url("/asset/img/icon/roles.svg");
}
.hdlicons.hi-roles-white {
  background-image: url("/asset/img/icon/roles-white.svg");
}
.hdlicons.hi-users {
  background-image: url("/asset/img/icon/users.svg");
}
.hdlicons.hi-users-white {
  background-image: url("/asset/img/icon/users-white.svg");
}
.hdlicons.hi-specs {
  background-image: url("/asset/img/icon/specs.svg");
}
.hdlicons.hi-specs-white {
  background-image: url("/asset/img/icon/specs-white.svg");
}
.hdlicons.hi-addons {
  background-image: url("/asset/img/icon/addons.svg");
}
.hdlicons.hi-addons-white {
  background-image: url("/asset/img/icon/addons-white.svg");
}
.hdlicons.hi-services {
  background-image: url("/asset/img/icon/services.svg");
}
.hdlicons.hi-services-white {
  background-image: url("/asset/img/icon/services-white.svg");
}
.hdlicons.hi-plans {
  background-image: url("/asset/img/icon/plans.svg");
}
.hdlicons.hi-plans-white {
  background-image: url("/asset/img/icon/plans-white.svg");
}
.hdlicons.hi-tags {
  background-image: url("/asset/img/icon/tags.svg");
}
.hdlicons.hi-tags-white {
  background-image: url("/asset/img/icon/tags-white.svg");
}
.hdlicons.hi-categories {
  background-image: url("/asset/img/icon/categories.svg");
}
.hdlicons.hi-categories-white {
  background-image: url("/asset/img/icon/categories-white.svg");
}
.hdlicons.hi-issues {
  background-image: url("/asset/img/icon/issues.svg");
}
.hdlicons.hi-issues-white {
  background-image: url("/asset/img/icon/issues-white.svg");
}
.hdlicons.hi-announcements {
  background-image: url("/asset/img/icon/announcements.svg");
}
.hdlicons.hi-announcements-white {
  background-image: url("/asset/img/icon/announcements-white.svg");
}
.hdlicons.hi-kbs {
  background-image: url("/asset/img/icon/kbs.svg");
}
.hdlicons.hi-kbs-white {
  background-image: url("/asset/img/icon/kbs-white.svg");
}
.hdlicons.hi-posts {
  background-image: url("/asset/img/icon/posts.svg");
}
.hdlicons.hi-posts-white {
  background-image: url("/asset/img/icon/posts-white.svg");
}
.hdlicons.hi-orders {
  background-image: url("/asset/img/icon/orders.svg");
}
.hdlicons.hi-orders-white {
  background-image: url("/asset/img/icon/orders-white.svg");
}
.hdlicons.hi-add-service {
  background-image: url("/asset/img/icon/add-service.svg");
}
.hdlicons.hi-add-service-white {
  background-image: url("/asset/img/icon/add-service-white.svg");
}
.hdlicons.hi-document {
  background-image: url("/asset/img/icon/document.svg");
}
.hdlicons.hi-document-white {
  background-image: url("/asset/img/icon/document-white.svg");
}
.hdlicons.hi-settings {
  background-image: url("/asset/img/icon/settings.svg");
}
.hdlicons.hi-settings-white {
  background-image: url("/asset/img/icon/settings-white.svg");
}
.hdlicons.hi-transactions {
  background-image: url("/asset/img/icon/transactions.svg");
}
.hdlicons.hi-transactions-white {
  background-image: url("/asset/img/icon/transactions-white.svg");
}
.hdlicons.hi-add-fund {
  background-image: url("/asset/img/icon/add-fund.svg");
}
.hdlicons.hi-add-fund-white {
  background-image: url("/asset/img/icon/add-fund-white.svg");
}
.hdlicons.hi-news {
  background-image: url("/asset/img/icon/news.svg");
}
.hdlicons.hi-news-white {
  background-image: url("/asset/img/icon/news-white.svg");
}
.hdlicons.hi-invoices {
  background-image: url("/asset/img/icon/invoices.svg");
}
.hdlicons.hi-invoices-white {
  background-image: url("/asset/img/icon/invoices-white.svg");
}
.hdlicons.hi-create-ticket {
  background-image: url("/asset/img/icon/create-ticket.svg");
}
.hdlicons.hi-create-ticket-white {
  background-image: url("/asset/img/icon/create-ticket-white.svg");
}
.hdlicons.hi-tickets {
  background-image: url("/asset/img/icon/tickets.svg");
}
.hdlicons.hi-tickets-white {
  background-image: url("/asset/img/icon/tickets-white.svg");
}
.hdlicons.hi-edit-profile {
  background-image: url("/asset/img/icon/edit-profile.svg");
}
.hdlicons.hi-edit-profile-white {
  background-image: url("/asset/img/icon/edit-profile-white.svg");
}
.hdlicons.hi-admin-dashboard {
  background-image: url("/asset/img/icon/admin-dashboard.svg");
}
.hdlicons.hi-admin-dashboard-white {
  background-image: url("/asset/img/icon/admin-dashboard-white.svg");
}
.hdlicons.hi-dashboard {
  background-image: url("/asset/img/icon/dashboard.svg");
}
.hdlicons.hi-dashboard-white {
  background-image: url("/asset/img/icon/dashboard-white.svg");
}
.hdlicons.hi-groups {
  background-image: url("/asset/img/icon/groups.svg");
}
.hdlicons.hi-groups-white {
  background-image: url("/asset/img/icon/groups-white.svg");
}
.hdlicons.hi-all {
  background-image: url("/asset/img/icon/all.svg");
}
.hdlicons.hi-all-white {
  background-image: url("/asset/img/icon/all-white.svg");
}
.hdlicons.hi-backup {
  background-image: url("/asset/img/icon/backup.svg");
}
.hdlicons.hi-backup-white {
  background-image: url("/asset/img/icon/backup-white.svg");
}
.hdlicons.hi-config {
  background-image: url("/asset/img/icon/config.svg");
}
.hdlicons.hi-config-white {
  background-image: url("/asset/img/icon/config-white.svg");
}
.hdlicons.hi-contact {
  background-image: url("/asset/img/icon/contact.svg");
}
.hdlicons.hi-contact-white {
  background-image: url("/asset/img/icon/contact-white.svg");
}
.hdlicons.hi-external-link {
  background-image: url("/asset/img/icon/external-link.svg");
}
.hdlicons.hi-external-link-white {
  background-image: url("/asset/img/icon/external-link-white.svg");
}
.hdlicons.hi-internal-link {
  background-image: url("/asset/img/icon/internal-link.svg");
}
.hdlicons.hi-internal-link-white {
  background-image: url("/asset/img/icon/internal-link-white.svg");
}
.hdlicons.hi-notifications {
  background-image: url("/asset/img/icon/notifications.svg");
}
.hdlicons.hi-notifications-white {
  background-image: url("/asset/img/icon/notifications-white.svg");
}

/* Night Mode */
.night-mode {
  /* Header */
  /* Footer */
}
.night-mode #main-header {
  background: #212930;
}
.night-mode #main-header .menus .menu:hover.has-submenu > a:after {
  border-color: transparent transparent #181f26 transparent;
}
.night-mode #main-header .menus .menu .submenus {
  background: #181f26;
}
.night-mode #main-header .menus .menu .submenus .submenu .submenu-item:hover {
  background: rgba(42, 56, 74, 0);
  background: linear-gradient(145deg, rgba(42, 56, 74, 0) 0%, #2a384a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a384a",endColorstr="#2a384a",GradientType=1);
}
.night-mode #main-header .menus .menu .submenus .submenu .view-all {
  background: #2a384a;
  color: #1fc198;
}
.night-mode #main-header .header-btn {
  border: 1px solid #2a384a;
}
@media only screen and (min-width: 992px) {
  .night-mode #main-header .header-btn {
    border: 1px solid transparent;
  }
}
.night-mode #main-header .header-btn:hover {
  background: #2a384a;
  border: 1px solid #2a384a;
}
.night-mode #main-header .header-btn.notification-toggler:hover:after {
  border-color: transparent transparent #181f26 transparent;
}
.night-mode #main-header .header-btn.notification-toggler .announcements {
  background: #181f26;
}
.night-mode #main-header .header-btn.notification-toggler .announcements .announcements-holder::-webkit-scrollbar {
  background: #212930;
}
.night-mode #main-header .header-btn.notification-toggler .announcements .announcements-holder::-webkit-scrollbar-track {
  background-color: #212930;
}
.night-mode #main-header .header-btn.notification-toggler .announcements .announcements-holder .announcement {
  background: #212930;
  color: #ffffff;
}
.night-mode #main-header .header-btn.mode-toggler .icon {
  background-image: url("/asset/img/icon/mode-day.svg");
}
.night-mode #main-header .header-btn.mode-toggler .tooltip:after {
  content: attr(data-night-content);
}
.night-mode #main-header-res {
  background: #212930;
}
.night-mode #main-header-res .header-btns .menu-box:after, .night-mode #main-header-res .header-btns .menu-box:before {
  background: #212930;
}
.night-mode #main-header-res .header-btns .menu-box[data-menu=user] #login-form .input > input {
  background: #212930;
  color: #ffffff;
}
.night-mode #main-header-res .header-btns .menu-box[data-menu=notification] .announcement {
  background: #212930;
  color: #ffffff;
}
.night-mode #search-popup .search-popup-wrapper {
  background: #212930;
}
.night-mode #search-popup .search-popup-wrapper .search-popup-results::-webkit-scrollbar {
  background: #212930;
}
.night-mode #search-popup .search-popup-wrapper .search-popup-results::-webkit-scrollbar-track {
  background-color: #212930;
}
.night-mode #search-popup .search-popup-wrapper .search-popup-results .search-popup-box .result-box-item:hover {
  background: #171c21;
}
.night-mode #search-popup .search-popup-wrapper .search-popup-close > i {
  border: 1px solid #2a384a;
}
.night-mode #search-popup .search-popup-wrapper .search-popup-close > i:hover {
  background: #2a384a;
}
.night-mode #main-footer .wbg {
  background: #0f1317;
}
.night-mode #main-footer .center-content .hexagon-holder {
  background: #2a384a;
}
.night-mode #main-footer .center-content .hexagon-holder .hexagon {
  background: #212930;
}
