/*====================================================================
Template Name   : EnoFlix Admin
Description     : Movies, TV Shows And Video Streaming Admin
Author          : OCIA INC
Version         : 1.0
=======================================================================*/


/*=====================================================
Table of contents
=======================================================
1. Google fonts
2. Theme variables
3. General css
4. Theme default css
5. Margin & padding
6. Preloader
7. Bs custom css
8. Action btn css
9. Nice select css
10. SlimSelect css
11. Theme button
12. Custom scroll bar css
13. Sidebar css
14. Page content css
15. Header top css
16. Breadcrumb css
17. Widget css
18. Chart & map custom css
19. Fullcalendar css
20. Flatpickr css
21. Quill text editor
22. Sweetalert css
23. User css
24. Movie css
25. Comment & review css
26. Video css 
27. Actor css 
28. Team css 
29. Testimonial css 
30. Subscription css 
31. Transaction css 
32. Pricing css 
33. Message css 
34. Chat css 
35. Blog css 
36. Social css 
37. Payout css 
38. Invoice css 
39. Referral css 
40. Copy text css 
41. Billing css 
42. Support css 
43. Notification css
44. File upload css 
45. Pagination css 
46. Error css
47. Auth css 
48. Footer css
=======================================================*/


/*====================
1. Google fonts
======================*/

/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&amp;display=swap');*/
@import url('variables.css');


/*====================
2. Theme variables
======================*/

:root {
  --body-font: var(--enoroidai-body-font);
  --body-bg: #F0F6FB;
  --body-text-color: #708FAC;
  --theme-color: #FFA700;
  --theme-color2: #008ff0;
  --theme-bg: #FFFFFF;
  --theme-bg2: #F0F6FB;
  --theme-bg3: #071743;
  --theme-bg-light: rgb(240, 246, 251, .6);
  --theme-color-light: rgb(121, 193, 66, .2);
  --color-white: #FFFFFF;
  --color-dark: #072643;
  --color-green: #14CC98;
  --color-red: #FA5C7C;
  --color-blue: #3E97FF;
  --color-yellow: #E9960E;
  --color-purple: #7167FF;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(112, 142, 171, .25);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --footer-bg: #072643;
}

.theme-mode-variables{
  --body-bg: #041931;
  --color-dark: #FFFFFF;
  --theme-bg: #072643;
  --theme-bg2: #072643;
  --theme-bg-light: rgb(39, 68, 97, .5);
  --body-text-color: #708FAC;
}



/*====================
3. General css
======================*/

html {
  font-size: clamp(14px, 0.9vw, 16px);
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  /*box-sizing: border-box;*/
}

body {
  background: var(--body-bg);
  font-family: var(--body-font);
  font-style: normal;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
}

a {
  color:  var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark);
  margin: 0px;
  font-weight: 500;
  font-family: var(--body-font);
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}



/*===================
4. Theme default css
======================*/

.ovrflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
  z-index: 1;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background: var(--theme-bg-light);
}

.bg2 {
  background: var(--theme-bg3);
}

.bg3 {
  background: var(--theme-bg2);
}



/*====================
5. Margin & padding
======================*/

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.py-80 {
  padding: 80px 0;
}

.py-90 {
  padding: 90px 0;
}

.py-100 {
  padding: 100px 0;
}

.py-110 {
  padding: 110px 0;
}

.py-120 {
  padding: 120px 0;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.my-80 {
  margin: 80px 0;
}

.my-90 {
  margin: 90px 0;
}

.my-100 {
  margin: 100px 0;
}

.my-110 {
  margin: 110px 0;
}

.my-120 {
  margin: 120px 0;
}




/*====================
6. Preloader
======================*/

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--theme-bg3);
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-ripple div {
  position: absolute;
  border: 4px solid var(--color-white);
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}





















/*====================
7. Bs custom css
======================*/

/* custom form */
.form-group {
  margin-bottom: px;
}

.form-group .form-label{
  color: var(--body-text-color);
  font-size: 14px;
  font-weight: 500;
}

.form-group .form-text{
  color: var(--body-text-color);
}

.form-group .form-label span{
  color: var(--color-red);
  margin-left: 5px;
}

.form-group .form-control,
.form-group .form-select{
  padding: 11px 15px 11px 15px;
  border-radius: 10px;
  background-color: var(--body-bg);
  color: var(--color-dark);
  border: 1px solid var(--border-info-color);
  border-color: var(--border-info-color);
}

.form-group .form-control::placeholder{
  color: var(--body-text-color);
}

.form-group .form-control:focus,
.form-group .form-select:focus{
  border-color: var(--theme-color);
  box-shadow: 0 0 0 .25rem var(--theme-color-light);
}

.form-group .form-icon{
  position: relative;
}

.form-group .form-icon i{
  position: absolute;
  top: 16px;
  left: 15px;
  color: var(--theme-color);
  z-index: 1;
}

.form-group .form-icon .form-control,
.form-group .form-icon .form-select{
  padding-left: 40px;
}

.form-file .form-control::file-selector-button{
  padding: 5px 10px;
  border-radius: 8px;
  background-color: var(--theme-color) !important;
  color: var(--color-white);
}

.form-file .form-control{
  padding-left: 18px;
}

.form-file .form-icon i{
  left: unset;
  right: 15px;
}

.form-file .form-icon .form-control{
  padding-left: 18px;
}

.form-check{
  margin-bottom: 20px;
}

.form-check .form-check-input{
  border-radius: 6px;
  margin-top: 6.5px;
  border-color: var(--border-info-color);
  background-color: var(--body-bg);
}

.form-check .form-check-label{
  color: var(--color-dark);
}

.form-check .form-check-input:checked{
  background-color: var(--theme-color);
  border-color: var(--theme-color)
}

.form-check .form-check-input:focus{
  border-color: var(--theme-color);
  box-shadow: 0 0 0 .25rem var(--theme-color-light);
}

.form-check.form-switch .form-check-input{
  border-radius: 50px;
}

.form-check.form-switch .form-check-label{
  color: var(--body-text-color);
}

/* dropdown */
.dropdown-menu{
  background: var(--theme-bg);
  border-radius: 15px;
  border: 1px solid var(--border-info-color);
  padding: 5px;
}

.dropdown-menu .dropdown-item{
  color: var(--color-dark);
  border-radius: 10px;
  padding: 6px 15px;
}

.dropdown-menu .dropdown-item:hover{
  background: var(--theme-bg-light);
  color: var(--theme-color);
}

.dropdown-menu .dropdown-item i{
  width: 25px;
  color: var(--theme-color);
}

.dropdown-menu.fade-up{
  animation: fade-up 0.5s ease;
}

.dropdown-menu .dropdown-divider{
  border-top-color: var(--border-info-color);
}

@keyframes fade-up {
  from {
    transform: translateY(6%);
  }

  to {
    transform: translateY(0);
  }
}

/* card */
.enoroidai-FeaturedTile{
  background: var(--theme-bg);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 34px; /* adjust 28–44px */
  border-color: var(--border-info-color);
}

.enoroidai-FeaturedTile:last-child{
  margin-bottom: 0;
}

.enoroidai-FeaturedTile .enoroidai-FeaturedTile-title{
  color: var(--color-dark);
  font-size: 18px;
}

.enoroidai-FeaturedTile-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 0 15px 0;
  margin-bottom: 15px;
  background: transparent;
  border-radius: 0;
  border-bottom-color: var(--border-info-color);
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-title{
  color: var(--color-dark);
  font-size: 16px;
  margin-bottom: 0;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action .form-group .form-control{
  padding: 8px 15px 8px 15px;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action .nice-select{
  height: 42px;
  line-height: 41px;
  padding: 0 35px 0 12px;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action .nice-select .option{
  padding: 0 10px;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action .nice-select::after{
  right: 15px;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action .show-item .nice-select{
  min-width: 68px;
  padding-left: 12px;
  padding-right: 12px;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action .show-item .nice-select .option{
  padding-left: 11px;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action .sort-item .nice-select{
  min-width: 100px;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action .nice-select,
.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action .enoroidai-FeaturedTile-search .form-group{
  margin-bottom: 0;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action .form-group .form-icon .form-control{
  padding: 8px 15px 8px 38px;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action .form-group .form-icon i{
  top: 13px;
  left: 13px;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action-btn{
  background: var(--theme-bg2);
  color: var(--color-dark);
  padding: 6px 15px;
  border-radius: 10px;
  border: 1px solid var(--border-info-color);
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action-btn i{
  color: var(--theme-color);
  margin-right: 5px;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action-btn.icon-btn{
  width: 40px;
  height: 40px;
  padding: 0;
}

.enoroidai-FeaturedTile-header .enoroidai-FeaturedTile-action-btn.icon-btn i{
  margin-right: 0px;
}

.enoroidai-FeaturedTile-header .filter-item .dropdown-menu,
.enoroidai-FeaturedTile-header .export-item .dropdown-menu{
  min-width: 280px;
  padding: 20px;
}

.enoroidai-FeaturedTile-header .enoroidai-btn{
  padding: 8px 12px;
}

.enoroidai-FeaturedTile-header .icon{
  background: transparent;
  box-shadow: none;
  color: var(--body-text-color);
  font-size: 20px;
}

.enoroidai-FeaturedTile-body{
  /*display: flex;
  flex-direction: column;*/
  padding: 0;
}

.enoroidai-FeaturedTile-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px 0 0 0;
  margin-top: 20px;
  background: transparent;
  border-radius: 0;
  border-top-color: var(--border-info-color);
}

/* table */
.table-modern .table{
  white-space: nowrap;
  border-collapse: separate;
  border-spacing: 0px 8px;
  margin-bottom: 0;
}

/* allow wrapping by default */
.table-modern .table th,
.table-modern .table td{
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table-modern .table>:not(caption)>*>*{
  background: var(--body-bg);
  color: var(--body-text-color);
  /*padding-left: 16px;*/
  padding: 10px 10px;
  vertical-align: middle;
}

.table-modern .table tr th{
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .2px;
}

.table-modern .table tr th:first-child,
.table-modern .table tr td:first-child{
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.table-modern .table tr th:last-child,
.table-modern .table tr td:last-child{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.table-modern .table .table-text{
  color: var(--body-text-color);
  font-size: 15px;
}

.table-modern.table-responsive .dropdown {
  position: static !important;
}


@media (min-width: 1199px) {
  .table-modern.table-responsive {
    overflow-x: visible;
  }
}

/* badge */
.badge{
  font-size: 12px;
  letter-spacing: 0.4px;
  padding: 4px 8px;
  border-radius: 50px;
  font-weight: 500;
  display:inline-flex;
  align-items:center;
  line-height: 1;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.badge-success{
  background: rgba(20, 204, 152, .2);
  color: var(--color-green);
}

.badge-primary{
  background: rgba(62, 151, 255, .2);
  color: var(--color-blue);
}

.badge-info{
  background: rgba(113, 103, 255, .2);
  color: var(--color-purple);
}

.badge-warning{
  background: rgba(254, 176, 25, .2);
  color: var(--color-yellow);
}

.badge-danger{
  background: rgba(250, 92, 124, .2);
  color: var(--color-red);
}

.badge--muted{ opacity:.8; 
}

/* Semantic aliases → real colors */

/* Published / Live */
.badge--ok{
  background: rgba(20, 204, 152, .2);
  color: var(--color-green);
}

/* Featured / Hero */
.badge--hero{
  background: linear-gradient(
    135deg,
    rgba(255, 184, 0, .35),
    rgba(255, 122, 0, .25)
  );
  color: #ffb800;
  border-color: rgba(255, 184, 0, .35);
  box-shadow: 0 0 0 1px rgba(255,184,0,.15) inset;
}

/* Premiere / Coming Soon / Now Premiering */
.badge--prem{
  background: rgba(113, 103, 255, .25);
  color: var(--color-purple);
  border-color: rgba(113, 103, 255, .35);
}

/* Optional: make premiere badges pulse slightly */
.badge--prem.is-live{
  animation: premPulse 1.8s ease-in-out infinite;
}

@keyframes premPulse{
  0%   { box-shadow: 0 0 0 0 rgba(113,103,255,.45); }
  70%  { box-shadow: 0 0 0 6px rgba(113,103,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(113,103,255,0); }
}

/* nav pills tab */
.nav-pills{
  gap: 25px;
  border-bottom: 1px solid var(--border-info-color);
}

.nav-pills .nav-link{
  padding: 0 0 12px 0;
  border-radius: 0;
  position: relative;
  color: var(--body-text-color);
}

.nav-pills .nav-link:hover{
  color: var(--theme-color);
}

.nav-pills .nav-link.active{
  background: transparent;
  color: var(--theme-color);
}

.nav-pills .nav-link.active::before{
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  border-bottom: 2px solid var(--theme-color);
  border-radius: 50px;
}


/* modal */
.modal-close{
  position: absolute;
  right: -10px;
  top: -10px;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background: var(--theme-color2);
  border: none;
  color: var(--color-white);
}

.modal-content{
  border-radius: 30px;
  border: none;
  background: var(--theme-bg);
  padding: 20px;
  overflow: unset !important;
}

.modal-header{
  padding: 0 0 10px 0;
  border-bottom: 1px solid var(--border-info-color);
}

.modal-body{
  padding: 20px 0;
}

.modal-footer{
  padding: 10px 0 0 0;
  border-top: 1px solid var(--border-info-color);
}

/* tooltip */
.tooltip {
  --bs-tooltip-bg: var(--theme-color2);
  --bs-tooltip-color: var(--color-white);
}

/* offcanvas */
.offcanvas{
  background: var(--theme-bg);
}

.offcanvas-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-info-color);
  padding-top: 13px;
  padding-bottom: 13px;
}

.offcanvas-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-info-color);
  padding: 20px 15px;
}

.offcanvas-header .btn-close{
  width: 35px;
  height: 35px;
  background: var(--body-bg);
  color: var(--color-dark);
  border-radius: 50px;
  border: none;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}

/*=========================
8. Action btn css
===========================*/

/* action-btn */
.action-btn-group{
  display: flex;
  gap: 10px;
}

.action-btn-group .btn{
  width: 28px;
  height: 28px;
  line-height: 28px;
  padding: 0;
  text-align: center;
}

.action-btn .btn{
  color: var(--body-text-color);
  border: none;
  border-radius: 10px;
  padding: 0 5px;
}

.action-btn .btn-success{
  background: var(--color-green);
  color: var(--color-white);
}

.action-btn .btn-primary{
  background: var(--color-blue);
  color: var(--color-white);
}

.action-btn .btn-info{
  background: var(--color-info);
  color: var(--color-white);
}

.action-btn .btn-danger{
  background: var(--color-red);
  color: var(--color-white);
}

.action-btn .dropdown-menu{
  min-width: 130px;
}

.action-btn .dropdown-menu .dropdown-item{
  font-size: 14px;
  padding: 4px 10px;
}


/*====================
9. Nice select css
======================*/

.nice-select{
  width: 100%;
  height: 48px;
  line-height: 46px;
  border-radius: 10px;
  font-size: 16px;
  color: var(--color-dark);
  background: var(--body-bg);
  margin-bottom: 20px;
  border-color: var(--border-info-color)!important;
}

.nice-select::after{
  width: 9px;
  height: 9px;
  right: 20px;
  margin-top: -6.5px;
  border-color: var(--body-text-color);
}

.nice-select:focus{
  border-color: var(--theme-color)!important;
  box-shadow: 0 0 0 .25rem var(--theme-color-light);
}

.nice-select .list{
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  padding: 12px;
  border-radius: 15px;
  background: var(--theme-bg);
  border: 1px solid var(--border-info-color);
  box-shadow: none;
}

.nice-select .option.selected{
  font-weight: 500;
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
  border-radius: 10px;
  background: var(--theme-bg-light);
  color: var(--theme-color);
}

.form-icon .nice-select{
  padding-left: 40px;
}


/*====================
10. SlimSelect css
======================*/

.ss-main{
  min-height: 48px;
  border-radius: 10px;
  background: var(--body-bg);
  padding-left: 15px;
  margin-bottom: 20px;
  border-color: var(--border-info-color);
}

.ss-main:focus{
  box-shadow: none;
}

.ss-main .ss-arrow{
  width: 14px;
  height: 14px;
  margin-right: 7px;
  color: var(--color-dark);
}

.ss-main .ss-values .ss-placeholder{
  color: var(--body-text-color);
}

.ss-main .ss-arrow path{
  stroke: var(--body-text-color);
  stroke-width: 15px;
}

.form-icon .ss-main{
  padding: 10px 10px 10px 40px;
}

.ss-content{
  border-color: var(--border-info-color);
  padding: 10px 20px;
  background: var(--theme-bg);
}

.ss-content.ss-open-above{
  border-radius: 10px 10px 0 0;
}

.ss-content.ss-open-below{
  border-radius: 0 0 10px 10px ;
}

.ss-content .ss-search{
  border-radius: 15px;
  padding-left: 0;
  padding-right: 0;
}

.ss-content .ss-list .ss-option{
  color: var(--color-dark);
  padding: 5px 0;
  border-radius: 10px;
}

.ss-content .ss-list .ss-option:hover{
  background: transparent;
  color: var(--theme-color);
}

.ss-content .ss-search input{
  border-radius: 10px;
  border: 1px solid var(--border-info-color);
  background: var(--body-bg);
  color: var(--body-text-color);
  padding: 6px 15px;
}

.ss-content .ss-search input:focus{
  box-shadow: none;
}

.ss-content .ss-search input::placeholder{
  color: var(--body-text-color);
}

.ss-content .ss-list .ss-option.ss-highlighted, 
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  color: var(--theme-color);
  background-color: transparent;
}

.ss-main .ss-values .ss-value{
  background: var(--theme-color);
  border-radius: 7px;
}

.ss-main .ss-values .ss-value .ss-value-text{
  padding-left: 7px;
}

.ss-main .ss-values .ss-single{
  color: var(--color-dark);
  margin-left: 0;
  line-height: 1;
}

.slim-img .ss-list .ss-option img,
.slim-img.ss-main .ss-values .ss-single img{
  width: 25px;
  height: 25px;
  border-radius: 50px;
}

.slim-img .ss-list .ss-option,
.slim-img.ss-main .ss-values .ss-single{
  display: flex;
  align-items: center;
  gap: 8px;
}


/*====================
11. EnoFlix button
======================*/

.enoroidai-btn {
  position: relative;
  font-size: 14px;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 13px;
  border-radius: 14px;
  border: none;
  background: var(--theme-color);
  cursor: pointer;
  overflow: hidden;
  vertical-align: middle;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
}

.enoroidai-btn::before {
  content: "";
  position: absolute;
  height: 300px;
  width: 300px;
  background: var(--theme-color2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.enoroidai-btn:hover {
  color: var(--color-white);
}

.enoroidai-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.enoroidai-btn2{
  background: var(--theme-color2);
}

.enoroidai-btn2::before{
  background: var(--theme-color);
}

.enoroidai-btn i{
  margin-left: 5px;
}

.enoroidai-btn span{
  margin-right: 5px;
}

.enoroidai-btn.icon i{
  margin-left: 0;
}

/* ===============================
   Buttons (Primary)
================================ */

.enoroidwe-btn{
  position: relative;
  border: 1px solid var(--border-info-color);
  background: var(--theme-color);
  color: #0c1c3d;
  border-radius: 15px;
  padding: 8px 14px;
  min-height: 44px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    transform .15s ease,
    color .2s ease;
}

/* Hover */
.enoroidwe-btn:hover{
  background: var(--theme-color-hover, var(--theme-color));
  color: var(--color-white);
}

/* Active */
.enoroidwe-btn:active{
  transform: translateY(1px);
}

/* Focus (keyboard accessibility) */
.enoroidwe-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,123,255,.35);
}

/* Icons */
.enoroidwe-btn i{
  font-size: 1em;
  line-height: 1;
}

.enoroidwe-btn.icon{
  gap: 0;
}

.enoroidwe-btn.icon i{
  margin: 0;
}

/* ===============================
   Soft Button (Cancel / Secondary)
================================ */

.ef-btn-soft{
  background: var(--theme-bg2);
  color: var(--color-dark);
  border-color: rgba(255,255,255,.25);
}

.ef-btn-soft:hover{
  background: rgba(255,255,255,.08);
  color: var(--color-dark);
}

/* ===============================
   Disabled State
================================ */

/* Native disabled buttons */
.enoroidwe-btn:disabled,
.enoroidwe-btn[disabled]{
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
  background: var(--theme-bg2);
  color: rgba(255,255,255,.55);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
  transform: none;
}

/* Disabled via class (for <a> or JS) */
.enoroidwe-btn.is-disabled{
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
  background: var(--theme-bg2);
  color: rgba(255,255,255,.55);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
  transform: none;
}

/* Soft button disabled */
.ef-btn-soft:disabled,
.ef-btn-soft.is-disabled{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  border-color: rgba(255,255,255,.12);
}

/* =========================================
   Loading + Disabled system (Enoroid buttons)
========================================= */

/* Make button hold overlay elements safely */
.enoroidwe-btn{
  position: relative;
  -webkit-tap-highlight-color: transparent; /* touch polish */
}

/* ---------- Spinner (inline) ---------- */
.enoroidwe-btn .btn-spinner{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  display: none;
  animation: btnspin .7s linear infinite;
  flex: 0 0 auto;
}

@keyframes btnspin{
  to{ transform: rotate(360deg); }
}

/* ---------- Loading state ---------- */
.enoroidwe-btn.is-loading{
  pointer-events: none;
  cursor: wait;
}

/* Keep width stable while loading */
.enoroidwe-btn.is-loading .btn-text{
  opacity: .85;
}

/* Show spinner during loading */
.enoroidwe-btn.is-loading .btn-spinner{
  display: inline-block;
}

/* Optional: hide icons while loading (keeps it clean) */
.enoroidwe-btn.is-loading i{
  display: none;
}

/* ---------- Transition loading → enabled ---------- */
.enoroidwe-btn{
  transition:
    opacity .2s ease,
    filter .2s ease,
    transform .15s ease,
    background-color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    color .2s ease;
}

/* A tiny “ready” pop after loading finishes */
.enoroidwe-btn.is-ready{
  animation: btnready .22s ease-out;
}
@keyframes btnready{
  0%{ transform: translateY(0) scale(1); }
  60%{ transform: translateY(-1px) scale(1.02); }
  100%{ transform: translateY(0) scale(1); }
}

/* ---------- Disabled state (native + class) ---------- */
.enoroidwe-btn:disabled,
.enoroidwe-btn[disabled],
.enoroidwe-btn.is-disabled{
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
  background: var(--theme-bg2);
  color: rgba(255,255,255,.55);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
  transform: none;
}

/* ---------- Tooltip wrapper for disabled buttons ---------- */
/* Put disabled button inside .btn-tip-wrap so tooltip still works (disabled blocks hover) */
.btn-tip-wrap{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Tooltip bubble */
.btn-tip-wrap .btn-tip{
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  pointer-events: none;
  max-width: min(260px, 80vw);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.85);
  color: rgba(255,255,255,.92);
  font-size: 12.5px;
  line-height: 1.25;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 50px rgba(0,0,0,.45);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 999;
}

/* Tooltip arrow */
.btn-tip-wrap .btn-tip::after{
  content:"";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: rgba(0,0,0,.85);
}

/* Show tooltip on hover or keyboard focus */
.btn-tip-wrap:hover .btn-tip,
.btn-tip-wrap:focus-within .btn-tip{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Touch-optimized disabled feedback ---------- */
/* On touch devices, show tooltip on tap via .tip-open class (JS will add/remove) */
.btn-tip-wrap.tip-open .btn-tip{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* Toggle */
.ef-toggle-row{ 
  margin-top: 8px; 
}

.ef-toggle{
  display:flex;
  align-items:center;
  gap: 10px;
  user-select: none;
}
.ef-toggle input{ 
  display:none; 
}

.ef-toggle__ui{
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  position: relative;
  transition: .2s ease;
}

.ef-toggle__ui::after{
  content:"";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  position:absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  transition: .2s ease;
}
.ef-toggle input:checked + .ef-toggle__ui{
  background: rgba(20,204,152,.22);
  border-color: rgba(20,204,152,.3);
}
.ef-toggle input:checked + .ef-toggle__ui::after{
  left: 21px;
  background: rgba(20,204,152,.92);
}
.ef-toggle__text{ 
  color: var(--color-dark); 
  font-weight: 700; 
  font-size: 13px; 
}

.ef-toggle--sm .ef-toggle__ui{ 
  width: 40px; 
  height: 24px; 
}

.ef-toggle--sm .ef-toggle__ui::after{ 
  width: 18px; 
  height: 18px; 
}


/* Counter pill */
.ef-geo-count{
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgb(123 129 152 / 37%);
  color: rgba(255,255,255,.85);
  font-weight: 300;
  font-size: 12px;
  width: 100%;
  max-width: 100%;
}

/* Modal base */
.ef-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ef-modal.is-open{ display:block; }

.ef-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}

.ef-modal__panel{
  position: relative;
  width: min(920px, calc(100vw - 24px));
  max-height: min(760px, calc(100vh - 24px));
  margin: 12px auto;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(3, 17, 24, 0.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 90px rgba(0,0,0,.60), 0 10px 28px rgba(0,0,0,.35);
  display:flex;
  flex-direction: column;
}

.ef-modal__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.ef-modal__title{
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
}

.ef-modal__close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
  cursor:pointer;
}

.ef-modal__body{
  padding: 14px 16px;
  overflow: auto;
}

.ef-modal__tools{
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ef-modal__search{
  position: relative;
  flex: 1;
  min-width: 260px;
}

.ef-modal__search i{
  position:absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .65;
}

.ef-modal__search input{
  padding-left: 38px;
}

.ef-modal__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ef-modal__hint{
  margin-top: 10px;
  color: rgba(255,255,255,.70);
  font-size: 12px;
}

.ef-country-list{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 760px){
  .ef-country-list{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .ef-country-list{ grid-template-columns: 1fr; }
}

/* Country item */
.ef-country{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor: pointer;
  user-select: none;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.ef-country:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-1px);
}

.ef-country__flag{ font-size: 18px; }
.ef-country__name{
  color: rgba(255,255,255,.88);
  font-weight: 300;
  font-size: 12px;
}
.ef-country__code{
  margin-left: auto;
  opacity: .65;
  font-weight: 900;
  font-size: 12px;
}

/* Checkbox */
.ef-country input{
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,.22);
  display: inline-grid;
  place-items: center;
}

.ef-country input:checked{
  border-color: rgba(245,185,66,.85);
  background: rgba(245,185,66,.15);
}

.ef-country:has(input:checked){
  border-color: rgba(245,185,66,.55);
  background: rgba(245,185,66,.10);
}

/* Modal footer */
.ef-modal__foot{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ef-modal__count{
  color: rgba(255,255,255,.78);
  font-weight: 900;
  font-size: 12px;
}

.ef-modal__actions,
.ef-modal__foot-right{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}

@media (max-width: 575px){
  .ef-modal__actions,
  .ef-modal__foot-right{
    grid-template-columns: 1fr;     /* stack on mobile */
  }
}


/* Tool row */
.ef-geo-tools{
  /*display:flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;*/
  width: 100%;
  max-width: 100%;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.ef-geo-tools__left{
  /*display:flex;
  gap: 10px;*/
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

/* right stack: search + counter */
.ef-geo-tools__right{
  width: 100%;
  max-width: 100%;
  align-items: start;
  display: grid;
  grid-template-columns: 1fr; /* stack search then counter */
  gap: 10px;
  min-width: 0;
}

.ef-geo-search{
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 420px;
}

.ef-geo-search i{
  position:absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .65;
  pointer-events: none;
  font-size: 12px;
}

.ef-geo-search input{
  width: 100%;
  height: 44px;
  min-width: 0;       
  padding: 10px 14px 10px 40px;
  border-radius: 12px;
  font-size: 13px;
}

/* Tablet & below */
@media (max-width: 768px){
  .ef-geo-search{
    max-width: 100%;
  }
}

/* Small phones */
@media (max-width: 420px){
  .ef-geo-search input{
    height: 42px;
    font-size: 12px;
  }
}

/* Region presets */
.ef-geo-presets{
  margin-top: 12px;
  display: grid;
   grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

/* Preset pill: FORCE single line */
.ef-preset{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  white-space: nowrap;       /* keep East Africa on one line */
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  font-weight: 400;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.ef-preset:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

.ef-preset.is-active{
  border-color: rgba(245,185,66,.55);
  background: rgba(245,185,66,.10);
  color: #f5b942;
}

/* Ultra-small screens: force 2 columns so buttons aren't too tiny */
@media (max-width: 360px){
  .ef-geo-presets{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Buttons should not overflow the column */
.ef-geo-tools .enoroidwe-btn{
  max-width: 100%;
  white-space: nowrap;
}

/* Optional: make PICK COUNTRIES full width (like your good screenshot) */
#geoOpenPicker{
  width: 100%;
}


/* Geo chips */
.ef-chips{ 
  position: relative;
  inset: auto;
  float: none;
  clear: both;
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px; 
  margin-top: 12px;
  max-width: 100%;
  width: 100%;
  align-items: start;
  justify-items: stretch;
}

.ef-chip{
  display: grid;
  grid-template-columns: 16px 20px auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 10px;
  min-height: 44px;
  width: 100%;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid var(--border-info-color);
  background: rgba(255,255,255,.04);
  color: var(--color-dark);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .06em;
  cursor:pointer;
  user-select: none;
  transition:
    background .2s ease,
    border-color .2s ease,
    color .2s ease,
    box-shadow .2s ease,
    transform .15s ease;
}

.ef-chip--blue{ 
  background: rgba(62,151,255,.16); 
  color: var(--color-blue); 
  border-color: rgba(62,151,255,.25); 
}

.ef-chip--orange{ 
  background: rgba(254,176,25,.16); 
  color: var(--color-yellow); 
  border-color: rgba(254,176,25,.25); 
}

.ef-chip--purple{ 
  background: rgba(113,103,255,.16); 
  color: var(--color-purple); 
  border-color: rgba(113,103,255,.25); 
}

.ef-chip--red{ 
  background: rgba(250,92,124,.16); 
  color: var(--color-red); 
  border-color: rgba(250,92,124,.25); 
}

.ef-chip--green{ 
  background: rgba(20,204,152,.16); 
  color: var(--color-green); 
  border-color: rgba(20,204,152,.25); 
}

/* base badge layout (your shared block) */
.ef-badge{
  position: absolute;
  bottom: clamp(2px, 1.2%, 6px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1px, 0.4vw, 4px) clamp(6px, 1.2vw, 12px);
  font-size: clamp(9px, 1.1vw, 13px);
  line-height: 1.25;
  font-family: var(--enoflix-font);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border-radius: 4px;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
  color: var(--enoflix-white);
  opacity: 1;
  pointer-events: none;
  transition: opacity 150ms ease-in-out;
  z-index: 5;
}

/* badge type colors */
.ef-badge.badge-new{
  background-color: var(--enoroid-color-badge-new);
  color: var(--enoflix-white);
  border: var(--border-gold);
}

/*.ef-badge.badge-exclusive{
  background: var(--enoroid-gradient-badge-exclusive);
  border: var(--border-gold);
}*/

.ef-badge.badge-enoflix-exclusive{
  background: linear-gradient(
    135deg,
    #ffb800,
    #ff7a00
  );
  color: #111;
  border: 1px solid rgba(255,184,0,.65);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.25) inset,
    0 4px 10px rgba(255,140,0,.45);
}

.ef-badge.badge-enoflix-original{
  background: linear-gradient(
    135deg,
    #e59109,
    #89cb04
  );
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  letter-spacing: .6px;
}

.ef-badge.badge-comingsoon{
  background-color: var(--enoroid-color-badge-comingsoon);
  border: var(--border-black-thin);
}

.ef-badge.badge-mostwatched{
  background: var(--enoroid-gradient-badge-mostwatched);
  border: var(--border-white-thin);
}

.ef-badge.badge-newpremiere{
  background: var(--enoroid-gradient-badge-newpremiere);
}

.ef-badge.badge-premieres-nextweek{
  background: var(--enoroid-gradient-badge-premieresnextweek);
  border: var(--border-lightgold);
}

.ef-badge.badge-countdown{
  background: var(--enoroid-gradient-badge-countdown);
}

.ef-badge.badge-trending-thisweek{
  background-color: var(--enoroid-color-badge-trending);
}

.ef-badge.badge-top20{
  background: var(--enoroid-gradient-badge-top20);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: var(--border-gold);
}

.ef-badge.badge-editors-pick{
  background: linear-gradient(
    135deg,
    rgba(72, 180, 255, 0.9),
    rgba(40, 120, 220, 0.9)
  );
  border: 1px solid rgba(255,255,255,.35);
  color: var(--enoflix-white);
  box-shadow: 0 0 0 1px rgba(255,255,255,.15) inset;
}

/* Preview row */
.ef-badges-preview{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.ef-badge-preview{
  /* remove absolute behavior */
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.15;
  font-family: var(--enoflix-font);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: .4px;
  border-radius: 6px;
  white-space: nowrap;            /* ✅ stop “Latest / Release” line breaks */
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
  color: var(--enoflix-white);
  pointer-events: none;
}

/* ==========================================
   ENOFLIX Pills (PRO)
========================================== */

.ef-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}

.ef-pill--ok{
  background: rgba(46, 204, 113, .14);
  border-color: rgba(46, 204, 113, .34);
  color: rgba(220, 255, 235, .95);
}

.ef-pill--warn{
  background: rgba(255, 169, 64, .14);
  border-color: rgba(255, 169, 64, .35);
  color: rgba(255, 239, 220, .95);
}

.ef-pill--soft{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
}

.ef-pill--info{
  background: rgba(64, 169, 255, .14);
  border-color: rgba(64, 169, 255, .35);
  color: rgba(225, 245, 255, .95);
}

/* Hero / Featured */
.ef-pill--hero{
  background: rgba(255, 172, 0, .16);
  border-color: rgba(255, 172, 0, .42);
  color: #fdb603;
  box-shadow: 0 0 0 1px rgba(255,184,0,.15) inset;
}

/* Premiere */
.ef-pill--prem{
  background: rgba(190, 120, 255, .14);
  border-color: rgba(190, 120, 255, .35);
  color: rgba(245, 232, 255, .98);
}

/* “Now Premiering” subtle pulse */
.ef-pill--live{
  position: relative;
}

.ef-pill--live::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: .75;
  box-shadow: 0 0 0 0 rgba(255,255,255,.22);
  margin-right: 6px;
}

.ef-pill--live{
  animation: efPulse 1.4s ease-in-out infinite;
}

@keyframes efPulse{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}


/*.movie-add .form-group .form-control,
.movie-add .slimselect,
.movie-add .select{
  min-height: 44px;
}*/

/* Checkbox inside chip */
.ef-chip input{
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.35);
  background: transparent;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: all .2s ease;
}

/* Checkmark */
.ef-chip input::before{
  content: "";
  width: 8px;
  height: 8px;
  transform: scale(0);
  transition: transform .15s ease;
  background: currentColor;
  border-radius: 2px;
}

/* Hover */
.ef-chip:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-1px);
}

/* Checked state */
.ef-chip input:checked{
  border-color: var(--accent-color, #f5b942);
  background: rgba(245,185,66,.15);
}

.ef-chip input:checked::before{
  transform: scale(1);
}

.ef-flag{
  font-size: 16px;
  line-height: 1;
}

.ef-chip__text{
  font-weight: 400;
  letter-spacing: .06em;
  opacity: .95;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Hover */
.ef-chip:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-1px);
}

/* Checked state */
.ef-chip input:checked{
  border-color: var(--accent-color, #f5b942);
  background: rgba(245,185,66,.15);
}

.ef-chip input:checked::before{
  transform: scale(1);
}

.ef-chip:has(input:checked){
  color: var(--accent-color, #f5b942);
  background: linear-gradient(180deg, rgba(245,185,66,.18), rgba(245,185,66,.08));
  border-color: rgba(245,185,66,.55);
  box-shadow: 0 6px 18px rgba(245,185,66,.25);
}

/* Focus */
.ef-chip input:focus-visible{ outline: none; }
.ef-chip:has(input:focus-visible){
  box-shadow: 0 0 0 2px rgba(245,185,66,.45), 0 6px 18px rgba(245,185,66,.35);
}

/* Disabled chips */
.ef-chips.is-disabled .ef-chip{
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
}
.ef-chips.is-disabled .ef-chip input{
  pointer-events: none;
}

/* =========================
   RESPONSIVE TUNING
========================= */

/* Make chips slightly smaller on phones */
@media (max-width: 575px){
  .ef-chip{
    font-size: 11px;
    padding: 9px 12px;
  }
  .ef-flag{ font-size: 15px; }
}

/* Very small phones: reduce minimum width so you can still get 3-ish columns when possible */
@media (max-width: 420px){
  .ef-chips{
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}

/* =========================
   TIP
========================= */
#geoTip{
  display: block;
  margin-top: 12px;
  line-height: 1.4;
  opacity: .85;
}

.text-muted{
  font-size: 12px;
  line-height: 1.5;
  margin-top: 6px;
  color: rgba(134, 138, 141, 0.45);
}

.text-hint{
  font-size: 12px;
  line-height: 1.45;
  color: rgba(170, 180, 190, 0.45);
  margin-top: 6px;
}

.text-hint.is-hidden{
  display: none;
}

.ef-hint{
  font-size: 12px;
  line-height: 1.45;
  margin-top: 6px;
  color: rgba(170, 180, 190, 0.45);
}

/* Shared “callout” frame (only for warn/secure) */
.ef-hint--warn,
.ef-hint--secure{
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
  backdrop-filter: blur(6px);
}

/* WARNING */
.ef-hint--warn{
  color: rgba(255, 196, 92, 0.85);
  border-color: rgba(255, 196, 92, 0.22);
  background: rgba(255, 196, 92, 0.06);
}

/* SECURITY */
.ef-hint--secure{
  color: rgba(120, 210, 255, 0.85);
  border-color: rgba(120, 210, 255, 0.22);
  background: rgba(120, 210, 255, 0.06);
}

/* Optional: tiny “badge dot” without icons */
.ef-hint--warn::before,
.ef-hint--secure::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.ef-hint--warn::before{ background: rgba(255, 196, 92, 0.9); }
.ef-hint--secure::before{ background: rgba(120, 210, 255, 0.9); }

.ef-hint.is-hidden{
  display: none;
}

.ef-hint--inline span{
  color: rgba(200, 210, 220, 0.7);
  font-family: monospace;
}

.ef-hint--soft{
  font-size: 12px;
  color: rgba(150, 160, 170, 0.4);
}

.ef-hint--success{
  display: inline-flex;
  gap: 8px;
  padding: 8px 10px;
  margin-top: 8px;
  border-radius: 12px;
  color: rgba(120, 220, 160, 0.9);
  background: rgba(120, 220, 160, 0.08);
  border: 1px solid rgba(120, 220, 160, 0.25);
}

.ef-hint--info{
  display: inline-flex;
  gap: 8px;
  padding: 8px 10px;
  margin-top: 8px;
  border-radius: 12px;
  color: rgba(170, 195, 255, 0.85);
  background: rgba(170, 195, 255, 0.06);
  border: 1px solid rgba(170, 195, 255, 0.22);
}


/* ============================
   VIDEO SOURCES (CLEAN)
============================ */

.efmode-sources{
  display:flex;
  flex-direction:column;
  gap:12px;
  width:100%;
}

.efmode-source{
  border: 1px solid var(--border-info-color, rgba(255,255,255,.12));
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/* Optional: tiny separation between row 1 and row 2 */
.ef-label,
.ef-drm,
.ef-actions{
  margin-top: 4px;
}

/* URL input with inline action button */
.ef-input-wrap{
  display:flex;
  align-items:center;
  gap:10px;
  height:45px;
  width:100%;
  min-width:0;
  padding: 0 10px 0 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  transition: border-color .2s ease, background .2s ease;
}

.ef-input-wrap:focus-within{
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.07);
}

.ef-input-icon{
  color: rgba(255,255,255,.45);
  font-size: 16px;
  flex: 0 0 auto;
}

.ef-input{
  flex:1;
  min-width:0;
  height:100%;
  background: transparent;
  border:none;
  outline:none;
  color: rgba(255,255,255,.92);
  font-size: 14px;
}

.ef-input::placeholder{
  color: rgba(255,255,255,.38);
}

.ef-input-action{
  width:35px;
  height:35px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex: 0 0 auto;
  transition: background .2s ease, transform .15s ease;
}

.ef-input-action:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}
.ef-input-action:active{ 
  transform: translateY(0); 
}

/* Toggle field height (DRM) */
/*.ef-toggle--field,
.ef-drm .ef-toggle{
  height:52px;
  display:flex;
  align-items:center;
  gap:12px;
}

.ef-toggle__text{
  color: rgba(255,255,255,.70);
  font-weight: 700;
}*/

/* Action button (delete) */
.ef-iconbtn{
  width:52px;
  height:52px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.ef-iconbtn:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-1px);
}
.ef-iconbtn:active{ transform: translateY(0); }

.efmode-remove-source{
  background: rgba(255, 64, 64, 0.10);
  border-color: rgba(255, 64, 64, 0.25);
  color: rgba(255, 120, 120, 0.95);
}
.efmode-remove-source:hover{
  background: rgba(255, 64, 64, 0.16);
  border-color: rgba(255, 64, 64, 0.35);
}

/* Keep text neat */
.ef-label .form-control,
.ef-url .form-control,
.ef-input{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Small screens: match your general “inputs shrink” feel */
@media (max-width: 600px){
  .efmode-source{ 
    padding: 14px; 
  }

  .ef-input-wrap{
    height:48px;
    border-radius: 14px;
  }

  .ef-input-action{
    width:36px;
    height:36px;
    border-radius: 10px;
  }

  .ef-iconbtn{
    height:48px;
    width:48px;
    border-radius: 14px;
  }

  .ef-toggle--field,
  .ef-drm .ef-toggle{
    height:48px;
  }
}

/* checkbox field */
.efmodeone-check{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  cursor:pointer;
  user-select:none;
}

.efmodeone-check input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.efmodeone-check__box{
  width:18px;
  height:18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

.efmodeone-check__text{
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

.efmodeone-check input:checked + .efmodeone-check__box{
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.14);
}

.efmodeone-check input:checked + .efmodeone-check__box::after{
  content:"";
  width:10px;
  height:10px;
  border-radius: 3px;
  background: rgba(255,255,255,.90);
}


/* ===============================
   Series table (episode GROUP layout)
   1 episode = 3 rows:
   - top: season/episode/title/date/actions (5 cols)
   - bottom: duration | stream(2 cols) | download(2 cols)
   - synopsis: textarea (colspan 5)
================================ */

/* Wrap */
.ef-table-wrap{
  width: 100%;
  border: 1px solid var(--border-info-color);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  overflow: hidden;
}

/* Scroll wrapper */
.ef-table-scroll{
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Optional nicer scrollbar */
.ef-table-scroll::-webkit-scrollbar{ height: 7px; }
.ef-table-scroll::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}
.ef-table-scroll::-webkit-scrollbar-track{
  background: rgba(255,255,255,.06);
}

/* Table */
.ef-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;     /* space between episode cards */
  table-layout: fixed;        /* ✅ prevents random squeezing */
  padding: 10px;
  min-width: 740px;           /* baseline so it stays nice on desktop */
}

/* ✅ Use ONLY colgroup widths (no nth-child widths) */
.ef-col-season  { width: 120px; }
.ef-col-episode { width: 120px; }
.ef-col-title   { width: 220px; } /* you wanted title bigger */
.ef-col-date    { width: 120px; }
.ef-col-actions { width: 120px; }

/* Cells */
.ef-table th,
.ef-table td{
  padding: 10px;
  vertical-align: middle;
  color: var(--body-text-color);
  font-size: 13px;
  min-width: 0;                 /* ✅ critical */
}

/* Header */
.ef-table thead th{
    background: linear-gradient(
    180deg,
    rgba(12, 30, 60, 0.85),
    rgba(8, 22, 45, 0.95)
  );
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* Slight divider between columns */
.ef-table thead th + th{
  border-left: 1px solid rgba(255,255,255,.04);
}

.ef-table thead th:first-child{
  border-top-left-radius: 14px;
}
.ef-table thead th:last-child{
  border-top-right-radius: 14px;
}

/* Inputs */
.ef-table .form-control{
  width: 100%;
  max-width: 100%;
  min-width: 0;                 /* ✅ critical for shrinking in cells */
  box-sizing: border-box;
  min-height: 42px;
  padding: 8px 10px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  color: #0c1c3d;
}

.ef-ep-row--top input[name="epTitle[]"]{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Long URL fields: keep on one line with ellipsis */
.ef-ep-row--bottom input[name="epUrl[]"],
.ef-ep-row--bottom input[name="epDownloadUrl[]"]{
  width: 100%;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ef-table textarea.form-control{
  min-height: 76px;
  resize: vertical;
  font-family: inherit;
}

/* Better focus */
.ef-table .form-control:focus{
  outline: none;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 2px rgba(0, 94, 255, 0.25);
  background: rgba(255,255,255,.98);
  color: #0c1c3d;
}

/* Note */
.ef-note{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.14);
  color: var(--body-text-color);
  margin-bottom: 12px;
  font-size: 12px;
}

/* ✅ Better empty state (works reliably in tables) */
#efEpisodesBody:empty::after{
  content: "No episodes added yet";
  display: table-row;
  color: rgba(255,255,255,.45);
  font-size: 14px;
}
#efEpisodesBody:empty::after{
  /* fallback for browsers that ignore table-row here */
  display: block;
  padding: 26px 10px;
  text-align: center;
}

/* Episode group styling */
.ef-ep-row--top td{
  background: rgba(0,0,0,.10);
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 0;
}

.ef-ep-row--bottom td{
  background: rgba(0,0,0,.07);
  border-bottom: 0;
}

/* Bottom row layout: make long URLs not crush other inputs */
.ef-ep-row--bottom td{
  white-space: nowrap;
}
.ef-ep-row--bottom td .form-control{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;      /* ✅ stream/download look clean */
}

/* Synopsis */
.ef-ep-row--synopsis td{
  background: rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* Rounded corners */
.ef-ep-row--top td:first-child{ border-top-left-radius: 14px; }
.ef-ep-row--top td:last-child{ border-top-right-radius: 14px; }
.ef-ep-row--synopsis td{ border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; }

/* Screen-reader only label (keeps accessibility + no visual clutter) */
.ef-sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Actions */
.ef-actions{
  text-align: center;
  white-space: nowrap;
}

.ef-actions .enoroidwe-btn{
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    transform .15s ease,
    color .2s ease;
}

.ef-actions .enoroidwe-btn:hover{
  background: rgba(255, 0, 60, 0.06);
  border-color: rgba(255, 0, 60, 0.25);
  color: #ff4d6d;
  transform: translateY(-1px);
  box-shadow:
    0 3px 8px rgba(0,0,0,.25),
    0 0 0 2px rgba(255, 0, 60, 0.06);
}

.ef-actions .enoroidwe-btn:active{
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(0,0,0,.35),
    0 0 0 2px rgba(255, 0, 60, 0.12);
}

.ef-actions .enoroidwe-btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0, 94, 255, 0.45),
    0 4px 14px rgba(0,0,0,.4);
}

.ef-actions .enoroidwe-btn i{
  transition: transform .25s ease;
}

.ef-actions .enoroidwe-btn:hover i{
  transform: scale(1.1);
}
/* ===============================
   Responsive (NO grid)
   Stack into cards under 900px
================================ */
@media (max-width: 900px){

  /* hide header */
  .ef-table thead{ display:none; }

  /* table -> block layout */
  .ef-table,
  .ef-table tbody,
  .ef-table tr,
  .ef-table td{
    display:block;
    width:100%;
  }

  /* reset desktop table sizing */
  .ef-table{
    min-width:0;
    border-spacing:0;
    padding:0;
    table-layout:auto;
  }

  /* consistent padding */
  .ef-ep-row--top td,
  .ef-ep-row--bottom td,
  .ef-ep-row--synopsis td{
    padding:10px 12px;
  }

  /* labels */
  .ef-table td[data-label]{
    position:relative;
    padding-top:28px;
  }
  .ef-table td[data-label]::before{
    content:attr(data-label);
    position:absolute;
    top:8px;
    left:12px;
    font-size:11px;
    letter-spacing:.12px;
    text-transform:uppercase;
    color:rgba(255,255,255,.55);
  }

  /* actions alignment */
  .ef-actions{
    text-align:left;
    padding-top:10px;
  }

  /* nicer "card" edges in block mode */
  .ef-ep-row--top td:first-child{
    border-top-left-radius:14px;
    border-top-right-radius:14px;
  }
  .ef-ep-row--synopsis td{
    border-bottom-left-radius:14px;
    border-bottom-right-radius:14px;
  }
}

/* Extra-tight phones: reduce padding + gaps */
@media (max-width: 640px){
  .ef-ep-row--top td,
  .ef-ep-row--bottom td,
  .ef-ep-row--synopsis td{
    padding:9px 10px;
  }

  .ef-table td[data-label]{
    padding-top:26px;
  }
  .ef-table td[data-label]::before{
    top:7px;
    left:10px;
    font-size:10px;
  }

  /* keep inputs comfy but not huge */
  .ef-table .form-control{
    min-height:40px;
    font-size:13px;
  }
  .ef-table textarea.form-control{
    min-height:72px;
  }
}

/*========================
12. Custom scroll bar css
==========================*/

.custom-scroll{
  overflow-y: auto;
  scroll-behavior: smooth;
}

.custom-scroll::-webkit-scrollbar {
  width: 4px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: transparent; 
  border-radius: 50px;
}
 
.custom-scroll::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 50px;
}

.custom-scroll:hover::-webkit-scrollbar-thumb {
  background: var(--border-info-color); 
}

/*====================
13. Sidebar css
======================*/

.sidebar{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 285px;
  background: var(--theme-bg3);
  transition: all 300ms ease;
}

.sidebar .mobile-menu-close{
  display: none;
}

.sidebar-header{
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0px 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-info-color);
}

.sidebar-logo img{
  width: 160px;
}

.sidebar-logo .logo-icon{
  display: none;
}

.sidebar-nav{
  display: block;
  width: 100%;
  height: calc(100vh - 150px);
}

.sidebar-nav li a{
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--body-text-color);
  font-size: 15px;
  padding: 5px 30px;
  position: relative;
  white-space: nowrap;
  transition: all 300ms ease;
}

.sidebar-nav li a:hover{
  padding-left: 35px;
  color: var(--theme-color);
}

.sidebar-nav li a.active{
  color: var(--theme-color);
}

.sidebar-nav li .has-sub-menu::before{
  content: "\f107";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  font-family: "Font Awesome 6 Pro";
  color: var(--body-text-color);
  font-size: 14px;
  transition: all 300ms ease;
}

.sidebar-nav li.show .has-sub-menu::before{
  transform: translateY(-50%) rotate(-180deg);
}

.sidebar-nav .sub-menu{
  overflow: hidden;
  margin-left: 18px;
  display: none;
}

.sidebar-nav .sub-menu li a{
  gap: 10px;
}

.sidebar-nav .sub-menu li a i{
  font-size: 10px;
}

.sidebar-nav li.show .sub-menu{
  display: block;
}

.sidebar-footer{
  width: 100%;
  height: 80px;
  padding: 0px 30px;
  display: flex;
  align-items: center;
}

.sidebar-footer .enoroidai-btn{
  width: 100%;
  text-align: center;
  background: rgba(112, 143, 172, 0.08);
  text-transform: capitalize;
  color: var(--body-text-color);
}

.sidebar-footer .enoroidai-btn:hover{
  color: var(--color-white);
}

.sidebar-footer .enoroidai-btn i{
  margin: 0 5px 0 0;
}

.sidebar-footer .enoroidai-btn span{
  margin-right: 0;
}

@media all and (min-width: 992px){
  /* sidebar small */
  .sidebar.small{
    width: 80px;
  }

  .sidebar.small .sidebar-header{
    padding: 0;
    justify-content: center;
  }

  .sidebar.small .logo-display{
    display: none;
  }

  .sidebar.small .logo-icon{
    display: block;
    width: 40px;
  }

  .sidebar.small .sidebar-nav li a::before{
    display: none;
  }

  .sidebar.small .sidebar-nav li a span{
    display: none;
  }

  .sidebar.small .sidebar-nav li a{
    padding: 12px 0;
    justify-content: center;
  }

  .sidebar.small .sidebar-nav li a i{
    font-size: 18px;
  }

  .sidebar.small .sub-menu{
    opacity: 0;
  }

  .sidebar.small .sidebar-footer{
    padding: 0 20px;
  }

  .sidebar.small .sidebar-footer .enoroidai-btn span{
    display: none;
  }

  /* sidebar small hover */
  .sidebar.small:hover{
    width: 285px;
  }

  .sidebar.small:hover .sidebar-header{
    padding: 0 30px;
    justify-content: unset;
  }

  .sidebar.small:hover .logo-display{
    display: block;
  }

  .sidebar.small:hover .logo-icon{
    display: none;
  }

  .sidebar.small:hover .sidebar-nav li a::before{
    display: block;
  }

  .sidebar.small:hover .sidebar-nav li a span{
    display: block;
  }

  .sidebar.small:hover .sidebar-nav li a{
    padding: 5px 30px;
    justify-content: unset;
  }

  .sidebar.small:hover .sidebar-nav li a i{
    font-size: 15px;
  }

  .sidebar.small:hover .sidebar-nav .sub-menu li a i{
    font-size: 10px;
  }

  .sidebar.small:hover ~ .page-content{
    margin-left: 285px;
  }

  .sidebar.small:hover .sub-menu{
    opacity: 1;
  }

  .sidebar.small:hover .sidebar-footer .enoroidai-btn span{
    display: inline-block;
  }
}

@media all and (max-width: 991px){
  .sidebar{
    transform: translateX(-100%);
    box-shadow: var(--box-shadow2);
    z-index: 13;
  }
  
  .sidebar-show{
    transform: translateX(0%);
  }
  
  .sidebar .mobile-menu-close{
    display: block;
    position: absolute;
    right: 10px;
    top: 5px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 20px;
  }
}




/*====================
14. Page content css
======================*/

.page-content{
  position: relative;
  margin-left: 285px;
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-content-wrap{
  padding: 0 16px;
  flex: 1;
}

@media all and (min-width: 992px){
  .page-content.ml{
    margin-left: 80px;
  }
}

@media all and (max-width: 991px){
  .page-content{
    margin-left: 0;
  }
}




/*====================
15. Header top css
======================*/

.header-top{
  position: sticky;
  top: 0;
  padding: 0 16px;
  z-index: 12;
}

.header-top .top-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  background: var(--body-bg);
  border-bottom: 1px solid var(--border-info-color);
}

.header-top .top-left{
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top .menu-btn{
  cursor: pointer;
}

.header-top .mobile-menu-btn span,
.header-top .menu-btn span{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--body-text-color);
  border-radius: 50px;
  margin-bottom: 5px;
}

.header-top .mobile-menu-btn span:nth-child(2),
.header-top .menu-btn span:nth-child(2){
  width: 10px;
}

.header-top .mobile-menu-btn span:last-child,
.header-top .menu-btn span:last-child{
  margin-bottom: 0;
}

.header-top .mobile-menu-btn{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.header-top .header-search .form-group{
  position: relative;
  margin-bottom: 0;
}

.header-top .header-search .form-control{
  width: 300px;
  border: none;
  padding-right: 45px;
  background: var(--theme-bg);
  box-shadow: none;
}

.header-top .header-search button{
  position: absolute;
  right: 8px;
  top: 6px;
  background: transparent;
  border: none;
  color: var(--body-text-color);
  font-size: 19px;
}

.header-top .top-right{
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top .header-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: var(--body-text-color);
  background: var(--theme-bg);
  border: none;
  border-radius: 50px;
  padding: 0;
  transition: var(--transition);
}

.header-top .mobile-search{
  display: none;
}

.header-top .color-mode .dark-btn {
  display: none;
}

.header-top .header-profile .profile-content{
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
  cursor: pointer;
}

.header-top .header-profile .profile-photo img{
  width: 40px;
  border-radius: 50px;
}

.header-top .header-profile .profile-info span{
  display: block;
  font-size: 14px;
  color: var(--color-dark);
}

.header-top .header-profile .profile-info{
  line-height: 1.5;
}

.header-top .header-profile .profile-info span b{
  color: var(--theme-color);
}

.header-top .header-profile .profile-info span:last-child{
  font-size: 12px;
  color: var(--body-text-color);
}

.header-top .top-right .message-dot,
.header-top .top-right .notify-dot{
  position: absolute;
  right: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  background: var(--theme-color2);
  border-radius: 50px;
}

.header-top .top-right .message-dot{
  background: var(--theme-color);
}

.header-top .notify .dropdown-menu{
  padding: 15px;
  width: 300px;
}

.header-top .notify-top{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.header-top .notify-top h6{
  color: var(--color-dark);
  font-weight: 500;
}

.header-top .notify-top .badge{
  background: var(--theme-color);
}

.header-top .notify .dropdown-menu ul{
  height: 250px;
}

.header-top .notify-item{
  margin-bottom: 15px;
}

.header-top .notify-item:last-child{
  margin-bottom: 0;
}

.header-top .notify-item .dropdown-item{
  display: flex;
  gap: 12px;
  padding: 0;
}

.header-top .notify-item .dropdown-item:hover{
  background: none;
}

.header-top .notify-item .icon{
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--theme-color);
  border-radius: 50px;
  text-align: center;
  color: var(--color-white);
}

.header-top .notify-item i{
  width: unset;
  color: var(--color-white);
}

.header-top .notify-item .content{
  text-wrap: wrap;
  flex: 1;
}

.header-top .notify-item .content h6{
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.header-top .notify-item:hover .content h6{
  color: var(--theme-color);
}

.header-top .notify-item .content p{
  color: var(--body-text-color);
  font-size: 15px;
  overflow: hidden;
  width: 210px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-top .notify-item .content span{
  font-size: 13px;
  color: var(--theme-color);
}

.header-top .notify-item .content span i{
  color: var(--theme-color);
}

.header-top .notify-bottom{
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-info-color);
}

.header-top .notify-bottom .theme-btn{
  width: 100%;
  text-align: center;
  font-size: 13px;
}

.header-top .mobile-logo{
  display: none;
}

@media all and (max-width: 991px){
  .header-top {
    padding: 0;
    height: 78.5px;
  }

  .header-top .container-fluid{
    padding: 0;
  }

  .header-top .top-content{
    padding: 0 54px 0 10px;
  }

  .header-top .mobile-menu-btn{
    display: block;
  }

  .header-top .mobile-search{
    display: inline-flex;
  }

  .header-top .menu-btn,
  .header-top .header-profile .profile-info{
    display: none;
  }

  .header-top .mobile-logo{
    margin-right: 10px;
    display: block;
  }

  .header-top .mobile-logo .logo-icon{
    width: 50px;
  }

  .header-top .top-right{
    gap: 9px;
  }

  .header-top .header-search{
    display: none;
    position: absolute;
    top: 90px;
    left: 15px;
    right: 15px;
  }

  .header-top .header-search.header-search-show{
    display: block;
  }

  .header-top .header-search .form-control{
    width: 100%;
  }
}

@media all and (max-width: 767px){
  .header-top .notify .dropdown-menu{
    margin-right: -100px;
  }
}

/*====================
16. Breadcrumb css
======================*/

.breadcrumb-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.breadcrumb-title{
  font-size: 18px;
  color: var(--color-dark);
}

.breadcrumb-menu{
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  margin-top: 5px;
}

.breadcrumb-menu li{
  position: relative;
  color: var(--body-text-color);
}

.breadcrumb-menu li a{
  color: var(--theme-color);
}   

.breadcrumb-menu li a:hover{
  color: var(--theme-color2);
}

.breadcrumb-menu li::before{
  content: "\f068";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--body-text-color);
  font-family: "Font Awesome 6 Pro";
  font-size: 10px;
}

.breadcrumb-menu li:last-child::before{
  display: none;
}

.breadcrumb-menu li.active{
  color: var(--body-text-color);
}




/*====================
17. Widget css
======================*/

.widget-item{
  background: var(--theme-bg);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border-info-color);
}

.widget-content{
  display: flex;
  justify-content: space-between;
}

.widget-icon{
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 25px;
  text-align: center;
  border-radius: 50px;
}

.widget-icon.cl-1{
  background: var(--color-green);
}

.widget-icon.cl-2{
  background: var(--color-red);
}

.widget-icon.cl-3{
  background: var(--color-blue);
}

.widget-icon.cl-4{
  background: var(--color-purple);
}

.widget-title{
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--color-dark);
}

.widget-text{
  color: var(--body-text-color);
  font-size: 15px;
  margin-top: 10px;
}

.widget-text .text-success{
  color: var(--color-green) !important;
}

.widget-text .text-danger{
  color: var(--color-red) !important;
}

.widget-text span i{
  margin-right: 5px;
}

@media all and (min-width: 1199px) and (max-width: 1400px){
  .widget-item{
    padding: 15px;
  }

  .widget-text{
    font-size: 13px;
  }
}



/*========================
18. Chart & map custom css
==========================*/

/* jsVectorMap */
.jvm-zoom-btn{
  background: var(--body-bg) !important;
  color: var(--color-dark);
}

/* apexcharts */
.apexcharts-pan-icon svg{
  fill: var(--theme-bg2) !important;
}

.apexcharts-tooltip.apexcharts-theme-light{
  background: var(--body-bg) !important;
  border-color: var(--border-info-color) !important;
  border-radius: 15px;
  padding: 5px;
}

.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
  background: var(--theme-bg) !important;
  color: var(--color-dark);
  border-radius: 10px;
  border: none !important;
  text-align: center;
}

.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-text{
  color: var(--color-dark);
}



/*========================
19. Fullcalendar css
==========================*/

.fc-theme-standard .fc-scrollgrid{
  border-radius: 10px;
  border-color: var(--border-info-color);
}

.fc .fc-scrollgrid tbody>tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.fc .fc-scrollgrid tbody>tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.fc .fc-scrollgrid thead tr:first-child th:last-child{
  border-top-right-radius: 10px;
}

.fc .fc-daygrid-day.fc-day-today{
  background: var(--body-bg);
}

.fc-icon{
  line-height: .9;
}

.fc .fc-toolbar-title{
  font-size: 24px;
}

.fc-theme-standard td, .fc-theme-standard th {
  border: 1px solid var(--border-info-color);
}

.fc .fc-button{
  border-radius: 10px;
  text-transform: capitalize;
  border: none;
  box-shadow: none;
}

.fc .fc-button-primary{
  background: var(--body-bg);
  color: var(--color-dark);
}

.fc .fc-button-primary:hover{
  background: var(--theme-color);
}

.fc .fc-button-primary:not(:disabled).fc-button-active, 
.fc .fc-button-primary:not(:disabled):active{
  background: var(--theme-color);
  color: var(--color-white);
}

.fc .fc-button-group>.fc-button:focus,
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
.fc .fc-button-primary:not(:disabled):active:focus {
  box-shadow: none;
}

.fc-daygrid-event{
  border-radius: 8px;
}

.fc-daygrid-block-event .fc-event-time, .fc-daygrid-block-event .fc-event-title{
  padding: 1px 1px 1px 8px;
}

.fc-theme-standard .fc-popover{
  border-radius: 10px;
  border-color: var(--border-info-color);
  background: var(--theme-bg);
}

.fc-theme-standard .fc-popover-header{
  background: transparent;
  border-bottom: 1px solid var(--border-info-color);
  color: var(--color-dark);
}

.fc .fc-daygrid-dot-event{
  background: transparent;
}

.fc .fc-daygrid-more-link:hover{
  background: transparent;
}

.fc-event-title, .fc-sticky{
  text-overflow: ellipsis;
  font-weight: 500 !important;
  white-space: nowrap;
}

.fc .fc-col-header-cell .fc-col-header-cell-cushion{
  font-weight: 500;
}

.fc .fc-timegrid-axis-cushion{
  color: var(--color-dark);
  text-transform: capitalize;
  font-size: 14px;
}

.fc .fc-timegrid-slot-label-cushion{
  color: var(--color-dark);
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: var(--body-bg);
}

.fc .fc-timegrid-col.fc-day-today {
  background-color: var(--body-bg);
}

.fc .fc-daygrid-day.fc-day-today{
  border-bottom-right-radius: 0 !important;
}

.fc .fc-timegrid-slot-minor{
  border-bottom-right-radius: 0 !important;
}

@media all and (max-width: 767px) {
  .fc .fc-header-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* external-events */
.external-events h6{
  font-size: 16px;
  margin-bottom: 20px;
}

.external-events .fc-event-draggable{
  background: var(--theme-color);
  color: var(--color-white);
  padding: 5px 15px;
  border-radius: 10px;
  margin: 15px 0;
  cursor: grab;
}

.external-events .fc-event-draggable.cl-1{
  background: rgba(250, 92, 124, .15);
  color: var(--color-red);
}

.external-events .fc-event-draggable.cl-2{
  background: rgba(20, 204, 152, .15);
  color: var(--color-green);
}

.external-events .fc-event-draggable.cl-3{
  background: rgba(113, 103, 255, .15);
  color: var(--color-purple);
}

.external-events .fc-event-draggable.cl-4{
  background: rgba(62, 151, 255, .15);
  color: var(--color-blue);
}

/*========================
20. Flatpickr css
==========================*/

.flatpickr-calendar{
  background: var(--theme-bg);
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.flatpickr-calendar.arrowTop:before{
  border-bottom-color: var(--border-info-color);
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: var(--theme-bg);
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: var(--border-info-color);
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: var(--theme-bg);
}

.flatpickr-current-month{
  padding-top: 15px;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{
  left: 12px;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, 
.flatpickr-months .flatpickr-next-month.flatpickr-next-month{
  right: 12px;
}

.flatpickr-months .flatpickr-prev-month, 
.flatpickr-months .flatpickr-next-month{
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 18px;
  color: var(--color-dark);
  border-radius: 8px;
  top: 10px;
  padding: 0;
}

.flatpickr-months .flatpickr-prev-month:hover, 
.flatpickr-months .flatpickr-next-month:hover{
  background: var(--body-bg);
  color: var(--theme-color);
}

.flatpickr-current-month 
.flatpickr-monthDropdown-months{
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
  appearance: none;
}

.flatpickr-current-month input.cur-year{
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 400;
}

.numInputWrapper span:hover {
  background: 0 0!important
}

.numInputWrapper span.arrowUp:after {
  border-bottom-color: var(--theme-color)!important
}

.numInputWrapper span.arrowDown:after {
  border-top-color: var(--theme-color)!important
}

.numInputWrapper:hover {
  background: var(--body-bg);
  border-radius: 5px;
}

.numInputWrapper span{
  border: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: var(--body-bg);
}

.flatpickr-innerContainer{
  padding: 10px;
}

span.flatpickr-weekday{
  color: var(--theme-color);
}

.flatpickr-day{
  color: var(--body-text-color);
}

.dayContainer, .flatpickr-days {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover, 
.flatpickr-day.prevMonthDay, 
.flatpickr-day.nextMonthDay, 
.flatpickr-day.notAllowed, 
.flatpickr-day.notAllowed.prevMonthDay, 
.flatpickr-day.notAllowed.nextMonthDay{
  color: rgba(112, 143, 172, 0.5);
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  background: var(--body-bg);
  border-color: var(--body-bg);
}

.flatpickr-day.selected,
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover, 
.flatpickr-day.selected.prevMonthDay, 
.flatpickr-day.startRange.prevMonthDay, 
.flatpickr-day.endRange.prevMonthDay, 
.flatpickr-day.selected.nextMonthDay, 
.flatpickr-day.startRange.nextMonthDay, 
.flatpickr-day.endRange.nextMonthDay{
  background: var(--color-red);
  border: none;
}

.flatpickr-day.selected:hover{
  background: var(--color-red);
}

.flatpickr-day.today{
  background: var(--theme-color);
  color: var(--color-white);
  border: none;
}

.flatpickr-day.today:hover,.flatpickr-day.today:focus {
  background: var(--theme-color);
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), 
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)){
  box-shadow: none;
}

.flatpickr-day.inRange{
  box-shadow: none;
}



/*========================
21. Quill text editor
==========================*/

.ql-toolbar.ql-snow {
  border: 1px solid var(--border-info-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.ql-snow .ql-picker{
  color: var(--body-text-color);
}

.ql-container{
  min-height: 250px;
}

.ql-container.ql-snow {
  border: 1px solid var(--border-info-color);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.ql-snow .ql-stroke{
  stroke: var(--body-text-color);
}

.ql-snow .ql-picker-options {
  border: 0;
  padding: 5px 15px;
  box-shadow: var(--box-shadow);
  background: var(--theme-bg);
  border-radius: 15px;
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{
  border-color: var(--border-info-color);
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label{
  border-color: var(--theme-bg);
}

.ql-editor{
  color: var(--body-text-color);
}

.ql-snow .ql-tooltip{
  background: var(--theme-bg);
  color: var(--body-text-color);
  border-radius: 8px;
  border-color: var(--border-info-color);
  box-shadow: var(--box-shadow2);
}

.ql-snow .ql-tooltip input[type=text]{
  background: var(--body-bg);
  color: var(--body-text-color);
  border-radius: 5px;
  border: 1px solid var(--border-info-color);
  outline: none;
}

.ql-snow a{
  color: var(--theme-color);
}

.ql-editor.ql-blank::before {
  color: var(--body-text-color);
}

.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: var(--theme-color);
}

.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: var(--theme-color);
}

.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: var(--theme-color);
}


/*========================
22. Sweetalert css
==========================*/

.swal2-styled{
  border-radius: 12px;
}

.swal2-popup{
  border-radius: 30px;
  background: var(--body-bg);
}

.swal2-title{
  color: var(--color-dark);
}

.swal2-html-container{
  color: var(--color-dark);
}

.swal2-warning{
  border-color: var(--color-yellow) !important;
  color: var(--color-yellow) !important;
}


/*========================
23. User css
==========================*/

/* user-list */
.efmode--user-list .efmode--user-content{
  display: flex;
  align-items: center;
  gap: 10px; 
}

.efmode--user-list .efmode--user-info h6{
  color: var(--color-dark);
}

.efmode--user-list .efmode--user-info span{
  font-size: 15px;
  color: var(--body-text-color);
}

.efmode--user-list .efmode--user-img img{
  width: 50px;
  border-radius: 50%;
}

.efmode--user-list .efmode--user-text{
  font-size: 15px;
  color: var(--body-text-color);
}

@media all and (max-width: 1199px){
  .efmode--user-list .efmode--user-content{  
    width: 230px;
  }
}

/* user-details */
.efmode--user-details .efmode--user-head-banner img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;  
}

.efmode--user-details .efmode--user-head-content{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 20px;
}

.efmode--user-details .efmode--user-head-img img{
  width: 110px;
  border-radius: 50%;
  border: 8px solid var(--theme-bg);
}

.efmode--user-details .efmode--user-head-img{
  margin-top: -40px;
}

.efmode--user-details .efmode--user-head-info{
  flex: 1;
}

.efmode--user-details .efmode--user-head-info h5{
  color: var(--color-dark);
  font-weight: 600;
}

.efmode--user-details .efmode--user-head-info h5 i{
  font-size: 14px;
  color: var(--color-green);
  margin-left: 5px;
}

.efmode--user-details .efmode--user-head-info p{
  color: var(--theme-color);
  font-size: 14px;
}

.efmode--user-details .efmode--user-head-social{
  display: flex;
  align-items: center;
  gap: 15px;
}

.efmode--user-details .efmode--user-head-social a{
  width: 35px;
  height: 35px;
  line-height: 34px;
  text-align: center;
  color: var(--body-text-color);
  border: 1px solid var(--border-info-color);
  border-radius: 50px;
}

.efmode--user-details .efmode--user-head-social a:hover{
  color: var(--theme-color);
  border-color: var(--theme-color);
}

.efmode--user-details .efmode--user-menu{
  padding: 0 25px;
  margin-top: 15px;
}

.efmode--user-details .efmode--user-menu .nav-underline .nav-link{
  color: var(--body-text-color);
  font-weight: 400;
}

.efmode--user-details .efmode--user-menu .nav-underline .nav-link.active, 
.efmode--user-details .efmode--user-menu .nav-underline .show>.nav-link{
  color: var(--theme-color);
  border-color: var(--theme-color);
}

.efmode--user-details .efmode--user-info-list ul li{
  margin: 10px 0;
  color: var(--body-text-color);
}

.efmode--user-details .efmode--user-info-list ul li label{
  width: 180px;
  text-wrap: wrap;
  color: var(--color-dark);
}

.efmode--user-details .efmode--user-bio p{
  color: var(--body-text-color);
}

.efmode--user-details .efmode--user-form .efmode--upload-file{
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.efmode--user-details .efmode--user-form .efmode--upload-file .efmode--preview-img{
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

@media all and (max-width: 767px){
  .efmode--user-details .efmode--user-info-list ul li label{
    width: 90px;
  }
}


/* user-form */
.efmode--user-form .efmode--upload-file{
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.efmode--user-form .upload-file .efmode--preview-default{
  font-size: 45px;
  padding: 0;
}

.efmode--user-form .efmode--upload-file .efmode--preview-img{
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}


/*====================
24. EF-Movie css
======================*/

.enoroidcell-list .enoroidcell-content{
  display: flex;
  align-items: center;
  gap: 10px; 
}

.enoroidcell-list .enoroidcell-info h6 a{
  color: var(--color-dark);
  width: 140px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.enoroidcell-list .enoroidcell-info span{
  font-size: 12px;
  color: var(--body-text-color);
}

/*.enoroidcell-list .enoroidcell-img img{
  width: 45px;
  border-radius: 10px;
}*/

.enoroidcell-list .enoroidcell-img img{
  width: 45px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}

.enoroidcell-list .enoroidcell-text{
  font-size: 13px;
  color: var(--body-text-color);
}

.enoroidcell-list .table-modern .table tr td{
  /*padding: 16px;*/
  padding: 10px;
}

.enoroidcell-list .enoroidcell-text.enoroidcell-rate{
  color: var(--color-yellow);
}

@media all and (max-width: 1400px){
  .enoroidcell-list .enoroidcell-content{  
    width: 200px;
  }
}


/* movie details */
.enoroidcell-details .enoroidcell-img img{
  border-radius: 20px;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-info{
  padding: 0 15px;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-info p{
  color: var(--color-dark);
}

.enoroidcell-details .enoroidcell-content .enoroidcell-img img{
  border-radius: 20px;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-name{
  color: var(--color-dark);
  margin-bottom: 20px;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-name .enoroidai-btn{
  font-size: 14px;
  padding: 5px 11px;
  border-radius: 50px;
  margin-left: 10px;
  text-transform: capitalize;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-info-base strong{
  color: var(--color-dark);
  font-weight: 500;
  margin-right: 5px;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-info-base{
  margin: 10px 0;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-info-base a{
  color: var(--theme-color);
}

.enoroidcell-details .enoroidcell-content .enoroidcell-info-base a:hover{
  color: var(--theme-color2);
}

.enoroidcell-details .enoroidcell-content .enoroidcell-info-base span{
  color: var(--body-text-color);
}

.enoroidcell-details .enoroidcell-content .enoroidcell-info-base .enoroidcell-quality,
.enoroidcell-details .enoroidcell-content .enoroidcell-info-base .enoroidcell-rating{
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--box-shadow);
}

.enoroidcell-details .enoroidcell-content .enoroidcell-info-base .enoroidcell-rating{
  background: var(--theme-color2);
}

.enoroidcell-details .enoroidcell-content .enoroidcell-download{
  padding: 0 15px;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-download h5{
  color: var(--color-dark);
  margin-bottom: 20px;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-download .enoroidai-btn{
  width: 100%;
  margin: 10px 0;
  text-align: center;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-keyword{
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid var(--border-info-color);
}

.enoroidcell-details .enoroidcell-content .enoroidcell-keyword span{
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 500;
  margin-right: 5px;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-keyword a{
  border: 1px solid var(--border-info-color);
  border-radius: 50px;
  color: var(--body-text-color);
  padding: 0px 15px;
  margin: 5px 1px;
}

.enoroidcell-details .enoroidcell-content .enoroidcell-keyword a:hover{
  border-color: var(--theme-color);
  color: var(--theme-color);
}

/* photo-gallery */
.enoroidcell-details .photo-gallery img{
  border-radius: 20px;
}



/*=======================
25. Comment & review css
=========================*/


/* comment-list */
.dunebell--comment-list .enoroidai-FeaturedTile-header{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dunebell--comment-content{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 150px;
}

.dunebell--comment-info h6{
  font-size: 15px;
}

.dunebell--comment-info h6 a{
  color: var(--color-dark);
}

.dunebell--comment-info h6 a:hover{
  color: var(--theme-color);
}

.dunebell--comment-content .dunebell--comment-img img{
  width: 35px;
  border-radius: 50px;
}

.dunebell--comment-text{
  font-size: 15px;
  color: var(--body-text-color);
}

.dunebell--comment-text.dunebell--comment{
  width: 350px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* comment-modal */
.dunebell--comment-modal .duneOne--Modal-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.dunebell--comment-modal .dunebell--comment-user{
  display: flex;
  align-items: center;
  gap: 10px;
}

.dunebell--comment-modal .efmode--user-img img{
  width: 50px;
  border-radius: 50px;
}

.dunebell--comment-modal .efmode--user-info h6 a{
  color: var(--color-dark);
}

.dunebell--comment-modal .efmode--user-info h6 a:hover{
  color: var(--theme-color);
}

.dunebell--comment-modal .efmode--user-info span{
  color: var(--body-text-color);
  font-size: 14px;
}

.dunebell--comment-modal .dunebell--comment-like{
  display: flex;
  align-items: center;
  gap: 15px;
}

.dunebell--comment-modal .dunebell--comment-like i{
  margin-right: 4px;
}

.dunebell--comment-modal .dunebell--comment-like .like{
  color: var(--theme-color);
}

.dunebell--comment-modal .dunebell--comment-like .dislike{
  color: var(--color-red);
}

.dunebell--comment-modal .dunebell--comment-text p{
  color: var(--body-text-color);
}

.dunebell--comment-modal .dunebell--comment-reply{
  border-top: 1px solid var(--border-info-color);
  padding-top: 20px;
}

/* review-list */
.duneBellreview-list .enoroidai-FeaturedTile-header{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.duneBellreview-content{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 150px;
}

.duneBellreview-info h6{
  font-size: 15px;
}

.duneBellreview-info h6 a{
  color: var(--color-dark);
}

.duneBellreview-info h6 a:hover{
  color: var(--theme-color);
}

.duneBellreview-content .duneBellreview-img img{
  width: 35px;
  border-radius: 50px;
}

.duneBellreview-text{
  font-size: 15px;
  color: var(--body-text-color);
}

.duneBellreview-text.duneBellrate{
  font-weight: 500;
  color: var(--color-yellow);
}

.duneBellreview-text.duneBellreview{
  width: 350px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* review-modal */
.duneBellreview-modal .duneOne--Modal-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.duneBellreview-modal .duneBellreview-user{
  display: flex;
  align-items: center;
  gap: 10px;
}

.duneBellreview-modal .efmode--user-img img{
  width: 50px;
  border-radius: 50px;
}

.review-modal .efmode--user-info h6 a{
  color: var(--color-dark);
}

.duneBellreview-modal .efmode--user-info h6 a:hover{
  color: var(--theme-color);
}

.duneBellreview-modal .efmode--user-info span{
  color: var(--body-text-color);
  font-size: 14px;
}

.duneBellreview-modal .duneBellrate{
  background: var(--color-yellow);
  color: var(--color-white);
  font-weight: 500;
  padding: 0 10px;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

.duneBellreview-modal .duneBellreview-text p{
  color: var(--body-text-color);
}

.duneBellreview-modal .duneBellreview-reply{
  border-top: 1px solid var(--border-info-color);
  padding-top: 20px;
}


/* =========================================================
   ENOFLIX / DUNEBELL MOVIE DETAILS MODALS
   Comment Modal + Review Modal
   Complete dark-theme modal CSS
========================================================= */

/* =======================
   Modal variables
======================= */
:root{
  --dune-modal-z: 1055;
  --dune-backdrop-z: 1050;
  --dune-modal-width: 760px;
  --dune-modal-radius: 28px;
  --dune-modal-radius-sm: 20px;
  --dune-modal-pad: 24px;

  --dune-modal-bg: #08284a;
  --dune-modal-bg-soft: #0b2f55;
  --dune-modal-bg-deep: #041f3c;
  --dune-modal-border: rgba(255,255,255,.09);
  --dune-modal-border-strong: rgba(255,255,255,.14);
  --dune-modal-shadow:
    0 25px 80px rgba(0,0,0,.45),
    0 10px 30px rgba(0,0,0,.22);

  --dune-text: #ffffff;
  --dune-text-soft: rgba(255,255,255,.72);
  --dune-text-faint: rgba(255,255,255,.48);

  --dune-theme: #ffb200;
  --dune-theme-2: #1ea7ff;
  --dune-red: #d32234;
  --dune-green: #10c98f;

  --dune-input-bg: #001f43;
  --dune-input-border: rgba(255,255,255,.12);
  --dune-input-border-focus: rgba(255,178,0,.45);
  --dune-input-shadow-focus: 0 0 0 4px rgba(255,178,0,.12);

  --dune-btn-bg: #ffb200;
  --dune-btn-color: #081a32;
  --dune-btn-hover: #ffc53d;
}

/* =======================
   Bootstrap modal base override
======================= */
.modal{
  --bs-modal-zindex: var(--dune-modal-z);
  --bs-modal-width: var(--dune-modal-width);
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 1rem;
  --bs-modal-color: var(--dune-text);
  --bs-modal-bg: transparent;
  --bs-modal-border-width: 0;
  --bs-modal-border-color: transparent;
  --bs-modal-border-radius: var(--dune-modal-radius);
  --bs-modal-box-shadow: none;
  --bs-modal-inner-border-radius: var(--dune-modal-radius);
  --bs-modal-header-padding: 0;
  --bs-modal-header-border-width: 0;
  --bs-modal-footer-gap: .75rem;
  --bs-modal-footer-bg: transparent;
  --bs-modal-footer-border-width: 0;

  position: fixed;
  inset: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal.show{
  display: block;
}

.modal.fade .modal-dialog{
  transform: translateY(-22px) scale(.985);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

.modal.show .modal-dialog{
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-dialog{
  position: relative;
  width: auto;
  max-width: var(--bs-modal-width);
  margin: 2rem auto;
  pointer-events: none;
}

.modal-dialog-centered{
  min-height: calc(100% - 4rem);
  display: flex;
  align-items: center;
}

.modal-dialog-scrollable{
  height: calc(100% - 4rem);
}

.modal-dialog-scrollable .duneOne--Modal-content{
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .duneOne--Modal-body{
  overflow-y: auto;
}

/* =======================
   Backdrop
======================= */
.modal-backdrop{
  --bs-backdrop-zindex: var(--dune-backdrop-z);
  --bs-backdrop-bg: rgba(2, 13, 27, .82);
  --bs-backdrop-opacity: 1;
  position: fixed;
  inset: 0;
  z-index: var(--bs-backdrop-zindex);
  background:
    radial-gradient(circle at top, rgba(17,60,109,.35), transparent 38%),
    rgba(2,13,27,.82);
  backdrop-filter: blur(6px);
}

.modal-backdrop.fade{
  opacity: 0;
}

.modal-backdrop.show{
  opacity: 1;
}

/* =======================
   Modal shell
======================= */
.duneOne--Modal-content{
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    var(--dune-modal-bg);
  border: 1px solid var(--dune-modal-border);
  border-radius: var(--dune-modal-radius);
  box-shadow: var(--dune-modal-shadow);
  color: var(--dune-text);
  padding: var(--dune-modal-pad);
  overflow: visible !important;
}

/* =======================
   Close button
======================= */
.duneOne--Modal-close{
  position: absolute;
  top: -12px;
  right: -12px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, #1b9cff, #117ce0);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  z-index: 3;
}

.duneOne--Modal-close:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 34px rgba(0,0,0,.3);
}

.duneOne--Modal-close:active{
  transform: translateY(0) scale(.98);
}

.duneOne--Modal-close i{
  font-size: 16px;
  line-height: 1;
}

/* =======================
   Header / body / footer zones
======================= */
.duneOne--Modal-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 18px 0;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--dune-modal-border);
}

.duneOne--Modal-body{
  padding: 0;
  color: var(--dune-text);
}

.duneOne--Modal-footer{
  padding: 18px 0 0 0;
  margin-top: 18px;
  border-top: 1px solid var(--dune-modal-border);
}

/* =======================
   Comment modal header
======================= */
.dunebell--comment-modal .modal-dialog{
  max-width: 760px;
}

.dunebell--comment-modal .duneOne--Modal-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.dunebell--comment-modal .dunebell--comment-user{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 320px;
}

.dunebell--comment-modal .efmode--user-img{
  flex: 0 0 auto;
}

.dunebell--comment-modal .efmode--user-img img{
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.dunebell--comment-modal .efmode--user-info{
  min-width: 0;
}

.dunebell--comment-modal .efmode--user-info h6{
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.dunebell--comment-modal .efmode--user-info h6 a{
  color: var(--dune-text);
  text-decoration: none;
}

.dunebell--comment-modal .efmode--user-info h6 a:hover{
  color: var(--dune-theme);
}

.dunebell--comment-modal .efmode--user-info span{
  display: inline-block;
  font-size: 14px;
  color: var(--dune-text-soft);
}

.dunebell--comment-modal .dunebell--comment-like{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dunebell--comment-modal .dunebell--comment-like .like,
.dunebell--comment-modal .dunebell--comment-like .dislike{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--dune-modal-border-strong);
  background: rgba(255,255,255,.03);
}

.dunebell--comment-modal .dunebell--comment-like .like{
  color: var(--dune-theme);
}

.dunebell--comment-modal .dunebell--comment-like .dislike{
  color: var(--dune-red);
}

.dunebell--comment-modal .dunebell--comment-like i{
  margin-right: 0;
}

/* =======================
   Comment modal body
======================= */
.dunebell--comment-modal .duneOne--Modal-body{
  padding: 0;
}

.dunebell--comment-modal .dunebell--comment-text{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--dune-modal-border);
  border-radius: 20px;
  padding: 18px 18px 16px;
}

.dunebell--comment-modal .dunebell--comment-text p{
  margin: 0;
  color: var(--dune-text-soft);
  font-size: 15px;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}

/* =======================
   Comment reply section
======================= */
.dunebell--comment-modal .dunebell--comment-reply{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--dune-modal-border);
}

.dunebell--comment-modal .form-group{
  margin-bottom: 14px;
}

.dunebell--comment-modal .form-icon{
  position: relative;
}

.dunebell--comment-modal .form-icon > i{
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 2;
  color: var(--dune-theme);
  font-size: 16px;
}

.dunebell--comment-modal .form-control{
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border-radius: 18px;
  border: 1px solid var(--dune-input-border);
  background: var(--dune-input-bg);
  color: var(--dune-text);
  padding: 16px 16px 16px 46px;
  outline: 0;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.dunebell--comment-modal .form-control::placeholder{
  color: var(--dune-text-faint);
}

.dunebell--comment-modal .form-control:focus{
  border-color: var(--dune-input-border-focus);
  box-shadow: var(--dune-input-shadow-focus);
}

/* =======================
   Review modal header
======================= */
.duneBellreview-modal .modal-dialog{
  max-width: 760px;
}

.duneBellreview-modal .duneOne--Modal-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.duneBellreview-modal .duneBellreview-user{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 320px;
}

.duneBellreview-modal .efmode--user-img img{
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.duneBellreview-modal .efmode--user-info{
  min-width: 0;
}

.duneBellreview-modal .efmode--user-info h6{
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.duneBellreview-modal .efmode--user-info h6 a{
  color: var(--dune-text);
  text-decoration: none;
}

.duneBellreview-modal .efmode--user-info h6 a:hover{
  color: var(--dune-theme);
}

.duneBellreview-modal .efmode--user-info span{
  font-size: 14px;
  color: var(--dune-text-soft);
}

.duneBellreview-modal .duneBellrate{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffbf2e, #f0a300);
  color: #13263c;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(255,178,0,.22);
}

.duneBellreview-modal .duneBellrate i{
  font-size: 15px;
}

/* =======================
   Review body
======================= */
.duneBellreview-modal .duneBellreview-text{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--dune-modal-border);
  border-radius: 20px;
  padding: 18px 18px 16px;
}

.duneBellreview-modal .duneBellreview-text p{
  margin: 0;
  color: var(--dune-text-soft);
  font-size: 15px;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}

/* =======================
   Review reply section
======================= */
.duneBellreview-modal .duneBellreview-reply{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--dune-modal-border);
}

.duneBellreview-modal .form-group{
  margin-bottom: 14px;
}

.duneBellreview-modal .form-icon{
  position: relative;
}

.duneBellreview-modal .form-icon > i{
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 2;
  color: var(--dune-theme);
  font-size: 16px;
}

.duneBellreview-modal .form-control{
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border-radius: 18px;
  border: 1px solid var(--dune-input-border);
  background: var(--dune-input-bg);
  color: var(--dune-text);
  padding: 16px 16px 16px 46px;
  outline: 0;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.duneBellreview-modal .form-control::placeholder{
  color: var(--dune-text-faint);
}

.duneBellreview-modal .form-control:focus{
  border-color: var(--dune-input-border-focus);
  box-shadow: var(--dune-input-shadow-focus);
}

/* =======================
   Buttons inside modals
======================= */
.dunebell--comment-modal .enoroidai-btn,
.duneBellreview-modal .enoroidai-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--dune-btn-bg);
  color: var(--dune-btn-color);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 26px rgba(255,178,0,.2);
}

.dunebell--comment-modal .enoroidai-btn:hover,
.duneBellreview-modal .enoroidai-btn:hover{
  background: var(--dune-btn-hover);
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.dunebell--comment-modal .enoroidai-btn:active,
.duneBellreview-modal .enoroidai-btn:active{
  transform: translateY(0);
}

/* =======================
   Scrollbar
======================= */
.duneOne--Modal-body::-webkit-scrollbar,
.modal-dialog-scrollable .duneOne--Modal-body::-webkit-scrollbar{
  width: 10px;
}

.duneOne--Modal-body::-webkit-scrollbar-track,
.modal-dialog-scrollable .duneOne--Modal-body::-webkit-scrollbar-track{
  background: rgba(255,255,255,.04);
  border-radius: 999px;
}

.duneOne--Modal-body::-webkit-scrollbar-thumb,
.modal-dialog-scrollable .duneOne--Modal-body::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}

.duneOne--Modal-body::-webkit-scrollbar-thumb:hover,
.modal-dialog-scrollable .duneOne--Modal-body::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,.28);
}

/* =======================
   Utility states
======================= */
.dunebell--comment-modal .is-hidden,
.duneBellreview-modal .is-hidden{
  display: none !important;
}

.dunebell--comment-modal .text-muted,
.duneBellreview-modal .text-muted{
  color: var(--dune-text-faint) !important;
}

/* =======================
   Responsive
======================= */
@media (max-width: 991.98px){
  .modal-dialog{
    margin: 1.25rem auto;
    max-width: calc(100% - 24px);
  }

  .duneOne--Modal-content{
    padding: 20px;
    border-radius: 24px;
  }

  .duneOne--Modal-close{
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 767.98px){
  .modal{
    --bs-modal-margin: .5rem;
  }

  .modal-dialog,
  .modal-dialog-centered,
  .modal-dialog-scrollable{
    max-width: calc(100% - 16px);
    margin: .75rem auto;
    min-height: calc(100% - 1.5rem);
    height: calc(100% - 1.5rem);
  }

  .duneOne--Modal-content{
    min-height: 100%;
    border-radius: 22px;
    padding: 18px;
  }

  .duneOne--Modal-header{
    padding-right: 40px;
  }

  .dunebell--comment-modal .dunebell--comment-like,
  .duneBellreview-modal .duneBellrate{
    width: 100%;
  }

  .dunebell--comment-modal .dunebell--comment-like .like,
  .dunebell--comment-modal .dunebell--comment-like .dislike{
    flex: 1 1 auto;
    justify-content: center;
  }

  .dunebell--comment-modal .efmode--user-img img,
  .duneBellreview-modal .efmode--user-img img{
    width: 50px;
    height: 50px;
  }

  .dunebell--comment-modal .efmode--user-info h6,
  .duneBellreview-modal .efmode--user-info h6{
    font-size: 16px;
  }

  .dunebell--comment-modal .dunebell--comment-text,
  .duneBellreview-modal .duneBellreview-text{
    padding: 16px;
    border-radius: 18px;
  }

  .dunebell--comment-modal .form-control,
  .duneBellreview-modal .form-control{
    min-height: 110px;
    border-radius: 16px;
  }
}

@media (max-width: 479.98px){
  .duneOne--Modal-content{
    padding: 16px;
    border-radius: 18px;
  }

  .duneOne--Modal-header{
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .dunebell--comment-modal .dunebell--comment-user,
  .duneBellreview-modal .duneBellreview-user{
    gap: 10px;
  }

  .dunebell--comment-modal .efmode--user-img img,
  .duneBellreview-modal .efmode--user-img img{
    width: 44px;
    height: 44px;
  }

  .dunebell--comment-modal .dunebell--comment-like{
    gap: 8px;
  }

  .dunebell--comment-modal .dunebell--comment-like .like,
  .dunebell--comment-modal .dunebell--comment-like .dislike{
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .duneBellreview-modal .duneBellrate{
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .dunebell--comment-modal .form-control,
  .duneBellreview-modal .form-control{
    padding-left: 42px;
  }

  .dunebell--comment-modal .form-icon > i,
  .duneBellreview-modal .form-icon > i{
    left: 14px;
  }
}

/* =========================================================
   Accessibility Helpers
========================================================= */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
   Genre Header - Premium OTT Redesign
========================================================= */

.genre-list .enoroidai-FeaturedTile {
  border-radius: 30px;
  overflow: hidden;
}

.genre-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0 0 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.genre-list-header__left {
  flex: 1 1 420px;
  min-width: 0;
}

.genre-list-header__right {
  flex: 0 1 760px;
  min-width: 0;
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-left: auto;
}

/* =========================================================
   Intro
========================================================= */

.genre-page-intro {
  max-width: 720px;
}

.genre-page-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(255,169,0,0.08);
}

.genre-page-intro__badge i {
  color: #ffb21f;
  font-size: 13px;
}

.genre-list-header .enoroidai-FeaturedTile-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(
    95deg,
    #fff6d2 0%,
    #ffd26a 25%,
    #ffa900 50%,
    #ffcf5a 75%,
    #fff2c2 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 5s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(255,169,0,0.15));
}

@keyframes goldShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.genre-page-intro p {
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,0.66);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================
   Header tools row
========================================================= */

.genre-header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
}

.genre-header-tool {
  position: relative;
  min-height: 62px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

/* =========================================================
   Limit Selector
========================================================= */

.genre-header-tool--limit {
  width: 182px;
  min-width: 182px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 5px;
  gap: 7px;
}

/* icon block */
.genre-header-tool--limit .genre-header-tool__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* native select fallback */
.genre-header-select,
.genre-header-tool--limit .select,
.genre-header-tool--limit .nice-select {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  height: 48px;
  line-height: 46px;
  margin: 0;
  display: block;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(2,18,40,0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  padding: 0 34px 0 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.genre-header-tool--limit .nice-select {
  float: none;
}

.genre-header-tool--limit .nice-select:hover,
.genre-header-tool--limit .nice-select.open,
.genre-header-tool--limit .nice-select:focus,
.genre-header-select:focus,
.genre-header-tool--limit .select:focus {
  outline: none;
  border-color: rgba(255,176,31,0.45);
  box-shadow: 0 0 0 4px rgba(255,176,31,0.12);
}

.genre-header-tool--search {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  width: 100%;
  padding: 9px;
  display: flex;
  align-items: center;
}

.genre-header-tool--button {
  width: 100%;
  min-width: 0;
  min-height: 62px;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  background: transparent;
  border: none;
  box-shadow: none;
}

.genre-header-tool__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
}

.genre-header-tool__icon i {
  color: #ffb21f;
  font-size: 14px;
}

/* =========================================================
   Limit selector
========================================================= */

.genre-header-tool--limit::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #8fb2d9;
  font-size: 14px;
  pointer-events: none;
}

/* dropdown arrow */
.genre-header-tool--limit .nice-select:after {
  right: 14px;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-bottom: 2px solid #8fb2d9;
  border-right: 2px solid #8fb2d9;
}

.genre-header-tool--limit .nice-select .list {
  width: 100%;
  margin-top: 8px;
  border-radius: 16px;
  background: #0a2746;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 34px rgba(0,0,0,0.28);
  overflow: hidden;
}

.genre-header-tool--limit .nice-select .option,
.genre-header-tool--limit .select option {
  font-size: 15px;
}

.genre-header-tool--limit .nice-select .option {
  min-height: 44px;
  line-height: 44px;
  padding-left: 14px;
  padding-right: 14px;
  color: #fff;
}

.genre-header-tool--limit .nice-select .option:hover,
.genre-header-tool--limit .nice-select .option.focus,
.genre-header-tool--limit .nice-select .option.selected.focus {
  background: rgba(255,169,0,0.14);
  color: #ffb21f;
}

.genre-header-select:focus,
.genre-header-tool--limit .select:focus {
  outline: none;
  border-color: rgba(255,176,31,0.5);
  box-shadow: 0 0 0 4px rgba(255,176,31,0.12);
}

/* =========================================================
   Search box
========================================================= */

.genre-header-searchbox {
  position: relative;
  width: 100%;
}

.genre-header-searchbox i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffb21f;
  font-size: 18px;
  z-index: 2;
  pointer-events: none;
}

.genre-header-searchbox .form-control {
  width: 100%;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(2,18,40,0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  padding: 0 16px 0 48px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.genre-header-searchbox .form-control::placeholder {
  color: rgba(255,255,255,0.42);
  font-size: 13px;
  font-weight: 400;
}

.genre-header-searchbox .form-control:focus {
  outline: none;
  border-color: rgba(31, 255, 244, 0.5);
  box-shadow: 0 0 0 4px rgba(31, 255, 244, 0.14);
  background: rgba(2,18,40,0.86);
}

/* =========================================================
   Add button
========================================================= */

.genre-header-add-btn.enoroidai-btn {
  width: auto;
  min-width: 240px;
  max-width: 280px;
  height: 48px;
  border-radius: 16px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
  border: 1px solid rgba(255,190,43,0.26);
  background: linear-gradient(180deg, #0084ff 0%, #00e6f2 100%);
  box-shadow:
    0 16px 30px rgba(0, 190, 255, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.genre-header-add-btn.enoroidai-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 20px 38px rgba(0, 200, 255, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.genre-header-add-btn.enoroidai-btn i,
.genre-header-add-btn.enoroidai-btn span {
  font-size: 14px;
}

.genre-header-add-btn.enoroidai-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 5px rgba(0, 210, 255, 0.18),
    0 20px 38px rgba(0, 200, 255, 0.28);
}

/* =========================================================
   Responsive Genre Header
========================================================= */

@media (max-width: 1199px) {
  .genre-list-header__left,
  .genre-list-header__right {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .genre-list-header__right {
    align-items: stretch;
  }

  .genre-header-tools {
    justify-content: flex-start;
  }

  .genre-header-tool--button {
    justify-content: flex-start;
  }

  .genre-header-add-btn.enoroidai-btn {
    min-width: 240px;
  }
}

@media (max-width: 767px) {
  .genre-page-intro__badge {
    min-height: 34px;
    font-size: 12px;
    padding: 0 12px;
  }

  .genre-list-header .enoroidai-FeaturedTile-title {
    font-size: 26px;
  }

  .genre-page-intro p {
    font-size: 15px;
    line-height: 1.6;
  }

  .genre-header-tools {
    flex-wrap: wrap;
    gap: 10px;
  }

  .genre-header-tool {
    min-height: auto;
    border-radius: 18px;
  }

  .genre-header-tool--limit,
  .genre-header-tool--search,
  .genre-header-tool--button {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
  }

  .genre-header-tool--limit,
  .genre-header-tool--search {
    padding: 10px;
  }

  .genre-header-tool--button {
    justify-content: stretch;
  }

  .genre-header-select,
  .genre-header-tool--limit .select,
  .genre-header-tool--limit .nice-select,
  .genre-header-searchbox .form-control {
    height: 46px;
    font-size: 15px;
    line-height: 44px;
  }

  .genre-header-add-btn.enoroidai-btn {
    width: 100%;
    min-width: 100%;
    min-height: 54px;
    border-radius: 16px;
    font-size: 15px;
  }
}


/* =========================================================
   Genre Stats Cards - Premium OTT Widget Upgrade
========================================================= */

.genre-stat-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 176, 0, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 14px 34px rgba(0,0,0,0.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.genre-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 176, 0, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 40px rgba(0,0,0,0.24);
}

.genre-stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(180deg, #ffb000 0%, #ff7a00 100%);
  opacity: .9;
}

.genre-stat-card .enoroidai-FeaturedTile-body {
  position: relative;
  padding: 18px 18px 16px;
}

.genre-stat-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.genre-stat-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,176,0,.18) 0%, rgba(255,122,0,.10) 100%);
  border: 1px solid rgba(255,176,0,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  color: #ffb11a;
  flex: 0 0 46px;
}

.genre-stat-card__icon i {
  font-size: 18px;
  line-height: 1;
}

.genre-stat-card__mini {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.70);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.genre-stat-card__mini i {
  font-size: 11px;
  color: #8cc8ff;
}

.genre-stat-card h6 {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
}

.genre-stat-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.genre-stat-card__sub {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,0.46);
}

/* individual color moods */
.genre-stat-card--total {
  background:
    radial-gradient(circle at top right, rgba(76,156,255,0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}

.genre-stat-card--total .genre-stat-card__icon {
  background: linear-gradient(180deg, rgba(76,156,255,.18) 0%, rgba(76,156,255,.10) 100%);
  border-color: rgba(76,156,255,.20);
  color: #65a8ff;
}

.genre-stat-card--total::before {
  background: linear-gradient(180deg, #58a6ff 0%, #216bff 100%);
}

.genre-stat-card--active {
  background:
    radial-gradient(circle at top right, rgba(32,214,167,0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}

.genre-stat-card--active .genre-stat-card__icon {
  background: linear-gradient(180deg, rgba(32,214,167,.18) 0%, rgba(32,214,167,.10) 100%);
  border-color: rgba(32,214,167,.20);
  color: #21d8a8;
}

.genre-stat-card--active::before {
  background: linear-gradient(180deg, #21d8a8 0%, #0aa17d 100%);
}

.genre-stat-card--featured {
  background:
    radial-gradient(circle at top right, rgba(255,194,26,0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}

.genre-stat-card--featured .genre-stat-card__icon {
  background: linear-gradient(180deg, rgba(255,194,26,.22) 0%, rgba(255,194,26,.10) 100%);
  border-color: rgba(255,194,26,.20);
  color: #ffc21a;
}

.genre-stat-card--featured::before {
  background: linear-gradient(180deg, #ffc21a 0%, #ff9800 100%);
}

.genre-stat-card--movies {
  background:
    radial-gradient(circle at top right, rgba(147,118,255,0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}

.genre-stat-card--movies .genre-stat-card__icon {
  background: linear-gradient(180deg, rgba(147,118,255,.20) 0%, rgba(147,118,255,.10) 100%);
  border-color: rgba(147,118,255,.20);
  color: #9b7dff;
}

.genre-stat-card--movies::before {
  background: linear-gradient(180deg, #9b7dff 0%, #6a59ff 100%);
}

.genre-stat-card--hidden {
  background:
    radial-gradient(circle at top right, rgba(255, 100, 135, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}

.genre-stat-card--hidden .genre-stat-card__icon {
  background: linear-gradient(180deg, rgba(255,100,135,.20) 0%, rgba(255,100,135,.10) 100%);
  border-color: rgba(255,100,135,.20);
  color: #ff6487;
}

.genre-stat-card--hidden::before {
  background: linear-gradient(180deg, #ff6487 0%, #e63b6d 100%);
}

.row.g-4 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

@media (max-width: 767px) {

  .genre-stat-card .enoroidai-FeaturedTile-body {
    padding: 14px;
  }

  .genre-stat-card__top {
    margin-bottom: 10px;
  }

  .genre-stat-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-basis: 40px;
  }

  .genre-stat-card__icon i {
    font-size: 16px;
  }

  .genre-stat-card h6 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .genre-stat-card h3 {
    font-size: 26px;
  }

  .genre-stat-card__sub {
    font-size: 11px;
    line-height: 1.4;
    margin-top: 6px;
  }

  .genre-stat-card__mini {
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
  }
}

/* =========================================================
   Genre Filters Row - Premium OTT Admin Redesign
========================================================= */

.genre-list .genre-filters-row {
  margin-top: 4px;
}

.genre-list .genre-filter-card {
  position: relative;
  height: 100%;
  min-height: 96px;
  padding: 14px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.genre-list .genre-filter-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.11);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.genre-list .genre-filter-card .form-group {
  margin-bottom: 0;
}

.genre-list .genre-filter-card .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  color: rgba(255,255,255,0.78);
}

.genre-list .genre-filter-card .form-label i {
  font-size: 13px;
  color: #ffb21f;
}

.genre-list .genre-filter-card .form-icon {
  position: relative;
}

.genre-list .genre-filter-card .form-icon > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 15px;
  color: #ffb21f;
  pointer-events: none;
}

.genre-list .genre-filter-card .form-control,
.genre-list .genre-filter-card select.form-control {
  width: 100%;
  min-height: 48px;
  height: 48px;
  padding: 0 14px 0 42px;
  border-radius: 16px;
  background: rgba(2, 18, 40, 0.72);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.genre-list .genre-filter-card .form-control:hover,
.genre-list .genre-filter-card select.form-control:hover {
  border-color: rgba(255,255,255,0.14);
}

.genre-list .genre-filter-card .form-control:focus,
.genre-list .genre-filter-card select.form-control:focus {
  outline: none;
  border-color: rgba(255,176,31,0.55);
  box-shadow: 0 0 0 4px rgba(255,176,31,0.12);
  background: rgba(2, 18, 40, 0.86);
}

.genre-list .genre-filter-card select.form-control {
  background-image:
    linear-gradient(45deg, transparent 50%, #8fb2d9 50%),
    linear-gradient(135deg, #8fb2d9 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.genre-list .genre-filter-card select.form-control option {
  color: #fff;
  background: #08284c;
}

.genre-list .genre-filter-card--status {
  border-top: 1px solid rgba(32,214,167,0.16);
}

.genre-list .genre-filter-card--featured {
  border-top: 1px solid rgba(255,194,26,0.18);
}

.genre-list .genre-filter-card--sort {
  border-top: 1px solid rgba(76,156,255,0.18);
}

.genre-list .genre-filter-action {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.genre-list .genre-filter-action .enoroidai-btn {
  width: 100%;
  min-height: 96px;
  font-size: 15px;
  border-radius: 22px;
  font-weight: 600;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(60, 220, 120, 0.28);
  background: linear-gradient(180deg, #0f8f78 0%, #0c9605 100%);
  color: #fff;
  box-shadow:
    0 16px 30px rgba(19, 180, 76, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.genre-list .genre-filter-action .enoroidai-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 20px 38px rgba(19, 180, 76, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.genre-list .genre-filter-action .enoroidai-btn i {
  font-size: 15px;
}

.genre-list .genre-filter-action .enoroidai-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 5px rgba(30, 210, 100, 0.16),
    0 20px 38px rgba(19, 180, 76, 0.24);
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1199px) {
  .genre-list .genre-filter-card {
    min-height: 90px;
    padding: 14px;
    border-radius: 20px;
  }

  .genre-list .genre-filter-card .form-control,
  .genre-list .genre-filter-card select.form-control {
    min-height: 46px;
    height: 46px;
    font-size: 14px;
  }

  .genre-list .genre-filter-action .enoroidai-btn {
    min-height: 90px;
    border-radius: 20px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .genre-list .genre-filter-card {
    min-height: auto;
    padding: 14px;
    border-radius: 18px;
  }

  .genre-list .genre-filter-card .form-label {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .genre-list .genre-filter-card .form-control,
  .genre-list .genre-filter-card select.form-control {
    min-height: 44px;
    height: 44px;
    font-size: 13px;
    border-radius: 14px;
  }

  .genre-list .genre-filter-action .enoroidai-btn {
    min-height: 54px;
    border-radius: 16px;
    font-size: 14px;
  }
}


/* =========================================================
   Genre List Table - balanced fit
========================================================= */
.genre-list .table-modern {
  width: 100%;
  overflow-y: visible;
}

.genre-list .table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.genre-list .table th,
.genre-list .table td {
  font-size: 13px;
  font-weight: 500;
  vertical-align: middle;
}

.genre-list .table thead th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 16px 12px;
}

.genre-list .table tbody td {
  padding: 18px 12px;
  overflow: hidden;
}

.genre-list .table tbody tr {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
}

/* =========================================================
   Column sizing | Better column compression
========================================================= */

.genre-list .table th:nth-child(1),
.genre-list .table td:nth-child(1) {
  width: 54px;
  min-width: 54px;
}

.genre-list .table th:nth-child(2),
.genre-list .table td:nth-child(2) {
  width: 120px;
  min-width: 120px;
}

.genre-list .table th:nth-child(3),
.genre-list .table td:nth-child(3) {
  width: 90px;
  min-width: 90px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

.genre-list .table th:nth-child(4),
.genre-list .table td:nth-child(4) {
  width: 100px;
  min-width: 100px;
}

.genre-list .table th:nth-child(5),
.genre-list .table td:nth-child(5) {
  width: 85px;
  min-width: 85px;
}

.genre-list .table th:nth-child(6),
.genre-list .table td:nth-child(6) {
  width: 150px;
  min-width: 150px;
}

.genre-list .table th:nth-child(7),
.genre-list .table td:nth-child(7) {
  width: 90px;
  min-width: 90px;
}

.genre-list .table th:nth-child(8),
.genre-list .table td:nth-child(8) {
  width: 105px;
  min-width: 105px;
}

.genre-list .table th:nth-child(9),
.genre-list .table td:nth-child(9) {
  width: 90px;
  min-width: 90px;
}

/* =========================================================
   Cell content control
========================================================= */

.genre-list__name-wrap{
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.genre-list__name-wrap .table-text,
.genre-list .table td:nth-child(2) .table-text{
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.genre-dot{
  display: inline-block;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* genre has movies */
.genre-dot--active{
  background: #2ecc71;
  box-shadow: 0 0 6px rgba(46,204,113,.5);
  animation: genrePulse 2s infinite;
}

@keyframes genrePulse{
  0%{box-shadow:0 0 4px rgba(46,204,113,.4)}
  50%{box-shadow:0 0 10px rgba(46,204,113,.8)}
  100%{box-shadow:0 0 4px rgba(46,204,113,.4)}
}

.genre-dot--hidden{
  background:#f5b942;
  box-shadow:0 0 6px rgba(245,185,66,.5);
}

/* empty genre */
.genre-dot--empty{
  background:#e74c3c;
  box-shadow:0 0 6px rgba(231,76,60,.5);
}

.genre-meta-mini{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.genre-icon-pill,
.genre-color-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}

.genre-movie-preview{
  font-size: 13px;
  display: block;
  max-width: 180px;
  line-height: 1.4;
}

.genre-movie-preview > span{
  display: -webkit-box;
  font-size: 13px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(255,255,255,.82);
  word-break: break-word;
}

.genre-more-link{
  display: inline-block;
  margin-top: 4px;
  color: #ffb21f;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
}

.genre-more-link:hover{
  color: #00c9fb;
}


/* =========================================================
   Action column
========================================================= */

.genre-actions-col{
  width: 180px;
  min-width: 180px;
  text-align: right;
  overflow: visible;
}

.genre-actions-toolbar{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex-wrap: wrap;
  white-space: normal;
  padding-left: 6px;
}

.genre-actions-toolbar .btn{
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  border: none;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.genre-actions-toolbar .btn i{
  font-size: 13px;
  line-height: 1;
}

.genre-actions-toolbar .btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.24);
}

.genre-actions-toolbar .btn:focus{
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,170,0,0.18);
}

.genre-actions-toolbar .btn-dark{
  background: #6b7785;
  color: #d7e4f5;
}

.genre-actions-toolbar .btn-info{
  background: #4c9cff;
  color: #fff;
}

.genre-actions-toolbar .btn-secondary{
  background: #7b8798;
  color: #fff;
}

.genre-actions-toolbar .btn-success{
  background: #20d6a7;
  color: #fff;
}

.genre-actions-toolbar .btn-warning{
  background: #ffc21a;
  color: #fff;
}

.genre-actions-toolbar .btn-primary{
  background: #4d9cff;
  color: #fff;
}

.genre-actions-toolbar .btn-danger{
  background: #f62727;
  color: #fff;
}

/* =========================================================
   Badges / compact text
========================================================= */

.genre-list .badge{
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.genre-list .table td:nth-child(8) .badge,
.genre-list .table td:nth-child(9) .badge{
  white-space: nowrap;
}

@media (max-width: 1199px){

  /* action column */
  .genre-actions-col{
    width: 180px;
    min-width: 180px;
  }

  .genre-actions-toolbar{
    gap: 6px;
  }

  .genre-actions-toolbar .btn{
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 10px;
  }

  .genre-actions-toolbar .btn i{
    font-size: 13px;
  }

  /* reduce cell spacing */
  .genre-list .table th,
  .genre-list .table td{
    padding-left: 8px;
    padding-right: 8px;
  }

  /* preview titles column */
  .genre-list .table th:nth-child(6),
  .genre-list .table td:nth-child(6){
    width: 150px;
    min-width: 150px;
  }

  .genre-movie-preview{
    max-width: 150px;
  }

  /* genre name */
  .genre-list__name-wrap .table-text,
  .genre-list .table td:nth-child(2) .table-text{
    max-width: 100px;
  }

  /* enable scroll only on smaller screens */
  .genre-list .table-modern{
    overflow-x: auto;
  }

  .genre-list .table{
    min-width: 980px;
  }

}

/* desktop */
@media (min-width: 1200px){

  .genre-list .table-modern{
    overflow-x: visible;
  }

}

/* =========================================================
   Premium Genre Modal Shell
========================================================= */
#genreMoviesModal .modal-dialog,
#genrePreviewModal .modal-dialog,
#genreSliderPreviewModal .modal-dialog {
  max-width: 1180px;
}

.genre-modal-shell,
.duneOne--Modal-content.genre-modal-shell {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a2f58 0%, #08284c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.genre-modal-shell .duneOne--Modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 30px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.genre-modal-shell .duneOne--Modal-header .modal-title {
  color: #fff;
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.genre-modal-shell .duneOne--Modal-header p {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 15px;
}

#genrePreviewModal .duneOne--Modal-body {
  max-height: 78vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.genre-modal-shell .duneOne--Modal-body {
  padding: 26px 30px 30px;
  overflow-x: hidden;
  color: #fff;
}

.genre-modal-shell .duneOne--Modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #3aa0ff, #1d74d9);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.genre-modal-shell .duneOne--Modal-close:hover {
  transform: translateY(-1px);
}

.genre-modal-shell .form-control {
  min-height: 52px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.genre-modal-shell .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   Genre Movies Modal
========================================================= */
#genreMoviesModalTable td,
#genreMoviesModalTable th {
  vertical-align: middle;
}

#genreMoviesModal .table-modern {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#genreMoviesModal .table {
  margin-bottom: 0;
}

#genreMoviesModal .table thead th {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 14px;
}

#genreMoviesModal .table tbody td {
  padding: 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
}

#genreMoviesModal .table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

#genreMoviesModalTable img {
  width: 54px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  background: rgba(255, 255, 255, 0.05);
}

#genreMoviesModal .btn-sm.btn-primary {
  min-width: 76px;
  border-radius: 12px;
  padding: 8px 14px;
}

/* =========================================================
   Genre Preview Modal
========================================================= */
.genre-preview-layout {
  align-items: start;
}

.genre-preview-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 20px;
  min-height: 100%;
}

.genre-preview-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.genre-preview-card .genre-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 14px;
}

.genre-preview-meta {
  display: grid;
  gap: 12px;
}

.genre-preview-meta div {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.4;
}

.genre-preview-meta strong {
  color: #fff;
  margin-right: 6px;
}

.genre-movie-card-preview {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 18px;
}

.genre-movie-card-preview .featured-item {
  max-width: 340px;
}

.genre-movie-card-preview .featured-img {
  border-radius: 22px;
  overflow: hidden;
}

.genre-movie-card-preview .featured-img img,
.genre-movie-card-preview__media img,
#genrePreviewMoviePoster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.genre-movie-card-preview__media {
  width: 100%;
  max-height: 360px;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.genre-movie-card-preview__body {
  padding-top: 14px;
}

.genre-movie-card-preview__body h6,
.genre-movie-card-preview h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

.genre-chip-preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  background: #5b5f6a;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.genre-row-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
}

/* =========================================================
   Genre Slider Preview Modal
========================================================= */
.genre-slider-preview-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 20px;
}

.genre-slider-preview-wrap h5 {
  color: #fff;
  margin: 0;
}

.genre-slider-preview {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}

.genre-slider-preview::-webkit-scrollbar {
  height: 10px;
}

.genre-slider-preview::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.genre-slider-card {
  flex: 0 0 210px;
  min-width: 210px;
  max-width: 210px;
}

.genre-slider-card__poster {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.genre-slider-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.genre-slider-card__body h6 {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 8px;
}

/* =========================================================
   Bootstrap Tooltip Polish
========================================================= */
.tooltip {
  --bs-tooltip-bg: #071f3b;
  --bs-tooltip-color: #fff;
  --bs-tooltip-opacity: 1;
}

.tooltip .tooltip-inner {
  background: #071f3b;
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

/* =========================================================
   Responsive - Modal
========================================================= */

@media (max-width: 991.98px) {
  .genre-modal-shell .duneOne--Modal-header {
    padding: 22px 20px 16px;
  }

  .genre-modal-shell .duneOne--Modal-body {
    padding: 20px;
  }

  .genre-modal-shell .duneOne--Modal-header .modal-title {
    font-size: 24px;
  }

  .genre-actions-col {
    min-width: 260px;
    width: 260px;
  }

  .genre-preview-card,
  .genre-movie-card-preview,
  .genre-slider-preview-wrap {
    padding: 18px;
  }

  .genre-movie-card-preview__media {
    height: 260px;
  }

  .genre-movie-card-preview .featured-img img,
  #genrePreviewMoviePoster {
    height: 340px;
  }

  .genre-preview-card__head {
    font-size: 22px;
  }

  .genre-preview-meta div {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .genre-actions-col {
    min-width: 240px;
    width: 240px;
  }

  .genre-actions-toolbar {
    gap: 8px;
  }

  .genre-actions-toolbar .btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 14px;
  }

  .duneOne--Modal-content,
  .genre-modal-shell {
    border-radius: 24px;
  }
}

@media (max-width: 575.98px) {
  .genre-modal-shell .duneOne--Modal-close {
    width: 46px;
    height: 46px;
    top: 14px;
    right: 14px;
  }

  .genre-slider-card {
    flex: 0 0 170px;
    min-width: 170px;
    max-width: 170px;
  }

  .genre-slider-card__poster {
    height: 250px;
  }
}


/* =========================================================
   Genre Tools Modal
========================================================= */

.enoroidai-modal {
  background: linear-gradient(180deg, #0b2b4d 0%, #082340 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}

.enoroidai-modal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 22px;
  background: rgba(255,255,255,0.02);
}

.enoroidai-modal .modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.enoroidai-modal .modal-title i {
  color: #ffb21f;
  margin-right:8px;
}

.enoroidai-modal .modal-body {
  padding: 20px 22px 22px;
}

.enoroidai-modal .modal-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 22px;
}

.enoroidai-modal .btn-close {
  filter: invert(1) brightness(1.3);
  opacity: 0.85;
}

.enoroidai-modal .btn-close:hover {
  opacity: 1;
}

/* =========================================================
   Genre Tools List
========================================================= */

.genre-tools {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.genre-tool-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.genre-tool-card:hover {
  background: rgba(255,169,0,0.08);
  border-color: rgba(255,169,0,0.28);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

.genre-tool-card:focus {
  outline: none;
  border-color: rgba(255,176,31,0.42);
  box-shadow: 0 0 0 4px rgba(255,176,31,0.12);
}

.genre-tool-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}

.genre-tool-card__icon i {
  font-size: 18px;
  color: #ffb21f;
}

.genre-tool-card:hover .genre-tool-card__icon{
  background:rgba(255,178,31,0.12);
  border-color:rgba(255,178,31,0.3);
}

.genre-tool-card__content {
  min-width: 0;
  flex: 1 1 auto;
}

.genre-tool-card__content strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.genre-tool-card__content small {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  line-height: 1.5;
}

.genre-tool-card__arrow {
  color: rgba(255,255,255,0.35);
  font-size: 16px;
  transition: transform .2s ease, color .2s ease;
}

.genre-tool-card:hover .genre-tool-card__arrow {
  color: #ffb21f;
  transform: translateX(2px);
}

/* Optional label for unavailable items */
.genre-tool-card.is-disabled {
  opacity: 0.72;
  cursor: default;
}

.genre-tool-card.is-disabled:hover {
  transform: none;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.06);
  box-shadow: none;
}

.genre-tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,178,31,0.12);
  border: 1px solid rgba(255,178,31,0.2);
  color: #ffcf6a;
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
}

.modal-title-wrap {
  display: flex;
  flex-direction: column;
}

.modal-subtitle {
  margin: 2px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.58);
}


/* =========================================================
   Enobeta Modals
========================================================= */

.enobeta--modal {
  background: linear-gradient(180deg, #0b2b4d 0%, #082340 100%);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 70px rgba(0,0,0,0.34);
  overflow: hidden;
}

.enobeta--modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.enobeta--modal-titlewrap {
  display: flex;
  flex-direction: column;
}

.enobeta--modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.enobeta--modal-title i {
  color: #ffb21f;
}

.enobeta--modal-subtitle {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

.enobeta--modal-body {
  padding: 22px;
}

.enobeta--modal-close {
  filter: invert(1) brightness(1.2);
  opacity: .86;
}

/* reorder */

.enobeta--reorder-toolbar,
.enobeta--bulk-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.enobeta--reorder-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}

.enobeta--reorder-note i {
  color: #ffb21f;
}

.enobeta--reorder-list,
.enobeta--bulk-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enobeta--reorder-item,
.enobeta--bulk-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.enobeta--reorder-handle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffb21f;
  cursor: grab;
  flex: 0 0 42px;
}

.enobeta--reorder-meta,
.enobeta--bulk-meta {
  flex: 1 1 auto;
  min-width: 0;
}

.enobeta--reorder-meta strong,
.enobeta--bulk-meta strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.enobeta--reorder-meta small,
.enobeta--bulk-meta small {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
}

.enobeta--reorder-order {
  min-width: 74px;
  text-align: right;
  color: #8cc8ff;
  font-weight: 700;
}

.enobeta--checkline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.enobeta--bulk-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* analytics */

.enobeta--analytics-card {
  height: 100%;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.enobeta--analytics-card h6 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.enobeta--analytics-card h6 i {
  color: #ffb21f;
  margin-right: 6px;
}

.enobeta--analytics-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.enobeta--analytics-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}

.enobeta--analytics-pill strong {
  font-size: 14px;
}

.enobeta--analytics-pill span {
  color: #8cc8ff;
  font-size: 12px;
  font-weight: 700;
}


/* =========================================================
   Genre Add - Premium Admin
========================================================= */

.genre-add-tile,
.genre-preview-tile {
  border-radius: 26px;
  overflow: hidden;
}

.genre-add-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.genre-add-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.genre-add-header__badge i {
  color: #ffb21f;
  font-size: 13px;
}

.genre-add-header__text {
  margin-top: 10px;
  max-width: 640px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.7;
}

.genre-add .enoroidai-FeaturedTile-title {
  font-size: 18px;
  font-weight: 700;
}

/* =========================================================
   Form
========================================================= */

.genre-form .form-group {
  margin-bottom: 0;
}

.genre-form .form-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.84);
  font-size: 13px;
  font-weight: 600;
}

.genre-form .form-label span {
  color: #ff6b6b;
}

.genre-form .form-icon {
  position: relative;
}

.genre-form .form-icon > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffb21f;
  font-size: 15px;
  z-index: 2;
  pointer-events: none;
}

.genre-form .form-icon--textarea > i {
  top: 18px;
  transform: none;
}

.genre-form .form-control {
  width: 100%;
  min-height: 50px;
  height: 50px;
  padding: 0 16px 0 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(2,18,40,0.72);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.genre-form textarea.form-control {
  min-height: 120px;
  height: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.genre-form .form-control::placeholder {
  color: rgba(255,255,255,0.38);
  font-size: 13px;
  font-weight: 400;
}

.genre-form .form-control:focus {
  outline: none;
  border-color: rgba(255,176,31,0.5);
  box-shadow: 0 0 0 4px rgba(255,176,31,0.12);
  background: rgba(2,18,40,0.86);
}

.dunebell-hint {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.46);
}

/* =========================================================
   Color Swatches
========================================================= */

.dunebell-color-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dunebell-color-swatch {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.14);
  background: var(--swatch);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.dunebell-color-swatch:hover {
  transform: translateY(-1px) scale(1.04);
}

.dunebell-color-swatch.is-active {
  border-color: #fff;
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.10),
    0 6px 16px rgba(0,0,0,0.22);
}

/* =========================================================
   Icon Picker
========================================================= */

.dunebell-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.dunebell-icon-option {
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.84);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.dunebell-icon-option i {
  font-size: 16px;
}

.dunebell-icon-option:hover {
  transform: translateY(-1px);
  border-color: rgba(255,178,31,0.28);
  color: #ffb21f;
}

.dunebell-icon-option.is-active {
  background: linear-gradient(180deg, rgba(255,178,31,0.18) 0%, rgba(255,178,31,0.08) 100%);
  border-color: rgba(255,178,31,0.34);
  color: #ffb21f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

/* =========================================================
   Toggles
========================================================= */

.dunebell-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
}

.dunebell-toggle input {
  display: none;
}

.dunebell-toggle__ui {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  transition: all .2s ease;
}

.dunebell-toggle__ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: all .2s ease;
}

.dunebell-toggle input:checked + .dunebell-toggle__ui {
  background: linear-gradient(90deg, #00b894, #20d6a7);
}

.dunebell-toggle input:checked + .dunebell-toggle__ui::after {
  left: 23px;
}

.dunebell-toggle__text {
  color: rgba(255,255,255,0.84);
  font-size: 13px;
  font-weight: 500;
}

/* =========================================================
   Help Box
========================================================= */

.dunebell-genre-help {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 2px;
}

.dunebell-genre-help__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  line-height: 1.55;
}

.dunebell-genre-help__item i {
  color: #ffb21f;
  font-size: 14px;
  margin-top: 2px;
}

/* =========================================================
   Actions
========================================================= */

.genre-form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.genre-save-btn.enoroidai-btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.genre-save-btn.is-loading {
  opacity: .7;
  pointer-events: none;
}

.genre-save-btn__text {
  display: inline-block;
}

.ef-btn-soft,
.genre-delete-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-decoration: none;
}

/* =========================================================
   Preview
========================================================= */

.genre-preview-box {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.genre-preview-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.genre-preview-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.genre-preview-card__meta h6 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.genre-preview-card__meta p {
  margin: 0;
  color: rgba(255,255,255,0.54);
  font-size: 12px;
}

.genre-preview-card__chip,
.genre-chip-preview,
.genre-linked-movie {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.genre-preview-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.genre-preview-details__item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.genre-preview-details__item strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.64);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.genre-preview-details__item span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.genre-preview-row__title {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 600;
}

.genre-row-preview,
.genre-linked-movie-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.genre-chip-preview.active {
  background: linear-gradient(180deg, rgba(255,178,31,0.22) 0%, rgba(255,178,31,0.12) 100%);
  border-color: rgba(255,178,31,0.24);
}

.genre-usage-box p {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.genre-view-movies-btn {
  min-height: 44px;
  border-radius: 14px;
  font-size: 13px;
}

.genre-preview-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.68);
  font-size: 12px;
}

.genre-preview-note i {
  color: #ffb21f;
}

#genrePreviewDot.genre-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: #ffb21f;
  box-shadow: 0 0 10px rgba(255,178,31,0.36);
}

/* messages */
#genreEditMessage .alert {
  border-radius: 14px;
  font-size: 13px;
}

/* =========================================================
   Messages
========================================================= */

#genreAddMessage .alert {
  border-radius: 14px;
  font-size: 13px;
}

/* slug check */
.genre-slug-check {
  margin-top: 8px;
  min-height: 18px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
}

.genre-slug-check.is-checking {
  color: #8fb2d9;
}

.genre-slug-check.is-checking::before{
  content:"\f110";
  font-family:"Font Awesome 6 Pro";
  margin-right:6px;
  animation: fa-spin 1s linear infinite;
}

.genre-slug-check.is-success {
  color: #20d6a7;
}

.genre-slug-check.is-error {
  color: #ff6b6b;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991px) {
  .genre-preview-details,
  .dunebell-genre-help {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .genre-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .genre-save-btn.enoroidai-btn,
  .ef-btn-soft,
  .genre-delete-btn {
    width: 100%;
    justify-content: center;
  }

  .genre-preview-card__meta h6 {
    font-size: 15px;
  }

  .dunebell-icon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dunebell-icon-option {
    min-height: 40px;
    border-radius: 12px;
  }

  .dunebell-color-swatch {
    width: 24px;
    height: 24px;
  }
}

/* =========================================================
   Genre Edit - Premium Admin
========================================================= */

.genre-edit-tile,
.genre-preview-tile {
  border-radius: 26px;
  overflow: hidden;
}

.genre-edit-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.genre-edit-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.genre-edit-header__badge i {
  color: #ffb21f;
  font-size: 13px;
}

.genre-edit-header__text {
  margin-top: 10px;
  max-width: 640px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.7;
}

.genre-edit .enoroidai-FeaturedTile-title {
  font-size: 18px;
  font-weight: 700;
}

/* =========================================================
   Country List - Header
========================================================= */

.country-list .enoroidai-FeaturedTile {
  border-radius: 30px;
  overflow: hidden;
}

.country-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0 0 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.country-list-header__left {
  flex: 1 1 420px;
  min-width: 0;
}

.country-list-header__right {
  flex: 0 1 760px;
  min-width: 0;
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-left: auto;
}

.country-page-intro {
  max-width: 720px;
}

.country-page-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(255,169,0,0.08);
}

.country-page-intro__badge i {
  color: #ffb21f;
  font-size: 13px;
}

.country-list-header .enoroidai-FeaturedTile-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(95deg, #fff6d2 0%, #ffd26a 25%, #ffa900 50%, #ffcf5a 75%, #fff2c2 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: countryGoldShimmer 5s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(255,169,0,0.15));
}

@keyframes countryGoldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.country-page-intro p {
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,0.66);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================
   Header tools
========================================================= */

.country-header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
}

.country-header-tool {
  position: relative;
  min-height: 62px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.country-header-tool--limit {
  width: 182px;
  min-width: 182px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 5px;
  gap: 7px;
}

.country-header-tool--limit .country-header-tool__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.country-header-select,
.country-header-tool--limit .select,
.country-header-tool--limit .nice-select {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  height: 48px;
  line-height: 46px;
  margin: 0;
  display: block;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(2,18,40,0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  padding: 0 34px 0 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.country-header-tool--search {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  width: 100%;
  padding: 9px;
  display: flex;
  align-items: center;
}

.country-header-tool--button {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  background: transparent;
  border: none;
  box-shadow: none;
}

.country-header-tool__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
}

.country-header-tool__icon i {
  color: #ffb21f;
  font-size: 14px;
}

.country-header-tool--limit::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #8fb2d9;
  font-size: 14px;
  pointer-events: none;
}

.country-header-searchbox {
  position: relative;
  width: 100%;
}

.country-header-searchbox i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffb21f;
  font-size: 18px;
  z-index: 2;
  pointer-events: none;
}

.country-header-searchbox .form-control {
  width: 100%;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(2,18,40,0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  padding: 0 16px 0 48px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.country-header-searchbox .form-control::placeholder {
  color: rgba(255,255,255,0.42);
  font-size: 12px;
  font-weight: 300;
}

.country-header-searchbox .form-control:focus,
.country-header-select:focus,
.country-header-tool--limit .select:focus {
  outline: none;
  border-color: rgba(31,255,244,0.5);
  box-shadow: 0 0 0 4px rgba(255,176,31,0.12);
  background: rgba(2,18,40,0.86);
}

.country-header-add-btn.enoroidai-btn {
  width: auto;
  min-width: 260px;
  max-width: 320px;
  min-height: 48px;
  border-radius: 18px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .01em;
  color: #fff;
  border: 1px solid rgba(255,190,43,0.26);
  background: linear-gradient(180deg, #0084ff 0%, #00e6f2 100%);
  box-shadow:
    0 16px 30px rgba(0,190,255,0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.country-header-add-btn.enoroidai-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* =========================================================
   Stats cards
========================================================= */

.country-stat-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 14px 34px rgba(0,0,0,0.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.country-stat-card:hover {
  transform: translateY(-3px);
}

.country-stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 24px 0 0 24px;
  opacity: .9;
}

.country-stat-card .enoroidai-FeaturedTile-body {
  position: relative;
  padding: 18px 18px 16px;
}

.country-stat-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.country-stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
}

.country-stat-card__icon i {
  font-size: 20px;
}

.country-stat-card__mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.70);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.country-stat-card h6 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
}

.country-stat-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.country-stat-card__sub {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.46);
}

.country-stat-card--total {
  background: radial-gradient(circle at top right, rgba(76,156,255,0.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}
.country-stat-card--total .country-stat-card__icon {
  background: linear-gradient(180deg, rgba(76,156,255,.18) 0%, rgba(76,156,255,.10) 100%);
  border: 1px solid rgba(76,156,255,.20);
  color: #65a8ff;
}
.country-stat-card--total::before { background: linear-gradient(180deg, #58a6ff 0%, #216bff 100%); }

.country-stat-card--active {
  background: radial-gradient(circle at top right, rgba(32,214,167,0.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}
.country-stat-card--active .country-stat-card__icon {
  background: linear-gradient(180deg, rgba(32,214,167,.18) 0%, rgba(32,214,167,.10) 100%);
  border: 1px solid rgba(32,214,167,.20);
  color: #21d8a8;
}
.country-stat-card--active::before { background: linear-gradient(180deg, #21d8a8 0%, #0aa17d 100%); }

.country-stat-card--hidden {
  background: radial-gradient(circle at top right, rgba(255,100,135,0.14), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}
.country-stat-card--hidden .country-stat-card__icon {
  background: linear-gradient(180deg, rgba(255,100,135,.20) 0%, rgba(255,100,135,.10) 100%);
  border: 1px solid rgba(255,100,135,.20);
  color: #ff6487;
}
.country-stat-card--hidden::before { background: linear-gradient(180deg, #ff6487 0%, #e63b6d 100%); }

.country-stat-card--movies {
  background: radial-gradient(circle at top right, rgba(147,118,255,0.14), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}
.country-stat-card--movies .country-stat-card__icon {
  background: linear-gradient(180deg, rgba(147,118,255,.20) 0%, rgba(147,118,255,.10) 100%);
  border: 1px solid rgba(147,118,255,.20);
  color: #9b7dff;
}
.country-stat-card--movies::before { background: linear-gradient(180deg, #9b7dff 0%, #6a59ff 100%); }

/* =========================================================
   Filters
========================================================= */

.country-filters-row {
  margin-top: 4px;
}

.country-filter-card {
  position: relative;
  height: 100%;
  min-height: 96px;
  padding: 14px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.country-filter-card .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  color: rgba(255,255,255,0.78);
}

.country-filter-card .form-icon {
  position: relative;
}

.country-filter-card .form-icon > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 15px;
  color: #ffb21f;
  pointer-events: none;
}

.country-filter-card .form-control,
.country-filter-card select.form-control {
  width: 100%;
  min-height: 48px;
  height: 48px;
  padding: 0 14px 0 42px;
  border-radius: 16px;
  background: rgba(2,18,40,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.country-filter-action {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.country-filter-action .enoroidai-btn {
  width: 100%;
  min-height: 96px;
  font-size: 15px;
  border-radius: 22px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(60,220,120,0.28);
  background: linear-gradient(180deg, #0f8f78 0%, #0c9605 100%);
  color: #fff;
}

/* =========================================================
   Table
========================================================= */

.country-table-wrap {
  overflow-x: auto;
  overflow-y: visible;
}

.country-list .table {
  width: 100%;
  min-width: 980px;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.country-list .table thead th {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 16px 12px;
}

.country-list .table tbody td {
  padding: 18px 12px;
  overflow: hidden;
  vertical-align: middle;
}

.country-list .table tbody tr {
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
}

.country-list .table th:nth-child(1),
.country-list .table td:nth-child(1) {
  width: 70px;
  min-width: 70px;
}

.country-list .table th:nth-child(2),
.country-list .table td:nth-child(2) {
  width: 220px;
  min-width: 220px;
}

.country-list .table th:nth-child(3),
.country-list .table td:nth-child(3) {
  width: 120px;
  min-width: 120px;
}

.country-list .table th:nth-child(4),
.country-list .table td:nth-child(4) {
  width: 140px;
  min-width: 140px;
}

.country-list .table th:nth-child(5),
.country-list .table td:nth-child(5) {
  width: 100px;
  min-width: 100px;
}

.country-list .table th:nth-child(6),
.country-list .table td:nth-child(6) {
  width: 210px;
  min-width: 210px;
}

.country-name-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.country-flag-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #20d6a7;
  box-shadow: 0 0 10px rgba(32,214,167,.4);
}

.country-actions-col {
  width: 210px;
  min-width: 210px;
  text-align: right;
  overflow: visible;
}

.country-actions-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.country-actions-toolbar .btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  border: none;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.country-actions-toolbar .btn-dark { background: #6b7785; color: #d7e4f5; }
.country-actions-toolbar .btn-success { background: #20d6a7; color: #fff; }
.country-actions-toolbar .btn-primary { background: #4d9cff; color: #fff; }
.country-actions-toolbar .btn-danger { background: #f62727; color: #fff; }

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1199px) {
  .country-list-header__left,
  .country-list-header__right {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .country-list-header__right {
    align-items: stretch;
  }

  .country-header-tools {
    justify-content: flex-start;
  }

  .country-header-tool--button {
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  .country-stat-card .enoroidai-FeaturedTile-body {
    padding: 16px;
  }

  .country-stat-card h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .country-header-tools {
    flex-wrap: wrap;
    gap: 10px;
  }

  .country-header-tool,
  .country-header-tool--limit,
  .country-header-tool--search,
  .country-header-tool--button {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
  }

  .country-header-tool--search,
  .country-header-tool--limit {
    padding: 10px;
  }

  .country-header-add-btn.enoroidai-btn {
    width: 100%;
    min-width: 100%;
    min-height: 48px;
  }

  .country-filter-card {
    min-height: auto;
    padding: 14px;
    border-radius: 18px;
  }

  .country-filter-action .enoroidai-btn {
    min-height: 54px;
    border-radius: 16px;
    font-size: 14px;
  }

  .country-list .table {
    min-width: 980px;
  }
}


/* =========================================================
   Country Add
========================================================= */

.country-add-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.country-add-card__header {
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: radial-gradient(circle at top right, rgba(255,178,31,0.08), transparent 34%);
}

.country-add-card .enoroidai-FeaturedTile-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.country-add-card__subtitle {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.6;
}

.country-form {
  padding: 8px 4px 4px;
}

.country-add .form-group {
  margin-bottom: 0;
}

.country-add .form-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 600;
}

.country-add .form-label span {
  color: #ffb21f;
}

.country-add .form-icon {
  position: relative;
}

.country-add .form-icon > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #ffb21f;
  font-size: 15px;
  pointer-events: none;
}

.country-add .form-control {
  width: 100%;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(2,18,40,0.72);
  color: #fff;
  padding: 0 16px 0 46px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.country-add .form-control::placeholder {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.country-add .form-control:focus {
  outline: none;
  border-color: rgba(255,176,31,0.45);
  box-shadow: 0 0 0 4px rgba(255,176,31,0.12);
  background: rgba(2,18,40,0.88);
  color: #fff;
}

.country-help-text {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.5;
}

/* =========================================================
   Switch
========================================================= */

.country-switch-wrap {
  padding: 10px 0 4px;
}

.country-switch {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.country-switch__input {
  display: none;
}

.country-switch__slider {
  position: relative;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .25s ease;
}

.country-switch__slider::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: all .25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.country-switch__input:checked + .country-switch__slider {
  background: linear-gradient(180deg, #0f8f78 0%, #0c9605 100%);
  border-color: rgba(30,214,100,0.35);
}

.country-switch__input:checked + .country-switch__slider::after {
  left: 28px;
}

.country-switch__label {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 600;
}

/* =========================================================
   Actions
========================================================= */

.country-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.country-form-actions .enoroidai-btn {
  min-height: 50px;
  border-radius: 16px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.enoroidai-btn-outline {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.enoroidai-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.enoroidai-btn-danger {
  border: 1px solid rgba(255,70,100,0.22);
  background: linear-gradient(180deg, #c62828 0%, #e53935 100%);
  color: #fff;
}

.enoroidai-btn-danger:hover {
  filter: brightness(1.05);
  color: #fff;
}


/* =========================================================
   Messages
========================================================= */

.country-alert {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  border: 1px solid transparent;
}

.country-alert--success {
  background: rgba(32,214,167,0.12);
  border-color: rgba(32,214,167,0.22);
  color: #8ff0d0;
}

.country-alert--error {
  background: rgba(255,100,135,0.12);
  border-color: rgba(255,100,135,0.22);
  color: #ff9ab0;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 767px) {
  .country-add-card__header {
    padding: 20px 18px 16px;
  }

  .country-add-card .enoroidai-FeaturedTile-title {
    font-size: 20px;
  }

  .country-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .country-form-actions .enoroidai-btn,
  .country-form-actions .enoroidai-btn-outline {
    width: 100%;
  }
}

/* =========================================================
   Country Edit
========================================================= */

.country-edit-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.country-edit-card__header {
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: radial-gradient(circle at top right, rgba(255,178,31,0.08), transparent 34%);
}

.country-edit-card__subtitle {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.6;
}

.country-edit .form-group {
  margin-bottom: 0;
}

.country-edit .form-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 600;
}

.country-edit .form-label span {
  color: #ffb21f;
}

.country-edit .form-icon {
  position: relative;
}

.country-edit .form-icon > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #ffb21f;
  font-size: 15px;
  pointer-events: none;
}

.country-edit .form-control {
  width: 100%;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(2,18,40,0.72);
  color: #fff;
  padding: 0 16px 0 46px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.country-edit .form-control::placeholder {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.country-edit .form-control:focus {
  outline: none;
  border-color: rgba(255,176,31,0.45);
  box-shadow: 0 0 0 4px rgba(255,176,31,0.12);
  background: rgba(2,18,40,0.88);
  color: #fff;
}

/* meta */
.country-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.country-meta-box {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.country-meta-box__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.56);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.country-meta-box strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .country-edit-card__header {
    padding: 20px 18px 16px;
  }

  .country-meta-grid {
    grid-template-columns: 1fr;
  }

  .country-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .country-form-actions .enoroidai-btn {
    width: 100%;
  }
}





















/*====================
36. Live tv css 
======================*/

.live-tv-img{
  width: 120px;
}

.live-tv-img img{
  border: 1px solid var(--border-info-color);
  padding: 10px;
  border-radius: 12px;
  transition: var(--transition);
}

.live-tv-img:hover img{
  border-color: var(--theme-color);
}

.live-tv .efmode--upload-file{
  width: 250px;
}

.live-tv .efmode--upload-file .efmode--preview-default{
  font-size: 40px;
  padding: 10px 20px;
}



/*====================
26. Video css 
======================*/

.video-content{
  width: 120px;
}

.video-content img{
  border-radius: 15px;
}

.video-content a{
  position: relative;
}

.video-content a i{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--color-white);
  border-radius: 50px;
  text-align: center;
  color: var(--theme-color);
  padding-left: 2px;
}

.video-title{
  width: 300px;
  text-wrap: wrap;
}



/*====================
27. Actor css 
======================*/

/* actor-list */
.actor-list .actor-content{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 180px;
}

.actor-list .actor-content .actor-img img{
  width: 60px;
  border-radius: 50px;
}

.actor-list .actor-content .actor-info h6{
  color: var(--color-dark);
}

.actor-list .actor-content .actor-info span{
  font-size: 15px;
  color: var(--body-text-color);
}

/* actor-details */
.actor-details .content-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.actor-details .content{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  flex: 1;
}

.actor-details .content-img img{
  width: 130px;
  border-radius: 15px;
}

.actor-details .info h4{
  color: var(--color-dark);
}

.actor-details .info p{
  color: var(--theme-color);
}

.actor-details .info-list{
  margin-top: 5px;
}

.actor-details .info-list li{
  color: var(--body-text-color);
}

.actor-details .info-list li i{
  width: 20px;
  color: var(--theme-color);
}

.actor-details .social{
  display: flex;
  gap: 12px;
}

.actor-details .social a{
  width: 45px;
  height: 45px;
  line-height: 42px;
  background: var(--body-bg);
  border-radius: 50px;
  text-align: center;
  font-size: 18px;
  color: var(--theme-color);
  border: 1px solid var(--border-info-color);
}

.actor-details .social a:hover{
  background: var(--theme-color);
  color: var(--color-white);
  border-color: var(--theme-color);
}



/*====================
28. Team css 
======================*/

/* team-list */
.team-list .team-content{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 200px;
}

.team-list .team-info h6{
  color: var(--color-dark);
}

.team-list .team-info span{
  color: var(--body-text-color);
  font-size: 15px;
}

.team-list .team-img img{
  width: 55px;
  border-radius: 10px;
}

/* team details */
.team-details .team-info-img {
  margin-bottom: 20px;
}

.team-details .team-info-img img{
  width: 150px;
  border-radius: 15px;
}

.team-details .team-info-list ul li{
  margin: 10px 0;
  color: var(--body-text-color);
}

.team-details .team-info-list ul li label{
  width: 180px;
  text-wrap: wrap;
  color: var(--color-dark);
}

.team-details .team-bio p{
  color: var(--body-text-color);
}

.team-details .team-social-list{
  display: flex;
  gap: 10px;
}

.team-details .team-social-list a{
  width: 35px;
  height: 35px;
  line-height: 33px;
  border-radius: 50px;
  color: var(--body-text-color);
  text-align: center;
  border: 1px solid var(--border-info-color);
}

.team-details .team-social-list a:hover{
  color: var(--theme-color);
  border-color: var(--theme-color);
}

@media all and (max-width: 767px){
  .team-details .team-info-list ul li label{
    width: 100px;
  }
}




/*====================
29. Testimonial css 
======================*/

/* testimonial-list */
.testimonial-list .testimonial-content{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 200px;
}

.testimonial-list .testimonial-info h6{
  color: var(--color-dark);
}

.testimonial-list .testimonial-info span{
  color: var(--body-text-color);
  font-size: 15px;
}

.testimonial-list .testimonial-img img{
  width: 55px;
  border-radius: 50px;
}

.testimonial-list .rate i{
  color: var(--color-yellow);
}

.testimonial-list .review{
  width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* testimonial details modal */
.testimonial-modal .modal-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.testimonial-modal .testimonial-user{
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-modal .efmode--user-img img{
  width: 50px;
  border-radius: 50px;
}

.testimonial-modal .efmode--user-info h6 a{
  color: var(--color-dark);
}

.testimonial-modal .efmode--user-info h6 a:hover{
  color: var(--theme-color);
}

.testimonial-modal .efmode--user-info span{
  color: var(--body-text-color);
  font-size: 14px;
}

.testimonial-modal .testimonial-rate{
  background: var(--theme-bg);
  color: var(--color-yellow);
  font-weight: 500;
  padding: 0 10px;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

.testimonial-modal .testimonial-text p{
  color: var(--body-text-color);
}



/*====================
30. Subscription css 
======================*/

/* subscription list */
.subscription-list .card-header .card-action .sort-item .nice-select{
  min-width: 195px;
}

.subscription-list a.table-text:hover{
  color: var(--theme-color);
}

.subscription-list .form-check{
  min-height: unset;
  padding-left: 0;
  margin: 0;
}

.subscription-list .form-check-input{
  width: 20px;
  height: 20px;
  margin: 0;
}

/* subscription-details */
.subscription-details .card-header .card-action-btn{
  width: 35px;
  height: 35px;
  padding: 0;
}

.subscription-details .card-header .card-action-btn i{
  margin: 0;
}

.subscription-details .subscription-user{
  display: flex;
  align-items: center;
  gap: 12px;
}

.subscription-details .subscription-user .efmode--user-img img{
  width: 60px;
  border-radius: 50px;
}

.subscription-details .subscription-user .efmode--user-info h6{
  color: var(--color-dark);
}

.subscription-details .subscription-user .efmode--user-info h6 a:hover{
  color: var(--theme-color);
}

.subscription-details .subscription-user .efmode--user-info p{
  color: var(--body-text-color);
  font-size: 15px;
}

.subscription-details .subscription-info{
  margin-top: 25px;
}

.subscription-details .subscription-info ul{
  margin-top: 10px;  
}

.subscription-details .subscription-info ul li{
  margin-top: 15px;
}

.subscription-details .subscription-info ul li span{
  font-size: 15px;
  color: var(--body-text-color);
}

.subscription-details .subscription-info ul li span:first-child{
  display: inline-block;
  width: 140px;
  color: var(--color-dark);
}

.subscription-details .subscription-info .title{
  color: var(--color-dark);
}

.subscription-details .subscription-info .package{
  color: var(--color-purple) !important;
}

.subscription-details .subscription-info .status{
  color: var(--color-green) !important;
}

.subscription-details .subscription-billing ul,
.subscription-details .subscription-billing ul li:first-child{
  margin-top: 0;
}

.subscription-details .subscription-billing ul li .address{
  width: 120px;
}




/*====================
31. Transaction css 
======================*/

/* transaction-details */
.transaction-details .card-header .card-action-btn{
  width: 35px;
  height: 35px;
  padding: 0;
}

.transaction-details .card-header .card-action-btn i{
  margin: 0;
}

.transaction-details .transaction-user{
  display: flex;
  align-items: center;
  gap: 12px;
}

.transaction-details .transaction-user .efmode--user-img img{
  width: 60px;
  border-radius: 50px;
}

.transaction-details .transaction-user .efmode--user-info h6{
  color: var(--color-dark);
}

.transaction-details .transaction-user .efmode--user-info h6 a:hover{
  color: var(--theme-color);
}

.transaction-details .transaction-user .efmode--user-info p{
  color: var(--body-text-color);
  font-size: 15px;
}

.transaction-details .transaction-info{
  margin-top: 25px;
}

.transaction-details .transaction-info ul{
  margin-top: 10px;  
}

.transaction-details .transaction-info ul li{
  margin-top: 15px;
}

.transaction-details .transaction-info ul li span{
  font-size: 15px;
  color: var(--body-text-color);
}

.transaction-details .transaction-info ul li span:first-child{
  display: inline-block;
  width: 140px;
  color: var(--color-dark);
}

.transaction-details .transaction-info .title{
  color: var(--color-dark);
}

.transaction-details .transaction-info .package{
  color: var(--color-purple) !important;
}

.transaction-details .transaction-info .status{
  color: var(--color-green) !important;
}

.transaction-details .transaction-billing ul,
.transaction-details .transaction-billing ul li:first-child{
  margin-top: 0;
}

.transaction-details .transaction-billing ul li .address{
  width: 120px;
}




/*====================
32. Pricing css 
======================*/

/* pricing-details */
.pricing-modal .pricing-feature ul li{
  position: relative;
  margin: 10px 0 0 0;
  padding-left: 25px;
}

.pricing-modal .pricing-feature ul li::before{
  content: "\f560";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 6 Pro";
  color: var(--theme-color);
}



/*====================
33. Message css 
======================*/
/* message-sidebar */
.message-sidebar a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--theme-bg-light);
  color: var(--body-text-color);
  border-radius: 10px;
  margin-bottom: 14px;
}

.message-sidebar a:hover{
  color: var(--theme-color);
}

.message-sidebar a.active{
  color: var(--theme-color);
}

.message-sidebar a:last-child{
  margin-bottom: 0;
}

.message-sidebar a .text{
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}

/* message-list  */
.message-list .table tr td:nth-child(1){
  background: transparent;
  width: 20px;
  padding-left: 0;
}

.message-list .table tr td:nth-child(2){
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 20px;
}

.message-list .enoroidai-FeaturedTile-action .dropdown-menu{
  min-width: 110px;
}

.message-list .form-check{
  margin-bottom: 0;
}

.message-list .form-check .form-check-input{
  margin-top: .25em;
}

.message-list .user-content{
  display: flex;
  align-items: center;
  gap: 8px;
  width: 150px;
}

.message-list .efmode--user-img{
  width: 30px;
  border-radius: 10px;
}

.message-list .efmode--user-img img{
  border-radius: 10px;
}

.message-list .efmode--user-letter{
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: rgba(121, 193, 66, .15);
  color: var(--theme-color);
  border-radius: 10px;
}

.message-list .efmode--user-info h6{
  font-size: 14px;
}

.message-list .starred a{
  color: var(--color-dark);
}

.message-list .starred a:hover{
  color: var(--theme-color);
}

.message-list .starred a:hover .fa-star::before{
  content: '\f005';
  font-weight: bold;
}

.message-list p.table-text{
  width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.message-list .table-text{
  font-size: 14px !important;
}

/* message compose */
.compose-bottom{
  display: flex;
  align-items: center;
  gap: 15px;
}

.compose-bottom .enoroidai-btn2{
  padding: 0;
  width: 40px;
  height: 40px;
}

.compose-bottom .enoroidai-btn2 i{
  margin-left: 0;
}

/* message-view-reply */
.message-view-reply .message-page{
  color: var(--body-text-color);
}

.message-view-reply .message-subject{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 30px;
}

.message-view .message-item{
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.message-view .message-content{
  cursor: pointer;
}

.message-view .message-user{
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.message-view .message-user .efmode--user-img img{
  width: 50px;
  border-radius: 15px;
}

.message-view .message-user .efmode--user-info{
  flex: 1;
}

.message-view .message-user .efmode--user-info .efmode--user-info-content{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3px;
}

.message-view .message-user .efmode--user-info h6{
  color: var(--color-dark);
  font-size: 15px;
}

.message-view .message-content .message-time{
  font-size: 14px;
  color: var(--body-text-color);
  line-height: 1;
}

.message-view .message-user .efmode--user-info .message-short{
  font-size: 15px;
  color: var(--body-text-color);
  margin-top: 5px;
}

.message-view .message-user .dropdown{
  width: fit-content;
  display: none;
}

.message-view .message-user .dropdown-toggle{
  color: var(--body-text-color);
  font-size: 15px;
  pointer-events: none;
}

.message-view .message-user .message-more-info{
  padding: 10px 20px;
  min-width: 250px;
}

.message-view .message-user .message-more-info ul li span{
  font-size: 14px;
  color: var(--body-text-color);
}

.message-view .message-user .message-more-info ul li span:first-child{
  display: inline-block;
  width: 50px;
}

.message-view .message-user .dropdown-toggle::after{
  vertical-align: .180em;
}

.message-view .message-user .dropdown:hover .dropdown-menu {
  display: block;
}

.message-details p{
  font-size: 15px;
  color: var(--body-text-color);
}

.message-attachment{
  margin-top: 24px;
  border: 1px solid var(--border-info-color);
  border-radius: 15px;
  padding: 15px;
}

.message-attachment .title{
  color: var(--body-text-color);
  font-size: 15px;
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.message-attachment .attachment-item{
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--body-bg);
  border-radius: 15px;
  padding: 10px;
}

.message-attachment .attachment-item .attachment-info{
  flex: 1;
}

.message-attachment .attachment-item .attachment-icon{
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 10px;
  text-align: center;
}

.message-attachment .attachment-item .attachment-info h6{
  color: var(--body-text-color);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 2px;
}

.message-attachment .attachment-item .attachment-info span{
  color: var(--body-text-color);
  font-size: 12px;
}

.message-attachment .attachment-item .attachment-download a{
  color: var(--theme-color);
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 32px;
}



/*====================
34. Chat css 
======================*/

/* chat-message-contact */
.chat-message-contact .card{
  padding: 10px;
}

.chat-message-contact .card-search{
  margin: 8px;
}

.chat-message-contact .contact-warp{
  display: block;
  width: 100%;
  height: calc(100vh - 380px);
  margin-top: 10px;
}

.chat-message-contact .contact-item{
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-info-color);
  border-radius: 15px;
  padding: 15px;
  margin: 8px 6px 10px 8px;
  position: relative;
}

.chat-message-contact .contact-item.active::before{
  content: "";
  position: absolute;
  left: -1px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: var(--theme-color);
  border-radius: 5px;
}

.chat-message-contact .contact-item .chat-avatar{
  position: relative;
  width: 50px;
  height: 50px;
}

.chat-message-contact .contact-item .chat-avatar img{
  border-radius: 50%;
}

.chat-message-contact .contact-item .chat-status{
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 12px;
  height: 12px;
  background: var(--theme-color2);
  border-radius: 50%;
  border: 3px solid var(--theme-bg);
}

.chat-message-contact .contact-item .chat-status.online {
  background: var(--theme-color);
}

.chat-message-contact .contact-item .chat-status.offline {
  background: var(--color-red);
}

.chat-message-contact .contact-item .chat-status.busy {
  background: var(--color-yellow);
}

.chat-message-contact .contact-item .chat-by{
  flex: 1;
}

.chat-message-contact .contact-item .chat-by-content{
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 5px;
}

.chat-message-contact .contact-item .chat-by-content h6{
  color: var(--color-dark);
  font-size: 15px;
}

.chat-message-contact .contact-item .chat-by-content span{
  color: var(--body-text-color);
  font-size: 13px;
  line-height: 1;
}

.chat-message-contact .contact-item .chat-by-message{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.chat-message-contact .contact-item .chat-by-message p{
  white-space: nowrap;         
  overflow: hidden;           
  text-overflow: ellipsis;  
  width: 200px;   
  font-size: 14px;
  color: var(--body-text-color);
}

.chat-message-contact .contact-item .chat-by-message .badge{
  padding: 2.5px 5px;  
}

@media all and (max-width: 1400px) {
  .chat-message-contact .contact-item .chat-by-message p{
    width: 150px;
  }
}

/* chat-message */
.chat-message .card-header{
  margin-bottom: 5px;
}

.chat-message .chat-user{
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-message .chat-user-avatar{
  width: 50px;
}

.chat-message .chat-user-avatar img{
  border-radius: 50px;
}

.chat-message .chat-user-info{
  line-height: 1;
}

.chat-message .chat-user-info h6{
  font-size: 15px;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.chat-message .chat-user-info span{
  color: var(--theme-color);
  font-size: 14px;
}

.chat-message .chat-user-info span i{
  font-size: 10px;
}

.chat-message-wrap{
  display: block;
  width: 100%;
  height: calc(100vh - 465px);
  margin-top: 10px;
}

.chat-message-item{
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 45px 5px 45px 0;
}

.chat-message-avatar .avatar-img{
  width: 50px;
  height: 50px;
}

.chat-message-avatar .avatar-img img{
  border-radius: 50px;
}

.chat-message-content{
  max-width: 55%;
}

.chat-message-info{
  display: flex;
  align-self: flex-start;
  justify-content: flex-start;
}

.chat-message-info+.chat-message-info {
  margin-top: 35px;
}

.chat-message-self,
.chat-message-self .chat-message-info{
  flex-direction: row-reverse;
}

.chat-message-text{
  background: var(--body-bg);
  padding: 14px 18px;
  border-radius: 15px 15px 15px 0px;
  position: relative;
}

.chat-message-self .chat-message-text{
  border-radius: 15px 15px 0 15px;
}

.chat-message-text p{
  font-size: 15px;
  color: var(--body-text-color);
}

.chat-message-time{
  position: absolute;
  right: 0;
  top: -20px;
  font-size: 12px;
  color: var(--body-text-color);
}

.chat-message-time .success{
  color: var(--color-green);
}

.chat-message-self .chat-message-time{
  right: unset;
  left: 0;
}

.chat-message-action button{
  border: none;
  background: transparent;
  color: var(--body-text-color);
  font-size: 16px;
}

.chat-attached-file{
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-attached-file .icon{
  font-size: 20px;
  width: 43px;
  height: 43px;
  background: var(--theme-bg);
  color: var(--theme-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}

.message-self .message-text .attached-file .icon{
  background: var(--color-white);
}

.chat-attached-file .info h6{
  font-size: 15px;
  color: var(--body-text-color);
}

.chat-attached-file .info span{
  font-size: 12px;
  color: var(--body-text-color);
}

.chat-attached-file .download{
  font-size: 20px;
  margin-left: 20px;
  color: var(--body-text-color);
}

.chat-bottom{
  padding-top: 10px;
}

.chat-form-wrap{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.chat-form-wrap .form-group{
  flex: 1;
}

.chat-form-wrap button{
  width: 45px;
  height: 45px;
  border: none;
  background: var(--body-bg);
  color: var(--body-text-color);
  border-radius: 10px;
}

.chat-form-wrap .send-btn button{
  background: var(--theme-color);
  color: var(--color-white);
}

@media all and (max-width: 1400px) {
  .chat-message{
    margin-bottom: 20px;
  }
}

@media all and (max-width: 1199px) {
  .chat-message{
    margin-bottom: 80px;
  }
}

@media all and (max-width: 767px) {
  .chat-message-content{
    max-width: 80%;
  }

  .chat-message-item{
    margin-right: 0;
  }

  .chat-message-info.attached .chat-message-text{
    padding: 10px;
  }

  .chat-attached-file{
    gap: 5px;
  }

  .chat-form-wrap{
    justify-content: end;
  }

  .chat-form-wrap .form-group{
    flex: unset;
    width: 100%;
  }
}

/* chat-group */
.chat-group-warp{
  display: block;
  width: 100%;
  height: calc(100vh - 380px);
  margin-top: 10px;
}

.chat-group-warp .group-item{
  border: 1px solid var(--border-info-color);
  border-radius: 15px;
  padding: 12px;
  margin: 8px 6px 10px 8px;
}

.chat-group-warp .group-item .group-content{
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-group-warp .group-item .group-avatar{
  width: 45px;
}

.chat-group-warp .group-item .group-avatar img{
  border-radius: 50%;
}

.chat-group-warp .group-item .group-info{
  flex: 1;
}

.chat-group-warp .group-item .group-info h6 a{
  color: var(--color-dark);
  font-size: 15px;
}

.chat-group-warp .group-item .group-info h6 a:hover{
  color: var(--theme-color);
}

.chat-group-warp .group-item .group-info .group-status{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.chat-group-warp .group-item .group-info .group-status i{
  font-size: 10px;
}

.chat-group-warp .group-item .group-info .group-status.online{
  color: var(--theme-color);
}

.chat-group-warp .group-item .group-info .group-status.offline{
  color: var(--body-text-color);
}

.chat-group-warp .group-item .group-action-btn{
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--body-text-color);
  font-size: 16px;
}

.chat-group-warp .group-item .group-member{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-info-color);
  padding-top: 8px;
  margin-top: 8px;
}

.chat-group-warp .group-item .group-member span{
  color: var(--body-text-color);
  font-size: 15px;
}

.chat-group-warp .group-item .group-member .avatars{
  display: flex;
  direction: rtl;
}

.chat-group-warp .group-item .group-member .avatars .avatar{
  width: 35px;
  height: 35px;
  border: 3px solid var(--theme-bg);
  margin-left: -13px;
  border-radius: 50%;
}

.chat-group-warp .group-item .group-member .avatars .avatar img{
  border-radius: 50%;
}

.chat-group-warp .group-item .group-member .avatars .avatar-text {
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 13px;
  line-height: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  text-transform: uppercase;
}

.chat-group .group-form .upload-file{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px auto;
}

.chat-group .group-form .upload-file .preview-default{
  padding: 0;
  font-size: 35px;
}

.chat-group .group-form .upload-file .preview-img{
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}

.chat-group .group-members .title{
  font-size: 15px;
  color: var(--body-text-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.chat-group .group-members .chat-contact-list .contact-item{
  align-items: center;
  margin-bottom: 15px;
  transition: var(--transition);
}

.chat-group .group-members .chat-contact-list .contact-item:hover{
  border-color: var(--theme-color);
}

.chat-group .group-members .chat-contact-list .contact-item .form-check-input{
  margin-top: 4px;
}

.chat-group .group-details-info{
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-info-color);
}

.chat-group .group-details-info .group-img{
  margin-bottom: 10px;
}

.chat-group .group-details-info .group-img img{
  width: 70px;
  border-radius: 50%;
}

.chat-group .group-details-info .group-content h5{
  color: var(--color-dark);
}

.chat-group .group-details-info .group-content p{
  color: var(--body-text-color);
}

/* chat-drawer */
.chat-drawer.chat-message{
  margin-bottom: 0;
}

.chat-drawer .chat-message-wrap {
  height: calc(100vh - 200px);
}

.chat-drawer .chat-message-item .chat-message-content{
  max-width: 100%;
}

@media all and (max-width: 991px) {
  .chat-drawer .chat-message-wrap {
    height: calc(100vh - 240px);
  }
}

/* chat-contact */
.chat-contact-list .contact-label{
  color: var(--body-text-color);
}

.chat-contact-list .contact-item{
  display: flex;
  gap: 12px;
}

.chat-contact-list .contact-item{
  border-radius: 20px;
  padding: 14px;
  border: 1px solid var(--border-info-color);
}

.chat-contact-list .contact-item .contact-avatar{
  position: relative;
  width: 60px;
  height: 60px;
}

.chat-contact-list .contact-item .contact-avatar img{
  border-radius: 50%;
}

.chat-contact-list .contact-item .contact-status{
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 12px;
  height: 12px;
  background: var(--theme-color2);
  border-radius: 50%;
  border: 3px solid var(--theme-bg);
}

.chat-contact-list .contact-item .contact-status.online {
  background: var(--theme-color);
}

.chat-contact-list .contact-item .contact-status.offline {
  background: var(--color-red);
}

.chat-contact-list .contact-item .contact-status.busy {
  background: var(--color-yellow);
}

.chat-contact-list .contact-item .contact-info{
  flex: 1;
}

.chat-contact-list .contact-item .contact-info h6{
  font-size: 15px;
  color: var(--color-dark);
}

.chat-contact-list .contact-item .contact-info p{
  font-size: 15px;
  color: var(--body-text-color);
}

.chat-contact-list .contact-item .contact-info .theme-btn{
  font-size: 12px;
  padding: 4px 10px;
  margin-top: 10px;
}

.chat-contact-list .contact-item .contact-action button{
  width: 25px;
  height: 28px;
  color: var(--body-text-color);
  background: transparent;
  border: 0;
  padding: 0;
}

/* chat-contact-details */
.chat-contact-details .contact-avatar{
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.chat-contact-details .contact-avatar img{
  border-radius: 50%;
}

.chat-contact-details .contact-info-list ul li{
  margin: 10px 0;
  color: var(--body-text-color);
}

.chat-contact-details .contact-info-list ul li span:first-child{
  display: inline-block;
  width: 180px;
  text-wrap: wrap;
  color: var(--color-dark);
}

.chat-contact-details .contact-note p{
  color: var(--body-text-color);
}

@media all and (max-width: 767px){
  .chat-contact-details .contact-info-list ul li span:first-child{
    width: 100px;
  }
}




/*====================
35. Blog css 
======================*/

/* blog-list */
.blog-list .blog-content .blog-img img{
  width: 100px;
  border-radius: 15px;
}

.blog-list .blog-title{
  width: 300px;
  text-wrap: wrap;
}

/* blog-details */
.blog-details .blog-img img{
  border-radius: 20px;
}

.blog-details .blog-title{
  color: var(--color-dark);
  margin-top: 25px;
  margin-bottom: 15px;
}

.blog-details .blog-content p{
  color: var(--body-text-color);
}

.blog-details .blog-content .blockqoute{
  background: var(--body-bg);
  color: var(--body-text-color);
  border-left: 3px solid var(--theme-color);
  padding: 20px;
  margin-top: 20px;
  position: relative;
}

.blog-details .blog-content .blockqoute-icon{
  position: absolute;
  right: 120px;
  bottom: 0;
  font-size: 120px;
  color: var(--theme-color);
  line-height: 1;
  opacity: .2;
}

.blog-details .blog-content .blockqoute-author{
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color: var(--color-dark);
}

.blog-details .blog-content .blockqoute-author::before{
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color);
  left: 0;
  top: 10px;
}

.blog-details .blog-author{
  text-align: center;
}

.blog-details .blog-author .avatar{
  margin-bottom: 12px;
}

.blog-details .blog-author .avatar img{
  width: 100px;
  border-radius: 50%;
}

.blog-details .blog-author .content h5 a{
  color: var(--color-dark);
}

.blog-details .blog-author .content h5 a:hover{
  color: var(--theme-color);
}

.blog-details .blog-author .content p{
  color: var(--body-text-color);
  margin-top: 5px;
}

.blog-details .blog-category a {
  display: block;
  padding: 10px 0;
  color: var(--body-text-color);
  border-bottom: 1px dashed var(--border-info-color);
  transition: var(--transition);
}

.blog-details .blog-category a:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.blog-details .blog-category a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.blog-details .blog-category a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-details .blog-category a span {
  float: right;
}

.blog-details .blog-tags a {
  background: var(--body-bg);
  color: var(--body-text-color);
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 10px;
  display: inline-block;
  transition: var(--transition);
}

.blog-details .blog-tags a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}




/*====================
36. Social css 
======================*/

.social{
  display: flex;
  align-items: center;
  gap: 8px;
}

.social .social-link{
  width: 35px;
  height: 35px;
  line-height: 31px;
  text-align: center;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  border-radius: 50px;
}

.social .social-link:hover{
  background: var(--theme-color);
  color: var(--color-white);
}



/*====================
37. Payout css 
======================*/

.payout-item{
  background: var(--body-bg);
  padding: 20px;
  border-radius: 15px;
}

.payout-item h6{
  color: var(--color-dark);
  margin-bottom: 15px;
}

.payout-item h2{
  color: var(--color-dark);
  font-weight: 700;
  margin-top: 25px;
}

.payout-item p{
  color: var(--body-text-color);
  margin-top: 20px;
}

.payout-method-img{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.payout-method-img img{
  width: 100px;
}

.payout-method-img span{
  color: var(--body-text-color);
}

.payout-item .theme-btn{
  margin-top: 20px;
}




/*====================
38. Invoice css 
======================*/

.invoice-wrapper{
  background: var(--theme-bg);
  border-radius: 10px;
  padding: 50px;
}

.invoice-header{
  display: flex;
  justify-content: space-between;
}

.invoice-width{
  width: 40%;
}

.invoice-logo img{
  width: 180px;
}

.invoice-date-box{
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.invoice-address h5,
.invoice-date h6,
.invoice-number h3{
  color: var(--color-dark);
}

.invoice-address li,
.invoice-date p,
.invoice-number p{
  color: var(--body-text-color);
}

.invoice-address-box{
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.invoice-address h5{
  margin-bottom: 8px;
}

.invoice-table{
  margin-top: 30px;
}

.invoice-table table{
  width: 100%;
  border-collapse: collapse;
}

.invoice-table table,
.invoice-table td, 
.invoice-table th {
  border: 1px solid var(--border-info-color);
}

.invoice-table td, 
.invoice-table th {
  padding: 10px 20px;
}

.invoice-table th{
  color: var(--color-dark);
}

.invoice-table td{
  color: var(--body-text-color);
}

.invoice-bottom{
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--border-info-color);
  display: flex;
  justify-content: space-between;
}

.invoice-bottom a{
  color: var(--body-text-color);
}

@media all and (max-width: 767px) {
  .invoice-table {
    overflow-x: auto;
  }

  .invoice-address.invoice-width{
    width: 100%;
  }

  .invoice-wrapper{
    padding: 0;
  }

  .invoice-header,
  .invoice-address-box{
    flex-wrap: wrap;
    gap: 30px;
  }

  .invoice-bottom{
    flex-wrap: wrap;
  }
}



/*====================
39. Referral css 
======================*/

.referral-link h6{
  color: var(--color-dark);
  margin-bottom: 15px;
}

.referral-link .enoroidai-btn{
  margin-top: 20px;
}

.referral-program h6{
  color: var(--color-dark);
  margin-bottom: 10px;
}

.referral-program p{
  color: var(--body-text-color);
}

.referral-program .enoroidai-btn{
  margin-top: 15px;
}



/*====================
40. Copy text css 
======================*/

#copy-btn i{
  margin-left: 0;
  margin-right: 5px;
}

#copy-btn span{
  margin-right: 0;
}

#copy-input::selection {
  color: var(--color-white);
  background: var(--theme-color);
}




/*====================
41. Billing css 
======================*/

/* billing-summary */
.billing-summary .billing-package{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  border: 1px dashed var(--border-info-color);
  padding: 25px;
  border-radius: 15px;
}

.billing-summary .billing-package .icon{
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 35px;
  border-radius: 15px;
}

.billing-summary .billing-package .content{
  flex: 1;
}

.billing-summary .billing-package .content span{
  color: var(--theme-color);
}

.billing-summary .billing-package .content h5{
  color: var(--color-dark);
  margin-top: 4px;
}

.billing-summary .billing-package .content p{
  color: var(--body-text-color);
}

.billing-summary .package-upgrade{
  margin-top: 40px;
}

.billing-summary .package-upgrade .title{
  color: var(--color-dark);
}

.billing-summary .package-upgrade .package-item{
  padding: 20px;
  border-radius: 15px;
  border: 1px solid var(--border-info-color);
  position: relative;
}

.billing-summary .package-upgrade .package-item .icon{
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 25px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.billing-summary .package-upgrade .package-item .content span{
  color: var(--theme-color);
}

.billing-summary .package-upgrade .package-item .content h5{
  color: var(--color-dark);
  margin-top: 4px;
}

.billing-summary .package-upgrade .package-item .content p{
  color: var(--body-text-color);
  margin-top: 4px;
}

.billing-summary .package-upgrade .package-item .enoroidai-btn{
  position: absolute;
  right: -10px;
  top: -10px;
}

/* payment-method */
.billing .payment-method .card-info{
  width: 80px;
  padding: 8px 10px;
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
}




/*====================
42. Support css 
======================*/

/* support-list */
.support-list .subject{
  width: 300px;
  text-wrap: wrap;
}

/* support-details */
.ticket-details .ticket-subject{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 10px 0 30px 0;
}

.ticket-subject .icon{
  width: 65px;
  height: 65px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 35px;
  text-align: center;
  border-radius: 15px;
}

.ticket-subject .info{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--body-text-color);
  font-size: 15px;
  margin-top: 8px;
}

.ticket-subject .info span span{
  margin-left: 4px;
}

.ticket-description{
  color: var(--body-text-color);
}

.ticket-chat{
  border-top: 1px solid var(--border-info-color);
  margin-top: 30px;
}

.ticket-chat .chat-item{
  display: flex;
  gap: 20px;
  border: 1px solid var(--border-info-color);
  border-radius: 15px;
  padding: 20px;
  margin: 50px 0;
}

.ticket-chat .chat-img img{
  width: 80px;
  border-radius: 50%;
}

.ticket-chat .chat-info{
  flex: 1;
}

.ticket-chat .chat-info span{
  display: block;
  color: var(--theme-color);
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.ticket-chat .chat-info p{
  color: var(--body-text-color);
}

.ticket-details .ticket-form{
  border-top: 1px solid var(--border-info-color);
  padding-top: 30px;
}

@media all and (max-width: 767px){
  .ticket-chat .chat-item{
    flex-direction: column;
  }
}



/*=========================
43. Notification css 
===========================*/

.notification-list .table .unread td{
  background: var(--theme-bg);
}

.notification-content{
  display: flex;
  gap: 20px;
}

.notification-content .icon{
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  text-align: center;
  font-size: 20px;
  border-radius: 15px;
}

.notification-content .info{
  width: 500px;
  text-wrap: wrap;
}

.notification-content .info h6{
  color: var(--color-dark);
  margin-bottom: 5px;
}




















































/*====================
44. File upload css 
======================*/

/* single upload */
.efmode--upload-file{
  border: 1px solid var(--border-info-color);
  background: rgba(255, 255, 255, 0.02);
  padding: 5px;
  border-radius: 20px;
  position: relative;
}

.efmode--upload-file .efmode--upload-btn{
  position: absolute;
  right: -10px;
  top: -10px;
  width: 35px;
  height: 35px;
  line-height: 30px;
  text-align: center;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 50px;
  border: none;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.efmode--upload-file .efmode--file-input{
  display: none;
}

.efmode--upload-file .efmode--preview-default{
  font-size: 70px;
  color: var(--body-text-color);
  text-align: center;
  padding: 59px 20px;
}

.efmode--upload-file .efmode--preview-img{
  border-radius: 15px;
} 

.efmode--upload-file .efmode--remove-btn{
  display: none;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  line-height: 29px;
  text-align: center;
  background: var(--theme-color2);
  color: var(--color-white);
  border-radius: 50px;
  border: none;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.efmode--upload-file .efmode--preview-img{
  width:100%;
  height:100%;
  object-fit: cover;
  display: none;
}

.efmode--preview-video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:none;
}

.efmode--upload-text{
  color: var(--body-text-color);
  font-size: 14px;
  text-align: center;
}

.efmode-upload__hint{ 
  color: var(--body-text-color); 
  opacity:.7; 
  font-size: 12px; 
}











































/* multiple upload */
.efmode--upload-multiple{
  text-align: center;
  border-radius: 15px;
  border: 1px solid var(--border-info-color);
  padding: 30px;
}

.efmode--upload-multiple .efmode--multiple-file{
  display: none;
}

.efmode--upload-multiple .efmode--multiple-default i{
  font-size: 40px;
  color: var(--body-text-color);
}

.efmode--upload-multiple .efmode--multiple-default p{
  color: var(--body-text-color);
  margin-top: 15px;
  margin-bottom: 15px;
}

.efmode--upload-multiple-text{
  color: var(--body-text-color);
  font-size: 14px;
  margin-top: 5px;
}

.efmode--upload-multiple .efmode--multiple-preview{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.efmode--upload-multiple .efmode--multiple-preview .efmode--image-box{
  position: relative;
  width: 120px;
  height: 120px;
  border: 1px solid var(--border-info-color);
  border-radius: 8px;
  margin-top: 25px;
  overflow: hidden;
}

.efmode--upload-multiple .efmode--multiple-preview .efmode--image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.efmode--upload-multiple .efmode--multiple-preview .efmode--multiple-remove{
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  line-height: 19px;
  background: var(--theme-color2);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-size: 12px;
  cursor: pointer;
}


@media all and (min-width: 991px){
  .efmode--multiple-preview.set-height{
    height: 150px;
  }
}




/*====================
45. Pagination css 
======================*/

.pagination-area{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination-show{
  color: var(--body-text-color);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination .page-link {
  width: 40px;
  height: 40px;
  line-height: 38px;
  background: var(--theme-bg);
  color: var(--body-text-color);
  text-align: center;
  font-weight: 500;
  border: 1px solid var(--border-info-color);
  padding: 0;
  box-shadow: none;
  border-radius: 12px !important;
  transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--theme-color);
  color: var(--color-white);
}

.pagination .page-link span{
  line-height: 38px;
}

.pagination span.page-link{
  line-height: 29px;
}

.pagination span.page-link:hover{
  background: var(--theme-bg2);
  color: var(--body-text-color);
}

@media all and (max-width: 767px){
  .pagination-area{
    justify-content: center;
  }
}



/*====================
46. Error css
======================*/

.error-area{
  background-image: url(../img/error/bg.html);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-wrapper{
  background: var(--body-bg);
  border-radius: 40px;
  padding: 50px;
  text-align: center;
}

.error-img{
  margin-bottom: 20px;
}

.error-img img{
  width: 80%;
}

.error-wrapper h2{
  color: var(--color-dark);
}

.error-wrapper p{
  margin-top: 5px;
  margin-bottom: 30px;
}




/*====================
47. Auth css 
======================*/

.auth-area{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.auth-wrap{
  position: relative;
  padding: 20px;
  border-radius: 40px;
  background: var(--theme-bg);
  border: 1px solid var(--border-info-color);
}

.auth-wrap .auth-content{
  padding: 0 75px;
}

.auth-wrap .auth-img img{
  border-radius: 30px;
}

.auth-header{
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-info-color);
}

.auth-header img {
  width: 200px;
  margin: 0 auto;
}

.auth-header h3 {
  color: var(--color-dark);
  margin-bottom: 5px;
  font-weight: 700;
}

.auth-header p {
  font-size: 20px;
  color: var(--body-text-color);
}

.auth-form .form-label {
  color: var(--body-text-color);
  font-size: 15px;
  margin-bottom: 5px;
}

.auth-form .form-control {
  background: var(--body-bg);
}

.auth-form .auth-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.auth-form .auth-check .form-check,
.auth-form .auth-check .form-check-label {
  margin-bottom: 0;
}

.auth-form .form-check-input {
  background-color: var(--body-bg);
}

.auth-form .auth-check a{
  color: var(--theme-color);
}

.auth-form .auth-check a:hover{
  color: var(--theme-color2);
}

.auth-form .password-view{
  cursor: pointer;
}

.auth-form .password-view i{
  left: unset;
  right: 15px;
  color: var(--body-text-color);
}

.auth-form .password-view.show i::before{
  content: "\f06e";
}

.auth-btn{
  margin-top: 25px;
}

.auth-btn .theme-btn{
  width: 100%;
  padding: 12px 18px;
}

.auth-btn .theme-btn::before{
  width: 380px;
  height: 380px;
  transition: var(--transition2);
}

.auth-footer{
  text-align: center;
}

.auth-divider{
  display: block;
  margin: 12px 0;
}

.auth-social-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-social-list a {
  background: var(--theme-color);
  color: var(--color-white);
  padding: 5px 18px;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
}

.auth-social-list a i{
  margin-right: 5px;
}

.auth-social-list a:hover{
  opacity: .8;
}

.auth-social-list .auth-fb{
  background:#3B5998;
}

.auth-social-list .auth-gl{
  background:#DD4B39;
}

.auth-social-list .auth-tw{
  background:#1D9BF0;
}

.auth-footer p{
  margin-top: 30px;
  color: var(--body-text-color);
}

.auth-footer p a{
  color: var(--theme-color);
}

.auth-footer p a:hover{
  color: var(--theme-color2);
}

@media all and (max-width: 1199px) {
  .auth-wrap .auth-content{
    padding: 0 20px;
  }
}

@media all and (max-width: 991px) {
  .auth-area{
    padding: 50px 0;
  }
}

@media all and (max-width: 767px) {
  .auth-wrap .auth-content{
    padding: 0px;
  }
}




/*====================
9. Scroll top css
======================*/

.scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white) !important;
  background-color: var(--theme-color);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.scroll-top.active{
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  .scroll-top.active {
    bottom: 100px;
  }
}



/*====================
48. Footer css
======================*/

.footer-area{
  position: relative;
  padding: 0 16px;
}

.footer-copyright{
  padding: 20px 0;
  border-top: 1px solid var(--border-info-color);
}

.copyright-text{
  color: var(--body-text-color);
  font-size: 15px;
}

.copyright-text a{
  color: var(--theme-color);
}

.footer-menu{
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-menu a{
  color: var(--body-text-color);
  font-size: 15px;
}

.footer-menu a:hover{
  color: var(--theme-color);
}


@media all and (max-width: 1199px){
  .footer-menu{
    gap: 10px;
  }
}

@media all and (max-width: 767px){
  .footer-menu{
    justify-content: start;
    gap: 0;
  }

  .footer-menu li{
    margin-right: 15px;
  }
}



/* =======================END==================== */
