/* ========== Colors ========== */
:root {
  --color-white: #ffffff;
  --color-light: #f3f3f4;
  --color-grey: #c8c8c8;
  --color-main: #262b58;
  --color-accent: #fbd220;
  --color-dim: #959595;
  --color-black: #000000;
}

/* ========== Fonts ========== */
@font-face {
  font-family: "GE";
  src: url("../fonts/Expo_Arabic_Light.ttf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "GE";
  src: url("../fonts/Expo_Arabic_Book.ttf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "GE";
  src: url("../fonts/Expo_Arabic_Medium.ttf");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "GE";
  src: url("../fonts/Expo_Arabic_Bold.ttf");
  font-weight: 700;
  font-display: swap;
}
/* ========== Initialize setup ========== */
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "GE", Helvetica, sans-serif, serif, arial;
  font-weight: 300;
  /* transition: all 0.25s linear; */
}

html {
  font-size: 62.5%;
  direction: rtl;
  scroll-behavior: smooth;
}
@media (max-width: 37.5em) {
  html {
    font-size: 44%;
  }
}

body {
  font-size: 1.4rem;
  color: var(--color-dim);
  background-color: var(--color-white);
  font-family: "GE", sans-serif, serif, arial;
  font-weight: 300;
  position: relative;
  overflow-x: hidden;
  line-height: 1.7;
}

::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.5rem rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-grey);
  outline: 1px solid var(--color-grey);
}

::-moz-selection {
  background: var(--color-accent);
  color: var(--color-white);
}

::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-accent);
  color: var(--color-white);
}

:focus {
  outline: none !important;
  box-shadow: none;
}

figure,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}
.js-scroll.scrolled {
  opacity: 1;
}
.js-scroll.scrolled.fade-up {
  -webkit-animation: fade-up 1s ease-in-out both;
  animation: fade-up 1s ease-in-out both;
}
.js-scroll.scrolled.slide-right {
  -webkit-animation: slide-in-right 1s ease-in-out;
  animation: slide-in-right 1s ease-in-out;
}
.js-scroll.scrolled.slide-left {
  -webkit-animation: slide-in-left 1s ease-in-out;
  animation: slide-in-left 1s ease-in-out;
}

@-webkit-keyframes wave {
  0% {
    transform: rotateZ(0deg);
  }
  30% {
    transform: rotateZ(-5deg);
  }
  50% {
    transform: rotateZ(-5deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}

@keyframes wave {
  0% {
    transform: rotateZ(0deg);
  }
  30% {
    transform: rotateZ(-5deg);
  }
  50% {
    transform: rotateZ(-5deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}
@-webkit-keyframes bounce {
  from {
    transform: translateY(0deg);
  }
  to {
    transform: translateY(-5rem);
  }
}
@keyframes bounce {
  from {
    transform: translateY(0deg);
  }
  to {
    transform: translateY(-5rem);
  }
}
@-webkit-keyframes slide-in-right {
  0% {
    transform: translateX(10rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(10rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-in-left {
  0% {
    transform: translateX(-10rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-10rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-up {
  0% {
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ========== Content block styles ========== */
.container {
  padding: 0 5rem;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 85rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 110rem;
  }
}

.sec-block {
  padding: 5rem 0;
}

.title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-black);
}

.subtitle {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 100;
  color: var(--color-dim);
  margin-top: 1rem;
}

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

/* ========== Colors styles ========== */
.is-main {
  color: var(--color-main);
}

.is-accent {
  color: var(--color-accent);
}

.is-dimmed {
  color: var(--color-dim);
}

.is-light {
  color: #b8d4ff;
}

.bg-main {
  background-color: var(--color-main);
}
.bg-main .title {
  color: var(--color-white);
}
.bg-main .subtitle {
  color: #b8d4ff;
}

.bg-light {
  background-color: var(--color-light) !important;
}

/* ========== Font styles ========== */
.fBold {
  font-weight: 500;
}

.fRegular {
  font-weight: 300;
}

.f14 {
  font-size: 1.4rem;
}

/* ========== SVG styles ========== */
.svg {
  fill: currentColor;
}
.svg-resize-16 {
  width: 1.6rem;
  height: 1.6rem;
}
.svg-resize-20 {
  width: 2rem;
  height: 2rem;
}
.svg-resize-24 {
  width: 2.4rem;
  height: 2.4rem;
}
.svg-resize-42 {
  width: 4.2rem;
  height: 4.2rem;
}

/* ========== Success/Fail styles ========== */
.confirmation-logo {
  padding: 2rem 0;
}
.confirmation-block {
  font-size: 1.6rem;
  padding-top: 10rem;
  text-align: center;
  border-top: 1px solid var(--color-light);
}
.confirmation-block svg {
  width: 10rem;
  height: 10rem;
  margin-bottom: 2rem;
}

.confirmation-title {
  font-size: 1.6rem;
  font-weight: 500;
}

.confirmation-title.fail {
  color: #ce5b50;
}
.confirmation-title.success {
  color: #699f4c;
}

.confirmation-block input {
  background-color: transparent;
  border: none;
  width: 1.5rem;
  display: inline;
  font-weight: 500;
}

.confirmation-block .confirmation-body {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none;
}

.btn {
  width: 16rem;
  height: 5rem;
  border-radius: 2.8rem;
  font-size: 1.6rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-main);
  border: none;
  transition: all 0.25s linear;
}
.btn svg {
  -webkit-margin-end: 1.4rem;
  margin-inline-end: 1.4rem;
}
.btn span {
  font-weight: 500;
}
.btn:focus,
.btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background-color: var(--color-white);
}
.btn-outline:hover,
.btn-outline:focus {
  color: var(--color-white);
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}
.btn-outline-main {
  color: var(--color-main);
  border: 1px solid var(--color-main);
  background-color: var(--color-white);
}
.btn-outline-main:hover,
.btn-outline-main:focus {
  color: var(--color-white);
  border-color: var(--color-main);
  background-color: var(--color-main);
}

.btn-accent {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}
.btn-accent:hover,
.btn-accent:focus {
  color: var(--color-accent);
  background-color: var(--color-white);
}

.download-btn {
  height: 7rem;
  border-radius: 11.3rem;
  color: var(--color-main);
  background-color: var(--color-accent);
  transition: all 0.1s linear;
}
.download-btn:hover,
.download-btn:focus {
  color: var(--color-white);
  background-color: #ebc728;
  transform: translate(-2px, -2px);
}
.download-btn:active {
  transform: translate(0, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.download-btn_text {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  line-height: 1;
}
.download-btn_text span:first-child {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.navbar {
  padding: 2.6rem 0;
  background-color: var(--color-white);
}
.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 1.3rem 0;
  box-shadow: 0 0.5rem 1rem rgba(38, 43, 88, 0.07);
}
.navbar.fixed .navbar-brand,
.navbar.fixed .navbar-brand img {
  height: 4rem;
  width: 10rem;
  object-fit: contain;
}
.navbar.fixed .btn {
  height: 4rem;
  width: 14rem;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  height: 5.7rem;
}
.navbar-brand img {
  width: 13.7rem;
  height: 5.7rem;
  object-fit: contain;
}
.logo {
  height: 5.7rem;
  width: 13.8rem;
  object-fit: contain;
}
.navbar-wrapper {
  display: none;
}
@media only screen and (min-width: 768px) {
  .navbar-wrapper {
    display: block;
    width: 100%;
    max-width: 40rem;
    margin: 0 2rem;
  }
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
/*@media only screen and (min-width: 992px) {*/
/*  .navbar-nav {*/
/*    justify-content: space-between;*/
/*  }*/
/*}*/
.navbar-nav .nav-link {
  display: block;
  color: var(--color-black);
  font-size: 1.4rem;
  font-weight: 400;
  transition: all 0.25s linear;
}
.navbar-nav .nav-link.active {
  font-weight: 700;
}

.navbar-btns {
  display: flex;
  align-items: center;
  grid-gap: 1.5rem;
}

.navbar-btns .btn {
  font-size: 1.4rem;
}

.app-btns {
  display: flex;
  align-items: center;
}
.app-btns .btn {
  -webkit-margin-end: 1.8rem;
  margin-inline-end: 1.8rem;
}
.app-btns .btn:last-child {
  -webkit-margin-end: 0;
  margin-inline-end: 0;
}

.grid-2-cols {
  padding: 5rem 0;
  display: grid;
  grid-gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .grid-2-cols {
    grid-gap: 5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-2-cols .grid-content {
  align-self: center;
}
.grid-2-cols .grid-content .title {
  margin-bottom: 3rem;
}
.grid-2-cols img {
  max-width: 100%;
}
.grid-2-cols.reverse {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .grid-2-cols.reverse {
    display: grid;
  }
}

#how .grid-2-cols .title {
  color: var(--color-main);
  text-align: start;
}
#how .grid-2-cols p {
  margin-bottom: 3.3rem;
}
#how .grid-2-cols p:last-child {
  margin-bottom: 0;
}

.services {
  margin: 3.5rem 0 2rem 0;
  display: grid;
  grid-gap: 5rem;
}
@media only screen and (min-width: 768px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.25s linear;
}
.services .service-item__icon {
  display: grid;
  place-items: center;
  width: 9.4rem;
  height: 9.4rem;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.25s linear;
}
.services .service-item__title {
  font-size: 1.8rem;
  font-weight: 300;
  margin: 1rem 0;
  color: var(--color-white);
  transition: all 0.25s linear;
}
.services .service-item:hover,
.services .service-item:focus {
  transform: translateY(-1rem);
}
.services .service-item:hover .service-item__title,
.services .service-item:focus .service-item__title {
  font-weight: 700;
  color: var(--color-accent);
}
.services .service-item:hover .service-item__icon,
.services .service-item:focus .service-item__icon {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 2rem rgba(38, 43, 88, 0.1);
}
.services .service-item__text {
  color: #b8d4ff;
}

.owl-stage {
  padding: 8rem 0;
}
.owl-item {
  max-width: 25rem;
  border-radius: 2.5rem;
  box-shadow: 0 0.3rem 5rem rgba(0, 0, 0, 0.3);
}
.owl-item img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.owl-item.center {
  transform: scale(1.125);
}
.owl-dots {
  display: none;
}
.owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-nav button {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 100%;
  background-color: #f3f3f3;
  border: none;
  display: grid;
  place-items: center;
  margin: 0 0.5rem;
  transition: all 0.25s linear;
}
.owl-nav button .svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--color-accent);
  transition: all 0.25s linear;
}
.owl-nav button:hover,
.owl-nav button:focus {
  background-color: var(--color-accent);
}
.owl-nav button:hover .svg,
.owl-nav button:focus .svg {
  fill: var(--color-white);
}

@media screen and (min-width: 768px) {
  header .bg-main {
    border-radius: 4rem;
  }
}
header .header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: var(--color-dim);
  padding: 8rem 0;
}
@media screen and (min-width: 768px) {
  header .header-wrapper {
    flex-direction: row;
    padding: 11rem 0 8rem 0;
  }
}
header .header-wrapper .header-content {
  max-width: 40rem;
  width: 100%;
}
header .header-wrapper .title {
  color: var(--color-black);
  text-align: start;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}
header .app-btns {
  margin-top: 4rem;
}
header .header-img {
  position: relative;
  z-index: 0;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 5rem;
}
header .header-img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  header .header-img {
    margin-top: 0;
    width: 60rem;
    transform: translateX(-5rem);
  }
}

footer #download .grid-2-cols {
  padding: 0;
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  footer #download .grid-2-cols {
    height: 42rem;
    display: grid;
  }
}
footer #download .screens {
  display: none;
}
@media only screen and (min-width: 768px) {
  footer #download .screens {
    display: block;
    position: relative;
    z-index: 0;
    text-align: center;
    overflow: hidden;
    height: 100%;
    width: auto;
  }
}
@media only screen and (min-width: 768px) {
  footer #download .screens::before {
    content: "";
    pointer-events: none;
    z-index: -1;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55rem;
    height: 100%;
    background: no-repeat center/cover url("../img/back_screens.png");
  }
}
footer #download .screens .main-screen {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
footer #download .download-content {
  padding: 8rem 0;
}
@media only screen and (min-width: 768px) {
  footer #download .download-content {
    place-self: center;
    padding: 0;
  }
}
footer #download .title {
  color: var(--color-white);
}
footer #download .subtitle {
  font-size: 1.6rem;
  margin-top: 2rem;
}
footer #download .app-btns {
  margin-top: 4rem;
  justify-content: center;
}

.footer {
  text-align: center;
}
.footer .container {
  padding-top: 8rem;
}
.footer .logo {
  width: 10rem;
  height: 6rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer p {
  line-height: 2;
  max-width: 55rem;
  width: 100%;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.footer-nav .nav-link {
  padding: 0.5rem 2rem;
  color: var(--color-main);
  font-weight: 500;
  transition: background-color 0.25s ease-in-out;
}

.footer-nav .nav-link:hover,
.footer-nav .nav-link:focus {
  background-color: var(--color-accent);
}
.footer-nav .nav-link:active {
  color: var(--color-white);
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
}
.social-link {
  display: grid;
  place-items: center;
  margin: 0 0.7rem;
  width: 4.3rem;
  height: 4.1rem;
  border-radius: 1.2rem;
  background-color: var(--color-main);
  transition: all 0.25s linear;
}
.social-link:hover,
.social-link:focus {
  background-color: var(--color-accent);
  transform: translateY(-0.5rem);
  box-shadow: 0 0 1rem rgba(38, 43, 88, 0.25);
}
.social-link:hover .svg,
.social-link:focus .svg {
  transform: rotate(360deg);
}

.copyrights {
  border-top: 1px solid var(--color-grey);
  color: var(--color-black);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyrights .owner {
  display: flex;
  align-items: center;
}
.copyrights .owner img {
  height: 5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.static-container {
  padding: 5rem 0;
}

.static-content {
  color: var(--color-main);
  border: 1px solid #f7f7f7;
  padding: 5rem;
}

.static-container h1 {
  text-align: center;
  font-size: 2rem;
  color: var(--color-main);
  margin-bottom: 5rem;
}

.static-content h4 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.static-content p {
  margin-bottom: 1rem;
}

.inner-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 25rem;
  margin-bottom: 2rem;
}

.inner-header .title {
  font-size: 3.5rem;
  font-weight: 700;
}

.inner-header .subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.75);
}

.register-parents {
  padding-bottom: 9rem;
}

.school-logo {
  width: 22rem;
  height: 22rem;
  object-fit: contain;
}

.step-app {
  margin-top: 6rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.step-app > .step-steps {
  border-radius: 1.2rem 1.2rem 0 0;
}

.step-app > .step-steps > li.step-title {
  display: grid;
  place-content: center;
  grid-gap: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dim);
  padding: 2.5rem;
  background-color: rgba(38, 43, 88, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
  transition: all 0.25s linear;
}
.step-app > .step-steps > li.step-title:first-child {
  border: none;
}

.step-app > .step-steps > li.step-title.active {
  color: var(--color-main);
  background-color: #e5e5e5;
}
.step-app > .step-steps > li.step-title.done {
  color: var(--color-main);
  background-color: var(--color-accent);
}

.step-app > .step-content {
  border: none;
  padding: 5rem 6rem 4rem;
}

.step-app > .step-footer {
  display: flex;
  grid-gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0 6rem 5rem;
  margin: 0;
}

.step-btn {
  width: 100%;
}

.step-app > .step-footer > .step-btn {
  width: 100%;
  border-radius: 1.5rem;
  color: var(--color-white);
  background-color: var(--color-main);
  transition: all 0.25s linear;
}

.select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  padding: 0;
}
.select2-container--default .select2-selection--single,
.form-control {
  width: 100%;
  height: 5rem;
  font-size: 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid #dee3e9;
  padding: 0 2rem;
  font-weight: 500;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  flex-grow: 1;
  padding-right: 0 !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.select2-container--default[dir="rtl"]
  .select2-selection--single
  .select2-selection__arrow {
  left: 1rem;
}

.select2-selection__placeholder {
  font-weight: 500;
  color: var(--color-dim);
}

::placeholder {
  color: var(--color-dim);
}

:-ms-input-placeholder {
  color: var(--color-dim);
}

::-ms-input-placeholder {
  color: var(--color-dim);
}

textarea.form-control {
  height: auto;
  padding: 2rem;
}

.form-group {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
}

.form-group svg {
  position: absolute;
  z-index: 1;
  top: 1.25rem;
  /* transform: translateY(-50%); */
  left: 2rem;
}

.step-app > .step-content > .step-tab-panel {
  transition: all 0.25s linear;
}

.step-app > .step-content > .step-tab-panel.active {
  display: flex !important;
  flex-direction: column;
  grid-gap: 1.5rem;
}

.checkbox-group {
  margin-top: 1rem;
  color: var(--color-black);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(222, 227, 233, 0.6);
}

.checkbox-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.checkbox-group .checkbox-title {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
}

.checkbox-group .checkbox-title span {
  color: #ff0000;
}

.checkbox-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 2rem 4rem;
}

.checkbox-content > div {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  font-weight: 500;
  font-size: 1.6rem;
}
.checkbox-content > div label {
  font-weight: 500;
  cursor: pointer;
}

.checkbox-content > div input {
  position: relative;
  z-index: 0;
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.25s linear;
}

.checkbox-content > div input::before,
.checkbox-content > div input::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  z-index: 1;
  inset: 0;
  top: -2px;
  right: -2px;
  cursor: pointer;
  transition: all 0.25s linear;
}

.checkbox-content > div input::before {
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
}

.checkbox-content > div input::after {
  transform: scale(0);
  background: no-repeat center/2.4rem
    url("data:image/svg+xml,%3Csvg id='tick-circle' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M10,0A10,10,0,1,0,20,10,10.016,10.016,0,0,0,10,0Zm4.78,7.7L9.11,13.37a.748.748,0,0,1-1.06,0L5.22,10.54A.75.75,0,1,1,6.28,9.48l2.3,2.3,5.14-5.14A.75.75,0,0,1,14.78,7.7Z' transform='translate(2 2)' fill='%23262b58'/%3E%3Cpath id='Vector-2' data-name='Vector' d='M0,0H24V24H0Z' transform='translate(24 24) rotate(180)' fill='none' opacity='0'/%3E%3C/svg%3E%0A");
}

.checkbox-content > div input:checked::after {
  transform: scale(1);
}

.checkbox-content > div input:checked ~ label {
  font-weight: 700;
  color: var(--color-main);
}

.flex-content {
  display: flex;
  font-size: 1.6rem;
}

.justify-between {
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 1.2rem;
}

.fs-10 {
  font-size: 1rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fw-medium {
  font-weight: 500;
}

.text-black {
  color: var(--color-black);
}

.fw-bold {
  font-weight: 700;
}

.payment-header {
  grid-gap: 2rem;
  flex-wrap: wrap;
  margin-top: 5rem;
  padding-inline-end: 8rem;
  padding-bottom: 3.6rem;
  border-bottom: 1px solid rgba(222, 227, 233, 0.6);
}

.table-list {
  margin-top: 3rem;
  font-size: 1.4rem;
  width: 100%;
  border-radius: 1.2rem;
}

.table-list-head {
  display: none;
}

.table-list-head * {
  font-weight: 700;
}

.table-list-body .flex-content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  padding: 2rem;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background-color: rgba(38, 43, 88, 0.03);
}

.table-list-body .flex-content:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.table-list-body .flex-content .date {
  display: inline-block;
  font-weight: 500;
}

@media only screen and (min-width: 992px) {
  .table-list {
    background-color: rgba(38, 43, 88, 0.03);
  }

  .table-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .table-list-body {
    padding: 0 5rem;
  }

  .table-list-body .flex-content {
    flex-direction: row;
    justify-content: space-between;
    background-color: transparent;
    padding: 2rem 0;
  }

  .table-list-body .flex-content .date {
    display: none;
  }
}

.payment-content {
  color: var(--color-black);
  margin-top: 3rem;
  text-align: start;
}

.paragraph-block {
  margin: 2rem 0;
  padding: 3rem 4rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(222, 227, 233, 0.6);
}

.paragraph-block button {
  margin-top: 2rem;
}

.payment-page .checkbox-group {
  border-bottom: none;
  padding-bottom: 0;
}

.payment-page .step-footer {
  margin-top: 4rem;
}

.inline-btn {
  display: flex;
  align-items: center;
  grid-gap: 1.2rem;
  color: var(--color-main);
  border: none;
  background: none;
  font-weight: 500;
}

.list-item::before {
  content: counter(item, arabic-indic) ". ";
  counter-increment: item;
  padding-inline-end: 1rem;
  font-weight: 400;
}

.collapsable {
  display: none;
}

.backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.more-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 34.6rem;
  padding: 0 5rem;
  width: 100%;
  max-width: 55rem;
  border-radius: 1.2rem;
  background-color: var(--color-white);
  position: fixed;
  z-index: 10050;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-black);
}

.more-modal-content .modal-title {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4rem;
  text-align: center;
}

.link-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 1.5rem;
}

.link-list .item {
  width: 100%;
  line-height: 5rem;
  height: 5rem;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 1.5rem;
  color: var(--color-main);
  background-color: rgba(38, 43, 88, 0.05);
  transition: all 0.25s linear;
}

.link-list .item:hover,
.link-list .item:focus {
  color: var(--color-white);
  background-color: var(--color-main);
}

.select2-container {
  width: auto !important;
  display: block;
}

label.error {
  color: #ff0000;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
