@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@font-face {
  font-family: "Janna LT";
  src: url("../../font/JannaLT-Bold.woff2") format("woff2"), url("../../font/JannaLT-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Janna LT";
  src: url("../../font/JannaLT-Regular.woff2") format("woff2"), url("../../font/JannaLT-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  		This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  		calculation of the height of the owl-item that breaks page layouts
  	 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

ul {
  list-style: none;
}

ol,
ul,
h1,
h2,
h3,
h5,
h4,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
}

body {
  font-family: "Janna LT";
  text-align: right;
  direction: rtl;
}

.box-login {
  min-height: 100vh;
  position: relative;
}

.overlay-box-login {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.overlay-box-login > div {
  width: 100%;
}

.box-login-img {
  height: 100%;
  padding: 20px 0;
}
.box-login-img img {
  display: block;
  height: calc(100vh - 40px);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.obl-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.obl-b h1 {
  font-weight: 600;
  color: #fff;
}

.obl-f ul {
  display: flex;
  align-items: center;
}
.obl-f ul li {
  margin-inline-end: 1.5vw;
}
.obl-f ul li a {
  font-size: 14px;
  color: #fff;
}

.login-form h2 {
  color: #263D57;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.login-form h5 {
  font-size: 14px;
  font-weight: 600;
}
.login-form form {
  padding-top: 50px;
}

.form-cont {
  margin-bottom: 20px;
}
.form-cont input {
  display: block;
  height: 45px;
  width: 100%;
  border-radius: 5px;
  padding: 0 10px;
  border: 1px solid #e9e9e9;
}
.form-cont input::-moz-placeholder {
  color: #000;
}
.form-cont input::placeholder {
  color: #000;
}

.rememb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.rememb a {
  font-weight: 600;
  font-size: 14px;
  color: #40977e;
}
.rememb label {
  display: flex;
  align-items: center;
}
.rememb label input {
  width: 17px;
  height: 17px;
}
.rememb label span {
  margin-inline-start: 8px;
}

.btn-t {
  margin-bottom: 20px;
}
.btn-t button,
.btn-t a {
  height: 45px;
  display: block;
  color: #fff;
  background-color: #05457a;
  font-weight: 600;
  width: 100%;
  border: 0;
  cursor: pointer;
  border-radius: 5px;
}
.btn-t button.active,
.btn-t a.active {
  background-color: #40977E;
}
.btn-t button.view,
.btn-t a.view {
  background-color: #263D57;
}
.btn-t button.done,
.btn-t a.done {
  background-color: #F3F3F3;
  color: #B1B1B1;
  pointer-events: none;
}

.don-t {
  display: flex;
  justify-content: center;
  align-items: center;
}
.don-t h6 {
  font-size: 15px;
}
.don-t a {
  text-decoration: underline;
  font-size: 15px;
  font-weight: 600;
  color: #40977e;
}

.form-otp {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.form-otp input {
  margin-inline-end: 20px;
  width: auto;
  height: 45px;
  width: 25%;
  padding: 0 10px;
  border: 0;
  border-bottom: 2px solid #e9e9e9;
  text-align: center;
}
.form-otp input:last-child {
  margin-inline-end: 0px;
}

.about-center {
  padding: 40px 0;
}

.ai-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.ai-title span {
  display: inline-block;
  width: 80px;
  height: 2px;
  margin-inline-end: 10px;
  background: #40977E;
}

.main-title {
  margin-bottom: 20px;
}
.main-title h2 {
  font-weight: bold;
  color: #263D57;
}
.main-title h2 span {
  color: #40977E;
}

.about-info p {
  font-size: 14px;
  margin-bottom: 20px;
}

.a-about {
  display: flex;
  align-items: center;
}
.a-about span {
  margin-inline-end: 5px;
  color: #263D57;
  font-weight: 600;
}

.about-img {
  text-align: center;
}

.language {
  padding: 40px 0;
}

.language-title {
  margin-bottom: 20px;
}
.language-title h2 {
  text-align: center;
  margin-bottom: 20px;
}
.language-title p {
  font-size: 14px;
  text-align: center;
}

.item-lang {
  margin-bottom: 20px;
}
.item-lang a {
  display: flex;
  padding: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
  align-items: center;
}
.item-lang a h6 {
  color: #263D57;
  margin-inline-start: 10px;
  font-weight: 600;
}

.item-box-whay {
  padding: 20px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  margin-bottom: 20px;
  min-height: 210px;
}
.item-box-whay img {
  width: 45px;
  margin-bottom: 10px;
}
.item-box-whay h4 {
  color: #263D57;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.whay-img {
  text-align: center;
}

.itemes-yallw {
  margin-top: 50px;
  padding: 40px 0;
  background-color: #05457a;
}

.box-yall {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  display: flex;
}
.box-yall img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.box-yall div {
  margin-inline-start: 15px;
}
.box-yall div h3 {
  font-weight: 600;
  color: #000000;
}
.box-yall div span {
  font-weight: 600;
}

.img-certificate {
  margin-bottom: 25px;
}

footer {
  background-color: #263D57;
  text-align: center;
  padding: 10px;
}
footer h6 {
  color: #fff;
}

.body-dashboasrd {
  display: flex;
  align-items: start;
  min-height: 100vh;
  padding: 20px;
}

.nav-dashboasrd {
  width: 250px;
  min-height: calc(100vh - 40px);
}

.container-dashboard {
  padding-top: 10px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  flex: 1;
  min-height: calc(100vh - 40px);
  background-color: #fff;
}

.top-logo {
  margin-bottom: 20px;
}

.nd-links ul {
  padding-inline-end: 20px;
}
.nd-links ul li a {
  padding: 10px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.nd-links ul li a.active {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.nd-links ul li a svg,
.nd-links ul li a img {
  margin-inline-end: 5px;
  width: 25px;
  height: 25px;
  margin-inline-end: 10px;
}
.nd-links ul li a span {
  font-weight: 600;
  color: #929eab;
}

.item-menu.active .item-menu-head img {
  opacity: 1;
}
.item-menu.active .item-menu-head span {
  color: #263D57;
}

.item-menu.active .item-menu-head > img {
  transform: rotate(180deg);
}

.item-menu-head {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.item-menu-head > img {
  width: 18px;
  transition: all 0.2s;
}
.item-menu-head div {
  padding: 10px 20px;
  border-radius: 20px;
  flex: 1;
  display: flex;
  align-items: center;
}
.item-menu-head div img {
  margin-inline-end: 10px;
  width: 25px;
  height: 25px;
}
.item-menu-head div span {
  font-weight: 600;
  color: #929eab;
}

.item-menu-body {
  display: none;
}
.item-menu-body ul li a {
  padding: 15px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.item-menu-body ul li a.active {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.item-menu-body ul li a.active h6 {
  color: #263D57;
}
.item-menu-body ul li a span {
  width: 5px;
  height: 2px;
  background-color: #263D57;
}
.item-menu-body ul li a h6 {
  margin-inline-start: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #929eab;
}

.box-vist {
  margin-inline-end: 20px;
  padding: 10px;
  margin-top: 10px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
}
.box-vist h4 {
  font-size: 17px;
  font-weight: 600;
  color: #263D57;
  margin-bottom: 10px;
}
.box-vist p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #E9E9E9;
  border-radius: 10px;
  overflow: hidden;
}
.search-bar button {
  cursor: pointer;
  border: 0;
  background: transparent;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-bar input {
  height: 45px;
  border: 0;
  flex: 1;
  outline: 0;
}

.info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-profile {
  margin-inline-start: 30px;
}
.box-profile img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.box-logo {
  width: 50px;
  height: 50px;
  border: 1px solid #E9E9E9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-logo img {
  width: 30px;
}

.dash-set {
  background-color: #263D57;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.dash-set div h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
.dash-set div p {
  font-size: 14px;
  color: #fff;
}
.dash-set img {
  margin-top: -60px;
}

.box-chart {
  margin-top: 20px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
  margin-bottom: 20px;
}

.box-chart-head {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box-chart-head h3 {
  font-size: 18px;
  color: #263D57;
  font-weight: 600;
}
.box-chart-head ul {
  display: flex;
  align-items: center;
}
.box-chart-head ul li {
  display: flex;
  align-items: center;
  margin-inline-start: 25px;
}
.box-chart-head ul li span {
  display: block;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 5px solid #FF4B55;
  border-radius: 50%;
}
.box-chart-head ul li span.green {
  border: 5px solid #40977E;
}
.box-chart-head ul li h6 {
  margin-inline-start: 5px;
}

.box-chart-body {
  padding: 20px;
}

.box-chart-w {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
  margin-bottom: 20px;
  min-height: 360px;
}

.item-les {
  padding-top: 15px;
  border-top: 1px solid #eaeaea;
}
.item-les .item-les-title {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
.item-les .item-les-title h6 {
  font-size: 16px;
  color: #000000;
  font-weight: bold;
}
.item-les .item-les-title a {
  font-weight: 600;
  color: #263D57;
  font-size: 14px;
}

.ilbb {
  display: flex;
  align-items: start;
  padding: 15px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.ilbb div {
  padding-inline-start: 15px;
  padding-top: 5px;
}
.ilbb div h4 {
  font-weight: bold;
  font-size: 16px;
  color: #263D57;
  margin-bottom: 5px;
}
.ilbb div h6 {
  font-weight: bold;
  font-size: 15px;
}
.ilbb div span {
  font-size: 13px;
  color: #B1B1B1;
}

.bpd-profile {
  position: relative;
  padding: 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E9E9E9;
}
.bpd-profile img {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bpd-profile div {
  padding-inline-start: 10px;
}
    .bpd-profile div h6 {
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        width: 160px;
        overflow: hidden;
        /*text-overflow: ellipsis;*/
    }

    .bpd-profile div span {
        font-weight: 600;
        font-size: 13px;
        white-space: nowrap;
        width: 160px;
        overflow: hidden;
        /*text-overflow: ellipsis;*/
        display: inline-block;
    }

.box-profile-drop {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
  position: absolute;
  width: 220px;
  left: 15px;
  top: 60px;
  z-index: 15;
  display: none;
}
html[dir="ltr"] .box-profile-drop {
    left:auto;
    right:15px
}
    .box-profile-drop ul {
  padding: 10px 15px;
}
.box-profile-drop ul li {
  margin-bottom: 10px;
}
.box-profile-drop ul li a {
  font-weight: 600;
  display: block;
  font-size: 14px;
  color: #000000;
}

.user {
  cursor: pointer;
}

.bar-menu {
  display: none;
}

.title-dash {
  display: flex;
  justify-content: space-between;
}

    .title-dash h6 {
        font-weight: 600;
        color: #263D57;
        font-size: 16px;
        
    }
.title-dash h6 img {
  width: 20px;
  height: 20px;
  margin-inline-start: 10px;
}
.title-dash ul {
  display: flex;
}
.title-dash ul li {
  cursor: pointer;
  margin-inline-start: 15px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #e9e9e9;
  color: #263D57;
}
.title-dash ul li:first-child {
  margin-inline-start: 0;
}
.title-dash ul li.active {
  color: #fff;
  background-color: #40977E;
  border: 1px solid #40977E;
}

.list-of-lang {
  margin-bottom: 20px;
  width: 100%;
  overflow-x: auto;
  padding: 20px 10px;
  /* Track */
  /* Handle */
}
.list-of-lang::-webkit-scrollbar {
  height: 2px;
}
.list-of-lang::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.list-of-lang::-webkit-scrollbar-thumb {
  background: #888;
}
.list-of-lang ul {
  display: flex;
}
.list-of-lang ul li,
.list-of-lang ul a {
  cursor: pointer;
  margin-inline-end: 20px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 10px;
  transition: all 0.2s;
}
.list-of-lang ul li.active,
.list-of-lang ul a.active {
  background-color: #263D57;
}
.list-of-lang ul li.active span,
.list-of-lang ul a.active span {
  color: #fff;
}
.list-of-lang ul li img,
.list-of-lang ul a img {
  width: 30px;
  height: 30px;
  margin-inline-end: 10px;
}
.list-of-lang ul li span,
.list-of-lang ul a span {
  font-size: 14px;
  color: #263D57;
  font-weight: bold;
  white-space: nowrap;
}

.title-overs h3 {
  color: #40977E;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 18px;
}

.all-overs {
  margin-bottom: 20px;
  width: 100%;
  overflow-x: auto;
  padding: 0 10px 20px 10px;
  /* Track */
  /* Handle */
}
.all-overs::-webkit-scrollbar {
  height: 1px;
}
.all-overs::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.all-overs::-webkit-scrollbar-thumb {
  background: #888;
}
.all-overs ul {
  display: flex;
}
.all-overs ul li a {
  display: block;
  margin-inline-end: 20px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.2s;
  width: 250px;
}
.all-overs ul li a:hover img {
  transform: scale(1.02);
}
.all-overs ul li a img {
  transition: all 0.5s;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 140px;
  margin-bottom: 5px;
}
.all-overs ul li a h6 {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  color: #263D57;
}
.all-overs ul li a p {
  font-size: 13px;
  color: #000;
}

.card-lang {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}

.card-lang-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-lang-head > img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.card-lang-head div {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.card-lang-head div img {
  width: 25px;
  height: 25px;
  margin-bottom: 3px;
  border-radius: 5px;
}
.card-lang-head div span {
  color: #263D57;
  font-size: 12px;
}

.card-lang-body h3 {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  color: #263D57;
  margin-bottom: 5px;
}
.card-lang-body p {
  font-size: 13px;
  margin-bottom: 10px;
  color: #000;
}

.back-to {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E9E9E9;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  margin-inline-end: 10px;
}

.container-back {
  display: flex;
}
.container-back .search-bar {
  flex: 1;
}

.box-container-tab {
  margin-top: 20px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
  padding: 15px 15px 0 15px;
  margin-bottom: 20px;
}
.box-container-tab ul {
  padding: 10px 0;
  display: flex;
  border-top: 1px solid #E9E9E9;
}
.box-container-tab ul li {
  margin-inline-end: 25px;
  font-size: 15px;
  color: #B1B1B1;
  cursor: pointer;
}
.box-container-tab ul li.active {
  color: #40977E;
  position: relative;
}
.box-container-tab ul li.active::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #263D57;
  display: block;
  position: absolute;
  bottom: -10px;
  border-radius: 2px;
}

.box-c-head {
  display: flex;
  padding-bottom: 10px;
}
.box-c-head img {
  margin-inline-end: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100px;
  height: 100px;
  border-radius: 10px;
}
.box-c-head div h5 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #263D57;
}
.box-c-head div p {
  font-size: 14px;
}

.box-body-tab {
  margin-bottom: 20px;
  padding: 20px;
  margin-top: 10px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
  display: none;
}

.i-chart {
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 20px;
  background-color: #F3F3F3;
}
.i-chart img {
  margin-bottom: 8px;
}
.i-chart h4 {
  font-weight: 600;
  color: #263D57;
}
.i-chart h4 span {
  font-size: 13px;
}
.i-chart p {
  font-weight: 600;
}

.box-check {
  padding-top: 15px;
}
.box-check h4 {
  font-weight: 600;
  color: #263D57;
  font-size: 17px;
  margin-bottom: 10px;
}
.box-check ul li {
  margin-bottom: 10px;
}
.box-check ul li img {
  margin-inline-end: 10px;
}
.box-check ul li span {
  font-weight: 600;
  color: #263D57;
}

.sub-button {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
.sub-button button {
  color: #fff;
  background-color: #263D57;
  border: 0;
  padding: 15px;
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.curent-cor h5 {
  font-weight: bold;
  font-size: 15px;
  color: #263D57;
  margin-bottom: 10px;
}
.curent-cor p {
  margin-bottom: 20px;
}

.radio-form {
  display: flex;
}
.radio-form label {
  display: flex;
  margin-inline-end: 15px;
  align-items: center;
  cursor: pointer;
}
.radio-form label input {
  margin-inline-end: 5px;
  width: 15px;
  height: 15px;
  accent-color: #40977E;
}
.radio-form label span {
  font-size: 13px;
  font-weight: 600;
}

.cor-table thead th {
  border-top: 0;
  color: #B1B1B1;
}
.cor-table td {
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
}

.select-t select {
  border: 0;
  font-weight: 600;
  font-size: 14px;
}

.dateils-t {
  background: #40977E;
  color: #fff;
  padding: 8px 25px;
  border-radius: 8px;
  display: inline-block;
}
.dateils-t:hover {
  color: #fff;
}

.not-found {
  margin-top: 20px;
  text-align: center;
}

.box-pay {
  margin-bottom: 20px;
  padding: 20px;
  margin-top: 10px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
  min-height: 400px;
}

.head-title {
  padding: 0 0 13px 0;
  border-bottom: 1px solid #E9E9E9;
}
.head-title h3 {
  text-align: center;
  color: #263D57;
  font-size: 17px;
  font-weight: bold;
}

.box-pay-status {
  padding: 0 0 13px 0;
  border-bottom: 1px solid #E9E9E9;
}
.box-pay-status ul {
  display: flex;
  align-items: center;
}
.box-pay-status ul li {
  position: relative;
  display: flex;
  align-items: center;
  margin-inline-end: 10vw;
}
.box-pay-status ul li:last-child {
  margin-inline-end: 0px;
}
.box-pay-status ul li span {
  font-weight: bold;
  border: 1px solid #E9E9E9;
  color: #E9E9E9;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 10px;
  color: #E9E9E9;
  border-radius: 50%;
}
.box-pay-status ul li h6 {
  color: #B1B1B1;
}
.box-pay-status ul.active li:nth-child(1)::after {
  content: "";
  width: 8vw;
  height: 2px;
  display: block;
  position: absolute;
  left: -9vw;
  border-top: 2px dashed #E9E9E9;
}
.box-pay-status ul.active li:nth-child(1) span {
  border: 1px solid #40977E;
  color: #40977E;
}
.box-pay-status ul.active li:nth-child(1) h6 {
  font-weight: 600;
  font-size: 16px;
  color: #263D57;
}
.box-pay-status ul.done li:nth-child(1)::after {
  content: "";
  width: 8vw;
  height: 2px;
  display: block;
  position: absolute;
  left: -9vw;
  border-top: 2px dashed #E9E9E9;
}
.box-pay-status ul.done li:nth-child(1) span {
  border: 1px solid #40977E;
  color: #fff;
  background-color: #40977E;
}
.box-pay-status ul.done li:nth-child(1) h6 {
  font-weight: 600;
  font-size: 16px;
  color: #263D57;
}
.box-pay-status ul.done li:nth-child(2) span {
  border: 1px solid #40977E;
  color: #40977E;
}
.box-pay-status ul.done li:nth-child(2) h6 {
  font-weight: 600;
  font-size: 16px;
  color: #263D57;
}

.bob-img {
  margin-top: 10px;
}
.bob-img img {
  height: 150px;
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.bob-img h5 {
  font-size: 16px;
  font-weight: bold;
  color: #263D57;
  margin-bottom: 5px;
}
.bob-img ul {
  margin-bottom: 20px;
}
.bob-img ul li {
  font-size: 13px;
  font-weight: 500;
}

.bob-list {
  padding-bottom: 10px;
  border-bottom: 1px solid #E9E9E9;
}
.bob-list ul li {
  margin-bottom: 10px;
}
.bob-list ul li img {
  width: 20px;
  height: 20px;
  margin-inline-end: 6px;
}
.bob-list ul li span {
  font-size: 14px;
  color: #263D57;
}

.summery-container {
  margin-top: 30px;
}

.summery-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
.summery-item.sum {
  border-top: 1px solid #E9E9E9;
  padding-top: 10px;
}
.summery-item.sum h6 {
  color: #40977E;
}
.summery-item span {
  color: #B1B1B1;
  font-size: 14px;
}
.summery-item h6 {
  color: #263D57;
  font-weight: 600;
  font-size: 14px;
}

.form-j {
  margin-bottom: 20px;
}
.form-j label {
  color: #868686;
  font-size: 15px;
}
.form-j input {
  font-weight: 600;
  padding: 10px;
  height: 42px;
  width: 100%;
  border: 1px solid #E9E9E9;
  border-radius: 5px;
}

.btn-subt button {
  background-color: #05457a;
  padding: 10px;
  display: block;
  text-align: center;
  color: #fff;
  width: 100%;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
}

.pay-container-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid #E9E9E9;
  border-radius: 5px;
  margin-bottom: 15px;
  cursor: pointer;
}
.pay-container-head div {
  display: flex;
  align-items: center;
}
.pay-container-head div img {
  margin-inline-end: 10px;
}
.pay-container-head div h6 {
  font-weight: bold;
}
.pay-container-head.active span {
  border: 2px solid #40977E;
  position: relative;
}
.pay-container-head.active span::after {
  content: "";
  display: block;
  background: #40977E;
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pay-container-head span {
  width: 25px;
  height: 25px;
  border: 2px solid #E9E9E9;
  display: flex;
  border-radius: 50%;
}

.pay-container-body {
  display: none;
}

.title-pay {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

.back-page {
  padding: 10px 0;
  margin-bottom: 20px;
}
.back-page a {
  display: flex;
  align-items: center;
}
.back-page a img {
  margin-inline-end: 5px;
}
.back-page a span {
  font-weight: 600;
  font-size: 13px;
  color: #263D57;
}

.pay-dir h3 {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.pay-dir p {
  color: #000000;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 20px;
}

.pay-col-item {
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 10px;
}

.pay-col-item-head {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.pay-col-item-head img {
  cursor: pointer;
}

.pay-col-item-body {
  padding: 10px;
}

.pcib-box {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
}
.pcib-box a {
  font-size: 12px;
  color: #40977E;
  text-decoration: underline !important;
}
.pcib-box img {
  margin-bottom: 10px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pcib-box p {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 12.5px;
}

.text-left {
  text-align: left;
}

.fw400 {
  font-weight: 500;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 400px;
    margin: 1.75rem auto;
  }
}
.header-top {
  padding-bottom: 15px;
  border-bottom: 1px solid #E9E9E9;
  display: flex;
  align-items: start;
  justify-content: center;
}
.header-top .pop-logo {
  flex: 1;
  text-align: center;
}
.header-top .pop-logo img {
  width: 120px;
}

.modal-dialog .summery-container {
  margin-top: 10px;
}

.form-up h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #000000;
}
.form-up h6 {
  color: #000000;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}
.form-up p {
  font-size: 13px;
}
.form-up label {
  margin-bottom: 15px;
  border: 1px solid #E9E9E9;
  border-radius: 7px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.form-up label span {
  font-size: 13px;
  font-weight: 600;
}

.box-d2 {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
  margin-bottom: 10px;
}
.box-d2 h6 {
  font-weight: 600;
  margin-bottom: 8px;
}
.box-d2 span {
  font-weight: bold;
  font-size: 19px;
}
.box-d2 img {
  width: 35px;
}

.card-tran {
  padding: 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
  margin-bottom: 20px;
  display: flex;
}

.card-tran-img img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.card-tran-info {
  padding-inline-start: 20px;
  flex: 1;
}
.card-tran-info h2 {
  color: #000000;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cti-lang {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.cti-lang img {
  width: 23px;
  height: 23px;
  margin-inline-end: 7px;
}
.cti-lang span {
  color: #40977E;
}

.calnd {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.calnd img {
  width: 23px;
  height: 23px;
  margin-inline-end: 7px;
}
.calnd span {
  color: #B1B1B1;
  font-size: 14px;
}

.progress1 .progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.progress1 .progress-head span {
  font-weight: 600;
  color: #40977E;
}
.progress1 .progress-body {
  height: 10px;
  width: 100%;
  border-radius: 10px;
  background: #E9E9E9;
  overflow: hidden;
}
.progress1 .progress-body span {
  border-radius: 10px;
  background-color: #05457a;
  display: block;
  height: 100%;
}

.card-comp {
  padding: 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
  margin-bottom: 20px;
}

.card-comp-head {
  margin-bottom: 10px;
}
.card-comp-head img {
  height: 120px;
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-comp-body h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.responsive-nav {
  display: none;
  align-items: center;
  padding: 10px;
  padding: 10px;
}

.flex-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-top .dropdown-toggle::after {
  display: none;
}
.flex-top .btn {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #E9E9E9;
  color: #263D57;
  direction: rtl;
  text-align: right;
}
.flex-top .btn i {
  margin-inline-end: 8px;
}
.flex-top .btn span {
  font-weight: 600;
}
.flex-top .dropdown-item {
  display: flex;
  align-items: center;
}
.flex-top .dropdown-item img {
  width: 23px;
  height: 23px;
}
.flex-top .dropdown-item div {
  flex: 1;
  text-align: right;
}
.flex-top .dropdown-item div h6 {
  font-weight: 600;
}
.box-tran {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}

.box-tran-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.box-tran-head div h6 {
  margin-bottom: 10px;
  color: #000000;
}
.box-tran-head div h5 {
  font-weight: bold;
  color: #000000;
}

.box-tran-body {
  display: flex;
  align-items: center;
}
.box-tran-body > span {
  margin-inline-start: 10px;
  color: #000000;
}
.box-tran-body .progress1 {
  flex: 1;
  margin-bottom: 0;
}
.box-tran-body .red {
  background-color: #FF4B55 !important;
}

.bis-title {
  margin-bottom: 30px;
}
.bis-title h4 {
  font-size: 17px;
  font-weight: 600;
}
.bis-title p {
  font-size: 14px;
}

.item-bis-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.item-bis-info img {
  margin-inline-end: 10px;
}
.item-bis-info div h6 {
  margin-bottom: 3px;
  font-weight: 600;
}
.item-bis-info div span {
  font-size: 14px;
}

.item-start-vid h3 {
  font-weight: 600;
  font-size: 18px;
}

.start-vid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.join-now {
  margin-inline-start: 10px;
  background: #40977E;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 15px;
}
.join-now img {
  margin-inline-end: 10px;
  width: 25px;
  height: 25px;
}
.join-now span {
  color: #fff;
}

.item-subj {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0) 0px 4px 12px;
  border-radius: 10px;
  padding: 25px 15px;
  margin-bottom: 20px;
  display: block;
  border: 2px solid #E9E9E9;
}
.item-subj img {
  margin-bottom: 10px;
}
.item-subj h4 {
  color: #000000;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 7px;
}
.item-subj span {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
}

.item-norm {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0) 0px 4px 12px;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  border: 2px solid #E9E9E9;
}
.item-norm span {
  margin-inline-end: 10px;
  width: 40px;
  height: 40px;
  background-color: rgba(38, 61, 87, 0.1019607843);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-norm div h5 {
  font-size: 14px;
  color: #263D57;
  font-weight: 600;
  margin-bottom: 5px;
}
.item-norm div p {
  font-size: 12px;
  color: #263D57;
  font-weight: 600;
}

.close-m {
  display: none;
}

.apss-filter .search-bar {
  border-radius: 40px;
}

.title-apss h2 {
  font-weight: 600;
  font-size: 20px;
  color: #000000;
}
.title-apss span {
  font-weight: 600;
  color: #B1B1B1;
  font-size: 14px;
}

.pop-title {
  flex: 1;
}
.pop-title h5 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
.pop-title span {
  font-size: 13px;
  color: #B1B1B1;
}

.form-gate {
  margin-bottom: 20px;
}
.form-gate label {
  color: #868686;
  font-size: 14px;
}
.form-gate textarea {
  border-radius: 5px;
  border: 1px solid #E9E9E9;
  min-height: 80px;
  background: #fff;
  display: block;
  width: 100%;
  resize: none;
}

.acsept {
  display: inline-block;
  color: #40977E;
  padding: 7px 15px;
  border-radius: 20px;
  background-color: #e3f0ec;
}

.box-money {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F3F3F3;
  border-radius: 25px;
  padding: 15px 15px 0 15px;
  margin-bottom: 20px;
}
.box-money h5 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
.box-money h6 {
  margin-bottom: 10px;
  color: #000000;
  font-weight: 600;
  font-size: 16px;
}

.box-money-style2 {
  border: 2px solid #F3F3F3;
  background-color: #fff;
  min-height: 155px;
  align-items: end;
  padding: 15px;
}
.box-money-style2 img {
  margin-bottom: 10px;
}
.box-money-style2 h5 {
  margin-bottom: 10px;
}
.box-money-style2 a {
  background: #000000;
  padding: 10px 15px;
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.qr {
  margin: 30px 0;
  text-align: center;
}
.qr img {
  width: 250px;
  height: 250px;
}
.qr h3 {
  margin-top: 15px;
  font-weight: 600;
  font-size: 20px;
}

.box-news {
  padding: 3rem;
  margin-top: 20px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
}

.item-news {
  display: flex;
  align-items: start;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #E9E9E9;
  /*cursor:pointer;*/
}
.item-news > img {
  width: 250px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-inline-end: 15px;
  aspect-ratio: 2/1;
}

.item-news-info h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}
.item-news-info p {
  margin-bottom: 10px;
  color: #000000;
  font-size: 14px;
}

.ini-lang {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.ini-lang img {
  width: 22px;
  height: 22px;
  margin-inline-end: 10px;
}
.ini-lang span {
  color: #000000;
  font-size: 15px;
}

.profile-puplish {
  display: flex;
  align-items: center;
}
.profile-puplish span {
  margin-inline-end: 10px;
  color: #B1B1B1;
  font-size: 14px;
}
.profile-puplish .pp {
  display: flex;
  align-items: center;
}
.profile-puplish .pp h6 {
  font-size: 15px;
  font-weight: bold;
  color: #000000;
}
.profile-puplish .pp img {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  margin-inline-end: 5px;
}

.box-chart-calendar {
  padding: 15px;
}
.box-chart-calendar .fc-scroller-harness {
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.box-chart-calendar .fc-scroller-harness::-webkit-scrollbar {
  width: 4px;
}
.box-chart-calendar .fc-scroller-harness::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.box-chart-calendar .fc-scroller-harness::-webkit-scrollbar-thumb {
  background: #888;
}
.box-chart-calendar .fc-scroller-harness::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.event-calendar {
  margin-top: 20px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 15px 15px 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.event-calendar .ilbb {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px;
  padding: 0;
  align-items: center;
}
.event-calendar .ilbb .ilbb.profile {
  align-items: center;
}
.event-calendar .ilbb img {
  width: 45px;
  height: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.event-calendar .ilbb h6 {
  font-size: 12px;
}
.event-calendar .profile img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.event-calendar .join-now {
  margin-bottom: 10px;
  margin-inline-start: 0;
  padding: 8px 15px;
}
.event-calendar .join-now img {
  margin-inline-start: 8px;
  margin-inline-end: 0;
}

.open-chat-bot {
  display: flex;
  background: #000000;
  width: 150px;
  justify-content: center;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
.open-chat-bot h6 {
  color: #fff;
  margin-inline-end: 10px;
}
.open-chat-bot span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #000000;
  background-color: #fff;
  font-size: 12px;
}

.chat-bot-body {
  background-color: #fff;
  width: 350px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 8px 8px 0 0;
}

.cbb-head {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.0784313725);
}
.cbb-head .cbb-head-account {
  display: flex;
  align-items: center;
}
.cbb-head .cbb-head-account h6 {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
}
.cbb-head .cbb-head-account img {
  margin-inline-end: 8px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cbb-body {
  padding: 10px 15px;
  height: 300px;
  overflow-y: auto;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.cbb-body::-webkit-scrollbar {
  width: 4px;
}
.cbb-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.cbb-body::-webkit-scrollbar-thumb {
  background: #888;
}
.cbb-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.item-mas {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.0784313725);
}
.item-mas p {
  color: #B1B1B1;
  font-size: 14px;
  padding: 0 15px;
}

.item-mas-h {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.item-mas-h h6 {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin-inline-end: 8px;
}
.item-mas-h img {
  margin-inline-end: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-mas-h span {
  margin-top: 4px;
  display: block;
  font-size: 10px;
  color: #B1B1B1;
}

.cbb-footer {
  padding: 10px 15px;
  display: flex;
  align-items: center;
}
.cbb-footer input {
  flex: 1;
  background-color: #f3f3f3;
  height: 34px;
  border: 0;
  border-radius: 20px;
  margin-inline-end: 15px;
  outline: 0;
  padding: 5px 15px;
  color: #b7b7b7;
}
.cbb-footer button {
  background: transparent;
  outline: 0;
  cursor: pointer;
  border: 0;
}
.cbb-footer button i {
  font-size: 23px;
  color: #40977E;
}

.chat-bot {
  position: fixed;
  bottom: 0;
  left: 20px;
  z-index: 1000;
}
.chat-bot .chat-bot-body {
  display: none;
}

.close-chat {
  cursor: pointer;
}

.login-f {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.login-f li {
  margin-inline-end: 20px;
  margin-bottom: 20px;
}
.login-f li a {
  border-radius: 40px;
  padding: 10px 20px;
  border: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
}
.login-f li a img {
  margin-inline-end: 5px;
}
.login-f li a span {
  font-weight: 600;
  font-size: 12px;
  color: #000000;
}

.or {
  padding: 25px 0;
  text-align: center;
}
.or span {
  display: block;
  border-top: 1px solid #e9e9e9;
}
.or h6 {
  background-color: #fff;
  display: inline-block;
  position: relative;
  top: -15px;
  padding: 5px 10px;
}

/*end genral*/
@media (min-width: 1200px) {
  .container {
    max-width: 1250px;
  }
}
@media (max-width: 1200px) {
  .info-bar {
    margin-top: 10px;
  }
}
@media (max-width: 991px) {
  .box-chart-calendar {
    overflow-x: auto;
    width: calc(100Vw - 70px);
  }
  .box-chart-calendar #calendar {
    min-width: 800px;
  }
  .item-news {
    flex-direction: column;
  }
  .item-news > img {
    width: 100%;
    margin-bottom: 15px;
    margin-inline-end: 0;
  }
  .qr img {
    width: 150px;
    height: 150px;
  }
  .title-apss {
    margin-bottom: 20px;
  }
  .cor-table table {
    width: 1000px;
  }
  .login-revers {
    flex-direction: column-reverse;
  }
  .login-form form {
    width: 100%;
  }
  .login-form {
    padding: 50px 0;
  }
  .box-yall {
    margin-bottom: 20px;
  }
  .bar-menu {
    display: flex;
    margin-inline-end: 20px;
  }
  .nav-dashboasrd {
    position: fixed;
    right: -100%;
    top: 40px;
    background: #fff;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: all 0.5s;
  }
  .nav-dashboasrd.open {
    right: 0;
  }
  .top-logo {
    padding: 0 10px;
  }
  .responsive-nav {
    display: flex;
    justify-content: space-between;
  }
  .responsive-nav a img {
    height: 50px;
  }
  .dok {
    overflow: hidden;
  }
  nav:not(.navbar) {
    display: flex !important;
    position: fixed;
    background-color: #002e4e;
    top: 70px;
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 5;
    flex-direction: column;
    align-items: start;
    justify-content: start !important;
    transition: all 0.8s;
  }
  nav:not(.navbar).open {
    left: 0;
  }
  nav:not(.navbar) .logo {
    order: 1;
    margin-bottom: 20px;
  }
  nav:not(.navbar) ul {
    order: 2;
    flex-direction: column;
  }
  nav:not(.navbar) ul li {
    margin-bottom: 10px;
  }
  .flex-top .title-dash {
    margin-bottom: 20px;
  }
  .box-container-tab ul {
    flex-wrap: wrap;
  }
  .box-container-tab ul li {
    margin: 0;
    margin-bottom: 20px;
    width: 50%;
    text-align: center;
  }
  .close-m {
    display: flex;
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -20px;
    top: -20px;
    cursor: pointer;
    z-index: 5555;
  }
}
@media (max-width: 768px) {
  .title-dash {
    flex-direction: column;
  }
  .title-dash ul {
    margin-top: 10px;
  }
}
@media (max-width: 575.98px) {
  .chat-bot {
    left: 0;
  }
  .chat-bot-body {
    width: 100%;
  }
  .list-of-lang,
  .all-overs {
    width: calc(100vw - 74px);
    max-width: 100%;
  }
  .card-tran {
    flex-direction: column;
  }
  .card-tran-img {
    margin-bottom: 10px;
  }
  .cor-table {
    width: calc(100vw - 100px);
  }
  .cor-table table {
    width: 1000px;
  }
}/*# sourceMappingURL=style.css.map */

.box-pay-status ul.done li span {
    border: 1px solid #40977E;
    color: #40977E;
}

.box-pay-status ul.done li h6 {
    font-weight: 600;
    font-size: 16px;
    color: #263D57;
}

.box-pay-status ul.done li.active span {
    color: #fff;
    background-color: #40977E;
}