@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400&family=Josefin+Sans:wght@100;200;300;400;500;700&family=Manrope:wght@200;300;400;800&family=Playfair+Display:wght@400;500;600;900&family=Roboto:wght@100;300;400;900&family=Dancing+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
  list-style-type: none;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0;
}

:root {
  --text-font: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-family: "Roboto", sans-serif;
}

html {
  overflow-x: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: black;
  display: block;
}

ul {
  list-style: none;
}

input:focus, textarea:focus {
  outline: none;
}

input[type='submit'] {
  cursor: pointer;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.container-sm {
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
  position: relative;
}

.container-md {
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
  max-width: 1400px;
  position: relative;
}

.container-lg {
  padding: 0 120px;
  -webkit-transition: .4s;
  transition: .4s;
  max-width: 2000px;
  margin: 0 auto;
  position: relative;
}

img {
  max-width: 100%;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: none !important;
  color: black !important;
}

.owl-theme .owl-dots .owl-dot span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #262628 !important;
}

.basic-arrow {
  width: 2rem;
  height: 2rem;
  display: block;
  position: relative;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
}

.arrow-shadow {
  -webkit-box-shadow: -3px 3px 2px black;
          box-shadow: -3px 3px 2px black;
}

.left-arrow {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.right-arrow {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

section {
  position: relative;
  margin-bottom: 4rem;
}

.half-arrow {
  border-left: unset;
}

.half-arrow::before {
  content: '';
  width: 4rem;
  height: 2px;
  background: white;
  display: block;
  -webkit-transform: rotate(-45deg) translate(-11px, -1px);
          transform: rotate(-45deg) translate(-11px, -1px);
}

/* custom */
.flex-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-list > * {
  margin: .5rem;
}

.flex-list__2 {
  width: calc(calc(100% / 2) - 1rem);
}

.flex-list__3 {
  width: calc(calc(100% / 3) - 1rem);
}

.flex-list__4 {
  width: calc(calc(100% / 4) - 1rem);
}

body {
  min-height: 100vh;
  background: #383a3c;
}

main {
  margin-left: 20rem;
  padding: 2rem 1rem;
  -webkit-transition: .5s;
  transition: .5s;
}

main.genis {
  margin-left: 4rem;
}

.box-title {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.51);
}

.btn {
  cursor: pointer;
  padding: 4px 8px;
  -webkit-transition: all .4s;
  transition: all .4s;
  border-radius: .25rem;
}

.btn.btn-md {
  padding: 5px 10px;
  font-size: 16px;
}

.btn.info {
  color: #48af81;
  border: 1px solid #48af81;
}

.btn.info:hover {
  color: #262628;
  background: #48af81;
}

.btn-normal {
  color: #1696d8;
  border: 1px solid #1696d8;
}

.btn-normal:hover {
  color: #262628;
  background: #1696d8;
}

.btn-negative {
  color: #fd6767;
  border: 1px solid #fd6767;
}

.btn-negative:hover {
  color: #262628;
  background: #fd6767;
}

.sidebar {
  top: 0;
  left: 0rem;
  z-index: 9;
  width: 20rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  background-color: #262628;
}

.sidebar .sidebar-top {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar .sidebar-top > a {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  color: rgba(255, 255, 255, 0.829);
  font-weight: bold;
  padding: 5px 10px;
  color: #1696d8;
}

.sidebar .sidebar-top .navbar-icon {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  position: relative;
}

.sidebar .sidebar-top .navbar-icon > .line {
  position: absolute;
  height: 4px;
  width: 100%;
  margin: 2px 0;
  border-radius: 30px;
  background: #827882;
}

.sidebar .sidebar-top .navbar-icon > .line.line1 {
  left: -9px;
  -webkit-transform: rotate(45deg) translate(50%);
          transform: rotate(45deg) translate(50%);
}

.sidebar .sidebar-top .navbar-icon > .line.line2 {
  left: 8px;
  -webkit-transform: rotate(-45deg) translate(-50%);
          transform: rotate(-45deg) translate(-50%);
}

.sidebar .sidebar-item {
  border-radius: .25rem;
  margin: .2rem 0;
}

.sidebar .sidebar-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.sidebar .sidebar-item .sidebar-link {
  color: rgba(255, 255, 255, 0.829);
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 13px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

.sidebar .sidebar-item .sidebar-link a {
  padding: 5px 10px;
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.829);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar .sidebar-item .sidebar-link a.logout {
  color: tomato !important;
}

.sidebar .sidebar-item .sidebar-accordion:after {
  content: '\002B';
  font-size: 13px;
  font-weight: bold;
  color: #777;
  float: right;
  margin-left: 5px;
  position: absolute;
  right: 1rem;
  line-height: 45px;
}

.sidebar .sidebar-item .accordion-submenu {
  background-color: rgba(255, 255, 255, 0.829);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.sidebar .sidebar-item .accordion-submenu .accord-sub-item {
  height: 2.5rem;
}

.sidebar .sidebar-item .accordion-submenu .accord-sub-item > a {
  color: rgba(255, 255, 255, 0.829);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 18px;
}

.sidebar .sidebar-item .accord-active:after {
  content: "\2212";
}

.sidebar .iconbg {
  width: 30px;
  height: 30px;
  margin-right: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sidebar .iconbg i {
  font-size: 20px;
}

.sidebar .sidebar-list {
  display: block;
  overflow: auto;
  max-height: calc(100% - 177px);
  margin: auto;
  height: 100%;
}

.sidebar .sidebar-left {
  width: 100%;
  padding: 0 10px;
}

.sidebar .sidebar-left .sidebar-list {
  scrollbar-width: none;
}

.sidebar .sidebar-left .sidebar-list:hover {
  scrollbar-width: thin;
  scrollbar-width: 5px;
}

.sidebar .sidebar-left .sidebar-list::-webkit-scrollbar {
  width: 5px;
  height: 0px;
}

.sidebar .sidebar-left .sidebar-list::-webkit-scrollbar-thumb {
  border-radius: 40px;
  background-color: rgba(192, 192, 192, 0.459);
}

.sidebar .sidebar-left .sidebar-list::-webkit-scrollbar-track {
  background-color: #777777;
}

.sidebar .sidebar-left .sidebar-list-bottom:before, .sidebar .sidebar-left .sidebar-list-top:before {
  content: attr(data-label);
  display: block;
  color: rgba(255, 255, 255, 0.829);
  font-size: 13px;
  font-weight: bold;
  line-height: 2;
}

.sidebar .sidebar-right {
  -webkit-transition: .4s;
  transition: .4s;
  width: 0rem;
  position: relative;
  cursor: pointer;
}

.sidebar .sidebar-right .openmenu {
  display: none;
  -webkit-transform: rotate(-90deg) translate(0%, -100%);
          transform: rotate(-90deg) translate(0%, -100%);
  position: absolute;
  left: 50%;
  top: 50%;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.829);
}

.sidebar.togglemenu {
  left: -16rem !important;
}

.sidebar.togglemenu .sidebar-right {
  width: 6rem;
}

.sidebar.togglemenu .sidebar-right .openmenu {
  display: block;
}

.login-wrapper {
  min-height: 100vh;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.login-wrapper .box-title {
  padding-left: 1rem;
  font-size: 2rem;
}

.login-wrapper .loginicon {
  text-align: center;
}

.login-form {
  max-width: 35rem;
  padding: 1rem;
}

.design-box {
  top: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  position: absolute;
  background: #1696d8;
  border-radius: 85% 90% 89% 91% / 94% 82% 94% 90%;
  -webkit-animation: turn 15s linear infinite;
          animation: turn 15s linear infinite;
}

.design-box.mini {
  top: 0rem;
  left: 35vw;
  opacity: .5;
  width: 20vw;
  height: 20vw;
  -webkit-animation: turn 20s linear infinite;
          animation: turn 20s linear infinite;
}

.login-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.login-footer > * {
  font-size: 14px;
  margin: 0 6px;
  text-align: center;
  color: #262628;
}

@-webkit-keyframes turn {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes turn {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.line-chart {
  -webkit-animation: fadeIn 600ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
          animation: fadeIn 600ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
  opacity: 0;
  max-width: 640px;
  width: 100%;
}

.aspect-ratio {
  height: 0;
  padding-bottom: 50%;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* pages */
.infobox {
  min-height: 80px;
  border-radius: .25rem;
  padding: .5rem;
  background: #262628;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.infobox .infobox-icon {
  width: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 22px;
  border-radius: .25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: cadetblue;
  background-color: #1696d8;
  color: #262628;
}

.infobox .infobox-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  font-size: 15px;
  padding: 0 10px;
  overflow: hidden;
}

.infobox .infobox-content > * {
  line-height: 1.8;
}

.infobox .infobox-content .infobox-number {
  font-weight: bold;
}

#visitorTable_wrapper {
  overflow: auto;
}

.visitortable tr {
  color: white;
  font-size: 15px;
}

.visitortable thead {
  background: #262628;
  border-radius: .25rem;
  color: #999;
}

.visitortable thead th, .visitortable thead td {
  padding: 10px 18px;
}

.visitortable tbody tr input {
  color: white;
  font-size: 15px;
}

.visitortable tbody th, .visitortable tbody td {
  padding: 8px 10px;
  white-space: nowrap;
}

.visitortable tbody th a, .visitortable tbody td a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.visitortable tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.visitortable .tablebtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.dataTables_wrapper .dataTables_info {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 14px !important;
}

#visitorTable_filter {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.4);
}

#visitorTable_filter input {
  font-size: 14px;
  color: white;
}

.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding: .755em 10px;
}

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: .25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0.2em 0.5em;
  margin-left: 3px;
}

.dataTables_wrapper .dataTables_paginate span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  border-radius: .25rem;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button.current {
  background: gray !important;
  color: black;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next, .dataTables_wrapper .dataTables_paginate .paginate_button.previous {
  display: none;
}

#visitorTable_length {
  display: none;
}

.input-box {
  margin-bottom: 15px;
}

.input-box.flex-list {
  margin-bottom: unset !important;
}

.input-box.flex-list > * {
  margin-top: unset;
  margin-bottom: unset !important;
}

.input-box.flex-list > *:nth-child(1) {
  margin-bottom: 15px !important;
}

.input-wrapper {
  height: 2.5rem;
  overflow: hidden;
  position: relative;
}

.highliterbox {
  width: 100%;
  height: inherit;
  font-size: 15px;
  padding: 2px 13px;
  position: relative;
  border-radius: .25rem;
  color: white;
  background-color: #262628;
  border: 0.5px solid rgba(128, 128, 128, 0.129);
}

.input-box label {
  color: gray;
  font-size: 15px;
  margin-bottom: 5px;
  display: inline-block;
}

.input-box .input-icon::after {
  content: attr(data-icon);
  right: 0;
  bottom: 0;
  width: 40px;
  height: 100%;
  color: white;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: fontAwesome;
}

/* CUSTOM SELECT BOX */
.input-wrapper.secim {
  overflow: unset !important;
  z-index: 12;
  position: unset;
}

.custom-selectbox {
  position: relative;
  float: left;
  width: 100%;
  height: 2.5rem;
  margin-right: 5px;
}

ul.selectbox-options {
  position: absolute;
  width: 100%;
  height: 40px;
  max-height: 40px;
  margin: 0;
  padding: 0;
  background-color: #262628;
  border-radius: .25rem;
  -webkit-transition: max-height .5s ease-out;
  transition: max-height .5s ease-out;
}

ul.selectbox-options.opened {
  height: auto;
  max-height: 500px;
  z-index: 1;
  -webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
}

ul.selectbox-options.opened .selected {
  background-color: #141414;
  font-weight: bold;
}

ul.selectbox-options li {
  display: none;
  height: 40px;
  padding: 0 10px;
  line-height: 40px;
  font-size: 14px;
  color: white;
  cursor: pointer;
  border-radius: .25rem;
}

ul.selectbox-options li:not(.selected):hover {
  background-color: #141414;
}

ul.selectbox-options li.selected,
ul.selectbox-options li:first-child,
ul.selectbox-options.opened li.selected:first-child {
  background-repeat: no-repeat;
  background-image: url("../../images/Group 2.png");
  background-position: 100% 6px;
}

ul.selectbox-options.opened li:first-child,
ul.selectbox-options.opened li.selected:first-child {
  background-position: 100% -22px;
}

ul.selectbox-options.opened li {
  display: block;
}

ul.selectbox-options.opened li.selected {
  background-image: none;
}

ul.selectbox-options li.selected {
  display: block;
}

@media only screen and (max-width: 1200px) {
  .container-lg {
    padding: 0 80px;
  }
  .container {
    padding: 0 1rem;
  }
}

@media only screen and (max-width: 992px) {
  .container-lg {
    padding: 0 40px;
  }
  .design-box {
    width: 70vw;
    height: 70vw;
  }
  .design-box.mini {
    left: 55vw;
    width: 35vw;
    height: 35vw;
  }
  .sidebar {
    left: -16rem !important;
  }
  .sidebar .sidebar-right {
    width: 6rem;
  }
  .sidebar .sidebar-right .openmenu {
    display: block;
  }
  .sidebar.togglemenu {
    left: 0 !important;
  }
  .sidebar.togglemenu .sidebar-right {
    width: 0;
  }
  .sidebar.togglemenu .sidebar-right .openmenu {
    display: none;
  }
  main {
    margin-left: 4rem;
  }
}

@media only screen and (max-width: 768px) {
  .container-lg {
    padding: 0 20px;
  }
  .flex-list__4 {
    width: calc(calc(100% / 3) - 1rem) !important;
  }
  .flex-list__3 {
    width: calc(calc(100% / 2) - 1rem) !important;
  }
  .flex-list__2 {
    width: calc(100% - 1rem) !important;
  }
  .design-box {
    top: -10%;
  }
  .visitortable thead th, .visitortable thead td {
    padding: 8px 10px;
    font-size: 14px;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 576px) {
  .container-lg {
    padding: 0 14px;
  }
  .flex-list__4 {
    width: calc(calc(100% / 2) - 1rem) !important;
  }
  .highliterbox {
    font-size: 14px;
  }
}

@media only screen and (max-width: 415px) {
  .container-lg {
    padding: 0 10px;
  }
  .flex-list__3 {
    width: 100% !important;
  }
  .flex-list__4 {
    width: 100% !important;
  }
}

@media only screen and (max-width: 350px) {
  .container {
    padding: 0 10px !important;
  }
  .container-lg {
    padding: 0 5px;
  }
}
/*# sourceMappingURL=main.css.map */