@charset "UTF-8";

/*!
 * Stylesheet for admin page
 * @author: Onnay Okheng (@onnayokheng)
 */

/**
 * Clearfix for float layout
 */

/**
 * Cover element to parent
 */

/**
 * CSS media query shortcode
 */

/**
 * Convert pixel unit font-size into em unit (with px fallback)
 */

/**
 * Convert pixel unit font-size into rem unit (with px fallback)
 */

/**
 * Convert px unit into em unit
 */

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

img {
  max-width: 100%;
}

.container {
  position: relative;
  overflow: hidden;
}

#page {
  position: relative;
  left: 0;
  z-index: 99;
  height: 100%;
  background-color: #f4f6f8;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

#page::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0);
  content: "";
  opacity: 0;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  z-index: 100;
}

.brand-logo {
  margin: 0;
  float: left;
  position: relative;
  z-index: 1;
  padding: 0;
}

.brand-logo a,
.brand-logo img {
  display: block;
}

.navigation {
  float: right;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.navigation .menu,
.navigation .user-nav {
  float: left;
}

.navigation .menu {
  margin-right: 15px;
}

.navigation a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  padding: 5px 10px;
  font-size: 14px;
  font-size: 1em;
}

@media (max-width: 990px) {
  .navigation {
    position: fixed;
    top: 80px;
    width: 100%;
    left: 0;
    bottom: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: -1;
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
    transition: 0.6s cubic-bezier(0.75, 0, 0.58, 1);
    padding: 15px;
  }

  .navigation.is-active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .navigation .menu,
  .navigation .user-nav {
    float: none;
    margin-bottom: 30px;
    margin: 0;
  }

  .navigation .menu-item {
    float: none;
  }

  .navigation .menu-item a {
    padding: 20px 0;
  }

  .navigation .user-nav {
    border-width: 1px 0 0;
  }

  .navigation .user-nav button {
    padding: 15px;
  }
}

.menu {
  list-style: none;
  margin: 0;
  padding-left: 0;
  text-transform: uppercase;
  *zoom: 1;
}

.menu:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.menu-item {
  float: left;
}

.menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

.menu a:after {
  content: " ";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.menu .current-menu-item > a:after,
.menu-item:hover > a:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

@media (max-width: 990px) {
  .mobile-menu-enabled {
    overflow: hidden;
  }
}

.hamburger {
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0 0 0 auto;
  overflow: visible;
  border: none;
  display: none;
  float: right;
}

@media (max-width: 990px) {
  .hamburger {
    display: block;
  }
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #FFF;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
          transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
          transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.navigation {
  float: right;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.navigation .menu,
.navigation .user-nav {
  float: left;
}

.navigation .menu {
  margin-right: 15px;
}

.navigation a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  padding: 10px;
  font-weight: 500;
  text-transform: none;
  font-size: 14px;
  font-size: 1em;
}

.navigation a:hover {
  color: #fff;
}

@media (max-width: 990px) {
  .navigation {
    position: fixed;
    top: 80px;
    width: 100%;
    left: 0;
    bottom: 0;
    display: block;
    background-color: #000;
    z-index: -1;
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
    transition: 0.6s cubic-bezier(0.75, 0, 0.58, 1);
    padding: 15px;
  }

  .navigation.is-active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    z-index: 3;
  }

  .navigation .menu {
    float: none;
    margin-bottom: 30px;
    margin: 0;
  }

  .navigation .menu-item {
    float: none;
    display: block;
  }

  .navigation .menu-item a {
    padding: 20px 0;
  }
}

.menu-item {
  position: relative;
}

.menu-item .sub-menu {
  display: none;
  background-color: #43467F;
  padding: 12px 0;
}

@media (max-width: 990px) {
  .menu-item .sub-menu {
    display: inline-block;
    position: relative;
    left: 0;
    background: none;
  }
}

.menu-item:hover .sub-menu {
  display: inline-block;
  position: absolute;
  top: 100%;
  right: 0;
}

.menu-item:hover .sub-menu .menu {
  margin: 0;
}

.menu-item:hover .sub-menu li {
  width: 100%;
}

.menu-item:hover .sub-menu a {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  display: block;
  padding: 10px 30px;
}

/* Page Elements
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#hero {
  margin-bottom: 30px;
}

#hero header {
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #43467F;
  padding: 15px 20px;
  min-height: 7rem;
  box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.6);
}

#hero article .card {
  border-top: 0.5rem solid #c4cdd5;
}

#hero article .card.twelve {
  text-align: center;
}

#hero article .card.twelve h2 {
  margin-bottom: 1.5rem;
  color: #000;
}

#hero h5 {
  margin-bottom: 1.5rem;
}

#hero h5:last-child {
  margin-bottom: 0;
}

#hero img {
  max-height: 40px;
  width: auto;
  margin: 0 0 0 1rem;
}

#hero p:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

/**
 * Navigation
 */

.navigation {
  text-align: left;
}

.navigation ul li {
  display: inline-block;
  list-style: none;
}

/**
 * Select2
 */

.cloneya .select2-container {
  width: 100%;
}

.cloneya .select2-container a.select2-choice {
  background: #fff;
  border: 0.1rem solid #c4cdd5;
  min-height: 3.4rem;
  line-height: 3.4rem;
}

.cloneya .select2-container a.select2-choice .select2-arrow {
  border: none;
  background: none;
}

.select2-operator-wrapper {
  text-align: left;
  clear: both;
}

.select2-operator-wrapper img {
  float: left;
  padding-right: 15px;
  padding-top: 4px;
}

.select2-operator-wrapper .name {
  font-weight: bold;
  color: #666;
  display: block;
}

.select2-operator-wrapper .phone {
  color: #999;
  font-size: 12px;
}

.select2-results .select2-highlighted {
  background: #f9f9f9 !important;
}

.swal-button--cancel {
  background: #efefef;
}

.swal-button--cancel:hover,
.swal-button--cancel:focus,
.swal-button--cancel:active {
  color: #555;
  background: #ddd;
}

/**
 * Report
 */

.visitor-report-wrapper table {
  font-size: 12px;
}

.visitor-report-wrapper table td,
.visitor-report-wrapper table th {
  padding: 0.5rem;
}

.pagination {
  list-style: none;
}

.pagination li {
  display: inline-block;
}

.pagination a,
.pagination span {
  padding: 5px;
}

tr.order-status.completed-order {
  background: #e7ffe7;
}

.user-profile {
  color: #637381;
  float: right;
  display: flex;
  align-items: stretch;
  flex-direction: row;
}

@media (max-width: 550px) {
  .user-profile {
    float: none;
  }
}

.user-profile .user-avatar {
  flex: 0.6;
  padding-right: 15px;
}

.user-profile .user-avatar img {
  width: 100%;
}

.user-profile .user-data {
  flex: 2;
}

.list-statistcs {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.list-statistcs li {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  flex: 1;
  padding: 20px;
  text-align: center;
  margin: 0 5px;
}

.list-statistcs li:first-child {
  margin-left: 0;
}

.list-statistcs li:last-child {
  margin-right: 0;
}

.list-statistcs li span {
  display: block;
  margin-top: 15px;
}

@media (max-width: 550px) {
  .m-p20 {
    padding: 20px;
  }
}

/** Add-ons style */

.add-ons-wrapper .card img {
  display: inline-block;
  float: right;
  width: 60px;
  height: 60px;
  margin: 0 0 0 1rem;
}

.add-ons-wrapper h5 {
  margin-bottom: 1.5rem;
}

.add-ons-wrapper .content {
  margin-bottom: 20px;
}

.add-ons-wrapper .price-wrap {
  display: block;
}

.add-ons-wrapper .term {
  margin-top: -5px;
  color: green;
  display: block;
  font-size: 0.5rem;
}

.add-ons-wrapper del {
  color: red;
}

.add-ons-wrapper a i {
  top: -5px;
}

/** Content */

h1,
.toc-description {
  padding: 0 20px;
}

/**
 * Stats
 */

.stats-counter {
  margin-top: 20px;
  margin-bottom: 30px;
}

.card-counter i {
  font-size: 1.2em;
  float: left;
  color: #43467F;
  padding: 10px;
  background: #fff;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.card-counter .counter {
  font-size: 2.2em;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  color: #222;
}

.card-counter .desc {
  color: #979baf;
}

.card-counter.operators i {
  color: #81c8ab;
  background: none;
}

.card-counter.orders i {
  color: red;
  background: none;
}

.c3-tooltip {
  background: #414346;
}

.c3-tooltip tbody tr:nth-child(odd) {
  background: none;
}

.tab-content {
  padding: 20px 0 30px;
}

