@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

:root {
  --ff: "Open Sans", sans-serif;
  --fs: 14px;
  --fsxs: 10px;
  --fss: 12px;
  --fsm: 16px;
  --fsl: 18px;
  --fslg: 24px;
  --primaryColor: #f5a621;
  --primaryDark: #121212;
  --lightDark: #191919;
  --secondaryDark: #4a4a4a;
  --primaryWhite: #ffffff;
  --primaryBlue: #007aff;
  --primaryRed: #ef5355;
  --primaryGreen: #42b370;
  --btnHeight: 40px;
  --btnSMheight: 32px;
  --mainContainer: 1280px;
}

*:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
  color: currentColor;
}

a {
  transition: 0.5s;
}

body {
  font-family: var(--ff);
  line-height: 1;
  /* font-size: var(--fs); */
  color: var(--primaryWhite);
  background-color: var(--primaryDark);
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
figure,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

/* input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  -webkit-animation: autofill 0s forwards;
  animation: autofill 0s forwards;
} */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: all 5000s ease-in-out 0s;
  color: var(--primaryWhite);
}

/*====UTILITIES=====*/

.txt--s {
  font-size: var(--fs);
}

.txt--ss {
  font-size: var(--fss);
}

.txt--xs {
  font-size: var(--fsxs);
}

.txt--l {
  font-size: var(--fsl);
}

.txt--fslg {
  font-size: var(--fslg);
}

.txt--fsxs {
  font-size: var(--fsxs);
}

.txt--semi-bold {
  font-weight: 600;
}

.txt--bold {
  font-weight: 700;
}

.txt--primary {
  color: var(--primaryColor) !important;
}

.txt--red {
  color: var(--primaryRed);
}

.txt--green {
  color: var(--primaryGreen);
}

.txt-white {
  color: var(--primaryWhite);
}

.txt--off-white {
  color: rgba(255, 255, 255, 0.5);
}

.opacity--50 {
  opacity: 0.5;
}

.opacity--25 {
  opacity: 0.25;
}

.opacity--1 {
  opacity: 1 !important;
}

.cursor-pointer {
  cursor: pointer;
}

.navContainer {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.content__box {
  background-color: var(--lightDark);
  border-radius: 10px;
}

.content__box__header {
  padding: 20px;
}

.content__divider {
  height: 1px;
  background-color: var(--primaryDark);
}

.content__box__body {
  padding: 20px;
  position: relative;
}

.box__height {
  overflow-y: auto;
  max-height: 150px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.box__height--activity {
  min-height: 140px;
}

.box__height--session {
  min-height: 170px;
}

.box__height--session-property {
  max-height: 290px;
  min-height: 290px;
}

.box__height--activity-property {
  min-height: 247px;
}

.box__height--session-modal {
  min-height: 295px;
}

.content__box__body::-webkit-scrollbar {
  display: none;
}

.content__wrapper {
  padding: 15px;
}

.top__filter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top__filter__ul {
  display: flex;
  align-items: center;
}

.top__filter__ul li {
  font-size: var(--fss);
  opacity: 0.5;
  padding-right: 15px;
  cursor: pointer;
  margin-bottom: 8px;
}

.top__filter__ul li:last-of-type {
  padding-right: 0;
}

.top__filter__ul li.active {
  color: var(--primaryColor);
  opacity: 1;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

/*====END UTILITIES=====*/

/*===COMPONENT====*/

.button {
  display: inline-block;
  font-size: 14px;
  padding: 0 20px;
  outline: none;
  border: 0;
  border-radius: 25px;
  line-height: var(--btnHeight);
  text-align: center;
}

.button:focus {
  outline: none;
}

.button:hover {
  text-decoration: none;
}

.button.button--sm {
  min-width: 100px;
  line-height: var(--btnSMheight);
}

.button.button--md {
  width: 175px;
}

.button.button--lg {
  width: 200px;
}

.button.button--dark {
  background-color: var(--secondaryDark);
  color: var(--primaryWhite);
}

.button.button--primary {
  background-color: var(--primaryColor);
  color: var(--primaryWhite);
}

.button.button--outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--primaryWhite);
}

.button.button--white {
  background-color: var(--primaryWhite);
  color: var(--primaryDark);
}

.input__field {
  border-radius: 16px;
  background: transparent;
  font-size: var(--fss);
  line-height: 32px;
  height: 32px;
  padding: 0 0.6rem;
  border: 1px solid hsla(0, 0%, 100%, 0.25);
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: hsla(0, 0%, 100%, 0.5);
}

.load__button {
  padding: 10px 15px;
  display: flex;
  justify-content: center;
}

.button-load {
  background-color: #2a2929;
  border: 0;
  padding: 8px 15px;
  display: block;
  width: 150px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.25);
  outline: none;
  font-size: 12px;
  font-weight: 600;
}

.button-load:focus {
  outline: 0;
}

.primaryHeader {
  color: var(--primaryWhite);
  font-size: var(--fslg);
  font-weight: 600;
}

.textInputField {
  width: 100%;
  height: 32px;
  line-height: 32px;
  padding: 0 0.6rem;
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  outline: none;
  background-color: transparent;
  border-radius: 16px;
  color: #fff;
  font-size: var(--fss);
  transition: all 0.2s ease-in-out;
}

.textInputField:focus {
  box-shadow: 0 0 6px 2px rgba(0, 123, 255, 0.25);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hidden_input {
  border: 0;
  background-color: transparent;
  color: var(--primaryColor) !important;
  height: 20px;
  font-size: var(--fsxs);
  padding: 0 0.6rem;
  font-weight: bold;
  -moz-appearance: textfield;
}

.hidden_input__md {
  padding: 0 0.3rem;
  width: 36px;
}

.hidden_input__lg {
  padding: 0 0.3rem;
  width: 60px;
}

.dateTime__picker .vdatetime-popup__header,
.dateTime__picker .vdatetime-calendar__month__day--selected > span > span,
.dateTime__picker
  .vdatetime-calendar__month__day--selected:hover
  > span
  > span {
  background: var(--primaryColor);
}

.dateTime__picker .vdatetime-year-picker__item--selected,
.dateTime__picker .vdatetime-time-picker__item--selected,
.dateTime__picker .vdatetime-popup__actions__button,
.dateTime__picker .vdatetime-month-picker__item--selected {
  color: var(--primaryColor);
}

/*===END COMPONENT====*/

/*=====LandingHeader=====*/

.topNav .navbar-dark .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.topNav .navbar-dark .navbar-nav .nav-link {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 32px;
  padding-top: 0;
  padding-bottom: 0;
}

.topNav .navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

.header__logo {
  height: 44px;
}

/*======START LANDING PAGE======*/

.home-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.home-top-bar .navbar-collapse {
  margin-top: 6px;
}

.dropdown-toggle::after {
  margin-left: 0;
  position: absolute;
  right: 0;
  top: 15px;
}

.home-top-bar .navbar-nav .nav-link.btn {
  background-color: #4a4a4a;
  padding: 10px 20px;
  border-radius: 20px;
  margin-left: 15px;
}

.home-top-bar .navbar-nav .nav-link:hover {
  color: var(--primaryColor);
}

header .bg-dark {
  background: none !important;
}

.home-top-bar .navbar-nav .nav-link {
  font-size: 13px;
  color: #fff;
  padding-right: 12px;
  padding-left: 12px;
}

#banner {
  position: relative;
  /* min-height: 1164px; */
  min-height: calc(100vh - 120px);
  background-image: url(../images/bg@2x.png);
  background-position: center;
  background-size: cover;
}

#banner::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -moz-linear-gradient(
    top,
    rgba(18, 18, 18, 0) 0%,
    rgba(18, 18, 18, 0.98) 93%,
    rgba(18, 18, 18, 1) 95%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(18, 18, 18, 0) 0%,
    rgba(18, 18, 18, 0.98) 93%,
    rgba(18, 18, 18, 1) 95%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0) 0%,
    rgba(18, 18, 18, 0.98) 93%,
    rgba(18, 18, 18, 1) 95%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00121212', endColorstr='#121212', GradientType=0);
  /* IE6-9 */
}

.banner-text {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
}

.banner-text h1 {
  font-size: 48px;
}

.para-text {
  line-height: 22px;
  color: rgba(255, 255, 255, 0.8);
}

#banner .banner-imgbox img {
  position: absolute;
  top: 12%;
  right: 0;
}

#banner .banner-imgbox img + img {
  top: 24%;
  right: 24%;
}

.button.button--white.bt-border {
  background: none;
  border: solid 1px #4a4a4a;
  color: #fff;
}

.button.disabled {
  background-color: #c0c0c0;
  user-select: none;
  pointer-events: none;
}

.home-body-content {
  padding-bottom: 30px;
}

.content-box img {
  margin-left: -10px;
}

.content-box h2 {
  font-size: 32px;
}

.form-control.custom {
  height: 44px;
  line-height: 44px;
  border-radius: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgb(25, 25, 25, 0.5);
  border: 0;
  text-indent: 15px;
}

.circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  text-align: center;
  line-height: 40px;
  border: 0;
}

footer {
  padding: 0.5rem 1rem;
}

.footer_logo {
  height: 32px;
}
.navbar-toggler {
  border: 1px solid #464646;
}

/*======END LANDING PAGE======*/

/*====MEDIA QUERIES=====*/

@media (max-width: 1250px) {
  .content-box h2 {
    font-size: 23px;
  }
  .content-box.pl-5 {
    padding-left: 15px !important;
  }
}

@media (max-width: 1200px) {
  #banner .banner-imgbox img {
    width: 36%;
  }
  #banner .banner-imgbox img + img {
    top: 21%;
    right: 22%;
    width: 25%;
  }
  .banner-text {
    top: 26%;
  }
  .banner-text h1 {
    font-size: 39px;
  }
}

@media (max-width: 991px) {
  .home-top-bar .navbar-collapse {
    background-color: var(--primaryDark);
    padding: 20px;
    border-radius: 5px;
  }
  .navbar-nav.align-items-center {
    align-items: unset !important;
    margin-right: inherit !important;
    width: 100%;
    border-top: solid 1px #464646;
    padding-top: 10px;
  }
  .nav-item.border-left.border-dark {
    border: 0 !important;
  }
  .home-top-bar .navbar-nav .nav-link.btn {
    margin-top: 10px;
  }
  .content-box {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-text {
    position: inherit;
    top: auto;
    padding: 150px 15px;
    text-align: center;
  }
  #banner .banner-imgbox {
    display: none;
  }
  .banner-text .pl-5 {
    padding-left: 15px !important;
  }
}

@media only screen and (max-width: 768px) {
  .customers-records + .customers-records {
    border-left: 0;
  }
  .box__height--activity {
    max-height: 300px;
  }
  .box__height--session {
    min-height: 300px;
  }
  .navbar {
    padding: 0;
  }
}

@media only screen and (max-width: 576px) {
  .login__nav .navContainer {
    padding: 0 20px;
  }
  .login__wrapper {
    max-width: 100%;
  }
  .banner-text {
    padding: 100px 15px;
  }
  .banner-text h1 {
    font-size: 30px;
  }
  .content-box h2 {
    font-size: 20px;
    line-height: 28px;
  }
  footer > div > div {
    margin: 15px auto 0;
  }
  #banner {
    min-height: calc(100vh - 178px);
  }
  .filterReport {
    flex-basis: 50%;
  }
  .exportReport {
    flex-basis: 50%;
  }
}

@media only screen and (max-width: 450px) {
  .header {
    flex-wrap: wrap;
  }
  .header__txt {
    margin-top: 15px;
    display: none;
  }
  #banner .button.button--lg {
    width: auto;
  }
}

/*====END MEDIA QUERIES=====*/
