/* ========== Global css class ============ */
.bg-theme {
  min-height: 100vh;
  background-size: 100% 100%;
  background-size: cover;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.bg-theme1 {
  background-image: url("../img/1.png");
}

.bg-theme2 {
  background-image: url("../img/2.png");
}

.bg-theme3 {
  background-image: url("../img/3.png");
}

.bg-theme4 {
  background-image: url("../img/4.png");
}

.bg-theme5 {
  background-image: linear-gradient(45deg, #29323c, #485563);
}

.bg-theme6 {
  background-image: url("../img/6.png");
}

.bg-glass {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  background-color: rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.45);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.45);
  color: white;
}

.form-control::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: whitesmoke;
}

.form-control::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: whitesmoke;
}

.form-control:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: whitesmoke;
}

.form-control::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: whitesmoke;
}

.form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: whitesmoke;
}

.offcanvas-start {
  width: 280px;
}

.ls-1 {
  letter-spacing: 1px;
}

.text-glass {
  color: rgba(255, 255, 255, 0.65);
}

/* ========== Media Query ============ */
/* For 1366 Resolution */
@media only screen and (min-width: 1030px) and (max-width: 1366px) {
  .w-20 {
    width: 20%;
  }

  .w-80 {
    width: 80%;
  }
}
@media only screen and (max-width: 1200px) {
  .head-search {
    width: 300px !important;
  }
}
@media only screen and (max-width: 600px) {
  /*Big smartphones [426px -> 600px]*/
  .head-search {
    width: 215px !important;
  }
}
/* ========== Content ============ */
.content-box {
  height: 100vh;
  overflow-y: scroll;
}

.head-img {
  width: 35px;
  height: 37px;
}

.when-drop {
  left: -150px !important;
}

.head-search {
  width: 400px;
  font-size: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.125);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-search {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.125);
  border-color: rgba(255, 255, 255, 0.125);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn-search:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
}

.dropdown-item:hover {
  background: #3f3f3f;
}

.btn-theme {
  position: fixed;
  right: 0;
  top: 40%;
  border-radius: 0;
}

.i-rotate {
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.theme-panel .pick-theme {
  cursor: pointer;
  width: 75px;
  height: 75px;
  border: 1px solid white;
  border-radius: 50%;
}

.theme-panel::-webkit-scrollbar {
  width: 3px;
}

.theme-panel::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.theme-panel::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100px;
}

tr {
  border-color: rgba(255, 255, 255, 0.65);
}

.table > :not(caption) > * > * {
  padding-bottom: 15px;
  padding-top: 15px;
}

.btn-control {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.125);
  border-color: rgba(255, 255, 255, 0.125);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 13px;
}
.btn-control:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ========== Sidebar ============ */
.sidebar::-webkit-scrollbar {
  width: 7px;
}

.sidebar::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 100px;
}

.sidebar {
  height: 100vh;
  overflow-y: scroll;
}
.sidebar .menu-title {
  font-size: 13px;
}

.menu-link {
  padding: 12px 0;
  border-left: 3px solid transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.menu-link i, .menu-link span {
  color: rgba(255, 255, 255, 0.65);
}
.menu-link span {
  font-size: 15px;
}
.menu-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.menu-link:hover i, .menu-link:hover span {
  color: #ffffff;
}

.side-active {
  background: rgba(255, 255, 255, 0.15);
  border-left: 3px solid white !important;
  color: white;
}
.side-active i, .side-active span {
  color: #ffffff !important;
}

.mobile-side {
  overflow-y: scroll;
}

.mobile-side::-webkit-scrollbar {
  width: 5px;
}

.mobile-side::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
}

.mobile-side::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100px;
}

/* ========== Login & Register ============ */
.form-input-glass {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.125);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 32px;
}

.login-icon {
  right: 15px;
  top: 11px;
  color: white;
}

.btn-login {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.125);
  border-color: rgba(255, 255, 255, 0.125);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: bold;
}
.btn-login:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ========== Profile ============ */
.cover-img {
  height: 120px;
}

.profile {
  width: 88px;
  height: 90px;
}

.nav-tabs .nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: transparent;
}

.profile-tab {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.profile-tab button {
  color: rgba(255, 255, 255, 0.65);
}

.nav-link:hover {
  color: white;
}