@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
/*************** mixins ***********************/
.btn {
  min-width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: thin solid transparent;
  border-radius: 1rem;
  padding: 0.7rem 2rem;
  font-size: 14px !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.btn-primary {
  background: #00B5B4;
  color: #ffffff;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background: rgb(31.932038835, 30.7038834951, 222.2961165049);
  border-color: #00B5B4;
  color: #ffffff;
}

.btn-primary-light {
  background: rgba(75, 74, 230, 0.1490196078);
  border-color: rgba(75, 74, 230, 0.1490196078);
  color: rgb(0, 0, 0);
}

.btn-primary-light:hover, .btn-primary-light:active, .btn-primary-light:focus {
  background: rgba(31.932038835, 30.7038834951, 222.2961165049, 0.1490196078);
  border-color: rgba(31.932038835, 30.7038834951, 222.2961165049, 0.1490196078);
  color: rgb(0, 0, 0);
}

.btn-primary-outline {
  background: transparent;
  border-color: #00B5B4;
  color: #00B5B4;
}

.btn-primary-outline:hover, .btn-primary-outline:active, .btn-primary-outline:focus {
  background: #00B5B4;
  border-color: #00B5B4;
  color: #ffffff;
}

.btn-secondary {
  background: #7d7d93;
  border-color: #7d7d93;
  color: rgb(0, 0, 0);
}

.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus {
  background: rgb(152.8571428571, 152.8571428571, 170.1428571429);
  border-color: rgb(152.8571428571, 152.8571428571, 170.1428571429);
  color: rgb(0, 0, 0);
}

.btn-secondary-outline {
  background: transparent;
  border-color: #7d7d93;
  color: #7d7d93;
}

.btn-secondary-outline:hover, .btn-secondary-outline:active, .btn-secondary-outline:focus {
  background: #7d7d93;
  border-color: #7d7d93;
  color: rgb(0, 0, 0);
}

.btn-secondary-light {
  background: #b7b7bd;
  border-color: #b7b7bd;
  color: rgb(0, 0, 0);
}

.btn-secondary-light:hover, .btn-secondary-light:active, .btn-secondary-light:focus {
  background: rgb(156.3913043478, 156.3913043478, 164.6086956522);
  border-color: rgb(156.3913043478, 156.3913043478, 164.6086956522);
  color: rgb(0, 0, 0);
}

.btn-secondary-light-outline {
  background: transparent;
  border-color: #b7b7bd;
  color: #b7b7bd;
}

.btn-secondary-light-outline:hover, .btn-secondary-light-outline:active, .btn-secondary-light-outline:focus {
  background: #b7b7bd;
  border-color: #b7b7bd;
  color: rgb(0, 0, 0);
}

.btn-success {
  background: #05822c;
  border-color: #05822c;
  color: #ffffff;
}

.btn-success:hover, .btn-success:active, .btn-success:focus {
  background: rgb(6.8888888889, 179.1111111111, 60.6222222222);
  border-color: rgb(6.8888888889, 179.1111111111, 60.6222222222);
  color: #ffffff;
}

.btn-success-light {
  background: #065920;
  border-color: #065920;
  color: rgb(0, 0, 0);
}

.btn-success-light:hover, .btn-success-light:active, .btn-success-light:focus {
  background: rgb(2.7789473684, 41.2210526316, 14.8210526316);
  border-color: rgb(2.7789473684, 41.2210526316, 14.8210526316);
  color: rgb(0, 0, 0);
}

.btn-success-outline {
  background: transparent;
  border-color: #05822c;
  color: #05822c;
}

.btn-success-outline:hover, .btn-success-outline:active, .btn-success-outline:focus {
  background: #05822c;
  border-color: #05822c;
  color: #ffffff;
}

.btn-info {
  background: #1565c0;
  border-color: #1565c0;
  color: #ffffff;
}

.btn-info:hover, .btn-info:active, .btn-info:focus {
  background: rgb(33.2535211268, 125.6478873239, 230.7464788732);
  border-color: rgb(33.2535211268, 125.6478873239, 230.7464788732);
  color: #ffffff;
}

.btn-info-light {
  background: #519ed3;
  border-color: #519ed3;
  color: rgb(0, 0, 0);
}

.btn-info-light:hover, .btn-info-light:active, .btn-info-light:focus {
  background: rgb(48.6422018349, 133.7660550459, 192.3577981651);
  border-color: rgb(48.6422018349, 133.7660550459, 192.3577981651);
  color: rgb(0, 0, 0);
}

.btn-info-outline {
  background: transparent;
  border-color: #1565c0;
  color: #1565c0;
}

.btn-info-outline:hover, .btn-info-outline:active, .btn-info-outline:focus {
  background: #1565c0;
  border-color: #1565c0;
  color: #ffffff;
}

.btn-danger {
  background: #dd0417;
  border-color: #dd0417;
  color: #ffffff;
}

.btn-danger:hover, .btn-danger:active, .btn-danger:focus {
  background: rgb(250.84, 25.16, 44.92);
  border-color: rgb(250.84, 25.16, 44.92);
  color: #ffffff;
}

.btn-danger-light {
  background: #d13340;
  border-color: #d13340;
  color: #ffffff;
}

.btn-danger-light:hover, .btn-danger-light:active, .btn-danger-light:focus {
  background: rgb(170.544, 38.456, 49.324);
  border-color: rgb(170.544, 38.456, 49.324);
  color: #ffffff;
}

.btn-danger-outline {
  background: transparent;
  border-color: #dd0417;
  color: #dd0417;
}

.btn-danger-outline:hover, .btn-danger-outline:active, .btn-danger-outline:focus {
  background: #dd0417;
  border-color: #dd0417;
  color: #ffffff;
}

.btn-light {
  background: #e1e1e1;
  border-color: #e1e1e1;
  color: rgb(0, 0, 0);
}

.btn-light:hover, .btn-light:active, .btn-light:focus {
  background: rgb(199.5, 199.5, 199.5);
  border-color: rgb(199.5, 199.5, 199.5);
  color: rgb(0, 0, 0);
}

.btn-light-outline, .btn-light-outline:hover, .btn-light-outline:active, .btn-light-outline:focus {
  background: transparent;
  border-color: rgb(0, 0, 0) !important;
  color: rgb(0, 0, 0);
}

.sidebar-wrapper {
  background: #f6f6ff;
  width: 160px;
  max-height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  transition: 0.6s;
  min-height: 100vh;
  touch-action: none;
  user-select: none;
  padding: 0;
  z-index: 100;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: auto;
}

.sidebar {
  width: 100%;
  background: #ffffff;
  height: auto;
  padding: 3rem 0 3rem 0.5rem;
  min-height: 100vh;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 2px 0;
}
.sidebar .brand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.sidebar .brand .app-logo {
  min-width: 109px;
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}
.sidebar .sidebar-list .nav-item {
  padding: 0.25rem;
  margin-bottom: 0.5rem;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
.sidebar .sidebar-list .nav-item.active {
  background: rgba(75, 74, 230, 0.1490196078);
}
.sidebar .sidebar-list .nav-item.active .item {
  color: #00B5B4;
  font-weight: bold;
}
.sidebar .sidebar-list .nav-item .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgb(0, 0, 0);
  position: relative;
}
.sidebar .sidebar-list .nav-item .item .cont {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.sidebar .sidebar-list .nav-item .item .cont .icon {
  display: flex;
  justify-content: center;
  padding: 0.5rem;
}
.sidebar .sidebar-list .nav-item .item .cont .icon svg {
  width: 26px;
  height: revert;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  row-gap: 1rem;
}
.navbar .sidebar-toggler {
  display: none;
  cursor: pointer;
}
.navbar .sidebar-toggler i {
  color: rgb(0, 0, 0);
  font-size: 1.75rem;
}
.navbar .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-right: auto;
}
.navbar .content .search-warpper {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar .content .search-warpper .search-input {
  width: 100%;
  position: relative;
}
.navbar .content .search-warpper .search-input .search-ic, .navbar .content .search-warpper .search-input .filter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.navbar .content .search-warpper .search-input .search-ic {
  right: 1rem;
}
.navbar .content .search-warpper .search-input .filter {
  left: 1rem;
  cursor: pointer;
}
.navbar .content .search-warpper .search-input input.form-control {
  width: 100%;
  padding: 10px 45px;
  height: auto !important;
  color: #606060;
  font-size: 10pt;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid #ffffff;
  background: #ffffff;
}
.navbar .content .search-warpper .search-input input.form-control::placeholder {
  color: #7d7d93;
}
.navbar .content .search-warpper .search-input input.form-control:focus::placeholder {
  opacity: 0;
}
.navbar .content .nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar .content .nav-list .lang, .navbar .content .nav-list .user {
  min-height: 47px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(0, 0, 0);
  border-radius: 25px;
  box-shadow: 0 0 14.6px 0 rgba(0, 0, 0, 0.0509803922);
}
.navbar .content .nav-list .lang .body, .navbar .content .nav-list .user .body {
  width: 100%;
  color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1rem;
  gap: 0.25rem;
}
.navbar .content .nav-list .lang .body .details, .navbar .content .nav-list .user .body .details {
  min-width: fit-content;
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0 0.5rem;
}
.navbar .content .nav-list .lang .body .details .name, .navbar .content .nav-list .user .body .details .name {
  font-size: 12px;
}
.navbar .content .nav-list .lang .body::after, .navbar .content .nav-list .user .body::after {
  color: #7d7d93;
}
.navbar .content .nav-list .lang {
  min-width: fit-content;
  padding-right: 1rem;
}
.navbar .content .nav-list .lang .flag {
  width: 16px;
  height: 16px;
}
.navbar .content .nav-list .user {
  min-width: 167px;
}
.navbar .content .nav-list .user .avatar {
  width: 47px;
  height: 47px;
  object-fit: cover;
  border-radius: 50%;
  border: thin solid #ffffff;
}
.navbar .content .nav-list .dropdown-menu {
  width: 100%;
  overflow: auto;
  background: #ffffff;
  padding: 0;
  margin-top: 0.25rem;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.navbar .content .nav-list .dropdown-menu li .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 0;
  color: #7d7d93;
  font-size: 12px;
  transition: background 0.1s ease;
}
.navbar .content .nav-list .dropdown-menu li .item:hover {
  background: #e1e1e1;
}
.navbar .content .nav-list .dropdown-menu li:first-child .item {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.navbar .content .nav-list .dropdown-menu li:last-child .item {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

@media (max-width: 575.98px) {
  .navbar .content {
    flex-direction: row;
    align-items: flex-start;
  }
  .navbar .content .search-warpper {
    width: 100%;
  }
  .navbar .content .search-warpper .sidebar-toggler i {
    color: #141B34;
    font-size: 1.75rem;
  }
  .navbar .content .nav-list .user {
    min-width: 47px;
  }
  .navbar .content .nav-list .user .dropdown-menu {
    left: 0;
    right: unset;
  }
  .navbar .content .nav-list .user .body {
    gap: 0;
    padding: 0;
  }
  .navbar .content .nav-list .user .body .details {
    display: none;
  }
  .navbar .content .nav-list .user .body::after {
    display: none;
  }
}
.auth {
  width: 100%;
  background: #F6F6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  height: 100vh;
}
.auth .left-side, .auth .right-side {
  width: 50%;
  height: 100%;
  position: relative;
}
.auth .right-side {
  overflow-y: auto;
  display: flex !important;
  justify-content: start !important
}
.auth .left-side {
  background: rgba(75, 74, 230, 0.1490196078);
}
.auth .left-side .overlay {
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
}
.auth .left-side .content {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 1;
}
.auth .right-side {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 4rem;
}
.auth .right-side .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  opacity: 20%;
  top: 0;
  right: 0;
  z-index: 0;
}
.auth .right-side .app-logo,
.auth .right-side .head,
.auth .right-side .body {
  position: relative;
  z-index: 1;
}
.auth .right-side .app-logo {
  width: 160px;
  margin-bottom: 0.5rem;
}
.auth .right-side .head, .auth .right-side .body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.auth .right-side .head .heading, .auth .right-side .body .heading {
  color: rgb(0, 0, 0);
  font-size: 32px;
}
.auth .right-side .head .title, .auth .right-side .body .title {
  color: rgb(0, 0, 0);
  font-size: 24px;
  font-weight: bold;
}
.auth .right-side .head .description, .auth .right-side .body .description {
  font-size: 16px;
  line-height: 2rem;
}
.auth .right-side .head .description.small, .auth .right-side .body .description.small {
  font-size: 14px;
  line-height: 1.5rem;
}
.auth .right-side .head .description a, .auth .right-side .body .description a {
  color: #00B5B4;
  text-decoration: none;
}
.auth .right-side .actions {
  width: 100%;
  display: flex;
}

@media screen and (max-width: 991.98px) {
  .auth .left-side {
    display: none;
  }
  .auth .right-side {
    width: 100% !important;
  }
}
* {
  font-family: "Cairo", sans-serif !important;
}

html {
  font-size: 14px;
}

body {
  background: rgba(75, 74, 230, 0.1490196078);
}

a {
  text-decoration: none;
  color: #00B5B4;
}
a:not(.btn):hover, a:not(.btn):visited {
  color: #00B5B4;
}

i {
  font-family: "Font Awesome 5 Free", serif !important;
}

p,
blockquote {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style-type: none;
}

a:hover {
  text-decoration: none;
}

main {
  padding: 0 1.25rem;
}
main .main-card {
  padding: 1rem;
}

select {
  box-shadow: none !important;
  cursor: pointer !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.fl-wrapper {
  z-index: 1000 !important;
  direction: rtl;
}

.text-primary {
  color: #00B5B4 !important;
}

.form-control:active,
.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}

.upload-file-wrapper {
  padding: 2rem 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
  border: thin solid #dedede;
}
.upload-file-wrapper .upload-file-background {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 0.5rem;
}
.upload-file-wrapper .preview-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.container {
  max-width: 1700px !important;
}

.main-container {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#content {
  position: relative;
  width: 50%;
  flex-grow: 8;
  background: #f6f6ff;
  margin-right: 160px;
  transition: 0.6s;
}
#content .content-section {
  background: #f6f6ff;
  height: 100%;
  background-size: cover;
}

.breadcrumbs {
  display: flex;
  align-items: center;
}
.breadcrumbs .icon {
  padding-left: 0.25rem;
}
.breadcrumbs .breadcrumbs__main,
.breadcrumbs .sub {
  padding: 0 0.25rem;
  color: #00B5B4;
}
.breadcrumbs .sub.current {
  font-weight: bold;
  color: rgb(0, 0, 0);
}

.page-head {
  flex-grow: 1;
  min-width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 3rem 0;
}
.page-head .title {
  flex-grow: 1;
  font-size: 1.25rem;
  font-weight: bold;
  color: rgb(0, 0, 0);
}
.page-head .action {
  display: flex;
  justify-content: flex-end;
}
.page-head .action .btn {
  width: fit-content;
}

table {
  width: 100%;
}
table thead tr th {
  margin-bottom: 1rem;
  white-space: nowrap;
}
table thead th,
table tbody td {
  padding: 1rem;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}
.nav-tabs .nav-link {
  background: rgba(75, 74, 230, 0.1490196078);
  padding: 0.4rem 0.9rem;
  color: #00B5B4;
  border: thin solid transparent;
  border-radius: 2rem;
  cursor: pointer;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
  background: #b7b7bd;
  border: 1px solid #7d7d93;
  color: rgb(0, 0, 0);
}

.search {
  min-width: 300px;
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 0.75rem 0.5rem;
  color: #00B5B4;
  border: thin solid #e5e7eb;
  border-radius: 1rem;
}
.search .icon {
  padding: 0 0.5rem;
}
.search input {
  flex-grow: 1;
  padding: 0 1rem;
  border: none;
  box-shadow: none;
  outline: none;
  border-radius: 1rem;
}
.search input:focus::placeholder {
  opacity: 0;
}

input[type=password]::-ms-reveal,
input[type=password]::-ms-clear {
  display: none;
}

input[type=password]::-webkit-contacts-auto-fill-button,
input[type=password]::-webkit-credentials-auto-fill-button {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group .form-label {
  color: rgb(0, 0, 0);
}
.form-group .form-label .icon {
  display: inline-block;
  padding-left: 0.5rem;
}
.form-group .form-control,
.form-group .form-textarea,
.form-group .form-select {
  background: transparent !important;
  border: thin solid #e5e7eb;
  border-radius: 1rem;
  padding: 0.9rem 1.5rem;
  color: rgb(0, 0, 0);
  text-align: right;
}
.form-group .form-control.is-invalid,
.form-group .form-textarea.is-invalid,
.form-group .form-select.is-invalid {
  background: rgba(250, 16, 36, 0.1019607843);
  box-shadow: none !important;
}
.form-group .form-control:focus,
.form-group .form-textarea:focus,
.form-group .form-select:focus {
  border-color: #b7b7bd;
}
.form-group .form-control:focus::placeholder,
.form-group .form-textarea:focus::placeholder,
.form-group .form-select:focus::placeholder {
  opacity: 0;
}
.form-group .radio-group {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-group .radio-group.column {
  flex-direction: column;
  align-items: flex-start;
}
.form-group .radio-group .form-check {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.input-icon {
  padding-right: 1.25rem;
}
.input-icon:focus {
  border-color: #b7b7bd;
}
.input-icon:focus::placeholder {
  opacity: 0;
}

.tox .tox-edit-area::before {
  border: none !important;
}

.main-card {
  position: relative;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 3rem;
  margin-bottom: 2rem;
  z-index: 1;
}
.main-card:before {
  content: "";
  width: 450px;
  height: 450px;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to bottom left, rgba(249, 220, 134, 0.2) 0%, rgba(249, 220, 134, 0) 100%);
  border-top-right-radius: 1.25rem;
  border-bottom-left-radius: 50%;
  z-index: -1;
}
.main-card .card-header {
  background: transparent;
  border-radius: 1.25rem;
  border: unset;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.main-card .card-header .head {
  flex-grow: 1;
  min-width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.main-card .card-header .head .title {
  font-size: 1.25rem;
  font-weight: bold;
  color: rgb(0, 0, 0);
}
.main-card .card-header .head .description {
  color: #00B5B4;
}
.main-card .card-header .head .description.small {
  font-size: 14px;
  line-height: 1.5rem;
}
.main-card .card-header .head .description a {
  color: #00B5B4;
  text-decoration: none;
}
.main-card .card-header .action {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.main-card .card-header .action .btn {
  width: fit-content;
}
.main-card .card-footer {
  background: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  border: none;
  padding-top: 1rem;
}

.modal .modal-header {
  height: 135px;
  position: relative;
  background: linear-gradient(360deg, #ffffff 26.87%, rgb(142, 154, 230) 170.9%);
  border-top-right-radius: 1.5rem !important;
  border-top-left-radius: 1.5rem !important;
  padding-bottom: 0 !important;
  border: none;
}
.modal .modal-header .modal-title {
  width: 100%;
  text-align: center;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 1.25rem;
}
.modal .modal-header .icon {
  width: 100px;
  position: absolute;
  top: -4rem;
  right: 50%;
  transform: translateX(50%);
}
.modal .modal-dialog {
  max-width: 600px !important;
}
.modal .modal-dialog.modal-lg {
  max-width: 800px !important;
}
.modal .modal-dialog.modal-xl {
  max-width: 1200px !important;
}
.modal .modal-content {
  border-radius: 1.5rem !important;
  border: none;
}
.modal .modal-body {
  max-height: calc(100vh - 300px);
  overflow: auto;
  padding: 1.5rem;
}
.modal .modal-footer {
  display: flex;
  border: none;
  gap: 0.7rem;
}

.btn-close {
  position: absolute;
  box-shadow: none !important;
  top: 2rem;
  left: 2rem;
  font-size: 10pt;
}

.icon-input-container {
  margin-bottom: 1rem;
}
.icon-input-container .input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.icon-input-container .input-wrapper input {
  padding-left: 3rem;
  width: 100%;
}
.icon-input-container .input-wrapper .suffix-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #7d7d93;
}

.note {
  width: 100%;
  max-width: 750px;
  background: rgba(154, 154, 154, 0.1019607843);
  display: flex;
  border-radius: 0.5rem;
  padding: 16px 20px;
}

.toast {
  visibility: hidden;
  width: 100px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  text-align: center;
  border-radius: 0.5rem;
  padding: 0.75rem;
  position: fixed;
  bottom: 2rem;
  right: 50%;
  transform: translateX(50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
}
.toast.show {
  visibility: visible;
  opacity: 1;
}

.meeting-card {
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 2rem 1.5rem;
  border: thin solid #e1e1e1;
  border-radius: 1.5rem;
  transition: box-shadow 0.3s ease;
}
.meeting-card .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.meeting-card .tags {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.meeting-card .tag,
.meeting-card .timing,
.meeting-card .status {
  max-width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
}
.meeting-card .tag {
  min-width: 120px;
  background: rgba(75, 74, 230, 0.1490196078);
  color: rgb(0, 0, 0);
}
.meeting-card .status {
  min-width: max-content;
  color: #ffffff;
}
.meeting-card .status.success {
  background: #065920;
}
.meeting-card .status.info {
  background: #519ed3;
}
.meeting-card .status.primary {
  background: #00B5B4;
}
.meeting-card .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1rem;
}
.meeting-card .content .title {
  font-size: 1.25rem;
  color: rgb(0, 0, 0);
}
.meeting-card .content .added {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.meeting-card .content .timing-container {
  min-height: 3rem;
}
.meeting-card .content .timing-container .timing {
  background: #065920;
  color: #ffffff;
}
.meeting-card .content .timing-container .timing svg path {
  fill: #ffffff;
}
.meeting-card .content .date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.5rem;
  gap: 1rem;
  padding-bottom: 1rem;
}
.meeting-card .content .date .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.meeting-card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 1rem;
}
.meeting-card .foot .goal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(0, 0, 0);
}
.meeting-card .foot .goal span {
  font-size: 1.05rem;
}
.meeting-card.mini {
  border: unset;
  margin-bottom: unset;
  padding: 1rem 0;
  border-radius: 1rem;
}
.meeting-card.mini .head {
  padding-left: 1rem;
}
.meeting-card.mini .status {
  padding: 0.25rem 2rem 0.25rem 1rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.meeting-card.mini .tags .tag {
  font-size: 0.85rem;
}
.meeting-card.mini .tags .tags {
  flex-direction: row;
}
.meeting-card.mini .content {
  padding: 1rem 2rem 0 1rem;
}
.meeting-card.mini .content .title {
  font-size: 1.25rem;
}
.meeting-card.mini .content .date {
  padding-bottom: unset;
}
.meeting-card:hover {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

.modal .meeting-card {
  border: none;
  box-shadow: none;
  padding: 0;
}

.dynamic-area {
  position: relative;
  border: thin solid #e5e7eb;
  border-radius: 1rem;
  padding: 3rem 2rem 2rem;
  margin: 0 0 1.5rem;
}
.dynamic-area .item {
  position: relative;
  border: thin solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 0 0 2rem;
}
.dynamic-area .item:last-child {
  margin-bottom: 0;
}
.dynamic-area .item .remove-item svg {
  width: 2.25rem;
  height: 2.25rem;
  background: #ffffff;
  position: absolute;
  top: -15px;
  left: -15px;
  border: thin solid #e1e1e1;
  border-radius: 50%;
  padding: 0.5rem;
}
.dynamic-area .add-item svg {
  position: absolute;
  top: -12px;
  left: -10px;
}

footer {
  padding: 1rem 0;
  width: 100%;
  text-align: center;
  color: rgb(0, 0, 0);
  background: rgba(75, 74, 230, 0.1490196078);
}

.form-check-label {
  color: #333333;
  font-weight: 400;
}

.form-check {
  margin-bottom: 1rem;
}

.form-check-label a {
  color: #00B5B4;
}

.card {
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border: none;
}

#deleteModal .modal-content .modal-body,
.deleteModal .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

#deleteModal .modal-content .modal-footer,
.deleteModal .modal-content .modal-footer {
  border: none;
}

#deleteModal .modal-header,
.deleteModal .modal-header {
  height: auto;
  position: relative;
  border-top-right-radius: 1.5rem !important;
  border-top-left-radius: 1.5rem !important;
  background: none;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}

#deleteModal .modal-message,
.deleteModal .modal-message {
  font-size: 20px;
  font-weight: bold;
  color: #181818;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

#deleteModal .modal-content .modal-footer .btn,
.deleteModal .modal-content .modal-footer .btn {
  width: 45%;
}

#deleteModal .modal-sub-message,
.deleteModal .modal-sub-message {
  color: #606060;
  font-weight: 500;
  font-size: 18px;
}

#deleteModal .modal-content .modal-body,
#successModal .modal-content .modal-body,
#errorModal .modal-content .modal-body,
#error_403 .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
#deleteModal .modal-content .modal-footer,
#successModal .modal-content .modal-footer,
#errorModal .modal-content .modal-footer,
#error_403 .modal-content .modal-footer {
  border: none;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
#deleteModal .modal-header,
#successModal .modal-header,
#errorModal .modal-header,
#error_403 .modal-header {
  height: auto;
  position: relative;
  border-top-right-radius: 1.5rem !important;
  border-top-left-radius: 1.5rem !important;
  background: none;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}
#deleteModal .modal-message,
#successModal .modal-message,
#errorModal .modal-message,
#error_403 .modal-message {
  font-size: 20px;
  font-weight: bold;
  color: #181818;
}
#deleteModal .flex-grow-1,
#successModal .flex-grow-1,
#errorModal .flex-grow-1,
#error_403 .flex-grow-1 {
  flex-grow: 1 !important;
}
#deleteModal .modal-content .modal-footer .btn,
#successModal .modal-content .modal-footer .btn,
#errorModal .modal-content .modal-footer .btn,
#error_403 .modal-content .modal-footer .btn {
  width: 45%;
}
#deleteModal .modal-sub-message,
#successModal .modal-sub-message,
#errorModal .modal-sub-message,
#error_403 .modal-sub-message {
  color: #606060;
  font-weight: 500;
  font-size: 18px;
}

.modal .modal-content .modal-header .close-btn {
  background: none;
  border: none;
  opacity: 60%;
  transition: all 0.2s ease-in-out;
  margin-right: auto;
}

.modal-title-icon {
  height: 90px;
  width: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -45px;
}

.modal-has-icon {
  margin-top: 60px;
}

.modal-has-icon .modal-body {
  padding-top: 0;
}

.custom-simple-pagination .page-item .page-link {
  font-weight: 400;
  font-size: 10px;
  color: #7d7d93;
  padding: 7px;
  border: none;
}

.custom-simple-pagination .page-item .page-link:focus,
.custom-simple-pagination .page-item .page-link:hover {
  background-color: transparent;
  box-shadow: none;
}

.custom-simple-pagination .page-item:hover .page-link svg {
  fill: #00B5B4;
}

.tooltip-inner {
  font-size: 10px;
}

.content-container {
  padding: 0 1rem;
}

@media screen and (max-width: 767.98px) {
  .main-card {
    padding: 1rem;
  }
  .main-card .card-header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }
  .main-card .action .btn {
    width: 100%;
  }
  .meeting-card.mini .content {
    padding-right: 1rem !important;
  }
  .modal .modal-header {
    height: 135px;
    position: relative;
    background: linear-gradient(360deg, #ffffff 26.87%, rgb(142, 154, 230) 170.9%);
    border-top-right-radius: 1.5rem !important;
    border-top-left-radius: 1.5rem !important;
    padding-bottom: 0 !important;
    border: none;
  }
  .modal .modal-header .modal-title {
    width: 100%;
    text-align: center;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 1.25rem;
  }
  .modal .modal-header .icon {
    width: 100px;
    position: absolute;
    top: -4rem;
    right: 50%;
    transform: translateX(50%);
  }
  .modal .modal-dialog {
    max-width: 98% !important;
  }
  .modal .modal-dialog.modal-lg, .modal .modal-dialog.modal-xl {
    max-width: 98% !important;
  }
}
.auth .right-side {
  padding-top:25px
}
.select2-container--default .select2-selection--single {
      background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    color: rgb(0, 0, 0);
    text-align: right;
    border-width: thin;
    border-style: solid;
    border-color: rgb(229, 231, 235);
    border-image: initial;
    border-radius: 1rem;
    padding: 0.9rem 1.2rem;
    background: transparent !important;
    height: 48px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: unset !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field:active,
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: none !important;
  box-shadow: none !important;
}
@media screen and (max-width: 991.98px) {
  .sidebar-wrapper {
    display: none;
    position: absolute;
    right: 0;
    z-index: 2;
    touch-action: unset;
  }
  .sidebar {
    border-top-left-radius: 1rem;
  }
  #content {
    padding: 10px 0;
    width: 100%;
    margin-right: 0;
  }
  .navbar .sidebar-toggler {
    display: block !important;
  }
  .navbar .content {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .navbar .content .search-warpper {
    flex-grow: 1;
  }
    .auth .right-side {
    /* height: auto !important; */
  }
  .auth {
    height: auto !important;
  }
}
.openMenu {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0.5rem;
  border: 1px solid #00B5B4;
  background: #fff;
  margin: 0.25rem 0 0;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.openMenu .ts-dropdown-content {
  max-height: 280px;
}
.openMenu .ts-dropdown-content .active {
  background-color: rgba(220, 220, 251, 0.7803921569);
  color: #00B5B4;
}

/*# sourceMappingURL=main.css.map */
.head .head-right {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    gap: 5px;
}
.auth .right-side .head {
    display: flex;
    align-items: center;
    flex-direction: row !important;
    margin-bottom: 0px;
}
.head img {
    margin-right: auto;
    max-height: 125px;
}
.auth .right-side .head span.title {
    color: #383172;
    font-size: 18px;
    font-weight: 400;
}
.auth .right-side .head span.description {
    color: #383172;
    font-size: 28px;
    font-weight: bold;
}
.auth .right-side {
    justify-content: center;
}
.auth .right-side .body button.btn {
    width: 100%;
    font-weight: 600;
    font-size: 16px !important;
    height: 50px !important;
    border-radius: 10px !important;
    margin-top: 20px;
    background: #00B5B4 !important;
    outline:none !important;
    box-shadow: none !important;
}
.switch-auth {
    color: #2D4886 !important;
    font-size: 14px !important;
}
.switch-auth:hover {
    color: #00B5B4 !important;
}
.auth .left-side {
    background: url('../../images/auth_right_bg.png') no-repeat bottom;
    background-size: cover;
}
span.underline {
    position: relative;
    display: inline-block;
}
span.underline:after {
    content: '';
    display: block;
    width: 100%;
    height: 2.4px;
    background: #00B5B4;
    border-radius: 0px;
    margin-top: 7px;
}
.left-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}
.left-header p {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 400;
    margin: 0;
}
.left-header h2 {
    font-size: 22px;
    color: #FFFFFF;
    font-weight: bold;
    margin: 0;
}
.news__item {
    display: flex;
    flex-direction: row;
    cursor: pointer;
}
.news__item {
    background: #147EB6;
    padding: 10px 10px;
    border-radius: 7px;
    border: 8px solid rgba(44,174,243,0.30);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    gap: 10px;
}
.news__item img {
    width: 100%;
    height: 190px;
    width: 212px !important;
    /* object-fit: contain; */
    border-radius: 6px;
    /* flex:1; */
}
.news__item .news__item-content {
  flex:1;
  display:flex;
  flex-direction: column;
  gap: 11px;
}
.news-slider .owl-item.active.center {
    z-index: 1;
    transform: scale(1.2);
}
/* blur not active */
.news-slider .owl-item:not(.center) .news__item {
    /* filter: blur(1px); */
}
.auth .left-side .content {
    padding-right: 3rem;
    padding-left: 3rem;
}
.news__item .date span {
    font-size: 11px;
    font-weight: 500;
     color: #FFFFFF;
}
.news__item h2 {
    font-weight: bold;
    font-size: 12px;
     color: #FFFFFF;
     margin: 0;
}
.news__item p {
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}
.news-slider .owl-stage-outer {
    padding-block: 15px;
}
.news__catalog {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}
.owl-theme .owl-dots {
  text-align: right;
  padding-top: 0px !important;
    max-width: 500px;
    margin: 0 auto;
}
.mini_news {
  flex-direction: column;
    border: none;
    margin-top: 15px;
    border-radius: 24px ;
    max-width: 150px;
    /* max-width: 132px; */
}
.mini_news img {
  height: 92px !important;
  width: 100% !important;
  /* max-width: 132px !important; */
  margin: 0 auto;
}
.mini_news h2 {
  font-size: 10px;
  font-weight: bold;
}
.owl-theme .owl-dots .owl-dot span {
    background: #D9D9D9;
    transition: all 0.3s ease;
    width: 13px;
    height: 13px;
}
.owl-theme .owl-dots {
    margin-top: 0px !important;
}
.owl-theme .owl-dots .owl-dot:hover span {
    background: #00B5B4;
}
.owl-theme .owl-dots .owl-dot.active span {
    background: #00B5B4;
    width: 30px;
    height: 13px;
}
@media screen and (max-width: 767.98px) {
  .auth .right-side {
    padding: 3rem 1rem !important;
    gap: 1rem !important;
  }
  .head img {
    max-height: 140px;
  }
  .auth .right-side .head span.description {
    font-size: 20px;
  }
  .auth .right-side .head {
        flex-direction: column-reverse !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0;
  }
  .head .head-right {
    margin-left: 0;
    text-align: center;
  }
  .head img {
    margin-right: 0;
  }
}