.banner-content-main {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--color-white);
  justify-content: space-between;
  gap: 25px;
}
.text-content {
  width: 60%;
}

.text-content h3 {
  font-family: "font_bold";
  font-size: 30px;
  color: var(--color-black);
  margin-bottom: 20px;
}
.text-content h2 {
  font-family: "font_bold";
  font-weight: bold;
  font-size: 40px;
  color: var(--color-black);
  margin-bottom: 10px;
}
.text-content h2 span {
  color: var(--color-Primary1);
}
.text-content p {
  font-size: 18px;
  color: var(--color-gray);
  line-height: 1.5;
  width: 90%;
}
.img-banner {
  width: 38%;
}
.img-banner object {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.img-banner img {
  width: 100%;
}
.title-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 30px;
}

.title-start h2 {
  font-family: "font_bold";
  font-size: 25px;
  color: var(--color-black);
}
.sub-academy-statistics {
  width: 100%;
  min-height: 150px;
  background-color: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.sub-academy-statistics::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(0,123,255,0.08) 0%, rgba(0,212,255,0.10) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  z-index: 1;
}
.sub-academy-statistics:hover {
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.18), 0 1.5px 8px rgba(0,0,0,0.10);
  transform: translateY(-8px) scale(1.03) rotateZ(-1deg);
  background: #d6ecffda;
}
.sub-academy-statistics:hover::before {
  opacity: 1;
}
.sub-academy-statistics .title-academy-statistics, .sub-academy-statistics h3, .sub-academy-statistics .img-academy-statistics {
  position: relative;
  z-index: 2;
}
.sub-academy-statistics .title-academy-statistics {
  display: flex;
  align-items: center;
  gap: 10px;
}

.img-academy-statistics {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: #fdf4e8;
  z-index: 1;
  position: relative;
}
.img-academy-statistics img {
  width: 52%;
  height: 52%;
  object-fit: contain;
}
.sub-academy-statistics .title-academy-statistics h2 {
  font-family: "font_bold";
  font-size: 20px;
  color: var(--color-black);
}

.sub-academy-statistics h3 {
  font-family: "font_bold";
  font-size: 50px;
  width: 100%;
  text-align: end;
  color: var(--color-black);
}

.sub-branches-statistics {
  background-color: var(--color-white);
  border-radius: 15px;
  min-height: 150px;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.sub-branches-statistics::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(0,123,255,0.08) 0%, rgba(0,212,255,0.10) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  z-index: 1;
}
.sub-branches-statistics:hover {
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.18), 0 1.5px 8px rgba(0,0,0,0.10);
  transform: translateY(-8px) scale(1.03) rotateZ(-1deg);
  background: #d6ecffda;
}
.sub-branches-statistics:hover::before {
  opacity: 1;
}
.sub-branches-statistics .title-branches-statistics, .sub-branches-statistics .num-statistics, .sub-branches-statistics .btns-eidt {
  position: relative;
  z-index: 2;
}
.sub-branches-statistics .title-branches-statistics {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-branches-statistics .number-branches-statistics {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: var(--color-Primary1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  font-family: "font_bold";
  font-size: 30px;
  justify-content: center;
}
.sub-branches-statistics .text-branches-statistics {
  font-family: "font_bold";
  font-size: 20px;
  color: var(--color-black);
}
.num-statistics {
  margin-top: 30px;
}
.num-statistics h2 {
  font-size: 14px;
  color: var(--color-black);
}
.num-statistics h2 span {
  font-size: 60px;
  font-family: "font_bold";
}

.app::after {
  content: "";
  width: 400px;
  height: 400px;
  background-image: url(../images/bg1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  bottom: -100px;
  left: -100px;
  z-index: -1;
  animation: rotate 10s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.app::before {
  content: "";
  width: 400px;
  height: 400px;
  background-image: url(../images/bg2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: -1;
}

.aosh-page {
  display: flex;
  min-height: 100vh;
}

.bg-aosh-page {
  width: 50%;
  z-index: 1;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.bg-aosh-page:hover::before {
  width: 75%;
  opacity: 0.7;
}

.bg-aosh-page:hover span {
  width: 60%;
  opacity: 0.7;
}

.bg-aosh-page span {
  content: "";
  position: absolute;
  width: 100px;
  z-index: 1;
  height: 25px;
  transition: all 0.6s linear;
  background-color: var(--color-Primary3);
  left: 0;
  bottom: 20px;
}

.bg-aosh-page::after {
  content: "";
  position: absolute;
  transition: all 0.3s linear;

  width: 100%;
  height: 100%;
  background-color: var(--color-Primary2);
  opacity: 0.7;
  top: 0;
  right: 0;
}

.bg-aosh-page::before {
  content: "";
  position: absolute;
  width: 170px;
  z-index: 1;
  transition: all 0.6s linear;
  transition-delay: 0.5s;
  height: 25px;
  background-color: var(--color-Primary2);
  left: 0;
  bottom: 50px;
}

.bg-aosh-page > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s linear;
  transform: scale(1);
}

.form-aosh {
  width: 50%;
  height: 100vh;
  overflow: auto;
  padding: 40px 5%;
}

.logo-bg-aosh {
  position: absolute;
  right: 10px;
  width: 20%;
  height: 80%;
  z-index: 1;
  top: 10px;
}

.logo-bg-aosh img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.aosh-page.active .bg-aosh-page > img {
  transform: scale(1);
}

.main-form-aosh > h2 {
  font-size: 22px;
  margin: 30px 0 45px;
  color: var(--color-gray);
  font-family: "font_medium";
}

.logo-aosh {
  margin-bottom: 45px;
}

.forget-password a {
  color: var(--color-Primary2);
}

.btn-aosh .ctm-btn {
  height: 55px;
}

.links-aosh {
  text-align: center;
}

.links-aosh p {
  color: var(--color-gray);
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  margin-top: 25px;
}

.links-aosh p a {
  color: var(--color-text);
  font-family: "font_medium";
}

.links-aosh p a:hover {
  color: var(--color-Primary2);
}

.show-password {
  position: absolute;
  font-size: 24px;
  left: 25px;
  top: 54px;
  color: var(--color-gray);
  cursor: pointer;
}

.form-aosh {
  direction: ltr;
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

.form-aosh::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}

.form-aosh::-webkit-scrollbar-thumb {
  right: 0;
  background-color: var(--thumbBG);

  border-radius: 0;
  border: 0 solid var(--scrollbarBG);
}

.form-aosh::-webkit-scrollbar {
  writing-mode: horizontal-tb;

  width: 11px;
}

.main-form-aosh {
  direction: rtl;
}

.input-form input {
  text-align: right;
}

.check-aosh input {
  width: 0;
  height: 0;
  position: absolute;
}

.check-aosh label {
  padding-right: 35px;
  position: relative;
  margin: 0;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  color: var(--color-Primary2);
}

.check-aosh label::after {
  content: "";
  position: absolute;
  width: 25px;
  top: 0;
  height: 25px;
  right: 0;
  border: 1px solid #e9e9e9;
}

.check-aosh input:checked ~ label::before {
  background-color: var(--color-Primary2);
  color: var(--color-Primary2);
  content: "";
  position: absolute;
  top: 0;
  width: 25px;
  height: 25px;
  display: flex;
  cursor: pointer;

  border: 1px solid var(--color-Primary2);
  background-image: url(../images/check.png);
  background-position: center;
  background-size: 60%;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  right: 0;
}

.otp-container {
  display: flex;
  align-items: center;
  margin-top: 50px;
  justify-content: center;
  gap: 5px;
}

.otp-container input {
  width: 60px;
  border: none;
  height: 60px;
  text-align: center;
  border: 1px solid #e9e9e9;
  background: #f9f9f9;
  color: var(--color-Primary2) !important;
}

.otp-container input:focus {
  border-color: var(--color-Primary2);
  color: var(--color-Primary2) !important;
}

.logo-aosh {
  margin-bottom: 45px;
  max-height: 150px;
}
.logo-aosh img {
  max-height: 150px;
}

.ctm-btn {
  background-color: var(--color-Primary1);
  color: var(--color-white);
  padding: 11px 30px;
  min-width: 150px;
  border: none;
  display: inline-block;
  border-radius: 50px;
  height: 50px;
  font-size: 17px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s linear;
}

.ctm-btn:hover {
  background-color: var(--color-Primary2);
  color: var(--color-white);
}

.sideber.active {
  transform: translateX(0);
}

.title-page {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-page h1 {
  font-size: 30px;
  color: var(--color-black);
  font-family: "font_bold";
}
.btns-title-page {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-stores {
  padding: 20px;
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.fliter-stores {
  margin-bottom: 20px;
}

.fliter-stores form .row > div {
  padding-left: 7px;
  padding-right: 7px;
}
.fliter-stores button {
  height: 60px;
}

.fliter-stores select {
  color: var(--color-gray) !important;
}
.sub-stores {
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}
.sub-stores .img-stores {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fdf4e8;
}
.sub-stores .img-stores img {
  width: 70%;
  height: 50%;
  object-fit: contain;
}
.sub-stores .title-sub-stores {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-stores ul {
  margin-top: 20px;
}
.sub-stores ul li {
  font-size: 16px;
  font-family: "font_medium";
  display: flex;
  border-radius: 30px;
  padding: 10px 20px;
  height: 45px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}
.sub-stores ul li span {
  font-size: 16px;
  font-family: "font_medium";
}
.sub-stores ul li:nth-of-type(1) {
  color: var(--color-Primary1);
  background-color: #fdf4e8;
}
.sub-stores ul li:nth-of-type(2) {
  color: #15803d;
  background-color: #f0fdf4;
}
.sub-stores ul li:nth-of-type(3) {
  color: #b91c1c;
  background-color: #fef2f2;
}
.sub-stores ul li:nth-of-type(4) {
  color: #000;
  background-color: #f9fafb;
}

.btns-eidt {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.btns-eidt * {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  border-radius: 30px;
  font-size: 16px;
  font-family: "font_medium";
  border: none;
}
.btns-eidt a {
  background-color: var(--color-Primary1);
}
.delete-btn {
  background-color: #b91c1c;
}
.active.active-stores {
  background-color: var(--color-black);
  color: var(--color-white) !important;
}
.active.active-branches {
  background-color: #004b92 !important;
  color: var(--color-white) !important;
}
.sideber ul li a.active-stores:hover {
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
}
.sideber ul li a.active-branches:hover {
  background-color: #004b92 !important;
  color: var(--color-white) !important;
}

.active.active-players {
  background-color: #16a34a !important;
  color: var(--color-white) !important;
}
.sideber ul li a.active-players:hover {
  background-color: #16a34a !important;
  color: var(--color-white) !important;
}
.btns-title-page button {
  background-color: var(--color-black);
}
.main-players {
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}
.sub-players {
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.sub-players::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
/* background: linear-gradient(
  120deg,
  rgba(204, 193, 141, 0.5) 0%,
  rgba(255, 218, 108, 0.6) 100%
); */

  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  z-index: 1;
}
.sub-players:hover {
  /* box-shadow: 0 8px 32px rgba(0, 123, 255, 0.18), 0 1.5px 8px rgba(0,0,0,0.10);
  transform: translateY(-8px) scale(1.03) rotateZ(-1deg);
  background: #d6ecffda; */

   transform: scale(1.03);
  transition: transform 0.3s ease-in-out;
}
.sub-players:hover::before {
  opacity: 1;
}
.sub-players .title-sub-players, .sub-players .img-sub-players, .sub-players .text-sub-players, .sub-players ul {
  position: relative;
  z-index: 2;
}
.sub-players .title-sub-players {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-players .img-sub-players {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-players .text-sub-players {
  font-size: 16px;
  font-family: "font_medium";
}

.sub-players ul {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  width: 100%;
}
.sub-players ul li {
  font-size: 16px;
  width: 100%;
  display: flex;
  gap: 5px;
  align-items: center;
  font-family: "font_medium";
}
.sub-players ul li img {
  width: 25px;
  height: 25px;
  object-fit: contan;
}
.active-reports:hover {
  background-color: #7600a5 !important;
  color: var(--color-white) !important;
}
.sideber ul li a.active.active-reports {
  background-color: #7600a5 !important;
  color: var(--color-white) !important;
}
.sub-academy-statistics h3 span {
  font-size: 16px;
  font-family: "font_medium";
}

.arrow-select {
  position: relative;
}
.arrow-select::after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(../images/arrow-down.png);
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  top: 22px;
  left: 18px;
}
.sideber ul li a.acitve-user:hover {
  background-color: #92005a !important;
  color: var(--color-white) !important;
}
.sideber ul li a.active.acitve-user {
  background-color: #92005a !important;
  color: var(--color-white) !important;
}

/* .sub-stores:hover {
  -webkit-animation-name: tada;
  animation-name: tada;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
} */

.sub-stores:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease-in-out;
}



button.delete-btn:hover , .btns-eidt a:hover {
  color: #fff;
}
