:root {
  --white-color: #ffffff;
  --text-black: #1a1a1a;
  --text-color: #ffffff;
  --bs-primary: #3BACF8;
  --bs-primary-rgb: 59, 172, 248;
  --bs-primary-dark: #0798fa;
  --muted-color: #B4B4B4;
  --bs-border-color: #C5C5C5;
  --bs-border-color-translucent: #4e4e4e;
  --bg-main: #191B22;
  --navbar-bg: #3F4046;
  --theme-alt: #303239;
  --white-btn-border: #ffffff;
  --gray-15: #f5f5f5;
  --bg-element: #3F4046;
  --ct-bg: var(--bg-element);
  --ct-border-color: #495057;
  --ct-hover-color: #393a3b;
  --ct-border-radius: 0.5rem;
  --ct-tree-hover: var(--bg-main);
  --ct-selection: var(--bs-primary);
  --ct-padding: 0.5rem;
  --footer-height: 274.2px;
}

[data-bs-theme=dark] {
  --white-color: #ffffff;
  --text-black: #1a1a1a;
  --text-color: #ffffff;
  --bs-primary: #3BACF8;
  --bs-primary-rgb: 59, 172, 248;
  --bs-primary-dark: #0798fa;
  --muted-color: #B4B4B4;
  --bs-border-color: #C5C5C5;
  --bg-main: #191B22;
  --navbar-bg: #3F4046;
  --theme-alt: #303239;
  --white-btn-border: #ffffff;
  --bg-element: #3F4046;
  --ct-bg: var(--bg-element);
  --ct-border-color: #495057;
  --ct-hover-color: #393a3b;
  --ct-border-radius: 0.5rem;
  --ct-tree-hover: var(--bg-main);
  --ct-selection: var(--bs-primary);
  --ct-padding: 0.5rem;
}

@font-face {
  font-family: LatoRegular;
  src: url("../fonts/Lato/Lato-Regular.ttf");
}
@font-face {
  font-family: Poppins-Bold;
  src: url("../fonts/Lato/Lato-Bold.ttf");
}
@font-face {
  font-family: Orbitron;
  src: url("../fonts/Orbitron-VariableFont_wght.ttf");
}
body {
  margin: 0;
  padding: 0;
  font-family: LatoRegular;
  font-weight: 400;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
  background: var(--bg-main);
}

main {
  width: 100%;
  min-height: calc(100vh - 60px);
}

@media (min-width: 576px) {
  .container {
    max-width: 96%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}
@media (min-width: 1365px) {
  .container {
    max-width: 1340px;
  }
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
  background: #e6e6e6;
}

::-webkit-scrollbar-track {
  border-radius: 12px;
}

::-webkit-scrollbar-track:hover {
  background: #e6e6e6;
}

::-webkit-scrollbar-thumb {
  background: rgba(var(--bs-primary-rgb), 0.75);
  border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--bs-primary-rgb), 1);
}

.text-muted {
  color: var(--muted-color);
}

.text-xs {
  font-size: 12px !important;
}

.text-small {
  font-size: 14px !important;
}

.text-default {
  color: var(--text-color);
}

input,
.form-control,
button,
.form-select,
.btn {
  box-shadow: none !important;
  outline: none !important;
}

.btn,
.form-control,
.form-select {
  border-radius: 4px;
  padding: 9px 20px;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}
.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
  transform: rotateX(0);
  transition: transform 0.1s ease-in;
}
.dropdown-toggle.show::after {
  transform: rotateX(180deg);
}

.dropdown-menu {
  --bs-dropdown-bg: var(--theme-alt);
  border-color: var(--theme-alt);
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.4);
}

.btn.audio_drop {
  padding: 4px 35px 4px 8px;
  font-size: 14px;
}
.btn.audio_drop::after {
  position: absolute;
  left: unset;
  right: 8px;
}

.form-control,
.form-select {
  padding: 9px 10px;
  background: transparent !important;
  color: var(--text-color) !important;
  border-color: var(--bs-border-color);
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  color: var(--text-color);
  opacity: 1;
  /* Firefox */
}
.form-control::placeholder,
.form-select::placeholder {
  color: var(--text-color);
  opacity: 1;
  /* Firefox */
}
.form-control::-ms-input-placeholder,
.form-select::-ms-input-placeholder {
  /* Edge 12-18 */
  color: var(--text-color);
}

.form-control-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}

.main_title {
  font-size: calc(1.375rem + 0.5vw);
  font-weight: 700;
  color: var(--text-color);
}

.max-w-50 {
  max-width: 50px;
}

.max-w-150 {
  max-width: 150px;
}

.max-w-250 {
  max-width: 250px;
}

.max-w-300 {
  max-width: 300px;
}

.max-w-350 {
  max-width: 350px;
}

.max-w-400 {
  max-width: 400px;
}

.max-w-450 {
  max-width: 450px;
}

.max-w-600 {
  max-width: 600px;
}

.form-label {
  color: var(--muted-color);
}

.btn-primary {
  color: #ffffff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:hover, .btn-primary.active, .btn-primary:active, .btn-primary:focus {
  color: #ffffff;
  background-color: var(--bs-primary-dark);
  border-color: var(--bs-primary-dark);
}

.btn-outline-primary {
  color: var(--bs-primary);
  background-color: transparent;
  border-color: var(--bs-primary);
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:hover, .btn-outline-primary.active, .btn-outline-primary:active, .btn-outline-primary:focus {
  color: #ffffff;
  background-color: var(--bs-primary-dark);
  border-color: var(--bs-primary-dark);
}

.btn-white {
  color: var(--bs-primary);
  background-color: #ffffff;
  border-color: var(--white-btn-border) !important;
}
.btn-white:not(:disabled):not(.disabled).active, .btn-white:not(:disabled):not(.disabled):active, .btn-white:hover, .btn-white.active, .btn-white:active, .btn-white:focus {
  color: var(--bs-primary-dark);
  background-color: #ffffff;
  border-color: #ffffff;
}

a {
  cursor: pointer;
  text-decoration: none !important;
  color: var(--bs-primary);
}
a:hover, a.active, a:active {
  color: var(--bs-primary-dark);
}
a.text-link {
  color: var(--bs-primary-dark);
  font-weight: 600;
}
a.text-link:hover, a.text-link.active, a.text-link:active {
  color: var(--bs-primary);
}

button.text-link {
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--bs-primary-dark);
  text-decoration: none;
  font-weight: 600;
}
button.text-link:hover, button.text-link.active, button.text-link:active {
  color: var(--bs-primary);
}

.logo_wrap {
  max-width: 210px;
  display: flex;
}
.logo_wrap img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo_auth {
  width: 100%;
  max-width: 250px;
}
.logo_auth img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.login_left {
  min-height: 100vh;
}

.layout_right {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background-image: url("../img/login_right.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.layout_right.register_bg {
  background-image: url("../img/register_right.jpg");
}

.auth_form {
  max-width: 400px;
  margin: auto;
}
.auth_form.form_md {
  max-width: 500px;
}
.auth_form.form_lg {
  max-width: 600px;
}

.auth_inputs .form-control {
  background: var(--theme-alt) !important;
  border-color: var(--theme-alt) !important;
  padding-top: 10px;
  padding-bottom: 10px;
}
.auth_inputs input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px var(--theme-alt) inset !important;
  -webkit-text-fill-color: #ffffff !important;
}
.auth_inputs input:-moz-autofill {
  box-shadow: 0 0 0 30px var(--theme-alt) inset !important;
  -moz-text-fill-color: #ffffff !important;
}

.togglePassword {
  cursor: pointer;
}

.eye_icon {
  position: absolute;
  right: 0;
  font-size: 18px;
  color: var(--text-color);
}

.form-check {
  padding-left: 24px;
}
.form-check .form-check-input {
  margin-left: -24px;
}

.form-check-input {
  background: transparent;
  border-color: var(--bs-border-color);
  width: 16px;
  height: 16px;
}
.form-check-input[type=checkbox] {
  border-radius: 2px !important;
}
.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.navbar {
  background-color: var(--navbar-bg);
  height: 60px;
  --bs-navbar-color: #ffffff !important;
  --bs-navbar-hover-color: var(--bs-primary);
  --bs-navbar-active-color: var(--bs-primary);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.navbar > .container {
  max-width: unset;
  padding: 0 20px;
  display: flex;
  align-items: center;
  width: 100%;
}
.navbar .navbar-brand {
  padding: 0;
}
.navbar .navbar-brand.logo_sm {
  height: 40px;
}
.navbar .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar .navbar-nav {
  gap: 10px;
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    display: block;
    flex-basis: 100%;
    flex-grow: 1;
    position: fixed;
    width: 300px;
    top: 60px;
    right: 0;
    padding: 30px;
    height: calc(100vh - 60px);
    transform: translateX(350px);
    transition: transform 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.95);
  }
  .navbar .navbar-collapse .nav-link {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse.show {
    transform: translateX(0);
  }
}
.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  transform: translate(-120px, 25px);
  width: 180px;
  min-width: 180px;
}
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    transform: translate(-132px, 25px);
  }
}
.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--theme-alt);
  position: absolute;
  top: -10px;
  right: 10px;
}
.navbar .dropdown-menu .dropdown-item {
  background: transparent;
  color: var(--text-color);
}
.navbar .dropdown-menu .dropdown-item:hover {
  color: var(--bs-primary);
}
@media (max-width: 991px) {
  .navbar .dropdown-toggle {
    background: var(--white-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar .dropdown-toggle .user_name {
    display: none;
  }
}
@media (max-width: 991px) {
  .navbar .dropdown-toggle::after {
    content: "\f4e1";
    color: var(--bg-element);
    margin: 0;
    font-size: 1.5rem;
    margin-left: -4px;
  }
}
@media (max-width: 991px) {
  .navbar .dropdown-toggle.show::after {
    transform: rotateX(0);
  }
}
.navbar .navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}
.navbar .navbar-toggler .navbar-toggler-icon:before, .navbar .navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: "";
  top: -8px;
}
.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}
.navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background: transparent;
}
.navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon:before, .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  top: 0;
  transform: rotate(45deg);
}
.navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.content-section {
  min-height: calc(100vh - 60px);
  padding: 50px 0px;
  margin-top: 60px;
}
.content-section .full_height {
  min-height: calc(100vh - 100px - 60px);
}
.content-section.dual_nav {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.content-section.has_footer {
  min-height: calc(100vh - 60px - var(--footer-height));
}

.pagination button {
  background: var(--bg-main);
  border-color: var(--theme-alt) !important;
  color: var(--text-color) !important;
}
.pagination button:hover {
  background: var(--theme-alt);
}
.pagination button.active {
  background: var(--bs-primary);
}
.pagination .page-item.disabled button {
  background: var(--muted-color);
}
.pagination .page-item.active button {
  background: var(--bs-primary);
}

.card {
  background: var(--theme-alt);
  --bs-card-border-radius: 8px;
}

.table {
  --bs-table-hover-bg: rgba(255, 255, 255, .1);
  --bs-table-hover-color: var(--text-color);
}
.table th,
.table td {
  color: var(--text-color);
}
.table th,
.table td {
  text-align: left !important;
  font-size: 13px;
  vertical-align: middle;
}
.table th .form-check-input,
.table td .form-check-input {
  margin-top: 2px;
}
.table thead th {
  white-space: nowrap;
  font-weight: 900;
  font-size: 15px;
}
.table.table-hover tbody tr {
  cursor: pointer;
}

.dt-container .form-control,
.dt-container .form-select {
  padding: 6px 12px !important;
}
.dt-container .table {
  margin-top: 1rem;
}

.table-responsive .dt-container {
  padding-bottom: 15px;
}

.ct-drop-down-container > ul > li {
  width: calc(100% - 16px);
}

.ct-drop-down-container li span[data-selectable=false].ct-list-item-title.ct-tree-item-hover,
.ct-drop-down-container label.ct-tree-item-hover {
  background-color: var(--ct-hover-color);
}

.ct-drop-down-container input.ct-multiples-filter {
  background: transparent;
}

.ct-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.ct-input-wrapper button {
  display: none;
}
.ct-input-wrapper input {
  padding-right: 30px;
}
.ct-input-wrapper::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  position: absolute;
  right: 10px;
}

.modal {
  --bs-modal-bg: var(--bg-main);
}

.btn-close {
  color: var(--text-color);
  filter: invert(1) grayscale(100%) brightness(200%);
  z-index: 10;
}

.choices {
  min-width: 100px;
  margin-bottom: 0;
  position: relative;
}
.choices[data-type*=select-one]::after {
  content: "\f282";
  border: none;
  font-family: bootstrap-icons !important;
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
  margin-top: 0 !important;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: transform 0.1s ease;
}
.choices[data-type*=select-one].is-open::after {
  transform: rotateZ(180deg);
}
.choices .choices__inner {
  min-height: 43.6px;
  padding: 5px 10px;
  font-size: 1rem;
  border-radius: 4px;
  border-color: var(--bs-border-color);
  background-color: transparent;
}
.choices .choices__inner .choices__input {
  padding: 2px 0 0px 2px;
}
.choices .choices__item {
  padding-right: 0 !important;
}
.choices .choices__item::after {
  display: none;
}
.choices .choices__button {
  font-size: 14px;
  border-left-color: var(--white-color);
  filter: invert(1) grayscale(100%) brightness(200%);
  margin-right: 30px !important;
  opacity: 0.5 !important;
}
.choices .choices__button:hover {
  opacity: 1 !important;
}
.choices .choices__list.choices__list--dropdown {
  border-color: var(--bs-border-color) !important;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em !important;
  background-color: var(--bg-element);
}
.choices .choices__list.choices__list--dropdown .choices__input {
  background: transparent;
  color: var(--text-color);
  border-color: var(--bs-border-color);
}
.choices .choices__list .choices__item:hover, .choices .choices__list .choices__item.is-highlighted {
  background-color: var(--bg-main) !important;
}
.choices .choices__list.choices__list--multiple .choices__item {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  padding-right: 5px !important;
  white-space: nowrap;
}
.choices .choices__list.choices__list--multiple .choices__item .choices__button {
  border-left-color: var(--bs-border-color);
}
.choices .choices__list.choices__list--single {
  padding: 4px 36px 4px 4px;
  font-size: 14px;
}
.choices .choices__list.choices__list--single .choices__item.choices__item--selectable {
  background: transparent !important;
}

.upload_box {
  background-color: var(--theme-alt);
  border: 1px dashed var(--text-color);
  aspect-ratio: 16/8;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.upload_btn {
  border-radius: 8px !important;
  padding: 6px 10px;
}
.upload_btn input {
  position: absolute;
  opacity: 0;
  width: 0;
}
.upload_btn img {
  width: 25px;
}

.uploaded_list_wrap {
  background-color: var(--theme-alt);
  border: 1px solid var(--bs-border-color);
  border-radius: 4px;
}
.uploaded_list_wrap .list_item {
  padding: 6px 10px;
}
.uploaded_list_wrap .list_item:not(:last-child) {
  border-bottom: 1px solid var(--bs-border-color);
}
.uploaded_list_wrap .list_item.list_footer {
  background: var(--theme-alt);
}
.uploaded_list_wrap .list_item > div {
  padding-right: 10px;
}
.uploaded_list_wrap .list_item > div > p {
  white-space: normal;
  word-break: break-word;
}
.uploaded_list_wrap .cross_icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  font-size: 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}
.uploaded_list_wrap .cross_icon:hover {
  color: #ffffff;
  background-color: var(--bs-danger);
}

.convert_file .uploaded_list_wrap {
  border-radius: 0 4px 4px 4px;
}
.convert_file label.add_file .upload_btn {
  background: #F5FBFF !important;
  border-color: #F5FBFF !important;
  color: var(--bs-primary);
  border-radius: 4px 4px 0 0 !important;
}

.search_sm .form-control {
  width: 100%;
  border: 0;
  padding: 6px 10px 6px 33px;
  background: var(--bg-element) !important;
  color: var(--text-color) !important;
}
.search_sm .form-control::-moz-placeholder {
  color: var(--muted-color) !important;
}
.search_sm .form-control::placeholder {
  color: var(--muted-color) !important;
}
.search_sm .form-control ~ .bi {
  position: absolute;
  left: 10px;
  color: var(--muted-color) !important;
}

.sub_header_wrap {
  position: fixed;
  top: 60px;
  width: 100%;
  z-index: 10;
  padding-top: 10px;
  background: var(--bg-main);
}
.sub_header_wrap .sub_header {
  background: #ffffff;
  padding: 5px 0;
  color: #191B22;
  height: 44px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .sub_header_wrap .sub_header {
    height: 74px;
  }
}
.sub_header_wrap .sub_header > .container {
  max-width: unset;
  padding: 0 20px;
  display: flex;
  align-items: center;
  width: 100%;
}
.sub_header_wrap .sub_header .search_sm {
  min-width: 250px;
  max-width: 250px;
}
@media (max-width: 479px) {
  .sub_header_wrap .sub_header .search_sm {
    min-width: calc(100% - 120px);
    max-width: 350px;
  }
}
.sub_header_wrap .sub_header .search_sm .form-control {
  background: #E9E9E9 !important;
  color: #191B22 !important;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
}
.sub_header_wrap .sub_header .search_sm .form-control::-moz-placeholder {
  color: #606060 !important;
}
.sub_header_wrap .sub_header .search_sm .form-control::placeholder {
  color: #606060 !important;
}
.sub_header_wrap .sub_header .search_sm .form-control ~ .bi {
  left: unset;
  right: 10px;
  color: #606060 !important;
}
.sub_header_wrap button {
  border-radius: 4px;
  padding: 4px 20px;
}
.sub_header_wrap .text-truncate {
  max-width: calc(100% - 30px);
}

.sidebar_menu {
  background: #444444;
  width: 250px;
  max-width: 250px;
  min-width: 250px;
  padding: 10px 20px;
  z-index: 99;
  position: fixed;
  top: 114px;
  height: calc(100vh - 114px);
  transform: translateX(-300px);
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .sidebar_menu {
    top: 144px;
    height: 100vh;
    height: calc(100vh - 144px);
  }
}
.sidebar_menu .list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100vh - 174px);
  overflow-y: auto;
  margin-right: -15px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .sidebar_menu .list {
    max-height: calc(100vh - 204px);
  }
}
.sidebar_menu .list a {
  color: #939393;
}
.sidebar_menu .list a:hover, .sidebar_menu .list a.active {
  color: #ffffff;
}
.sidebar_menu.layout_5 {
  top: 60px;
  height: calc(100vh - 60px);
}
.sidebar_menu.layout_5 .list {
  max-height: calc(100vh - 80px);
}

.inner_content {
  max-width: 100%;
  padding: 16px;
  padding-top: 70px;
}
@media (max-width: 991px) {
  .inner_content {
    padding-left: 16px !important;
    padding-top: 100px;
  }
}
.inner_content .icon_group a img {
  width: 20px;
}

.expand_lg .inner_content {
  transition: padding-left 0.3s ease-in-out;
  padding-left: 16px;
}
.expand_lg.sidebar_menu_wrap.show_menu .sidebar_menu {
  transform: translateX(0);
}
.expand_lg.sidebar_menu_wrap.show_menu .inner_content {
  padding-left: 266px !important;
}
@media (max-width: 991px) {
  .expand_lg.sidebar_menu_wrap.show_menu .inner_content {
    padding-left: 16px !important;
  }
}
.expand_lg.sidebar_menu_wrap.show_menu .hide_2nd_btn {
  display: none !important;
}

@media (max-width: 991px) {
  .sidebar_menu_wrap.show_menu .sidebar_menu {
    transform: translateX(0);
  }
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px var(--bg-main) inset !important;
  -webkit-text-fill-color: #ffffff !important;
}

input:-moz-autofill {
  box-shadow: 0 0 0 30px var(--bg-main) inset !important;
  -moz-text-fill-color: unset !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.wrap_rtl {
  direction: rtl;
}

.swal2-container .swal2-popup {
  background: var(--bg-main);
}
.swal2-container .swal2-popup .swal2-title {
  color: var(--text-color);
}
.swal2-container .swal2-popup .swal2-style {
  border-radius: 4px !important;
  padding: 9px 20px;
}
.swal2-container .swal2-popup .swal2-style.swal2-confirm {
  background: var(--bs-primary);
}
.swal2-container .swal2-content {
  color: var(--muted-color);
}

.radio_badge label {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.38);
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.radio_badge input {
  width: 0;
  opacity: 0;
  position: absolute;
}
.radio_badge input:checked ~ label {
  background: var(--bs-primary);
}

.audio_popup {
  width: 100%;
  min-width: 320px;
  padding: 1rem;
}
.audio_popup .audio_input input {
  min-width: 100px;
  max-width: 100px;
  font-size: 14px;
  color: var(--bs-primary) !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
}
.audio_popup .radio_badge label {
  width: 48px;
}

.ingest_tree_open .ct-input-wrapper {
  position: absolute;
  height: 0;
  width: 0;
  transform: translateX(-500px);
}
.ingest_tree_open .ct-drop-down-container {
  display: block !important;
  position: relative;
  background: transparent;
  border: honeydew;
  max-height: unset;
  box-shadow: none !important;
}
.ingest_tree_open .ct-drop-down-container > input.ct-multiples-filter {
  display: none;
}

.syn_add_from {
  background: rgba(0, 0, 0, 0.2);
}
.syn_add_from .top_section input {
  max-width: 200px;
}
.syn_add_from .top_section label {
  width: 45px;
}
.syn_add_from .bottom_section {
  background: var(--bg-element);
}
.syn_add_from .bottom_section label.form-label {
  height: 21px;
}
.syn_add_from .bottom_section .input_sm {
  max-width: 100px;
}
.syn_add_from .bottom_section .input_md {
  max-width: 120px;
}
.syn_add_from .bottom_section select {
  width: 150px;
}
.syn_add_from .bottom_section .btn.close_cross {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal.model_lg .modal-dialog {
  width: 96%;
  max-width: 800px;
}
.modal.model_xl .modal-dialog {
  width: 96%;
  max-width: 992px;
}
.modal .modal-body {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.modal .modal-header,
.modal .modal-footer {
  --bs-modal-header-border-color: var(--bs-border-color-translucent);
  --bs-modal-footer-border-color: var(--bs-border-color-translucent);
}
.modal .has_scroll.modal-body {
  overflow-y: auto;
  max-height: calc(100vh - 200px);
  min-height: 400px;
}
.modal .has_scroll.modal-body.no_footer {
  max-height: calc(100vh - 120px);
  min-height: 400px;
}

@media only screen and (max-width: 991px) {
  .row.custom_row_5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.custom_row_5 > div {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 991px) {
  .row.custom_row_8 {
    margin-left: -8px;
    margin-right: -8px;
  }
  .row.custom_row_8 > div {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.input-group {
  border-radius: 4px;
  overflow: hidden;
}
.input-group .input-group-text {
  border-radius: 5px 0 0 5px;
  padding: 9px 10px;
  background: var(--bs-gray-300) !important;
}
.input-group .input-group-text i {
  color: var(--text-color);
}
.input-group .input-group-text.no_bg {
  background: transparent !important;
}
.input-group-preappend .input-group-text {
  border-radius: 4px 0 0 4px;
}
.input-group-preappend input {
  padding: 0.375rem 0.75rem;
}
.input-group-append .input-group-text {
  border-radius: 0 4px 4px 0;
}
.input-group svg,
.input-group img {
  width: 25px;
  height: 25px;
}
.input-group svg.btn-acc-icon.hide_check,
.input-group img.btn-acc-icon.hide_check {
  z-index: 4;
  background: #fff;
}
.input-group svg g,
.input-group svg path,
.input-group img g,
.input-group img path {
  fill: var(--gray-e9);
}
.input-group.search_box svg,
.input-group.search_box img {
  width: 20px;
  height: 20px;
}
.input-group.search_box.input-group svg path {
  fill: transparent !important;
}

.tempus-dominus-widget .toolbar > div {
  background: var(--bg-element);
}

.right_panel {
  width: 60vw;
  max-width: 600px;
  min-width: 320px;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 999;
  transform: translateX(700px);
  transition: transform 0.3s ease-in-out;
}
.right_panel .card {
  --bs-card-border-radius: 10px;
}
.right_panel .card .card-header {
  border-radius: 10px 0 0 0;
}
.right_panel.folder_list {
  height: calc(100vh - 114px);
  top: 114px;
}
.right_panel.folder_list .has_scroll {
  overflow-y: auto;
  height: calc(100vh - 200px);
}
@media only screen and (max-width: 767px) {
  .right_panel {
    width: 100%;
  }
}
.right_panel .card {
  height: 100%;
}
.right_panel.show {
  transform: translateX(0);
}
.right_panel.close_btn {
  color: var(--white-color);
}

.table_mark_read {
  position: relative;
}
.table_mark_read .table-hover > tbody > tr.bg-warning {
  background-color: #bb931e !important;
}
.table_mark_read .table-hover > tbody > tr.bg-warning > *, .table_mark_read .table-hover > tbody > tr.bg-primary > * {
  color: #000000;
}
.table_mark_read .table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}
.table_mark_read .table-hover > tbody > tr:hover.bg-warning > *, .table_mark_read .table-hover > tbody > tr:hover.bg-primary > * {
  --bs-table-accent-bg: inherit;
  color: #000000;
}

.subs_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 306px;
}
.subs_card .list {
  padding: 10px;
}
.subs_card .list .scroll_list {
  height: 210px;
  overflow-y: auto;
  margin-right: -8px;
  padding-right: 10px;
}
.subs_card .list .scroll_list > div {
  padding: 5px 0;
}
.subs_card .list .scroll_list p {
  font-size: 13px;
}

select.form-select.form-select-sm option {
  background-color: #303239 !important;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 8px solid rgba(255, 255, 255, 0.3);
  border-top: 8px solid #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: animateSpin 1s linear infinite;
}

@keyframes animateSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.dt-length {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dt-length .choices {
  min-width: 70px;
  width: -moz-fit-content;
  width: fit-content;
}
.dt-length .choices .choices__inner {
  padding: 6px 6px;
}
.dt-length .choices .choices__list.choices__list--single {
  padding: 4px 20px 4px 4px;
}

div.dt-scroll-body {
  padding-bottom: 12px;
}

.folder_list_table thead th:nth-child(1) {
  max-width: 33%;
  width: 33%;
}
.folder_list_table thead th:nth-child(2) {
  max-width: 150px;
  width: 150px;
}
.folder_list_table thead th:nth-child(3) {
  max-width: 180px;
  width: 180px;
}
.folder_list_table tbody td {
  border-color: transparent;
}
.folder_list_table tbody td .select_tr:checked {
  border-color: #ffffff;
}
.folder_list_table tbody tr:not(.os_color):hover td {
  background: var(--theme-alt);
}
.folder_list_table tbody tr:not(.os_color).tr_selected td {
  --bs-bg-opacity: .8;
  background: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.folder_list_table.online_status thead th:nth-child(1) {
  min-width: 200px;
  max-width: 200px;
  width: 200px;
}
.folder_list_table.online_status thead th:nth-child(2) {
  min-width: 150px;
  width: unset;
  max-width: unset;
}
.folder_list_table.online_status thead th:nth-child(3) {
  max-width: 180px;
  width: 180px;
}
.folder_list_table.online_status thead th:nth-child(3) {
  max-width: 120px;
  width: 120px;
}
.folder_list_table.online_status thead th:nth-child(4), .folder_list_table.online_status thead th:nth-child(5), .folder_list_table.online_status thead th:nth-child(6) {
  min-width: 180px;
  max-width: 180px;
  width: 180px;
}
.folder_list_table.online_status thead th:last-child {
  max-width: 300px;
  width: 300px;
}
.folder_list_table.online_status tbody tr td {
  white-space: nowrap;
}
.folder_list_table.online_status tbody tr td .subs_expand {
  display: none;
}
.folder_list_table.online_status tbody tr.os_color td {
  color: var(--text-black);
}
.folder_list_table.online_status tbody tr.os_color td span {
  color: var(--text-black);
}
.folder_list_table.online_status tbody tr.show_subs td .subs_expand {
  display: block;
}
.folder_list_table.online_status tbody tr.show_subs .expand_susb {
  transform: rotate(180deg);
  transition: transform 0.2s ease-in-out;
}

.os_color_indi span {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.os_color {
  color: #000000 !important;
}
.os_color.type_1 {
  background: rgb(204, 91, 89);
}
.os_color.type_2 {
  background: rgb(143, 181, 123);
}
.os_color.type_3 {
  background: rgb(236, 204, 145);
}
.os_color.type_4 {
  background: rgb(158, 158, 94);
}
.os_color .form-check-input {
  border-color: var(--white-color) !important;
}

.folder_list_table tbody tr.os_color td .select_tr:checked {
  border-color: var(--bs-primary) !important;
}

.footer_wrap {
  background: #181c27;
}
.footer_wrap ul,
.footer_wrap li {
  padding: 0;
  list-style: none;
}
.footer_wrap span,
.footer_wrap a {
  font-size: 14px;
  font-weight: 900;
  color: var(--white-color);
  display: block;
}
.footer_wrap span.small,
.footer_wrap a.small {
  font-size: 12px;
}
.footer_wrap span.underline,
.footer_wrap a.underline {
  transition: all 0.2s ease-in-out;
  letter-spacing: 0.5px;
}
.footer_wrap a:hover {
  color: var(--bs-primary);
}
.footer_wrap .link_group a {
  margin-bottom: 6px;
}
.footer_wrap h6 {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer_wrap .sub_footer {
  background: rgba(0, 0, 0, 0.7);
}

.inner_scroll {
  max-height: calc(100vh - 194px);
  overflow-y: auto;
  margin-right: -15px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .inner_scroll {
    max-height: calc(100vh - 294px);
  }
}

.banner_section {
  position: relative;
  margin-bottom: 40px;
}
.banner_section::after {
  display: flex;
  content: "";
  width: 100%;
  height: 110px;
  background: linear-gradient(90deg, #1EE0FE 0%, #0674E0 100%);
}
.banner_section .image_grid {
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 0;
  width: 100%;
  max-width: 400px;
}
@media (max-width: 767px) {
  .banner_section .image_grid {
    position: relative;
    bottom: -50px;
  }
}
.banner_section .image_grid > div:first-child {
  width: 64%;
  display: flex;
  justify-content: end;
  padding-top: 10%;
  padding-right: 10px;
}
.banner_section .image_grid > div:first-child > div {
  max-width: 80%;
}
.banner_section .image_grid > div:last-child {
  width: 32%;
}

.shape1 {
  position: absolute;
  width: 140px;
  left: -100px;
  top: 35px;
  z-index: -1;
}
.shape1 img {
  max-width: 100%;
  animation: moveLeftBounce 3s linear infinite;
}

.shape2 {
  position: absolute;
  width: 100px;
  left: 5px;
  top: 100%;
  transform: translateY(-40%);
}
.shape2 img {
  max-width: 100%;
  animation: moveLeftBounce 3s linear infinite;
}

@keyframes moveLeftBounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.sol_card {
  position: relative;
}
.sol_card::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1EE0FE 0%, #0674E0 100%);
  z-index: -1;
  border-radius: 8px;
}
.sol_card .card {
  border-radius: 8px;
  background: var(--white-color);
  color: var(--text-black);
}

.delete_rep {
  min-width: 21px;
}

.logs-section .color_input {
  padding: 2px;
  min-height: 43.6px;
}
.logs-section .input-group {
  flex-wrap: nowrap;
  overflow: unset;
}

.btn_actions .btn_icon {
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.thumb_slides .owl-carousel {
  border-radius: 14px;
  overflow: hidden;
}

.owl-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--bs-primary);
  color: #fff;
  box-shadow: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  display: none !important;
}

.card_effect_1 {
  margin: 0;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 14/9;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.card_effect_1 .img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
.card_effect_1 .carousel_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bs-primary);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  padding: 20px;
}
.card_effect_1 .carousel_content h5 {
  font-size: 2rem;
  font-weight: bold;
  opacity: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.card_effect_1 .carousel_content h5:last-child {
  margin-bottom: 0;
}
.card_effect_1 .carousel_content .audio-player h4,
.card_effect_1 .carousel_content .audio-player h6 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.card_effect_1:hover .carousel_content {
  visibility: visible;
  opacity: 1;
}

.layout_7 .sub_header_wrap {
  position: unset;
  padding-top: 0;
}
.layout_7 .main-wrapper {
  margin-top: 60px;
}
.layout_7 .banner_wrap {
  --banner-height: 100px;
  height: var(--banner-height);
  min-height: 100px;
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.layout_7 .banner_wrap .banner_logo {
  position: absolute;
  top: 20px;
  left: 20px;
}
.layout_7 .banner_wrap .banner_logo .logo_sm {
  display: flex;
  height: 50px;
}
.layout_7 .top_nav_menu {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.layout_7 .top_nav_menu .dropdown-item {
  color: #ffffff;
}
.layout_7 .top_nav_menu .dropdown-item:hover {
  color: var(--text-black);
}
.layout_7 .top_nav_menu a {
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.layout_7 .top_nav_menu a:hover {
  color: var(--bs-primary);
}
.layout_7.has_top_nav .navbar {
  position: fixed;
  top: 0;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.layout_7.folder_list .main-wrapper {
  margin-top: 0;
  min-height: calc(100vh - 60px - var(--banner-height));
}
.layout_7.folder_list .main-wrapper .content-section {
  margin-top: 0;
  min-height: calc(100vh - 60px - var(--banner-height));
}
.layout_7.folder_list .banner_wrap {
  margin-top: 60px;
}
.layout_7.folder_list .sidebar_menu {
  top: calc(114px + var(--banner-height));
  height: calc(100vh - 114px - var(--banner-height));
}
.layout_7.folder_list .sidebar_menu .list {
  max-height: calc(100vh - 174px - var(--banner-height));
}
.layout_7.folder_list .inner_content {
  padding-top: 1rem !important;
}
.layout_7.folder_list .inner_content .inner_scroll {
  max-height: calc(100vh - 184px - var(--banner-height));
}
.layout_7.folder_list.full_scroll .inner_content {
  padding: 16px !important;
}
.layout_7.folder_list.full_scroll .inner_content {
  width: 100%;
}
.layout_7.folder_list.full_scroll .inner_scroll {
  max-height: unset;
  overflow-y: unset;
}
.layout_7.folder_list.full_scroll .sidebar_menu {
  height: calc(100vh - 60px);
  position: fixed;
  top: 60px;
}
@media (min-width: 992px) {
  .layout_7.folder_list.full_scroll .sidebar_menu {
    display: none;
    position: sticky;
    top: 60px;
  }
}
.layout_7.folder_list.full_scroll .sidebar_menu .list_scroll {
  max-height: calc(100vh - 175px);
  overflow-y: auto;
  margin-right: -15px;
  padding-right: 15px;
}
.layout_7.folder_list.full_scroll .sidebar_menu .list_scroll .list {
  max-height: unset !important;
  overflow-y: unset;
  margin-right: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .layout_7.folder_list.full_scroll .show_menu .sidebar_menu {
    display: block;
  }
}
@media (min-width: 992px) {
  .layout_7.folder_list.full_scroll .show_menu .inner_content {
    width: calc(100% - 250px);
  }
}

.media_player {
  --barHeight: 80px;
  padding-top: var(--barHeight);
  min-height: 100vh;
}
.media_player .header_wrap {
  min-height: var(--barHeight);
  background: var(--bg-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.media_player .logo_img {
  max-width: 70%;
  max-height: 300px;
  padding: 20px;
}
.media_player .list_section {
  min-height: 390px;
}
.media_player .list_section .audio_item_list > div:first-child {
  min-width: 20px;
}
.media_player .media_img {
  min-width: 50px !important;
  width: 50px;
  aspect-ratio: 1;
}
.media_player .image_icon {
  min-width: 50px;
  min-height: 50px;
  display: flex;
  justify-content: flex-start;
}
.media_player img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}
.media_player .player_box:after {
  content: "";
  background: #202A6C;
  opacity: 0.9;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
}
.media_player .content_overlay {
  z-index: 3;
}
.media_player .weather_box > div {
  background: rgba(0, 46, 105, 0.4784313725) !important;
  -webkit-backdrop-filter: blur(19.6000003815px);
          backdrop-filter: blur(19.6000003815px);
}
.media_player .footer_bg {
  min-height: var(--barHeight);
  background-color: rgba(39, 0, 29, 0.659);
  width: 100%;
  align-self: end;
}
.media_player .middle_bar {
  min-height: var(--barHeight);
}
.media_player .text_shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
  font-weight: 600;
}
.media_player h5.text_shadow {
  font-size: 6rem;
}

.card_one {
  min-height: 350px;
  overflow: hidden;
  display: flex;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  flex: 1;
  width: 100%;
}
.card_one.type_2 {
  background-size: contain;
  background-color: rgba(0, 0, 0, 0.5);
}

.media_icon {
  color: var(--icon-color);
  display: flex;
  align-items: center;
}
.media_icon.type_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.media_icon svg {
  fill: #ffffff;
}
.media_icon.type_2 {
  border-color: var(--icon-color, #ffffff);
}
.media_icon.type_2 i {
  color: var(--icon-color, #ffffff);
}
.media_icon.type_2 svg {
  fill: var(--icon-color, #ffffff);
}
.media_icon.type_2 svg path {
  fill: var(--icon-color, #ffffff);
}

.audio-player {
  /* Chrome, Safari, Edge - Thumb (slider knob) */
  /* Firefox - Thumb */
}
.audio-player .play-btn {
  width: 80px;
  height: 80px;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--icon-color, #ffffff);
}
.audio-player .play-btn i {
  color: var(--icon-color, #ffffff);
}
.audio-player .play-btn.play-sm {
  width: 60px;
  height: 60px;
  font-size: 2rem;
}
.audio-player #seekBar {
  flex-grow: 1;
  -webkit-appearance: none;
  height: 5px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff var(--value), #B1B1B1 var(--value), #B1B1B1 100%);
  border-radius: 5px;
}
.audio-player #seekBar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}
.audio-player .vol_btn_wrap {
  width: 100%;
  justify-content: center;
  align-items: end;
  display: flex;
}
.audio-player #volumeBar {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  max-width: 100px;
  height: 4px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff var(--value), #B1B1B1 var(--value), #B1B1B1 100%);
  /* Track color */
  border-radius: 5px;
  outline: none;
  transition: opacity 1s;
  opacity: 0.9;
  width: 100%;
}
@media (min-width: 576px) {
  .audio-player #volumeBar {
    width: 10%;
    opacity: 0;
  }
}
.audio-player #volumeBar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #ffffff;
  /* Thumb color */
  border-radius: 50%;
  cursor: pointer;
}
.audio-player #volumeBar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}
.audio-player .vol_btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: calc(50% - 40px);
  max-width: 100%;
  transform: translateX(40px);
}
.audio-player .vol_btn:hover #volumeBar {
  width: 100%;
  opacity: 0.9;
}

.card_effect_1:not(.playing) .carousel_content .audio-player {
  display: none !important;
}
.card_effect_1.playing .carousel_content {
  visibility: visible;
  opacity: 1;
  background: transparent;
}
.card_effect_1.playing .carousel_content::after {
  content: "";
  background: #202A6C;
  opacity: 0.9;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
}
.card_effect_1.playing .carousel_content h5 {
  display: none;
  opacity: 0;
}
.card_effect_1 .media_wrap {
  width: 100%;
  z-index: 3;
}

.player_wrap {
  max-width: unset;
  background: var(--bg-color);
  border-radius: 16px;
  --playerHeight: 350px;
}
.player_wrap .audio-player #volumeBar {
  opacity: 0.9;
  width: 100%;
  max-width: 80px;
}
.player_wrap .card_one {
  border-radius: 16px;
  min-height: calc(var(--playerHeight) - 2rem);
}
.player_wrap .logo_img {
  margin: 10px;
  max-width: calc(100% - 20px);
  -o-object-fit: contain;
     object-fit: contain;
}

.volume-bars {
  display: flex;
  align-items: end;
  gap: 2px;
}
.volume-bars .bar {
  cursor: pointer;
  width: 5px;
  height: 10px;
  background: rgba(158, 157, 157, 0.5);
  border-radius: 2px;
  transition: background 0.2s, height 0.2s;
}
.volume-bars .bar.active {
  background: var(--icon-color, #ffffff);
  /* Active volume bars */
}
.volume-bars .bar:nth-child(1) {
  height: 4px;
}
.volume-bars .bar:nth-child(2) {
  height: 8px;
}
.volume-bars .bar:nth-child(3) {
  height: 12px;
}
.volume-bars .bar:nth-child(4) {
  height: 16px;
}
.volume-bars .bar:nth-child(5) {
  height: 20px;
}

.slider_custom {
  position: relative;
  margin-bottom: 10p;
}
.slider_custom .slider_btn {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: transform ease-in-out 0.2s;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #ffffff;
  border: 0;
  left: 24px;
  z-index: 3;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.slider_custom .slider_btn.hide {
  opacity: 0.5;
}
.slider_custom .slider_btn:hover:not(.hide) {
  transform: translateY(-50%) scale(1.25);
  background: rgba(0, 0, 0, 0.8);
}
.slider_custom .slider_btn.home_n_btn {
  left: unset;
  right: 24px;
}
.slider_custom .scroll_container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.slider_custom .scroll_row {
  display: flex;
  white-space: nowrap;
  padding: 20px;
  gap: 20px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
}
.slider_custom .scroll_row::-webkit-scrollbar {
  display: none;
}
.slider_custom .scroll_row::after {
  content: "";
  flex: 0 0 300px;
}
.slider_custom .button_container {
  flex: 0 0 auto;
  width: 390px;
  aspect-ratio: 14/9;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  max-width: 70vw;
}

.thumbs_screen {
  padding-bottom: 40px;
}
.thumbs_screen > h4 {
  padding: 20px 20px 0;
}

.stream_list .card {
  min-height: 140px;
  justify-content: space-between;
}
.stream_list .card .bi-broadcast {
  top: 12px;
}
.stream_list .card .bottom_btn {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.stream_list .card .stream-arrow {
  aspect-ratio: 1;
  width: 20px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white-color);
  color: var(--text-black);
  border-radius: 50%;
  margin-left: 6px;
}

.streams_dashboard .progress {
  --bs-progress-height: 5px;
}
.streams_dashboard .list-section .card {
  height: 100%;
}
.streams_dashboard .list-section .card .card-header {
  height: 56px;
}
.streams_dashboard .list-section .card .list-group li {
  background: transparent;
  color: inherit;
}

.trunc_2lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clock_body {
  background-color: var(--bg-clock-body);
  min-height: 100vh;
}
.clock_body .clock_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* Digital Time and Date Styles */
}
.clock_body .clock_wrap .clock {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: var(--clock-dial);
  border: 8px solid var(--clock-bezal);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.clock_body .clock_wrap .clock::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--clock-seconds);
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}
.clock_body .clock_wrap .clock .custom_dial {
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  position: absolute;
  left: -30px;
  top: -30px;
}
.clock_body .clock_wrap .clock .custom_dial > div {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: absolute;
  left: calc(50% - 8.25px);
}
.clock_body .clock_wrap .clock .custom_dial > div .custom_dial_number {
  position: relative;
}
.clock_body .clock_wrap .clock .custom_dial > div .custom_dial_number::before {
  content: "";
  width: 2px;
  height: 12px;
  position: absolute;
  top: 34px;
  left: 50%;
  background: var(--clock-minutes);
}
.clock_body .clock_wrap .clock .custom_dial > div .custom_dial_number:last-child::before {
  top: unset;
  bottom: 34px;
}
.clock_body .clock_wrap .clock .custom_dial > div:nth-child(2) {
  transform: rotate(30deg);
}
.clock_body .clock_wrap .clock .custom_dial > div:nth-child(3) {
  transform: rotate(60deg);
}
.clock_body .clock_wrap .clock .custom_dial > div:nth-child(4) {
  transform: rotate(90deg);
}
.clock_body .clock_wrap .clock .custom_dial > div:nth-child(5) {
  transform: rotate(-60deg);
}
.clock_body .clock_wrap .clock .custom_dial > div:nth-child(6) {
  transform: rotate(-30deg);
}
.clock_body .clock_wrap .marker {
  position: absolute;
  transform: rotate(var(--rotation)) translateY(-119px);
  font-size: 12px;
  color: var(--clock-minutes);
  font-weight: bold;
}
.clock_body .clock_wrap .hand {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.clock_body .clock_wrap .hand#hour, .clock_body .clock_wrap .hand#min {
  --clr: var(--clock-minutes) ;
}
.clock_body .clock_wrap .hand#sec {
  --clr: var(--clock-seconds) ;
}
.clock_body .clock_wrap .hand i {
  position: absolute;
  background-color: var(--clr);
  width: 4px;
  height: var(--h);
  border-radius: 8px;
}
.clock_body .clock_wrap .digital-time {
  min-width: 325px;
}
@media (min-width: 1365px) {
  .clock_body .clock_wrap .digital-time {
    min-width: 400px;
  }
}
.clock_body .clock_wrap .digital-time #time,
.clock_body .clock_wrap .digital-time #time_sec,
.clock_body .clock_wrap .digital-time #time_between {
  color: var(--digital-clock);
  font-size: 50px;
  font-family: Orbitron;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 1365px) {
  .clock_body .clock_wrap .digital-time #time,
  .clock_body .clock_wrap .digital-time #time_sec,
  .clock_body .clock_wrap .digital-time #time_between {
    font-size: 65px;
  }
}
.clock_body .clock_wrap .digital-time #time_sec {
  font-size: 30px;
  margin-bottom: 5px;
}
@media (min-width: 1365px) {
  .clock_body .clock_wrap .digital-time #time_sec {
    font-size: 40px;
  }
}
.clock_body .clock_wrap .digital-time #time_between {
  font-size: 20px;
  margin-bottom: 10px;
}
@media (min-width: 1365px) {
  .clock_body .clock_wrap .digital-time #time_between {
    font-size: 25px;
  }
}
.clock_body .clock_wrap .digital-time #date {
  font-size: 16px;
  color: var(--digital-clock);
  display: none;
}
.clock_body .station_logo {
  width: 100%;
  max-width: 250px;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 10px auto;
  display: flex;
}

.clock_card {
  cursor: pointer;
  border: 0;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.5);
}
.clock_card p, .clock_card h6 {
  margin: 0;
  color: #ffffff;
}

#mapClock {
  height: 300px;
  width: 100%;
}
#mapClock .gm-ui-hover-effect {
  width: 30px !important;
  height: 30px !important;
  position: absolute !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  right: 0;
}
#mapClock .gm-ui-hover-effect > span {
  margin: 0 !important;
}
#mapClock .custom-info-window {
  color: var(--text-black);
  max-width: 260px;
}
#mapClock .custom-info-window h6 {
  font-size: 18px;
}
#mapClock .custom-info-window p {
  font-size: 15px;
}

.infoDetails {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  background: #0559AD;
  color: #fff;
  text-align: center;
  border-radius: 100%;
  margin-left: 10px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.custom_badge {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.custom_badge.size_lg {
  width: 20px;
  height: 20px;
}

.clock_settiongs_btn {
  bottom: 25px;
  right: 25px;
  position: fixed;
}
.clock_settiongs_btn button {
  background: rgba(var(--bs-primary-rgb), 0.75);
  border: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav {
  --bs-nav-pills-link-active-bg: var(--bs-primary);
  --bs-nav-pills-link-active-color: #ffffff;
  --bs-nav-link-color: var(--bs-primary);
  --bs-nav-link-hover-color: var(--bs-primary-dark);
}/*# sourceMappingURL=style.css.map */