@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Mulish", sans-serif;
}

body {
  font-family: "Mulish", sans-serif;
  margin: 0;
  padding: 0;
}

.gap-2 {
  gap: 10px;
}

.register-btn {
  display: block;
  text-decoration: none;
  margin: 20px auto 0 auto;
  color: #E3530F;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
}

.position-relative {
  position: relative;
}

.img-fluid {
  height: auto;
  max-width: 100%;
}

.btn-login {
  width: 100%;
  padding: 13px;
  background: #E3530F;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  font-weight: 700;
  max-width: 400px;
  margin: 40px auto 0 auto;
}

.btn-edit {
  padding: 6px 12px;
  background: #E3530F;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  margin-right: 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  text-decoration: none;
}

.back-btn {
  padding: 6px 12px;
  background: #E3530F;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
}

.send-otp {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  font-size: 12px;
  background: #E3530F;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: none;
}

.score_link {
  margin: 10px auto;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
}

.btn-login-popup {
  width: 100%;
  padding: 13px;
  background: #E3530F;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  font-weight: 700;
  max-width: 400px;
  margin: 40px auto 0 auto;
}

header {
  background-image: linear-gradient(#f58220, #b02a30);
  padding: 10px 10px;
}
header .header-logo {
  width: -moz-fit-content;
  width: fit-content;
}
header .header-logo a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  header .header-logo a {
    padding: initial;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header .header-logo a img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
}

.login-page {
  min-height: calc(100vh - 155px);
  justify-content: center;
  padding: 30px 15px;
  background: #F6DECB;
}
@media screen and (max-width: 767px) {
  .login-page {
    min-height: calc(100vh - 228.5px);
  }
}
.login-page img.title {
  margin: 0 auto 20px auto;
  display: block;
  max-width: 220px;
}
.login-page .card {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}
.login-page .card .heading {
  background: #E3530F;
  color: #FFFFFF;
  font-size: 18px;
  text-align: center;
  padding: 15px 0;
  border-radius: 20px 20px 0 0;
  font-weight: 600;
}
.login-page .card .form {
  padding: 40px 20px;
  background: #F5F5F5;
  border-radius: 0 0 20px 20px;
}
.login-page .card .form .field {
  margin-bottom: 25px;
  position: relative;
}
.login-page .card .form .field label {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #333333;
}
.login-page .card .form .field input,
.login-page .card .form .field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #C6C6C6;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  background: #fff;
}
.login-page .card .form .field .input-wrap {
  position: relative;
}
.login-page .card .form .field .input-wrap input {
  padding-right: 100px;
}
.login-page .card .form .field .input-wrap .send-otp {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  font-size: 12px;
  background: #E3530F;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: none;
}
.login-page .card .form .field .error-msg {
  color: #d93025;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
.login-page .card .form .field input.error,
.login-page .card .form .field select.error {
  border-color: #d93025;
}

.footer {
  background: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  color: #333333;
}
.footer .footer-links {
  margin-bottom: 0;
}
.footer .footer-links a {
  color: #333;
  text-decoration: none;
  line-height: 20px;
}
.footer .copyright {
  font-size: 13px;
  color: #555;
  line-height: 20px;
}

/* Layout */
.register section {
  padding: 30px 15px;
  min-height: calc(100vh - 250px);
}
.register section.master-pg .card {
  border-top-left-radius: 0;
  border: 1px solid #E5E5E5;
}
@media screen and (max-width: 767px) {
  .register section {
    min-height: calc(100vh - 320px);
  }
  .register section.master-pg .card {
    border-top-left-radius: 14px;
  }
}
.register section .card {
  border-radius: 14px;
  padding: 24px;
  background: #F5F5F5;
  max-width: 600px;
  display: block;
  margin: 20px auto;
}
.register section .card h2.title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
.register section .card .field {
  margin-bottom: 15px;
  position: relative;
}
.register section .card .field label {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #333333;
}
.register section .card .field input,
.register section .card .field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #C6C6C6;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  background: #fff;
  color: #333;
}
.register section .card .field input::-moz-placeholder, .register section .card .field select::-moz-placeholder {
  color: #666666;
}
.register section .card .field input::placeholder,
.register section .card .field select::placeholder {
  color: #666666;
}
.register section .card .field .input-wrap {
  position: relative;
}
.register section .card .field .input-wrap input {
  padding-right: 100px;
}
.register section .card .field .input-wrap .send-otp {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  font-size: 12px;
  background: #E3530F;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: none;
}
.register section .card .field .error-msg {
  color: #d93025;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
.register section .card .field input.error {
  border-color: #d93025;
}
.register section .actions {
  display: none;
  flex: 1;
  margin-left: auto;
  justify-content: end;
}
.register section strong {
  display: none;
}

/* Table */
.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table th,
table td {
  padding: 10px;
  border: 1px solid #000;
  text-align: left;
}
table th a,
table td a {
  color: #333;
  margin-right: 10px;
}

/* Stats */
.stats-grid {
  display: flex;
  gap: 12px;
}
.stats-grid .stat {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
}
.stats-grid .stat-label {
  font-size: 12px;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .stats-grid .stat-label {
    min-height: 45px;
  }
}
.stats-grid .stat-val {
  font-size: 24px;
  font-weight: 700;
  color: #E3530F;
  text-align: center;
}

/* Popup */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.overlay .popup {
  width: 450px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  position: relative;
  max-width: 95%;
}
.overlay .popup .close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
}
.overlay .popup #msg {
  margin-bottom: 0px;
  font-size: 18px;
  text-align: center;
  color: #E3530F;
  font-weight: 600;
}
.overlay .popup #popupActions {
  display: none;
  gap: 10px;
  align-items: center;
}
.overlay .popup #popupActionsAdd {
  display: none;
  gap: 10px;
  align-items: center;
}

/* Summary */
.summary-box {
  background-color: #F6DECB;
  padding: 30px 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .register section #tableBody thead,
  .register section #tableBody tbody,
  .register section #tableBody th,
  .register section #tableBody td,
  .register section #tableBody tr {
    display: block;
    width: 100%;
  }
  .register section #tableBody thead {
    display: none;
  }
  .register section #tableBody tbody:first-of-type tr {
    display: none;
  }
  .register section #tableBody tr {
    margin-bottom: 10px;
  }
  .register section #tableBody tr td {
    border: none;
    background: #EBEBEB;
    padding: 12px 20px 12px 20px;
    border-bottom: 1px solid #fff;
  }
  .register section #tableBody tr td span {
    display: block;
  }
  .register section #tableBody tr td strong {
    margin-right: 4px;
    display: block;
  }
  .register section #tableBody tr td:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: #F6DECB;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    padding: 12px 20px;
  }
  .register section #tableBody tr td:first-child::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 12px;
    background: url("../images/down_arrow.svg") no-repeat center/contain;
    transition: all 0.5s;
  }
  .register section #tableBody tr td:not(:first-child) {
    display: none;
  }
  .register section #tableBody tr.active td {
    display: flex;
    align-items: flex-start;
  }
  .register section #tableBody tr.active td.block {
    display: block;
  }
  .register section #tableBody tr.active td:first-child::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
    width: 18px;
    height: 12px;
    background: url("../images/down_arrow.svg") no-repeat center/contain;
    transform: rotate(180deg);
  }
  .register section #tableBody tr.active td:first-child {
    border-radius: 20px 20px 0 0;
  }
  .register section #tableBody tr.active td:nth-last-child(2) {
    border-radius: 0 0 20px 20px;
  }
  .register section #tableBody tr.active td:last-child {
    display: none !important;
  }
  .register section #tableBody .actions {
    display: flex;
    margin-right: 35px;
    gap: 15px;
  }
  .register section #tableBody .actions button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
  }
  .register section #tableBody.without_edit tr.active td:nth-last-child(2) {
    border-radius: 0;
  }
  .register section #tableBody.without_edit tr.active td:first-child {
    border-radius: 20px 20px 0 0;
  }
  .register section #tableBody.without_edit tr.active td:last-child {
    display: flex !important;
    border-radius: 0 0 20px 20px;
  }
}
.master-pg .field {
  margin-bottom: 15px;
}
.master-pg .field input,
.master-pg .field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #C6C6C6;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  background: #fff;
  color: #333;
  max-width: 400px;
}
.master-pg .field input::-moz-placeholder, .master-pg .field select::-moz-placeholder {
  color: #666666;
}
.master-pg .field input::placeholder,
.master-pg .field select::placeholder {
  color: #666666;
}
.master-pg .field label {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #333333;
}
.master-pg .btn-add {
  padding: 8px 13px;
  background: #E3530F;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  font-weight: 400;
  max-width: 200px;
}
.master-pg .w100 {
  width: 100%;
}
.master-pg .w100m {
  max-width: 100% !important;
}
.master-pg .table-wrap {
  border: 1px solid #cccccc;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
}
.master-pg h2 {
  margin: 20px 0px;
  font-size: 18px;
}
.master-pg #statsGrid {
  flex-wrap: wrap;
}

.btn-edit {
  text-transform: capitalize;
}

/* Webkit */
.tab-content::-webkit-scrollbar {
  width: 10px;
}

.tab-content::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

.tab-content::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}

.tab-content::-webkit-scrollbar-button {
  color: #999;
}

.tab-content::-webkit-scrollbar-button:hover {
  background-color: darkred;
}

/* Layout */
.layout {
  display: flex;
  gap: 0px;
  /* Sidebar */
}
.layout .sidebar {
  width: 280px;
  padding-right: 0px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px;
  background: #F5F5F5;
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: #E5E5E5;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
.layout .sidebar p {
  color: #A6A6A6;
  margin: 10px 0;
}
.layout .sidebar .menu {
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 16px;
  text-align: left;
  color: #666666;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
}
.layout .sidebar .menu:hover {
  color: #E3530F;
  background: rgba(253, 146, 96, 0.1019607843);
}
.layout .sidebar .menu.active {
  color: #E3530F;
  font-weight: 600;
  background: rgba(253, 146, 96, 0.1019607843);
}
.layout {
  /* Right content */
}
.layout .content {
  flex: 1;
}
.layout .tab-content {
  display: none;
  flex: 1;
}
.layout .tab-content.active {
  display: block;
}
.layout .tableBody td strong {
  display: none;
}
.layout .tableBody button.delete-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.layout .border-radius-0 {
  border-radius: 0px !important;
}
.layout .stats-grid .stat {
  width: 32%;
}

#tableBody td strong {
  display: none;
}
#tableBody button.delete-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 767.5px) {
  .tableBody thead,
  .tableBody tbody,
  .tableBody th,
  .tableBody td,
  .tableBody tr {
    display: block;
    width: 100%;
  }
  .tableBody thead {
    display: none;
  }
  .tableBody tbody:first-of-type tr {
    display: none;
  }
  .tableBody tr {
    margin-bottom: 10px;
  }
  .tableBody tr td {
    border: none;
    background: #EBEBEB;
    padding: 12px 20px 12px 20px;
    border-bottom: 1px solid #fff;
  }
  .tableBody tr td span {
    display: block;
  }
  .tableBody tr td strong {
    margin-right: 4px;
    display: block !important;
  }
  .tableBody tr td:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: #F6DECB;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    padding: 12px 20px;
  }
  .tableBody tr td:first-child::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 12px;
    background: url("../images/down_arrow.svg") no-repeat center/contain;
    transition: all 0.5s;
  }
  .tableBody tr td:not(:first-child) {
    display: none;
  }
  .tableBody tr.active td {
    display: flex;
    align-items: flex-start;
  }
  .tableBody tr.active td.block {
    display: block;
  }
  .tableBody tr.active td:first-child::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
    width: 18px;
    height: 12px;
    background: url("../images/down_arrow.svg") no-repeat center/contain;
    transform: rotate(180deg);
  }
  .tableBody tr.active td:first-child {
    border-radius: 20px 20px 0 0;
  }
  .tableBody tr.active td:nth-last-child(2) {
    border-radius: 0 0 20px 20px;
  }
  .tableBody tr.active td:last-child {
    display: none !important;
  }
  .tableBody.without_edit tr.active td:nth-last-child(2) {
    border-radius: 0;
  }
  .tableBody.without_edit tr.active td:first-child {
    border-radius: 20px 20px 0 0;
  }
  .tableBody.without_edit tr.active td:last-child {
    display: flex !important;
    border-radius: 0 0 20px 20px;
  }
  .tableBody .actions {
    display: flex !important;
    margin-right: 30px;
    gap: 15px;
  }
  .tableBody .actions button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
  }
  .stats-grid .stat {
    width: 46% !important;
  }
  section.master-pg {
    padding: 20px 0px;
  }
  .master-pg .card {
    padding: 20px 15px !important;
  }
  .layout {
    flex-direction: column;
  }
  .layout .sidebar {
    min-height: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
    overflow-x: auto;
    display: flex;
    gap: 5px;
    border-radius: 0;
    background: #F5F5F5;
  }
  .layout .sidebar p {
    padding: 0 10px;
  }
  .layout .sidebar .close_ham {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .layout .sidebar .menu {
    flex: 0 0 auto;
    padding: 10px 7px;
    font-size: 15px;
    background: #F5F5F5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 10px;
  }
  .layout .sidebar .menu.active {
    border-radius: 5px;
    color: #E3530F;
    background: rgba(253, 146, 96, 0.1019607843);
    font-weight: 600;
  }
  .layout .tab-content {
    height: auto;
    padding-right: 0px;
  }
}
/* MOBILE HAMBURGER */
.mobile-header {
  display: none;
}

@media screen and (max-width: 767px) {
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    position: absolute;
    right: 0;
    top: 0px;
  }
  .register .mobile-header {
    top: 10px;
  }
  .hamburger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    background: none;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }
  /* Sidebar becomes drawer */
  .layout .sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    z-index: 1000;
    padding: 15px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column !important;
    background: #F5F5F5;
    padding: 15px 0;
  }
  .layout .sidebar.open {
    left: 0;
  }
  /* Overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
.icon-btn {
  background: #E3530F;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  outline: none;
}

.societies_added {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px 0;
}

.societies_added p {
  background: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  border-radius: 10px;
  color: #333;
  position: relative;
}

.societies_added button {
  background: #E3530F;
  color: white;
  border: none;
  outline: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -10px;
  right: -10px;
}

.double-row {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.double-row::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

@media screen and (max-width: 767.5px) {
  .double-row {
    flex-direction: column;
    gap: 20px 0px;
    gap: 50px;
  }
  .double-row::after {
    content: "";
    display: none;
  }
  .card.order-0.order-md-1 {
    position: relative;
  }
  .card.order-0.order-md-1::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
  }
}
/* Radio button */
input[type=radio] {
  accent-color: #E3530F;
  cursor: pointer;
}

/* Checkbox */
input[type=checkbox] {
  accent-color: #E3530F;
  cursor: pointer;
}

#note > ul {
  padding-left: 30px;
}

.search-input {
  background: url("images/search-icon.svg") #fff no-repeat right 15px center !important;
  background-size: 20px !important;
}

/* Hide default radio */
.custom-radio input {
  display: none;
}

/* Container */
.custom-radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 20px;
  font-size: 14px;
}

.register section .card .field label.custom-radio {
  display: flex;
}

/* Outer circle */
.radio-mark {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  display: inline-block;
}

/* Inner dot (hidden by default) */
.radio-mark::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #E3530F;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s;
}

/* Checked state */
.custom-radio input:checked + .radio-mark {
  border-color: #E3530F;
}

.custom-radio input:checked + .radio-mark::after {
  transform: translate(-50%, -50%) scale(1);
}

.home {
  height: calc(100vh - 166.55px);
  min-height: unset;
}
.home div {
  display: flex;
  align-items: center;
  justify-self: center;
  height: 100%;
  min-height: calc(100vh - 226.55px);
}

.links {
  gap: 30px;
}
.links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .home {
    min-height: calc(100vh - 225.33px);
  }
  .home div {
    min-height: calc(100vh - 285.33px);
  }
  .master-pg .btn-add {
    margin-top: 10px;
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  /* Convert header links into drawer */
  .links {
    position: fixed;
    top: 0;
    left: -260px;
    width: 240px;
    height: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    z-index: 1000;
    transition: left 0.3s ease;
  }
  .links a {
    color: #666666 !important;
    font-size: 18px;
    width: 100%;
  }
  .links.open {
    left: 0;
  }
  /* Close button */
  .close-btn {
    align-self: flex-end;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
  }
  .container-text button {
    margin: 20px 10px;
  }
}
.toast-container {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast-container .toast {
  min-width: 280px;
  padding: 14px 18px;
  border-radius: 8px;
  color: white;
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.4s ease, fadeOut 0.5s ease 4.5s forwards;
}
.toast-container .toast.success {
  background: #22c55e url("images/success.svg") no-repeat left 10px center;
  padding-left: 40px;
  background-size: 20px;
}
.toast-container .toast.error {
  background: #ef4444 url("images/error.svg") no-repeat left 10px center;
  padding-left: 40px;
  background-size: 20px;
}
.toast-container .toast.info {
  background: #3b82f6 url("images/info.svg") no-repeat left 10px center;
  padding-left: 40px;
  background-size: 20px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
.suggestions {
  width: 100%;
  background: #FFF4EF;
  border: 1px solid #ccc;
  border-radius: 8px;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  z-index: 10;
  display: none;
}
.suggestions .suggestion-item {
  padding: 10px;
  cursor: pointer;
  color: #333333;
  font-size: 16px;
}
.suggestions .suggestion-item.not_found {
  color: #DA0B0B;
}

.container-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.container-text button {
  padding: 10px 50px;
  margin: 20px;
  background: #E3530F;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  border: none;
  cursor: pointer;
}

.container-text button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.container-text button.open::after {
  content: "-";
}

.collapsible-content {
  display: none;
  padding: 30px;
  border: 1px solid #ccc;
  margin: 20px auto;
}

.h5,
h5 {
  font-size: 20px;
}

.rules-dv ul li,
.termsdv ul li {
  position: relative;
  color: #414141;
  font-size: 18px;
  margin: 10px 0px 20px;
  padding: 0px 0px 0px 25px;
  text-align: left;
}

.termsdv p {
  font-size: 18px;
}

.termsdv p {
  margin: 20px 0px 0px;
}

.rules-dv ul,
.termsdv ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.rules-dv ul li:before {
  width: 8px;
  height: 8px;
  background: #414141;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
}

.rules-dv ul li ul li:before {
  width: 0;
  height: 0;
  background: transparent;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0px;
  content: ">";
}

.rules-dv ul.none li::before {
  content: none;
}

.termsdv ul li:before {
  width: 8px;
  height: 8px;
  background: #414141;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
}

.termsdv ul {
  padding-left: 10px;
}

#videoTable .d-flex.align-items-center.gap-2 {
  justify-content: space-between;
}

.gap-1 {
  gap: 5px;
}

@media screen and (max-width: 767px) {
  .container-text button {
    margin: 20px 10px;
  }
}
input[type=checkbox] {
  accent-color: #E3530F;
}

input[type=checkbox]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.edit-btn {
  background: transparent;
  border: none;
  outline: none;
}

.chart-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0px auto;
}

canvas {
  width: 100% !important;
  height: 100% !important;
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #cbd5e1;
}

.center-text h2 {
  margin: 0;
  font-size: 26px;
  color: #d1d5db;
}

.center-text p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #94a3b8;
}

.dashboard .stats-grid .stat-label {
  font-size: 14px;
  min-height: 45px;
}

.dashboard .stats-grid.pie .stat-label {
  min-height: unset;
}

.dashboard .stats-grid .stat-val {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

.dashboard .stats-grid .stat.active .stat-label,
.dashboard .stats-grid .stat.active .stat-val {
  color: #E3530F;
}

.tab-cont {
  background: #fff;
  margin: 20px 0;
  padding: 20px;
  border-radius: 10px;
}

.dashboard .layout .stats-grid .stat {
  width: 31%;
  flex-grow: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard .stats-grid .stat {
  border: 2px solid transparent;
}

.dashboard .stats-grid .stat.active {
  border: 2px solid #E3530F;
  background: #F6EBE6;
}

.dashboard.master-pg #statsGrid {
  padding-right: 15px;
}

.dashboard .layout .stats-grid.pie .stat {
  width: 100%;
  max-width: 100%;
}

.stat_wrap {
  display: flex;
}

@media screen and (max-width: 768px) {
  .stat_wrap {
    display: block;
  }
  .dashboard .layout .stats-grid.pie .stat {
    width: 100% !important;
    margin: 15px 0;
  }
}
.chart-container {
  position: relative;
}

canvas {
  position: relative;
  z-index: 2;
  /* 👈 tooltip lives here */
}

.center-text {
  position: absolute;
  z-index: 1;
  /* 👈 keep it below canvas */
}

.new.field {
  width: -moz-fit-content;
  width: fit-content;
}

.new.field input {
  padding: 11px 14px;
  border: 1px solid #C6C6C6;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  background: #fff;
  width: 600px;
  max-width: 100%;
  margin-bottom: 20px;
}

.clear-search-btn {
  display: none;
  position: absolute;
  right: 12px;
  top: 12px;
  margin: auto auto;
  background: none;
  border: none;
}

.errorwrap.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 250px);
}

.errorwrap .card {
  max-width: 700px;
  border-radius: 20px;
}

.errorwrap .card .form {
  padding: 40px;
  background: #F5F5F5;
  border-radius: 20px;
}

.errorwrap .card .form {
  font-size: 18px;
  color: #333;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .errorwrap.login-page {
    min-height: calc(100vh - 320px);
  }
}
.master-pg .card .field {
  max-width: 400px;
}/*# sourceMappingURL=style.css.map */