﻿/* committees-committees-DX-Wed-Oct-09-2024-16-04 */
/*  */

:root {
  --light-blue-2: #73c8f1;
  --light-blue: #65cbff;
  --dark-blue: #263570;
  --dark-orange: #ed7624;
  --orange: #f79e00;
  --green: #4dbd95;
  --light-green: #9ccc3c;
  --red: #cb0000;
  --primary: #252f6b;
  --secondary: #73c8f1;
  --secondary-hover: #60a9cd;
  --primary-hover: #6459a7;
  --darkSliver: #707070;
  --sliver: #949494;
  --lightSliver: #c9c9c9;
  --danger: #f16739;
  --danger-hover: #d1572f;
  --pink: #ff375e;
  --base: #273470;
  --purple-light: #eeecfe;
  --purple-base: #4859a0;
  --purple-base-light: #5567a9;
  --purple-fade: #f0eeff;
  --white: #fff;
  --link-color: #66bbf2;
  --light-base: #eff1fa;
  --purple-dark: #2a346c;
  --purple-pale: #6258a6;
  --text-base-color: #1d252d;
  --purple-dim: #b5abe9;
  --sky: #66ccff;
  --grey-base: #c7c5d2;
  --header-max-height: 100px;
  --footer-max-height: 200px;
  --max-content-margins: 100px;
  --content-min-height: 80vh;
}

/** font faces */
@font-face {
  font-family: 'HelveticaNeueLTArabic';
  src: url('../fonts/HelveticaNeueLTArabic-Light.ttf');
  font-weight: 300;
}

@font-face {
  font-family: 'HelveticaNeueLTArabic';
  src: url('../fonts/HelveticaNeueLTArabic-Roman.ttf');
  font-weight: 400;
}

@font-face {
  font-family: 'HelveticaNeueLTArabic';
  src: url('../fonts/HelveticaNeueLTArabic-Bold.ttf');
  font-weight: 600;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src:
    url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
    url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
    url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
    url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
    url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

.loader-min-height {
  min-height: calc(100vh - (var(--header-max-height) + var(--footer-max-height) + var(--max-content-margins)));
}

.site-main {
  /* min-height: var(--content-min-height); */
  min-height: 84.1vh;
}

.site-main .home-page {
  margin-top: -110px;
}

.site-main .internal-page {
  margin-top: 82px;
}

body.light-mode-active .site-main .main-bg {
  background: #f7f7f7;
}

.danger-info {
  display: flex;
  color: var(--red);
  gap: 8rem;
}

.gray-box {
  background-color: #f3f3f3;
  padding: 1rem 1.5rem;
  border-radius: 3px;
}

.green-bg {
  background-color: var(--green);
}

.light-blue-bg {
  background-color: var(--light-blue);
}

.green-text {
  color: var(--green) !important;
}

.error-box {
  border: 1px solid #e2e2e2;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 3rem;
  border-radius: 10px;
  padding: 3rem 1rem;
}

.error-box h3 {
  font-size: 2.75rem;
  font-weight: 600;
  color: #f16739;
  margin-bottom: 2rem;
}

.error-box h3 svg {
  display: inline-block;
  margin-inline-end: 1rem;
}

.error-box p {
  font-size: 1.5rem;
  color: var(--dark-blue);
}

.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.site-loader.active {
  opacity: 1;
  visibility: visible;
}

.site-loader.active .animate-1 {
  animation: opacityAnimate 1s ease-in-out infinite alternate;
}

.site-loader.active .animate-2 {
  animation: opacityAnimate 1s ease-in-out 1.25s infinite alternate;
}

.site-loader.active .animate-3 {
  animation: opacityAnimate 1s ease-in-out 1.5s infinite alternate;
}

.site-loader.active .animate-4 {
  animation: opacityAnimate 1s ease-in-out 1.75s infinite alternate;
}

@keyframes opacityAnimate {
  0%,
  10% {
    opacity: 1;
  }

  90%,
  100% {
    opacity: 0;
  }
}

.site-main h1,
.site-main h2,
.site-main h3,
.site-main h4,
.site-main h5,
.site-main h6 {
  font-family: var(--font-family);
  font-weight: 700;
  animation: headings-fading 1.5s;
}

@media (min-width: 990px) {
  .entity-landscape__profile {
    min-height: calc(100vh - 170px);
  }
}

.profile-systems {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
}

/* start loader */
.loader-parent {
  position: relative;
}

.loader {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 9;
  display: none;
  opacity: 0;
  /* transition: all 0.25s ease-in-out; */
  text-align: center;
}

.loader--active {
  display: block;
  opacity: 1;
}

.loader .loader-wrapper {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.loader .loader-wrapper .img-wrapper {
  width: 250px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  box-shadow: 0px 4px 40px 0px #e8e8e8;

  @media (max-width: 1200px) {
    width: 190px;
  }

  @media (max-width: 800px) {
    width: 150px;
  }

  @media (max-width: 500px) {
    width: 125px;
  }

  .border-around {
    position: absolute;
    top: calc(0px + -12%);
    left: calc(0px + -12%);
    width: 124%;
    height: 124%;
    border-radius: 50%;
    border: 3px #e5e5e8 solid;
    border-bottom-color: #1c355e;
    border-left-color: #1c355e;
    animation: loader-animation 3s linear infinite;
    &::after {
      content: '';
      background-color: #223a62;
      position: absolute;
      top: 30px;
      left: 30px;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      border: 7px #fff solid;
    }

    @media (max-width: 1200px) {
      &::after {
        top: 20px;
        left: 20px;
      }
    }

    @media (max-width: 800px) {
      &::after {
        top: 12px;
        left: 12px;
      }
    }

    @media (max-width: 500px) {
      &::after {
        top: 13px;
        left: 10px;
        width: 17px;
        height: 17px;
        border: 5px #fff solid;
      }
    }
  }
}

.loader .loader-wrapper .img-wrapper img {
  height: 100%;
  display: block;
}

@keyframes loader-animation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
/* end loader */

.button {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem 0.9rem;
  /*border-radius: 100px;*/
  border: 1px solid transparent;
  text-decoration: none;
  transition:
    border 0.25s ease-in-out,
    background-color 0.25s ease-in-out,
    color 0.25s ease-in-out;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  gap: 0.5rem;
  background-color: transparent;
  white-space: nowrap;
  position: relative;
}

.button svg {
  max-height: 24px;
  width: auto;
}

.button .middle-icon {
  position: relative;
  top: 3px;
}

.button--dark-blue {
  background-color: var(--dark-blue);
  color: #fff;
}

.button--dark-blue:hover {
  color: #fff;
  background-color: #1c264e;
}

.button--dark-blue[disabled] {
  background-color: #989fb2 !important;
  cursor: auto;
}

.button--dark-purple-outline {
  border-color: #625d9c;
  color: #625d9c;
}

.button--dark-purple-outline:hover {
  color: #fff;
  background-color: #625d9c;
}

.button--light-blue {
  background-color: var(--light-blue);
  color: #fff;
}

.button--light-blue:hover {
  color: #fff;
  background-color: var(--light-blue-2);
}

.button--light-blue-outline {
  border-color: var(--light-blue);
  color: var(--light-blue);
}

.button--light-blue-outline:hover {
  color: #fff;
  background-color: var(--light-blue);
}

.button--light-blue-outline[disabled] {
  background-color: #e3e4e9 !important;
  border-color: #e3e4e9 !important;
  cursor: auto;
  color: #c9c9c9 !important;
}

.button--gray {
  background-color: #f5f5f5;
  color: #303b6f;
  border: 1px solid rgba(87, 88, 161, 0.06);
}

.button--gray:hover {
  color: #303b6f;
  background-color: #e6e4e4;
}

.button--light-purple {
  background-color: #eeeef4;
  border-color: #b7b7d6;
  color: #5758a1;
}

.button--light-purple:hover {
  color: #5758a1;
  background-color: #dbdbe7;
}

.button--purple {
  background-color: #625d9c;
  color: #fff;
}

.button--purple:hover {
  color: #fff;
  background-color: #5b52bd;
}

.button--light-green {
  background-color: var(--light-green);
  color: #fff;
}

.button--light-green:hover {
  color: #fff;
  background-color: #8bb439;
}

.button--orange {
  background-color: var(--orange);
  color: #fff;
}

.button--orange:hover {
  color: #fff;
  background-color: #eab045;
}

.button--dark-orange {
  background-color: var(--dark-orange);
  color: #fff;
}

.button--dark-orange:hover {
  color: #fff;
  background-color: #d46921;
}

.button--orange-outline {
  border-color: var(--orange);
  color: var(--orange);
}

.button--orange-outline:hover {
  color: #fff;
  background-color: var(--orange);
}

.button--red-outline {
  border-color: var(--red);
  color: var(--red);
}

.button--red-outline:hover {
  color: #fff;
  background-color: var(--red);
}

.button--dark-gray {
  background-color: #acacac;
  color: #fff;
  border-color: #acacac;
}

.button--dark-gray:hover {
  color: #fff;
  background-color: #c5c5c5;
}

.button--full-width {
  width: 100%;
}

.button--blocked {
  display: block;
  max-width: fit-content;
  padding: 0.125rem 0rem;
  margin-top: 0.25rem;
  color: var(--dark-blue);
}

.button--blocked:hover {
  color: #1c264e;
}

.button--small {
  padding: 0.3rem 1.5rem 0.6rem;
}

.button--small svg {
  position: relative;
  top: 2px;
}

.button__primary {
  background: var(--primary);
  color: #fff;
}

.button__primary svg path {
  fill: #fff;
}

.button__primary:hover {
  background: var(--primary-hover);
}

.button__primary-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.button__primary-outline svg path {
  fill: var(--primary);
  transition: all ease-in-out 0.25s;
}

.button__primary-outline:hover {
  color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.button__primary-outline:hover svg path {
  fill: var(--primary-hover);
}

.button__secondary {
  background: var(--secondary);
  color: #fff;
}

.button__secondary svg path {
  fill: #fff;
}

.button__secondary:hover {
  background: var(--secondary-hover);
}

.button__secondary-outline {
  color: var(--secondary);
  border-color: var(--secondary);
}

.button__secondary-outline svg path {
  fill: var(--secondary);
  transition: all ease-in-out 0.25s;
}

.button__secondary-outline:hover {
  color: var(--secondary-hover);
  border-color: var(--secondary-hover);
}

.button__secondary-outline:hover svg path {
  fill: var(--secondary-hover);
}

.button__success {
  background: var(--green);
  color: #fff;
}

.button__success svg path {
  fill: #fff;
}

.button__success:hover {
  background: #3e9f7c;
}

.button__success-outline {
  color: var(--green);
  border-color: var(--green);
}

.button__success-outline svg path {
  fill: var(--green);
  transition: all ease-in-out 0.25s;
}

.button__success-outline:hover {
  color: #3e9f7c;
  border-color: #3e9f7c;
}

.button__success-outline:hover svg path {
  fill: #3e9f7c;
}

.button__warning {
  background: var(--orange);
  color: #fff;
}

.button__warning svg path {
  fill: #fff;
}

.button__warning:hover {
  background: #eab045;
}

.button__warning-outline {
  color: var(--orange);
  border-color: var(--orange);
}

.button__warning-outline svg path {
  fill: var(--orange);
  transition: all ease-in-out 0.25s;
}

.button__warning-outline:hover {
  color: #eab045;
  border-color: #eab045;
}

.button__warning-outline:hover svg path {
  fill: #eab045;
}

.button__danger {
  background: var(--danger);
  color: #fff;
}

.button__danger svg path {
  fill: #fff;
}

.button__danger:hover {
  background: var(--danger-hover);
}

.button__danger-outline {
  color: var(--danger);
  border-color: var(--danger);
}

.button__danger-outline svg path {
  fill: var(--danger);
  transition: all ease-in-out 0.25s;
}

.button__danger-outline:hover {
  color: var(--danger-hover);
  border-color: var(--danger-hover);
}

.button__danger-outline:hover svg path {
  fill: var(--danger-hover);
}

.button__disabled {
  background: var(--sliver);
  color: var(--lightSliver);
  pointer-events: none;
}

.button__disabled svg path {
  fill: var(--lightSliver);
}

.button--pdf {
  position: relative;
  font-size: 0.875rem;
}

.button--pdf::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1735_162978)'%3E%3Cpath d='M16.3684 1.38828V15.1695H1.63086V4.36953L5.51211 0.488281H15.4965C15.9746 0.488281 16.3684 0.910156 16.3684 1.38828Z' fill='%23EFF2F3'/%3E%3Cpath d='M4.69668 4.36953H1.65918L5.5123 0.488281L5.48418 3.52578C5.5123 4.00391 5.14668 4.36953 4.69668 4.36953Z' fill='%23DADEDE'/%3E%3Cpath d='M10.4348 8.36288C9.61914 7.57538 9.02851 6.67538 9.02851 6.67538C9.25351 6.33788 9.78789 4.39726 8.97227 3.83476C8.15664 3.27226 7.73477 4.31288 7.73477 4.31288C7.36914 5.60663 8.24102 6.78788 8.24102 6.78788L7.25664 8.95351C7.14414 8.95351 4.02227 10.1629 5.09102 11.6535C6.18789 13.1441 7.70664 9.54413 7.70664 9.54413C8.29727 9.34726 10.0973 9.09413 10.0973 9.09413C10.8004 10.0504 11.6441 10.3598 11.6441 10.3598C12.9379 10.6973 13.0785 9.62851 13.0785 9.62851C13.1066 8.22226 10.4348 8.36288 10.4348 8.36288ZM5.62539 11.1473C5.59727 11.1473 5.59727 11.1191 5.59727 11.1191C5.42852 10.7254 6.72227 9.96601 6.72227 9.96601C6.72227 9.96601 6.01914 11.316 5.62539 11.1473ZM8.55039 4.34101C8.91602 4.67851 8.60664 5.83163 8.60664 5.83163C8.60664 5.83163 8.18477 4.67851 8.55039 4.34101ZM8.21289 8.70038L8.71914 7.46288L9.50664 8.41913L8.21289 8.70038ZM12.3754 9.60038C12.1504 9.96601 11.2223 9.17851 11.1379 9.09413C11.2785 9.09413 12.4879 9.17851 12.3754 9.60038ZM16.3691 14.2691V17.5879C16.3691 18.066 15.9754 18.4879 15.4691 18.4879H2.50352C2.02539 18.4879 1.60352 18.0941 1.60352 17.5879V14.2691H16.3691Z' fill='%23F2786B'/%3E%3Cpath d='M7.84727 15.7328C7.84727 15.9578 7.76289 16.1266 7.62227 16.2672C7.48164 16.3797 7.25664 16.4359 6.97539 16.4359H6.75039V17.2516H6.38477V15.0859H7.03164C7.31289 15.0859 7.50977 15.1422 7.65039 15.2547C7.79102 15.3672 7.84727 15.5078 7.84727 15.7328ZM6.77852 16.1547H6.97539C7.14414 16.1547 7.28477 16.1266 7.36914 16.0703C7.45352 16.0141 7.50977 15.9016 7.50977 15.7609C7.50977 15.6484 7.48164 15.5359 7.39727 15.4797C7.31289 15.4234 7.20039 15.3953 7.03164 15.3953H6.77852V16.1547ZM10.0691 16.1547C10.0691 16.5203 9.95664 16.8016 9.75977 16.9703C9.56289 17.1672 9.28164 17.2516 8.88789 17.2516H8.26914V15.0859H8.94414C9.28164 15.0859 9.56289 15.1703 9.75977 15.3672C9.95664 15.5359 10.0691 15.8172 10.0691 16.1547ZM9.67539 16.1547C9.67539 15.6203 9.42227 15.3672 8.94414 15.3672H8.63477V16.9422H8.88789C9.42227 16.9703 9.67539 16.6891 9.67539 16.1547ZM10.8848 17.2516H10.5191V15.0859H11.7566V15.3953H10.8848V16.0703H11.7004V16.3797H10.8848V17.2516Z' fill='%23EFF2F3'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1735_162978'%3E%3Crect width='18' height='18' fill='white' transform='translate(0 0.488281)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  justify-content: center;
  font-weight: 600;
  gap: 1rem;
  background-color: transparent;
  white-space: nowrap;
  color: var(--primary);
}

.primary-link svg path {
  fill: var(--primary);
  transition: all ease-in-out 0.25s;
}

.primary-link:hover {
  color: var(--primary-hover);
}

.primary-link:hover svg path {
  fill: var(--primary-hover);
}

.status {
  display: inline-block;
  padding: 0.3rem 0.8rem 0.65rem;
  border-radius: 3px;
  white-space: nowrap;
  min-width: 125px;
  text-align: center;
}

.status__general {
  color: var(--secondary);
  background: rgba(115, 200, 241, 0.3);
}

.status__success {
  color: var(--green);
  background: rgba(77, 189, 149, 0.3);
}

.status__warning {
  color: var(--orange);
  background: rgba(252, 189, 76, 0.3);
}

.status__danger {
  color: var(--danger);
  background: rgba(241, 103, 57, 0.3);
}

.form__verify__input-wrapper {
  display: flex;
  gap: 5px;
}

.form__label {
  display: block;
  margin-bottom: 0.75rem;
  color: #0c0c0d;
  position: relative;
  font-size: 14px;
  font-weight: 400;
}

.form__label.no-wrap {
  white-space: nowrap;
}

.form__label.require::after {
  content: '*';
  font-size: 28px;
  color: #ff375e;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.form__control {
  display: block;
  width: 100%;
  border: 1px solid #c5c5c5;
  padding: 0.3rem 1rem 0.5rem;
  font-size: 0.813rem;
  font-weight: 600;
  color: #444;
  height: 45px;
  border-radius: 3px;
  outline-offset: 13px;
  outline: 2px transparent solid;
  transition: 0.3s;
}

.custom-accordion__header .accordion-button:focus,
.custom-radio:focus,
.button.edited:focus,
.multiselect-dropdown:focus,
textarea:focus,
input:focus {
  outline: 2px #9890d0 solid;
  outline-offset: -1px;
}

.captcha-image {
  height: 50px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-image img {
  width: 150px;
  height: 100%;
}

.captcha-image a {
  display: inline-flex;
  line-height: 0;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-blue);
}

.captcha-image a.disabled {
  background-color: #c1c1c1;
}

.captcha-image a:hover {
  animation: rotate 0.3s;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(-360deg);
  }
}

.captcha-wrapper input[disabled] {
  border-color: transparent;
  background-color: #ececec;
}
/*  */

.form__control[readonly] {
  border-color: transparent;
  background-color: #ececec;
}

.form__control::placeholder {
  font-weight: 400;
  color: #a1a1a1;
}

.form__control[data-bs-toggle='dropdown'] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23263570' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 16px 12px;
  padding-inline-end: 30px;
}

html[dir='rtl'] .form__control[data-bs-toggle='dropdown'] {
  background-position: left 0.75rem center;
}

html[dir='ltr'] .form__control[data-bs-toggle='dropdown'] {
  background-position: right 0.75rem center;
}

.form__control[data-bs-toggle='dropdown'].show {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' style='&%2310; transform: rotate(180deg);&%2310;'%3E%3Cpath fill='none' stroke='%23263570' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}

.form__control-wrapper {
  position: relative;
}

.form__control-wrapper i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

html[dir='rtl'] .form__control-wrapper i {
  left: 1rem;
}

html[dir='ltr'] .form__control-wrapper i {
  right: 1rem;
}

.form__control-wrapper--show-password .form__control-passord-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='27' height='24' viewBox='0 0 27 24'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_9802' data-name='Rectangle 9802' width='27' height='24' transform='translate(-12286 4051)' fill='%23fff' stroke='%23707070' stroke-width='1'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Mask_Group_1' data-name='Mask Group 1' transform='translate(12286 -4051)' clip-path='url(%23clip-path)'%3E%3Cg id='Group_27550' data-name='Group 27550' transform='translate(0 -0.52)'%3E%3Crect id='Rectangle_9801' data-name='Rectangle 9801' width='30' height='2' transform='translate(-12283.506 4073.733) rotate(-45)' fill='%23b7b7b7'/%3E%3Cpath id='Subtraction_1' data-name='Subtraction 1' d='M13.384,19.18h0a12.163,12.163,0,0,1-5.134-1.171l1.83-1.767A5.5,5.5,0,0,0,17.893,8.7l2.2-2.123a12.268,12.268,0,0,1,4.159,4.716,1.24,1.24,0,0,1,0,1.115A12.251,12.251,0,0,1,13.384,19.18ZM6.451,16.966h0A12.29,12.29,0,0,1,2.516,12.4a1.246,1.246,0,0,1,0-1.115A12.252,12.252,0,0,1,13.384,4.513a12.178,12.178,0,0,1,4.874,1.052L16.469,7.292A5.5,5.5,0,0,0,8.725,14.77l-2.273,2.2Zm6.94-1.47h0a3.65,3.65,0,0,1-1.953-.565l5.113-4.938a3.658,3.658,0,0,1-3.16,5.5ZM10.1,13.439h0a3.66,3.66,0,0,1-.24-2.56,1.827,1.827,0,0,0,2.554-2.554,3.673,3.673,0,0,1,.967-.146l.009,0a3.669,3.669,0,0,1,1.715.427l-5,4.831Z' transform='translate(-12286.384 4050.987)' fill='%23b7b7b7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.form__control-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  inset-inline-end: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

@media (max-width: 767px) {
  .form__control-icon {
    width: 36px !important;
    height: 36px !important;
  }

  .form__control-passord-icon {
    inset-inline-end: 40px !important;
  }

  .form__control-passord-icon::before {
    width: 20px !important;
    height: 20px !important;
  }

  .form__control-icon svg {
    max-width: 16px !important;
  }
}

.form__control-icon svg {
  max-width: 25px;
}

.form__control-icon.verify-input-icon {
  width: 50%;
  max-width: 200px;
  inset-inline-end: 40px;
}

.form__control-icon.verify-input-icon a {
  position: absolute;
  display: inline-flex;
  line-height: 0;
  opacity: 0.9;
  transition: all 0.15s ease-in-out;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-blue);
}

html[dir='rtl'] .form__control-icon.verify-input-icon a {
  left: -40px;
}

html[dir='ltr'] .form__control-icon.verify-input-icon a {
  right: -40px;
}

.form__control-icon.verify-input-icon a svg {
  transition: all 0 ease-in-out;
}

.form__control-icon.verify-input-icon a:hover {
  opacity: 1;
  background-color: var(--light-blue-2);
}

.form__control-icon.verify-input-icon a:hover svg {
  transform: rotate(-360deg);
  transition: all 0.25s ease-in-out;
}

.form__control-icon.verify-input-icon img {
  height: 100%;
  width: 100%;
  border: 1px solid #c5c5c5;
}

.form__control-passord-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  inset-inline-end: 65px;
  display: inline-flex;
  align-items: center;
}

.form__control-passord-icon::before {
  content: '';
  display: inline-block;
  width: 27px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='27' height='24' viewBox='0 0 27 24'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_9802' data-name='Rectangle 9802' width='27' height='24' transform='translate(-12286 4051)' fill='%23fff' stroke='%23707070' stroke-width='1'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Mask_Group_1' data-name='Mask Group 1' transform='translate(12286 -4051)' clip-path='url(%23clip-path)'%3E%3Cg id='Group_27550' data-name='Group 27550' transform='translate(0 -0.52)'%3E%3Cpath id='Icon_awesome-eye' data-name='Icon awesome-eye' d='M21.867,11.276A12.25,12.25,0,0,0,11,4.5,12.252,12.252,0,0,0,.133,11.276a1.236,1.236,0,0,0,0,1.115A12.25,12.25,0,0,0,11,19.167a12.252,12.252,0,0,0,10.867-6.776,1.236,1.236,0,0,0,0-1.115ZM11,17.333a5.5,5.5,0,1,1,5.5-5.5,5.5,5.5,0,0,1-5.5,5.5Zm0-9.167a3.64,3.64,0,0,0-.967.145,1.828,1.828,0,0,1-2.555,2.555A3.658,3.658,0,1,0,11,8.167Z' transform='translate(-12284 4051)' fill='%23b7b7b7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")
    center center no-repeat;
  background-size: contain;
}

.form__control-passord-icon.style2 {
  inset-inline-end: 25px;
}

.form__calendar-wrapper {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 767.9px) {
  .form__calendar-wrapper {
    flex-direction: column;
  }

  .form__calendar-wrapper .calendar-toggler {
    align-self: flex-start;
  }
}

.form__calendar-wrapper .form__control-wrapper {
  flex: 1;
}

.form__control-link {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0.875rem;
  inset-inline-end: 1.5rem;
  line-height: 1;
  display: inline-block;
  padding-bottom: 5px;
  color: #615a9c;
  transition: color 0.25s ease-in-out;
}

.form__control-link:hover {
  color: var(--dark-blue);
}

.form__checkbox-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form__checkbox-wrapper label {
  display: inline-block;
  font-weight: 600;
  color: var(--dark-blue);
}

.form__checkbox {
  width: 1.125rem;
  height: 1.125rem;
}

.form__checkbox + label {
  color: #acacac;
  font-weight: 400;
}

.form__search {
  position: relative;
}

.form__search__icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  inset-inline-start: 1rem;
  pointer-events: none;
}

.form__search .form__control {
  padding-inline-start: 2.5rem;
}

.form__error-message {
  margin-bottom: 0;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--red);
  display: none;
}

.form--error .form-check-input {
  border-color: var(--red);
}

.form--error .form__control {
  border-color: var(--red);
}

.form--error .form__error-message {
  display: block;
}

.form--error .form__control-icon.verify-input-icon img {
  border-inline-start-color: var(--red);
}

.form--required .form__label::after,
.form__required.form__label::after {
  content: '*';
  color: var(--red);
  display: inline-block;
  top: 5px;
  position: relative;
  transform: scale(1.4);
  margin: 0 5px;
}

textarea.form__control {
  height: unset;
  resize: none;
}

.form-check {
  padding-left: unset;
  padding-inline-start: 0.5rem;
}

.form-check .form-check-input {
  float: unset;
  margin-left: unset;
  width: 20px;
  height: 20px;
  border-width: 2px;
  margin-inline-end: -0.5rem;
}

.form-check .form-check-input:checked {
  border-color: var(--light-blue-2);
  background-color: transparent;
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%2373C8F1'/%3e%3c/svg%3e");
}

.form-check .form-check-input.dark:checked {
  border-color: var(--darkSliver);
  background-color: transparent;
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%2263570'/%3e%3c/svg%3e");
}

.form-check .form-check-label {
  padding-inline-start: 1rem;
}

.form-check .form-check-label.dark {
  color: var(--purple-dark);
}

.dropzone-uploader__input {
  position: relative;
  overflow: hidden;
}

.dropzone-uploader__input input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone-uploader__input input:hover + .dropzone-uploader__box {
  border-color: var(--light-blue);
}

.dropzone-uploader__box {
  padding: 2rem;
  border: 2px dashed #cecece;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: border 0.25s ease-in-out;
}

.dropzone-uploader__box p {
  margin-top: 1rem;
  margin-bottom: 5px;
  font-size: 0.875rem;
  line-height: 2;
  color: #989fb2;
}

.dropzone-uploader__box p span {
  line-height: 1;
  display: block;
  text-decoration: underline;
  color: var(--dark-blue);
}

.dropzone-uploader__files-list {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.dropzone-uploader__files-list-item {
  display: flex;
  background-color: #f0f0f0;
  padding: 0.75rem 1rem;
  border-radius: 5px;
}

.dropzone-uploader__files-list-item:not(:last-child) {
  margin-bottom: 1rem;
}

@media (max-width: 991.9px) {
  .dropzone-uploader__files-list-item {
    display: block;
  }
}

.dropzone-uploader__file-name {
  flex-grow: 1;
  color: var(--text-base-color);
  font-weight: 600;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-inline-end: 1rem;
}

.dropzone-uploader__file-name small {
  display: block;
  color: var(--green);
}

.dropzone-uploader__file-name strong {
  white-space: nowrap;
}

@media (max-width: 991.9px) {
  .dropzone-uploader__file-name {
    margin-bottom: 0.625rem;
  }
}

.dropzone-uploader__file-actions {
  display: flex;
  gap: 1rem;
}

@media (max-width: 575.9px) {
  .dropzone-uploader__file-actions {
    flex-wrap: wrap;
  }
}

.dropzone-uploader.style2 {
  max-width: 685px;
  margin: 0 auto 28px;
}

.dropzone-uploader.style2 .dropzone-uploader__box {
  background: #fff;
}

.otp {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  direction: ltr;
}

.otp__control {
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
  background-color: transparent;
  border: 2px solid var(--green);
  border-radius: 3px;
  text-align: center;
  outline: 0;
  font-size: 1.5rem;
  font-weight: 600;
  caret-color: transparent;
  padding: 0.2rem 1rem 0.5rem;
}

.otp__control[readonly] {
  border: 2px solid #707070;
}

.otp__control.invalid {
  border-color: #f16739;
  color: #f16739;
}

@media (max-width: 575.9px) {
  .otp__control {
    width: 50px;
    height: 50px;
  }
}

.otp__control::selection {
  background: transparent;
}

.otp__control:focus {
  border-color: var(--dark-blue) !important;
}

.otp__control.has-value {
  background-color: var(--green);
  border-color: var(--green);
  color: #fff;
}

.otp__control.has-value:focus {
  background-color: var(--dark-blue);
}

.otp-modal .form__label {
  font-size: 1.3rem;
}

.otp-resend {
  text-align: center;
  margin: 1rem auto;
  font-size: 1.125rem;
}

.otp-resend__invalid {
  color: #f16739;
  margin-bottom: 0.5rem;
}

.otp-resend__time-remain {
  color: #c1c1c1;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.otp-resend__counter {
  margin-bottom: 0;
  color: #707070;
  font-size: 1.25rem;
}

.otp-resend__counter.end-time {
  color: #ff375e;
}

.otp-resend__link {
  color: #c1c1c1;
  font-size: 1rem;
  transition: color 0.25s ease-in-out;
  text-decoration: none;
  transition: all ease-in-out 0.25s;
  pointer-events: none;
}

.otp-resend__link svg {
  width: 25px;
  height: 25px;
}

.otp-resend__link svg path {
  transition: all ease-in-out 0.25s;
  fill: #c1c1c1;
}

.otp-resend__link.style2 {
  color: #000;
  pointer-events: visible;
  font-size: 1rem;
}

.otp-resend__link.style2 svg path {
  fill: #000;
}

.otp-resend__link:hover {
  color: var(--dark-blue);
}

.otp-resend__link:hover svg path {
  fill: var(--dark-blue);
}

@media (max-width: 575.9px) {
  .otp-modal .form__label {
    font-size: 1rem;
  }

  .otp-resend__time-remain {
    font-size: 0.9rem;
  }

  .otp-resend__counter {
    font-size: 1rem;
  }

  .otp-resend__link.style2 {
    font-size: 0.8rem;
  }
}

.custom-radio {
  min-width: 200px;
  display: block;
  margin: 0;
}

.custom-radio input {
  display: none;
}

.custom-radio__content {
  border: 1px solid var(--dark-blue);
  font-size: 1.25rem;
  display: block;
  text-align: center;
  padding: 5px 5px 11px;
}

.custom-radio input:checked + .custom-radio__content {
  background: var(--dark-blue);
  color: #fff;
}

.calendar-toggler {
  display: inline-flex;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #c5c5c5;
  background-color: #fff;
}

.calendar-toggler.inline {
  padding: 5px 10px;
  border-radius: 5px 5px 0px 0px;
  border: 1px solid #c5c5c5;
  background-color: #fff;
  position: absolute;
  /* width: 100%; */
  flex-direction: column;
  z-index: 9;
  min-width: 350px !important;
}

@media (max-width: 575.9px) {
  .calendar-toggler.inline {
    left: -2.1rem;
  }
}

.calendar-toggler a {
  color: var(--dark-blue);
  text-decoration: none;
  display: inline-block;
  padding: 3px 10px 8px;
  border-radius: 5px;
}

.calendar-toggler a.active {
  background-color: var(--dark-blue);
  color: #fff;
}

html[dir='rtl'] .form-select {
  background-position: left 0.75rem center;
}

ngb-datepicker-navigation-select > .form-select {
  background-size: 12px 9px;
}

html[dir='rtl'] ngb-datepicker-navigation-select > .form-select {
  background-position: left 0.5rem center;
}

html[dir='ltr'] ngb-datepicker-navigation-select > .form-select {
  background-position: right 0.5rem center;
}

.ngb-dp-navigation-select {
  gap: 0.2rem;
}

html[dir='rtl'] ngb-datepicker .ngb-dp-arrow {
  transform: rotateY(180deg);
}

.uploaded-file {
  background: #f7f7fb;
  width: 100%;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.uploaded-file__info {
  position: relative;
}

html[dir='rtl'] .uploaded-file__info {
  padding-right: 52px;
}

html[dir='ltr'] .uploaded-file__info {
  padding-left: 52px;
}

.uploaded-file__info::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3866_24955)'%3E%3Cpath d='M29.0984 2.11172V26.6117H2.89844V7.41172L9.79844 0.511719H27.5484C28.3984 0.511719 29.0984 1.26172 29.0984 2.11172Z' fill='%23EFF2F3'/%3E%3Cpath d='M8.35313 7.41172H2.95312L9.80313 0.511719L9.75313 5.91172C9.80313 6.76172 9.15313 7.41172 8.35313 7.41172Z' fill='%23DADEDE'/%3E%3Cpath d='M18.5516 14.5125C17.1016 13.1125 16.0516 11.5125 16.0516 11.5125C16.4516 10.9125 17.4016 7.46253 15.9516 6.46253C14.5016 5.46253 13.7516 7.31253 13.7516 7.31253C13.1016 9.61253 14.6516 11.7125 14.6516 11.7125L12.9016 15.5625C12.7016 15.5625 7.15156 17.7125 9.05156 20.3625C11.0016 23.0125 13.7016 16.6125 13.7016 16.6125C14.7516 16.2625 17.9516 15.8125 17.9516 15.8125C19.2016 17.5125 20.7016 18.0625 20.7016 18.0625C23.0016 18.6625 23.2516 16.7625 23.2516 16.7625C23.3016 14.2625 18.5516 14.5125 18.5516 14.5125ZM10.0016 19.4625C9.95156 19.4625 9.95156 19.4125 9.95156 19.4125C9.65156 18.7125 11.9516 17.3625 11.9516 17.3625C11.9516 17.3625 10.7016 19.7625 10.0016 19.4625ZM15.2016 7.36253C15.8516 7.96253 15.3016 10.0125 15.3016 10.0125C15.3016 10.0125 14.5516 7.96253 15.2016 7.36253ZM14.6016 15.1125L15.5016 12.9125L16.9016 14.6125L14.6016 15.1125ZM22.0016 16.7125C21.6016 17.3625 19.9516 15.9625 19.8016 15.8125C20.0516 15.8125 22.2016 15.9625 22.0016 16.7125ZM29.1016 25.0125V30.9125C29.1016 31.7625 28.4016 32.5125 27.5016 32.5125H4.45156C3.60156 32.5125 2.85156 31.8125 2.85156 30.9125V25.0125H29.1016Z' fill='%23F2786B'/%3E%3Cpath d='M13.9516 27.6109C13.9516 28.0109 13.8016 28.3109 13.5516 28.5609C13.3016 28.7609 12.9016 28.8609 12.4016 28.8609H12.0016V30.3109H11.3516V26.4609H12.5016C13.0016 26.4609 13.3516 26.5609 13.6016 26.7609C13.8516 26.9609 13.9516 27.2109 13.9516 27.6109ZM12.0516 28.3609H12.4016C12.7016 28.3609 12.9516 28.3109 13.1016 28.2109C13.2516 28.1109 13.3516 27.9109 13.3516 27.6609C13.3516 27.4609 13.3016 27.2609 13.1516 27.1609C13.0016 27.0609 12.8016 27.0109 12.5016 27.0109H12.0516V28.3609ZM17.9016 28.3609C17.9016 29.0109 17.7016 29.5109 17.3516 29.8109C17.0016 30.1609 16.5016 30.3109 15.8016 30.3109H14.7016V26.4609H15.9016C16.5016 26.4609 17.0016 26.6109 17.3516 26.9609C17.7016 27.2609 17.9016 27.7609 17.9016 28.3609ZM17.2016 28.3609C17.2016 27.4109 16.7516 26.9609 15.9016 26.9609H15.3516V29.7609H15.8016C16.7516 29.8109 17.2016 29.3109 17.2016 28.3609ZM19.3516 30.3109H18.7016V26.4609H20.9016V27.0109H19.3516V28.2109H20.8016V28.7609H19.3516V30.3109Z' fill='%23EFF2F3'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3866_24955'%3E%3Crect width='32' height='32' fill='white' transform='translate(0 0.511719)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.uploaded-file__info.jpg::before {
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_5342_120813)'%3E%3Cpath d='M19.8858 0.5H6.18182C5.60316 0.5 5.04821 0.728879 4.63904 1.13629C4.22987 1.54369 4 2.09625 4 2.67241V29.8276C4 30.4037 4.22987 30.9563 4.63904 31.3637C5.04821 31.7711 5.60316 32 6.18182 32H25.8182C26.3968 32 26.9518 31.7711 27.361 31.3637C27.7701 30.9563 28 30.4037 28 29.8276V8.57921L19.8858 0.5Z' fill='%23EDEDED'/%3E%3Cpath d='M27.8382 8.55689L19.9431 0.661763C19.8658 0.584519 19.7674 0.531918 19.6602 0.51061C19.5531 0.489301 19.442 0.500243 19.3411 0.54205C19.2401 0.583857 19.1539 0.654653 19.0931 0.745488C19.0324 0.836324 19 0.94312 19 1.05238V7.29003C19 7.87615 19.2328 8.43826 19.6473 8.85271C20.0617 9.26716 20.6239 9.5 21.21 9.5H27.4476C27.5569 9.49998 27.6637 9.46756 27.7545 9.40685C27.8453 9.34614 27.9161 9.25986 27.958 9.15892C27.9998 9.05798 28.0107 8.94691 27.9894 8.83975C27.9681 8.7326 27.9155 8.63416 27.8382 8.55689Z' fill='%23C6C6C6'/%3E%3Cpath d='M27.413 22.8306H14.9598L13.6554 21.3647C13.5534 21.2502 13.4277 21.1584 13.2866 21.0955C13.1455 21.0326 12.9924 21 12.8375 21H4.58696C4.29868 21 4.02221 21.1125 3.81836 21.3128C3.61452 21.5131 3.5 21.7848 3.5 22.068V29.8299C3.50086 30.5378 3.78744 31.2165 4.29686 31.717C4.80628 32.2176 5.49696 32.4992 6.21739 32.5H25.7826C26.503 32.4992 27.1937 32.2176 27.7031 31.717C28.2126 31.2165 28.4991 30.5378 28.5 29.8299V23.8986C28.5 23.6154 28.3855 23.3437 28.1816 23.1434C27.9778 22.9431 27.7013 22.8306 27.413 22.8306Z' fill='%23B50617'/%3E%3Cpath d='M17.3093 10.5949L15.4981 13.0002C15.4418 13.0748 15.3669 13.1338 15.2808 13.1711C15.1946 13.2085 15.1002 13.2232 15.0066 13.2135C14.9131 13.2039 14.8236 13.1705 14.747 13.1164C14.6705 13.0623 14.6094 12.9894 14.5697 12.9049L11.7198 6.81214C11.6748 6.71576 11.6019 6.63475 11.5105 6.57928C11.4191 6.52381 11.3131 6.49636 11.206 6.50039C11.0988 6.50442 10.9953 6.53974 10.9084 6.60192C10.8215 6.6641 10.755 6.75035 10.7175 6.84983L7.53438 15.2731C7.50366 15.3545 7.4933 15.4422 7.50421 15.5284C7.51512 15.6147 7.54696 15.6971 7.59702 15.7686C7.64707 15.84 7.71385 15.8984 7.79164 15.9387C7.86943 15.979 7.95591 16 8.0437 16H21.4567C21.5593 16 21.6598 15.9711 21.7466 15.9169C21.8334 15.8626 21.9029 15.7851 21.9471 15.6934C21.9912 15.6016 22.0083 15.4993 21.9962 15.3984C21.9842 15.2974 21.9436 15.2019 21.879 15.1228L18.1676 10.5782C18.1155 10.5144 18.0494 10.4632 17.9743 10.4286C17.8992 10.394 17.8171 10.3769 17.7343 10.3785C17.6515 10.3801 17.5702 10.4004 17.4965 10.4379C17.4228 10.4754 17.3588 10.5291 17.3093 10.5949Z' fill='%23C6C6C6'/%3E%3Cpath d='M15.25 9.5C15.9404 9.5 16.5 8.82843 16.5 8C16.5 7.17157 15.9404 6.5 15.25 6.5C14.5596 6.5 14 7.17157 14 8C14 8.82843 14.5596 9.5 15.25 9.5Z' fill='%23C6C6C6'/%3E%3Cpath d='M9.71789 29.9954C9.4687 30.005 9.22208 29.9418 9.008 29.8133C8.80342 29.6734 8.63036 29.4919 8.5 29.2806L9.23649 28.7322C9.28803 28.8262 9.35012 28.914 9.42156 28.9939C9.45934 29.0319 9.50482 29.0613 9.55492 29.0801C9.60502 29.0989 9.65857 29.1067 9.71192 29.1029C9.76556 29.105 9.81832 29.0889 9.86171 29.0571C9.90037 29.0265 9.93141 28.9873 9.95235 28.9426C9.9748 28.8954 9.99016 28.845 9.99794 28.7932C10.0066 28.7425 10.0109 28.691 10.011 28.6395V25.0685H11.047V28.5888C11.0616 28.7805 11.0373 28.9733 10.9757 29.1553C10.914 29.3374 10.8162 29.505 10.6883 29.6481C10.5578 29.7681 10.4047 29.8607 10.2381 29.9203C10.0714 29.98 9.89453 30.0055 9.71789 29.9954ZM13.6695 28.0256H12.9287V29.9338H11.8932V25.0685H13.6766C13.9071 25.0665 14.1369 25.0931 14.361 25.1476C14.5591 25.1939 14.7457 25.2805 14.9091 25.4022C15.0673 25.5233 15.1933 25.6817 15.276 25.8634C15.3702 26.0811 15.4156 26.3169 15.409 26.5542C15.4218 26.7606 15.3869 26.9672 15.307 27.1578C15.227 27.3484 15.1042 27.5178 14.9482 27.6527C14.5784 27.9233 14.126 28.0553 13.6695 28.0256ZM13.5897 25.9583H12.9287V27.1359H13.5897C13.6893 27.1364 13.7888 27.1289 13.8871 27.1135C13.9743 27.101 14.0585 27.073 14.1357 27.0306C14.2078 26.9897 14.2676 26.93 14.3089 26.8578C14.3562 26.7684 14.3789 26.6679 14.3745 26.5667C14.378 26.4674 14.3623 26.3684 14.3284 26.275C14.3017 26.2057 14.2567 26.145 14.1981 26.0995C14.0151 25.9894 13.8023 25.94 13.5897 25.9583ZM15.9767 25.0685H19.2265V25.9583H17.0122V26.9532H18.6274V27.8424L17.0122 27.8495V29.0489H19.3047V29.9381H15.9767V25.0685ZM22.6978 29.5565C22.5505 29.7073 22.3729 29.825 22.1768 29.9016C21.9779 29.9703 21.7684 30.0033 21.5581 29.9992C21.2468 30.0083 20.938 29.94 20.6593 29.8002C20.4186 29.6726 20.2112 29.49 20.0537 29.267C19.8928 29.0343 19.7769 28.7734 19.7117 28.4977C19.639 28.2013 19.6025 27.897 19.6032 27.5916C19.6024 27.2604 19.6388 26.9301 19.7117 26.607C19.7755 26.3126 19.8941 26.0329 20.0613 25.7827C20.2254 25.5428 20.4459 25.3473 20.7033 25.2135C21.0069 25.0638 21.3422 24.9908 21.6802 25.0009C22.0405 24.9998 22.3942 25.098 22.7027 25.285C22.8666 25.3867 23.0083 25.5206 23.1195 25.6786C23.2528 25.8744 23.3559 26.0893 23.4256 26.3159L22.4618 26.5711C22.3838 26.3815 22.268 26.2101 22.1215 26.0673C21.9595 25.9404 21.7564 25.8784 21.5516 25.8934C21.4642 25.8891 21.3769 25.9024 21.2947 25.9324C21.2125 25.9625 21.1371 26.0087 21.0729 26.0684C20.9502 26.1902 20.8557 26.3376 20.7961 26.5002C20.7301 26.6755 20.6874 26.8588 20.6691 27.0454C20.6509 27.2129 20.6411 27.3812 20.6398 27.5497C20.641 27.7162 20.653 27.8825 20.6756 28.0474C20.6983 28.2234 20.7447 28.3954 20.8135 28.5588C20.8773 28.7118 20.9762 28.8474 21.1022 28.9546C21.2385 29.0643 21.4097 29.1205 21.5842 29.1127C21.7047 29.1178 21.825 29.0974 21.9372 29.0528C22.0494 29.0082 22.151 28.9404 22.2354 28.8538C22.3789 28.7067 22.4665 28.5138 22.4829 28.3086H21.5907V27.4177H23.5V29.9381H22.6978V29.5565Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_5342_120813'%3E%3Crect width='32' height='32' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

html[dir='rtl'] .uploaded-file__info::before {
  right: 0;
}

html[dir='ltr'] .uploaded-file__info::before {
  left: 0;
}

.uploaded-file__name {
  color: #797979;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}

.uploaded-file__size {
  color: #989fb2;
  font-size: 0.625rem;
  margin-bottom: 0;
}

.uploaded-file__action-btn {
  background: transparent;
  border: 0;
  transition: all 0.25s ease-in-out;
}

.uploaded-file__action-btn:hover {
  opacity: 0.9;
}

.uploaded-file__action-btn::after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 2.25H3C2.17157 2.25 1.5 2.92157 1.5 3.75V4.5C1.5 5.32843 2.17157 6 3 6H21C21.8284 6 22.5 5.32843 22.5 4.5V3.75C22.5 2.92157 21.8284 2.25 21 2.25Z' fill='%23FF375E'/%3E%3Cpath d='M3.4864 7.50001C3.4337 7.49972 3.38154 7.51055 3.3333 7.53178C3.28507 7.55301 3.24185 7.58416 3.20647 7.62322C3.17109 7.66227 3.14433 7.70834 3.12795 7.75843C3.11157 7.80852 3.10593 7.8615 3.1114 7.91391L4.34468 19.7527C4.34443 19.7561 4.34443 19.7595 4.34468 19.763C4.40912 20.3105 4.67237 20.8154 5.08446 21.1817C5.49655 21.548 6.0288 21.7502 6.58015 21.75H17.4125C17.9637 21.75 18.4957 21.5477 18.9076 21.1814C19.3195 20.8151 19.5826 20.3104 19.647 19.763V19.7531L20.8784 7.91391C20.8839 7.8615 20.8783 7.80852 20.8619 7.75843C20.8455 7.70834 20.8187 7.66227 20.7834 7.62322C20.748 7.58416 20.7048 7.55301 20.6565 7.53178C20.6083 7.51055 20.5561 7.49972 20.5034 7.50001H3.4864ZM15.1517 15.9698C15.223 16.0391 15.2798 16.1219 15.3189 16.2133C15.3579 16.3048 15.3783 16.403 15.3791 16.5024C15.3798 16.6019 15.3607 16.7004 15.323 16.7924C15.2852 16.8844 15.2296 16.9679 15.1593 17.0382C15.089 17.1085 15.0054 17.1641 14.9134 17.2018C14.8214 17.2395 14.7228 17.2585 14.6234 17.2577C14.524 17.257 14.4257 17.2365 14.3343 17.1974C14.2429 17.1583 14.1602 17.1015 14.0909 17.0302L11.9966 14.9358L9.90171 17.0302C9.76041 17.1675 9.57076 17.2436 9.37375 17.2422C9.17675 17.2408 8.9882 17.162 8.84886 17.0227C8.70952 16.8834 8.63057 16.6949 8.62909 16.4979C8.62761 16.3009 8.7037 16.1112 8.84093 15.9698L10.9358 13.875L8.84093 11.7802C8.7037 11.6388 8.62761 11.4491 8.62909 11.2521C8.63057 11.0551 8.70952 10.8666 8.84886 10.7273C8.9882 10.588 9.17675 10.5092 9.37375 10.5078C9.57076 10.5064 9.76041 10.5826 9.90171 10.7198L11.9966 12.8142L14.0909 10.7198C14.2322 10.5826 14.4219 10.5064 14.6189 10.5078C14.8159 10.5092 15.0044 10.588 15.1438 10.7273C15.2831 10.8666 15.3621 11.0551 15.3636 11.2521C15.365 11.4491 15.2889 11.6388 15.1517 11.7802L13.0569 13.875L15.1517 15.9698Z' fill='%23FF375E'/%3E%3C/svg%3E%0A");
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.uploaded-file__action-btn::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_5267_462044)'%3E%3Cpath d='M9.2818 5.31166e-06H12.7193C12.8548 -0.000285286 12.9891 0.0262127 13.1143 0.0779762C13.2396 0.12974 13.3534 0.205748 13.4492 0.301632C13.5449 0.397515 13.6208 0.511384 13.6725 0.636693C13.7241 0.762001 13.7504 0.896278 13.75 1.03181V8.25001H17.5186C17.6884 8.25002 17.8543 8.30039 17.9954 8.39474C18.1365 8.48909 18.2465 8.62318 18.3114 8.78004C18.3762 8.93689 18.3931 9.10947 18.3599 9.27594C18.3267 9.4424 18.2448 9.59527 18.1247 9.71521L11.5896 16.2547C11.4337 16.4093 11.2229 16.4961 11.0033 16.4961C10.7837 16.4961 10.573 16.4093 10.417 16.2547L3.872 9.71521C3.75194 9.59534 3.67011 9.44257 3.63685 9.27621C3.60359 9.10985 3.6204 8.93736 3.68515 8.78054C3.7499 8.62373 3.85968 8.48963 4.00063 8.3952C4.14157 8.30077 4.30735 8.25024 4.47701 8.25001H8.25V1.03181C8.24957 0.896185 8.27596 0.761818 8.32766 0.636437C8.37936 0.511057 8.45534 0.397139 8.55124 0.301241C8.64714 0.205342 8.76106 0.129357 8.88644 0.0776587C9.01182 0.0259603 9.14618 -0.000430536 9.2818 5.31166e-06ZM22 16.1568V20.9693C22.0004 21.1048 21.9741 21.2391 21.9225 21.3644C21.8708 21.4897 21.7949 21.6036 21.6992 21.6995C21.6034 21.7954 21.4896 21.8714 21.3643 21.9231C21.2391 21.9749 21.1048 22.0014 20.9693 22.0011H1.03181C0.896185 22.0015 0.761818 21.9752 0.636437 21.9235C0.511057 21.8718 0.397139 21.7958 0.301241 21.6999C0.205342 21.604 0.129357 21.4901 0.0776587 21.3647C0.0259603 21.2393 -0.000430536 21.1049 5.31166e-06 20.9693V16.1568C-0.000285286 16.0213 0.0262127 15.887 0.0779761 15.7618C0.12974 15.6365 0.205748 15.5227 0.301632 15.427C0.397515 15.3312 0.511384 15.2553 0.636693 15.2037C0.762001 15.152 0.896278 15.1257 1.03181 15.1261H7.33481L9.4402 17.2315C9.64464 17.437 9.88769 17.6002 10.1554 17.7115C10.4231 17.8228 10.7101 17.88 11 17.88C11.2899 17.88 11.5769 17.8228 11.8446 17.7115C12.1123 17.6002 12.3554 17.437 12.5598 17.2315L14.6652 15.1261H20.9682C21.1037 15.1257 21.238 15.152 21.3633 15.2037C21.4886 15.2553 21.6025 15.3312 21.6984 15.427C21.7943 15.5227 21.8703 15.6365 21.922 15.7618C21.9738 15.887 22.0003 16.0213 22 16.1568ZM16.6716 19.9386C16.6716 19.7687 16.6212 19.6026 16.5268 19.4613C16.4324 19.32 16.2982 19.2099 16.1413 19.1449C15.9843 19.0799 15.8116 19.0629 15.6449 19.096C15.4783 19.1292 15.3252 19.211 15.205 19.3311C15.0849 19.4513 15.0031 19.6044 14.9699 19.771C14.9368 19.9377 14.9538 20.1104 15.0188 20.2674C15.0838 20.4243 15.1939 20.5585 15.3352 20.6529C15.4765 20.7473 15.6426 20.7977 15.8125 20.7977C16.0403 20.7968 16.2584 20.7059 16.4194 20.5447C16.5804 20.3836 16.671 20.1653 16.6716 19.9375V19.9386ZM19.4216 19.9386C19.4216 19.7687 19.3712 19.6026 19.2768 19.4613C19.1824 19.32 19.0482 19.2099 18.8913 19.1449C18.7343 19.0799 18.5616 19.0629 18.3949 19.096C18.2283 19.1292 18.0752 19.211 17.955 19.3311C17.8349 19.4513 17.7531 19.6044 17.7199 19.771C17.6868 19.9377 17.7038 20.1104 17.7688 20.2674C17.8338 20.4243 17.9439 20.5585 18.0852 20.6529C18.2265 20.7473 18.3926 20.7977 18.5625 20.7977C18.7903 20.7968 19.0085 20.7059 19.1694 20.5447C19.3304 20.3836 19.421 20.1653 19.4216 19.9375V19.9386Z' fill='%23273470'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_5267_462044'%3E%3Crect width='22' height='22' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin: 0 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media (max-width: 991.9px) {
  .video_content {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .video_content {
    padding: 25px 0;
    position: relative;
  }

  .video_content > img {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
  }
}

.main-box {
  background-color: #f4f5f8;
  padding: 1.5rem;
  flex-direction: column;
  position: relative;
  display: flex;
  min-height: 80vh;
}

.main-box.dashboard {
  background-color: #f4f5f8;
}

body.light-mode-active .main-box {
  box-shadow: none;
}

@media (max-width: 767.9px) {
  .main-box {
    min-height: 60vh;
  }
}

@media (max-width: 575.9px) {
  .main-box {
    min-height: 70vh;
    padding-inline: 0.5rem;
  }
}

.main-box__header {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 1.5rem;
}

.main-box__header--with-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767.9px) {
  .main-box__header--with-button {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.main-box__header.no-border {
  border-bottom: 0;
}

.main-box__header .breadcrumb {
  margin: 0;
}

.main-box__header .breadcrumb ul {
  margin-top: 1.875rem;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
}

.main-box__header .breadcrumb ul li a,
.main-box__header .breadcrumb ul li span {
  color: #989fb2;
  font-size: 13px;
  display: block;
}

.main-box__header .breadcrumb ul li a {
  text-decoration: none;
  padding-inline-end: 10px;
  margin-inline-end: 10px;
  position: relative;
  transition: all ease-in-out 0.25s;
}

@media (max-width: 575.9px) {
  .main-box__header .breadcrumb ul li a {
    padding-inline-end: 5px;
    margin-inline-end: 5px;
  }
}

.main-box__header .breadcrumb ul li a:hover {
  color: #575b66;
}

.main-box__header .breadcrumb ul li a::after {
  content: '/';
  color: #989fb2;
  font-size: 13px;
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
}

.main-box__main-title {
  color: var(--dark-blue);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0;
}

@media (max-width: 767.9px) {
  .main-box__main-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.9px) {
  .main-box__main-title {
    font-size: 1rem;
  }

  .button {
    padding: 0.3rem 0.5rem 0.6rem;
    font-size: 0.8rem;
  }
}

.main-box__sub-title {
  color: var(--green);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0.75rem;
}

.main-box__sub-title--gray {
  color: #989fb2;
  font-weight: 500;
}

.main-box.style2 {
  padding: 0;
  min-height: auto;
}

.secondary-box {
  position: relative;
  z-index: 1;
}

.secondary-box__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.secondary-box__head h2 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2.125rem;
  margin-bottom: 0;
}

@media (max-width: 575.9px) {
  .secondary-box__head h2 {
    font-size: 1.5rem;
  }
}

.secondary-box__head h2 + p {
  font-weight: 400;
  color: rgba(42, 52, 108, 0.6);
  margin-bottom: 0;
  text-align: center;
}

.secondary-box__head img {
  padding: 2rem 0rem;
  z-index: 1;
  object-fit: contain;
  max-width: 100%;
}

.secondary-box::before {
  content: '';
  /* background: url('../images/style_images/bg-shapes1.png') no-repeat; */
  max-width: 260px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.3;
  z-index: -1;
}

.secondary-box::after {
  content: '';
  /* background: url('../images/style_images/bg-shapes2.png') no-repeat; */
  max-width: 700px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  opacity: 0.3;
  z-index: -1;
}

.user-profile-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-profile-info .profile__photo {
  margin-bottom: 0;
}

.order-status-model .modal-dialog {
  max-width: 720px;
}

.order-status-model__header {
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid #d9d9d9;
}

.order-status-model__body {
  padding: 1.25rem 1.5rem;
}

.order-status-model .close-model {
  border: 0;
  background: none;
}

.order-status-model .close-model::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.851562 19.5391L19.6325 1.36634' stroke='%23919191' stroke-width='2'/%3E%3Cline y1='-1' x2='25.4821' y2='-1' transform='matrix(0.706885 0.707329 -0.706885 0.707329 0.351562 2.03906)' stroke='%23919191' stroke-width='2'/%3E%3C/svg%3E%0A");
  display: block;
  width: 19px;
  height: 19px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.order-status-model__title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

@media (max-width: 575.9px) {
  .order-status-model__title-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.order-status-model__title-container p {
  color: #898989;
  font-size: 0.75rem;
  margin-bottom: 0;
  margin-top: 10px;
}

.order-status-model__title {
  color: var(--dark-blue);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.order-status-model__reason {
  padding: 1.25rem;
  background: #f6f6f6;
  color: #7f7f7f;
  font-size: 0.875rem;
  margin-bottom: 1.875rem;
}

.steps-form {
  max-width: 1100px;
  margin: auto;
  gap: 10px;
}

.steps-form.login-form {
  max-width: 610px;
}

.steps-form.login-form.style-2 {
  max-width: 475px;
}

.steps-form__steps {
  display: flex;
  counter-reset: stepsCounter;
  margin-bottom: 2rem;
}

.steps-form__steps--small {
  max-width: 600px;
  margin-inline: auto;
}

.steps-form__title {
  color: #989fb2;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.steps-form__steps-item {
  position: relative;
  text-align: center;
  counter-increment: stepsCounter;
  flex-grow: 1;
  color: #949494;
}

.steps-form__steps-item:not(:last-child)::before {
  content: '';
  position: absolute;
  width: 100%;
  top: 30px;
  inset-inline-start: 50%;
  height: 1px;
  border-bottom: 1px dashed #c2c2c2;
}

@media (max-width: 767.9px) {
  .steps-form__steps-item:not(:last-child)::before {
    top: 20px;
  }
}

@media (max-width: 575.9px) {
  .steps-form__steps-item:not(:last-child)::before {
    top: 12px;
  }
}

.steps-form__steps-item.done-state {
  color: var(--green);
}

.steps-form__steps-item.done-state::before {
  border-color: var(--green);
  border-style: solid;
  background-color: var(--green);
}

.steps-form__steps-item.done-state .steps-form__steps-number {
  background-color: var(--green);
  color: #fff;
  border-color: transparent;
}

.steps-form__steps-item.done-state .steps-form__steps-number:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.293' height='7.699' viewBox='0 0 10.293 7.699'%3E%3Cpath id='Path_18101' data-name='Path 18101' d='M193.7-15342.209a.516.516,0,0,1-.364-.15l-3.356-3.356a.521.521,0,0,1,0-.732l.732-.729a.518.518,0,0,1,.366-.15.513.513,0,0,1,.362.15l2.262,2.263,4.84-4.844a.51.51,0,0,1,.364-.15.51.51,0,0,1,.364.15l.535.535a5.731,5.731,0,0,1,.317.735.5.5,0,0,1-.12.189l-5.938,5.938A.516.516,0,0,1,193.7-15342.209Z' transform='translate(-189.827 15349.908)' fill='%23fff'/%3E%3C/svg%3E%0A");
  display: inline-flex;
  position: absolute;
  top: -8px;
  inset-inline-start: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--green);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
  align-items: center;
  justify-content: center;
  line-height: 0;
}

@media (max-width: 575.9px) {
  .steps-form__steps-item.done-state .steps-form__steps-number:after {
    inset-inline-start: unset;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.steps-form__steps-item.current-state {
  color: var(--dark-blue);
}

.steps-form__steps-item.current-state:not(:last-child):after {
  display: inline-block;
  position: absolute;
  width: 14px;
  height: 15px;
  inset-inline-end: -8px;
  top: 23px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.229' height='16.329' viewBox='0 0 14.229 16.329'%3E%3Cpath id='Path_18050' data-name='Path 18050' d='M14.229,47.919V64.248L0,56.084Z' transform='translate(0 -47.919)' fill='%23263570'/%3E%3C/svg%3E%0A")
    center center no-repeat;
  background-size: contain;
}

html[dir='ltr'] .steps-form__steps-item.current-state:not(:last-child):after {
  transform: rotate(180deg);
}

@media (max-width: 767.9px) {
  .steps-form__steps-item.current-state:not(:last-child):after {
    width: 8px;
    height: 9px;
    top: 16px;
    inset-inline-end: -4px;
  }
}

@media (max-width: 575.9px) {
  .steps-form__steps-item.current-state:not(:last-child):after {
    width: 6px;
    top: 8px;
    inset-inline-end: -3px;
  }
}

.steps-form__steps-item.current-state .steps-form__steps-number {
  background-color: var(--dark-blue);
  color: #fff;
  border-color: transparent;
}

.steps-form__steps-number {
  display: inline-flex;
  width: 60px;
  height: 60px;
  border: 1px dashed #c2c2c2;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
  z-index: 1;
  color: #c2c2c2;
}

.steps-form__steps-number:before {
  content: counter(stepsCounter);
  font-size: 1.5rem;
  font-weight: 500;
}

@media (max-width: 767.9px) {
  .steps-form__steps-number {
    width: 40px;
    height: 40px;
  }

  .steps-form__steps-number:before {
    font-size: 1rem;
  }
}

@media (max-width: 575.9px) {
  .steps-form__steps-number {
    width: 25px;
    height: 25px;
    border-radius: 50%;
  }

  .steps-form__steps-number:before {
    content: none;
  }
}

.steps-form__steps-name {
  margin-bottom: 0;
  width: 170px;
  margin-top: 0.75rem;
  font-size: 1.125rem;
  margin-inline: auto;
}

@media (max-width: 1199.9px) {
  .steps-form__steps-name {
    font-size: 0.875rem;
  }
}

@media (max-width: 991.9px) {
  .steps-form__steps-name {
    display: none;
  }
}

.steps-form__step-content {
  padding: 3rem;
  padding-bottom: 2rem;
  background-color: #f9f9f9;
}

@media (max-width: 991.9px) {
  .steps-form__step-content {
    padding: 2rem;
  }
}

@media (max-width: 767.9px) {
  .steps-form__step-content {
    padding: 1rem;
  }
}

.steps-form__attachments {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 767.9px) {
  .steps-form__attachments {
    display: block;
  }
}

.steps-form__attachments:not(.without-border) {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

.steps-form__attachments.single-file .steps-form__attachments__list {
  grid-template-columns: repeat(1, 1fr);
}

/* .steps-form__attachments__content {
display: flex;
align-items: flex-start;
flex-grow: 1;
gap: 1rem;
} */

/* .steps-form__attachments__content__updated {
display: inline-block;
align-items: flex-start;
flex-grow: 1;
gap: 1rem;
cursor: pointer;
} */

/* .step-form__attachments__content__delete {
display: inline;
vertical-align: super;
} */

@media (max-width: 767.9px) {
  .steps-form__attachments__content {
    margin-top: 1rem;
    flex-direction: column;
  }
}

.steps-form__attachments__title {
  padding-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
}

@media (max-width: 767.9px) {
  .steps-form__attachments__title {
    padding-top: 0;
  }
}

.steps-form__attachments__info {
  color: var(--orange);
  margin: 0;
  font-size: 0.875rem;
  padding-top: 0.75rem;
}

.steps-form__attachments__info svg {
  margin-inline-end: 0.5rem;
}

.steps-form__attachments__warning {
  padding-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--red);
}

.steps-form__attachments__list {
  display: grid;
  grid-gap: 0.25rem;
  flex-grow: 1;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1199.9px) {
  .steps-form__attachments__list {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}

@media (max-width: 991.9px) {
  .steps-form__attachments__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.steps-form__attachments__item,
.steps-form__attachments__item__updated {
  display: flex;
  background-color: #f7f7fb;
  align-items: center;
  overflow: hidden;
  padding: 0.5rem 1rem;
  gap: 1rem;
}

.steps-form__attachments__item.style2 {
  display: inline-flex;
  width: auto;
}

.steps-form__attachments__item__updated.style2 {
  display: inline-flex;
  width: auto;
}

/* .steps-form__attachments__item:before {
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.486' height='21.5' viewBox='0 0 19.486 21.5'%3E%3Cpath id='Path_18178' data-name='Path 18178' d='M18599.881,8098.587a6.228,6.228,0,0,1,0-8.812l9.453-9.453a4.809,4.809,0,0,1,6.8,6.8l-7.959,7.958a3.382,3.382,0,0,1-4.779-4.785l6.738-6.742a.5.5,0,0,1,.709,0l.711.715a.493.493,0,0,1,0,.71l-6.738,6.743a1.367,1.367,0,0,0,1.936,1.93l7.957-7.958a2.792,2.792,0,1,0-3.949-3.948l-9.447,9.453a4.218,4.218,0,0,0,5.967,5.962q4.113-4.114,8.229-8.233a.5.5,0,0,1,.711,0l.715.71a.509.509,0,0,1,0,.715q-4.116,4.114-8.225,8.229a6.238,6.238,0,0,1-8.826,0Z' transform='translate(-18598.055 -8078.916)' fill='%231d242d'/%3E%3C/svg%3E%0A");
display: block;
line-height: 0;
}

.steps-form__attachments__item__updated:before {
content: url("data:image/svg+xml,%3Csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1672_14947)'%3E%3Cpath d='M29.1004 2.1V26.6H2.90039V7.4L9.80039 0.5H27.5504C28.4004 0.5 29.1004 1.25 29.1004 2.1Z' fill='%23EFF2F3'/%3E%3Cpath d='M8.34922 7.4H2.94922L9.79922 0.5L9.74922 5.9C9.79922 6.75 9.14922 7.4 8.34922 7.4Z' fill='%23DADEDE'/%3E%3Cpath d='M18.5496 14.4998C17.0996 13.0998 16.0496 11.4998 16.0496 11.4998C16.4496 10.8998 17.3996 7.44983 15.9496 6.44983C14.4996 5.44983 13.7496 7.29983 13.7496 7.29983C13.0996 9.59983 14.6496 11.6998 14.6496 11.6998L12.8996 15.5498C12.6996 15.5498 7.14961 17.6998 9.04961 20.3498C10.9996 22.9998 13.6996 16.5998 13.6996 16.5998C14.7496 16.2498 17.9496 15.7998 17.9496 15.7998C19.1996 17.4998 20.6996 18.0498 20.6996 18.0498C22.9996 18.6498 23.2496 16.7498 23.2496 16.7498C23.2996 14.2498 18.5496 14.4998 18.5496 14.4998ZM9.99961 19.4498C9.94961 19.4498 9.94961 19.3998 9.94961 19.3998C9.64961 18.6998 11.9496 17.3498 11.9496 17.3498C11.9496 17.3498 10.6996 19.7498 9.99961 19.4498ZM15.1996 7.34983C15.8496 7.94983 15.2996 9.99983 15.2996 9.99983C15.2996 9.99983 14.5496 7.94983 15.1996 7.34983ZM14.5996 15.0998L15.4996 12.8998L16.8996 14.5998L14.5996 15.0998ZM21.9996 16.6998C21.5996 17.3498 19.9496 15.9498 19.7996 15.7998C20.0496 15.7998 22.1996 15.9498 21.9996 16.6998ZM29.0996 24.9998V30.8998C29.0996 31.7498 28.3996 32.4998 27.4996 32.4998H4.44961C3.59961 32.4998 2.84961 31.7998 2.84961 30.8998V24.9998H29.0996Z' fill='%23F2786B'/%3E%3Cpath d='M13.9496 27.6002C13.9496 28.0002 13.7996 28.3002 13.5496 28.5502C13.2996 28.7502 12.8996 28.8502 12.3996 28.8502H11.9996V30.3002H11.3496V26.4502H12.4996C12.9996 26.4502 13.3496 26.5502 13.5996 26.7502C13.8496 26.9502 13.9496 27.2002 13.9496 27.6002ZM12.0496 28.3502H12.3996C12.6996 28.3502 12.9496 28.3002 13.0996 28.2002C13.2496 28.1002 13.3496 27.9002 13.3496 27.6502C13.3496 27.4502 13.2996 27.2502 13.1496 27.1502C12.9996 27.0502 12.7996 27.0002 12.4996 27.0002H12.0496V28.3502ZM17.8996 28.3502C17.8996 29.0002 17.6996 29.5002 17.3496 29.8002C16.9996 30.1502 16.4996 30.3002 15.7996 30.3002H14.6996V26.4502H15.8996C16.4996 26.4502 16.9996 26.6002 17.3496 26.9502C17.6996 27.2502 17.8996 27.7502 17.8996 28.3502ZM17.1996 28.3502C17.1996 27.4002 16.7496 26.9502 15.8996 26.9502H15.3496V29.7502H15.7996C16.7496 29.8002 17.1996 29.3002 17.1996 28.3502ZM19.3496 30.3002H18.6996V26.4502H20.8996V27.0002H19.3496V28.2002H20.7996V28.7502H19.3496V30.3002Z' fill='%23EFF2F3'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1672_14947'%3E%3Crect width='32' height='32' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
display: block;
line-height: 0;
} */

.steps-form__attachments__item,
.steps-form__attachments__item__updated .attach-name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #263570;
  white-space: nowrap;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 20vw;
  direction: ltr;
}

.steps-form__attachments__item,
.steps-form__attachments__item__updated .attach-delete {
  margin-inline-start: auto;
  display: block;
  line-height: 0;
  transition: transform 0.25s ease-in-out;
}

.steps-form__attachments__item,
.steps-form__attachments__item__updated .attach-delete:hover {
  transform: scale(1.1);
}

.steps-form__step-warning {
  background: #fffce3;
  margin: 0;
  padding: 15px 20px;
  color: #393408;
  font-size: 0.875rem;
  display: flex;
  gap: 0.75rem;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}

.form-warning {
  background: #f79e001a;
  padding: 1.5rem 1.25rem;
  color: #eca320;
  font-size: 14px;
  display: flex;
  margin: 0;
  font-size: 0.875rem;
  gap: 0.75rem;
}

.steps-form__step-warning .icon,
.steps-form__step-warning svg {
  margin-inline-end: 0.5rem;
  flex: 0 0 22px;
  width: 22px;
}

.steps-form__step-warning.step-error {
  background: rgba(255, 55, 94, 0.1);
  color: #ff375e;
  border-bottom: 3px solid #f16739;
}

.steps-form__step-warning.step-warning-style2 {
  margin-bottom: 1rem;
  background: rgba(252, 189, 76, 0.2);
  border-radius: 5px;
  color: #d9a342;
  font-size: 1rem;
  align-items: center;
}

.steps-form__step-warning.step-warning-style-3 {
  background: #fff9f9;
  border: 1px solid #dbdbdb;
  border-radius: 6px;
  max-width: 815px;
  font-size: 0.75rem;
  margin: 0 auto;
}

.steps-form__step-warning.gray-box {
  background: rgba(168, 164, 165, 0.21);
  color: #989fb2;
}

.steps-form__step-warning.gray-box.number-container {
  padding: 8px 12px;
  color: #989fb2;
}

.eligibility-questions {
  position: relative;
}

.eligibility-questions__progress {
  position: absolute;
  top: 3rem;
  inset-inline-end: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 3px solid transparent;
  background-color: #f79e00;
  background-clip: content-box;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  line-height: 0;
  font-size: 1.125rem;
  font-weight: 500;
}

@media (max-width: 991.9px) {
  .eligibility-questions__progress {
    width: 40px;
    height: 40px;
    border-width: 2px;
    font-size: 1rem;
    top: 0.5rem;
    inset-inline-end: 0.5rem;
    font-weight: 600;
  }
}

@media (max-width: 575.9px) {
  .eligibility-questions__progress {
    top: -20px;
    inset-inline-end: -10px;
  }
}

.eligibility-questions__progress span {
  position: relative;
  letter-spacing: 1px;
  transform: translateY(-3px);
}

.eligibility-questions__progress svg {
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  top: -3px;
  right: -3px;
}

.eligibility-questions__title {
  color: var(--dark-blue);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .eligibility-questions__title {
    padding-inline: 4rem;
  }
}

@media (max-width: 991.9px) {
  .eligibility-questions__title {
    padding-inline: 2rem;
  }
}

@media (max-width: 767.9px) {
  .eligibility-questions__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 575.9px) {
  .eligibility-questions__title {
    padding-inline: 1rem;
    margin-bottom: 1rem;
  }
}

.eligibility-questions__form {
  display: flex;
  justify-content: center;
  gap: 4rem;
  font-size: 1.125rem;
  color: var(--dark-blue);
}

@media (max-width: 991.9px) {
  .eligibility-questions__form {
    gap: 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 767.9px) {
  .eligibility-questions__form {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 575.9px) {
  .eligibility-questions__form {
    gap: 0.5rem;
  }
}

.eligibility-questions__form.style2 {
  gap: 1.25rem;
}

.eligibility-questions__form.style2 .button-lg {
  min-width: 200px;
}

.certificate {
  position: relative;
  min-height: 400px;
}

@media (min-width: 992px) {
  .certificate {
    padding-inline: 240px;
  }
}

.certificate__badge {
  width: 150px;
  height: auto;
  position: absolute;
  top: 3rem;
  inset-inline-end: 3rem;
}

@media (max-width: 991.9px) {
  .certificate__badge {
    width: 120px;
    margin-inline: auto;
    display: block;
    position: static;
    margin-bottom: 1rem;
  }
}

.certificate__qr-code {
  position: absolute;
  top: 0%;
  inset-inline-start: -13rem;
  background-color: #ececec;
  padding: 25px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: var(--dark-blue);
  gap: 0.25rem;
}

@media (max-width: 991.9px) {
  .certificate__qr-code {
    position: static;
    margin-top: 4rem;
  }
}

.certificate__title {
  color: var(--light-blue);
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 767.9px) {
  .certificate__title {
    font-size: 2.5rem;
  }
}

.certificate__data-wrapper {
  max-width: 520px;
  margin-inline: auto;
  position: relative;
}

@media (max-width: 991.9px) {
  .certificate__data-wrapper {
    max-width: unset;
  }
}

.certificate__main-data {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

@media (max-width: 575.9px) {
  .certificate__main-data {
    flex-direction: column;
    text-align: center;
  }
}

.certificate__main-data__logo {
  width: 100px;
  height: 100px;
  flex: 100px 0 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate__main-data__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.certificate__main-data__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
}

@media (max-width: 767.9px) {
  .certificate__main-data__name {
    font-size: 1.125rem;
  }
}

.certificate__main-data__name span:first-child {
  white-space: nowrap;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}

.certificate__data-box {
  background-color: #ececec;
  padding: 0.75rem 1rem 0.875rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  white-space: nowrap;
  border-radius: 3px;
}

@media (max-width: 767.9px) {
  .certificate__data-box {
    font-size: 1rem;
    padding: 0.5rem 0.5rem 0.75rem;
    white-space: unset;
  }
}

.certificate__data-box span:first-child {
  color: var(--dark-blue);
}

.certificate__data-box span:last-child {
  color: #2e2e2e;
  display: inline-block;
  margin-inline-start: 1rem;
}

.certificate__download {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  justify-content: center;
}

@media (max-width: 575.9px) {
  .certificate__download {
    flex-direction: column;
  }
}

.steps-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps-payment__value {
  background-image: linear-gradient(var(--dark-blue), var(--green));
  color: #fff;
  text-align: center;
  padding: 1.25rem 3rem 1rem;
  border-radius: 3px;
  margin-bottom: 1.75rem;
}

.steps-payment__value h5 {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.steps-payment__value p {
  margin-bottom: 0;
}

.steps-payment__value p strong {
  font-size: 3rem;
}

.steps-payment__value p small {
  font-size: 1.25rem;
}

.steps-payment__info {
  display: flex;
  align-items: center;
  margin-top: 40px;
  justify-content: center;
}

@media (max-width: 575.9px) {
  .steps-payment__info {
    flex-wrap: wrap;
  }

  .steps-payment__info img {
    min-width: 200px;
    margin-top: 0.875rem;
  }
}

.steps-payment__info svg {
  margin-inline-end: 0.75rem;
}

.steps-payment__info p {
  max-width: 260px;
  color: #515151;
  margin: 0;
  margin-inline-end: 0.75rem;
}

@media (max-width: 575.9px) {
  .steps-payment__info p {
    margin-inline-end: 0.75rem;
  }
}

.steps-payment__info p .danger-txt {
  color: #ff375e;
}

.steps-success {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps-success > svg {
  width: 70px;
  height: 70px;
}

.steps-success__title {
  color: var(--green);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 575.9px) {
  .steps-success__title {
    font-size: 1.5rem;
  }
}

.steps-success__title.style2 {
  color: var(--danger);
}

.steps-success__description {
  color: #989fb2;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.info-box-with-copy {
  display: inline-flex;
  background-color: #f1f1f1;
  border-radius: 5px;
}

@media (max-width: 575.9px) {
  .info-box-with-copy {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.info-box-with-copy p {
  display: flex;
  gap: 1rem;
  margin-bottom: 0;
  align-items: center;
  padding: 0.25rem 1rem;
  padding-inline-end: 3rem;
  color: #515151;
}

.info-box-with-copy p span {
  color: var(--dark-blue);
  font-size: 1.125rem;
}

@media (max-width: 575.9px) {
  .info-box-with-copy p span {
    font-size: 1rem;
  }
}

@media (max-width: 575.9px) {
  .info-box-with-copy p {
    padding-inline-end: 0.875rem;
    font-size: 0.875rem;
    flex-direction: column;
  }
}

.info-box-with-copy a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 35px;
  text-decoration: none;
  color: var(--dark-blue);
  background-color: var(--white);
  height: 35px;
  border-radius: 5px;
  transition: background-color 0.25s ease-in-out;
}

.info-box-with-copy a.copy-container {
  flex-direction: row;
  justify-content: space-between;
  width: 68px;
  height: 32px;
  margin: 8px;
  padding: 8px 10px;
}

.info-box-with-copy.copy-container {
  border-radius: 0;
  padding: 6px 10px;
}

.info-box-with-copy a span {
  font-size: 0.625rem;
  display: block;
  line-height: 1;
}

.info-box-with-copy a:hover {
  background-color: #e0e0e0;
}

.question-tooltip {
  background: none;
  padding: 0;
  border: 0;
  position: relative;
  display: inline-block;
  margin-inline-start: 0.2rem;
  margin-inline-end: 0.2rem;
  width: 1.5rem;
}

.question-tooltip:hover .tooltip-inner {
  visibility: visible;
}

.sidebar-item-content .tooltip-inner {
  visibility: visible;
}

.sidebar-list-items {
  display: none;
}

.sidebar-item:hover .sidebar-list-items {
  display: block;
}

.tooltip-inner {
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 1.375rem 1rem;
  font-family: 'HelveticaNeueLTArabic', 'sans-serif';
  text-align: start;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0%;
  width: 200px;
  margin-left: -100px;
  color: var(--dark-blue);
  background-color: #eaf0ff;
  max-width: 80vw;
}

.tooltip-inner h5 {
  color: #828282;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tooltip-inner p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: #2d2d2d;
  text-align: justify;
}

html[dir='ltr'] .tooltip-inner p {
  text-align: left;
}

html[dir='ltr'] .tooltip-inner {
  text-align: right;
}

.question-tooltip .tooltip-inner::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}

/* .table {
vertical-align: middle;
color: var(--text-base-color);
}

.table.table-striped {
--bs-table-striped-bg: #f8f8f8;
}

.table th {
background-color: var(--dark-blue);
color: #fff;
white-space: nowrap;
}

.table th,
.table td {
padding: 1rem 1.5rem;
vertical-align: middle;
}

.errorMessage {
color: red;
font-size: 0.7rem;
}

.table > :not(caption) > * > * {
border: unset;
white-space: normal;
word-break: break-all;
max-width: 200px;
}

app-data-table tr th {
word-break: unset !important;
}

app-data-table tr th {
word-break: unset !important;
}

.table__entity-name {
display: flex;
align-items: center;
gap: 1rem;
}

.table__entity-name span {
white-space: nowrap;
display: block;
}

.table__entity-name img {
display: inline-block;
flex: 40px 0 0;
width: 40px;
height: auto;
} */

/* public status + statistics status */

/*
submitted
verified
resultPublished
approved
underProcess
pendingReview
inProgress
reopened
rejected
draft
closed
inComplete
expired
cancelled
pendingApproval
receivedCount
outboxCount
*/

/* statistics component */

.statistics-component {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}

.statistics-component::-webkit-scrollbar {
  height: 10px;
}

.statistics-component::-webkit-scrollbar-thumb {
  background-color: #445390;
  border-radius: 0;
}

.statistics-component::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 0;
}

.statistics-component__statistic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bs-white);
  /* min-width: 200px;
  max-width: 200px;
  min-height: 120px;
  max-height: 120px; */
  padding: 0.8rem;
  gap: 1rem;
}

/* .statistics-component__start {
} */

.statistics-component__value {
  font-size: 1.9rem;
  font-weight: bold;
}

.statistics-component__title {
  font-size: 0.8rem;
  color: var(--bs-gray-600);
  display: block;
  width: max-content;
}

.statistics-component__icon {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 65px;
  max-width: 65px;
  min-height: 65px;
  max-height: 65px;
  position: relative;
  overflow: hidden;
}

.statistics-component__icon img,
.statistics-component__icon span {
  z-index: 2;
}

.statistics-component__icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--status-color);
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}

.statistics-component__icon .material-symbols-outlined,
.statistics-component__icon i {
  font-size: 1.8rem;
}

.pendingReviewCount {
  --status-color: #f79e00 !important;
  color: var(--status-color);
}

.rejectedPalnCount {
  --status-color: #cc0606 !important;
  color: var(--status-color);
}

.rejectedPlanUnderReviewByViolatorCount {
  --status-color: #f79e00 !important;
  color: var(--status-color);
}

.pendingSubmissionCount {
  --status-color: #4dbd95 !important;
  color: var(--status-color);
}

.pendingSubmissionCount label,
.rejectedPlanUnderReviewByViolatorCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.pendingReviewCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.rejectedPalnCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.rejectedPlanUnderReviewByViolatorCount label span {
  z-index: 2;
  padding: 0 10px;
}

.pendingSubmissionCount label span,
.rejectedPlanUnderReviewByViolatorCount label span {
  z-index: 2;
}

.rejectedPlanUnderReviewByViolatorCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.pendingReviewCount label span,
.rejectedPalnCount label span {
  z-index: 2;
}

.pendingReviewCount label::after,
.rejectedPalnCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.rejectedPalnCount label::after {
  background-color: var(--status-color);
}

.pendingSubmissionCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.pendingReviewCount .statistics-component__icon::after {
}

.closedCount {
  --status-color: #4dbd95 !important;
  color: var(--status-color);
}

.closedCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.closedCount label span {
  z-index: 2;
}

.closedCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.closedCount .statistics-component__icon::after {
}

.rejectedCount {
  --status-color: #f2786b !important;
  color: var(--status-color);
}

.rejectedCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.rejectedCount label span {
  z-index: 2;
}

.rejectedCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.rejectedCount .statistics-component__icon::after {
}

.pendingApprovalCount {
  --status-color: #4dbd95 !important;
  color: var(--status-color);
}

.pendingApprovalCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.pendingApprovalCount label span {
  z-index: 2;
}

.pendingApprovalCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.pendingApprovalCount .statistics-component__icon::after {
}

.publishedResultCount {
  --status-color: #4dbd95 !important;
  color: var(--status-color);
}

.publishedResultCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.publishedResultCount label span {
  z-index: 2;
}

.publishedResultCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.publishedResultCount .statistics-component__icon::after {
}

.publishedCount {
  --status-color: #063bcc !important;
  color: var(--status-color);
}

.publishedCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.publishedCount label span {
  z-index: 2;
}

.publishedCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.publishedCount .statistics-component__icon::after {
}

.inCompleteCount {
  --status-color: #66ccff !important;
  color: var(--status-color);
}

.inCompleteCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.inCompleteCount label span {
  z-index: 2;
}

.inCompleteCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.inCompleteCount .statistics-component__icon::after {
}

.expiredCount {
  --status-color: #6258a6 !important;
  color: var(--status-color);
}

.expiredCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.expiredCount label span {
  z-index: 2;
}

.expiredCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.draftCount {
  --status-color: #919eab !important;
  color: var(--status-color);
}

.draftCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.draftCount label span {
  z-index: 2;
}

.draftCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.draftCount .statistics-component__icon::after {
}

.notPublishedCount {
  --status-color: #919eab !important;
  color: var(--status-color);
}

.notPublishedCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.notPublishedCount label span {
  z-index: 2;
}

.notPublishedCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.notPublishedCount .statistics-component__icon::after {
}

.resultPublishedCount {
  --status-color: #063bcc !important;
  color: var(--status-color);
}

.resultPublishedCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.resultPublishedCount label span {
  z-index: 2;
}

.resultPublishedCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.resultPublishedCount .statistics-component__icon::after {
}

.underApprovalCount {
  --status-color: #4dbd95 !important;
  color: var(--status-color);
}

.underApprovalCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.underApprovalCount label span {
  z-index: 2;
}

.underApprovalCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.underApprovalCount .statistics-component__icon::after {
}

.underReviewCount {
  --status-color: #063bcc !important;
  color: var(--status-color);
}

.underReviewCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.underReviewCount label span {
  z-index: 2;
}

.underReviewCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.underReviewCount .statistics-component__icon::after {
}

.draftsCount {
  --status-color: #919eab !important;
  color: var(--status-color);
}

.draftsCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.draftsCount label span {
  z-index: 2;
}

.draftsCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.draftsCount .statistics-component__icon::after {
}

.cancelledCount {
  --status-color: #f2786b !important;
  color: var(--status-color);
}

.cancelledCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.cancelledCount label span {
  z-index: 2;
}

.cancelledCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.cancelledCount .statistics-component__icon::after {
}

.approvedCount {
  --status-color: #4dbd95 !important;
  color: var(--status-color);
}

.approvedCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.approvedCount label span {
  z-index: 2;
}

.approvedCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.approvedCount .statistics-component__icon::after {
}

.inProgressCount {
  --status-color: #f79e00 !important;
  color: var(--status-color);
}

.inProgressCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.inProgressCount label span {
  z-index: 2;
}

.inProgressCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.inProgressCount .statistics-component__icon::after {
}

.reOpenedCount {
  --status-color: #66ccff !important;
  color: var(--status-color);
}

.reOpenedCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.reOpenedCount label span {
  z-index: 2;
}

.reOpenedCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.reOpenedCount .statistics-component__icon::after {
}

.verifiedCount {
  --status-color: #4dbd95 !important;
  color: var(--status-color);
}

.verifiedCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.verifiedCount label span {
  z-index: 2;
}

.verifiedCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.verifiedCount .statistics-component__icon::after {
}

.resubmittedCount {
  --status-color: #66ccff !important;
  color: var(--status-color);
}

.resubmittedCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.resubmittedCount label span {
  z-index: 2;
}

.resubmittedCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.resubmittedCount .statistics-component__icon::after {
}

.readyCount {
  --status-color: #66ccff !important;
  color: var(--status-color);
}

.readyCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.readyCount label span {
  z-index: 2;
}

.readyCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.readyCount .statistics-component__icon::after {
}

.inboxCount {
  --status-color: #919eab !important;
  color: var(--status-color);
}

.inboxCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.inboxCount label span {
  z-index: 2;
}

.inboxCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.inboxCount .statistics-component__icon::after {
}

.outboxCount {
  --status-color: #063bcc !important;
  color: var(--status-color);
}

.outboxCount label {
  display: inline-flex;
  position: relative;
  min-width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.outboxCount label span {
  z-index: 2;
}

.outboxCount label::after {
  content: '';
  background-color: var(--status-color);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.13;
}

.outboxCount .statistics-component__icon::after {
}

/* end statistics component */

/* .table__actions {
width: 0;
}

.table__actions .button {
min-width: 150px;
}

.table__actions .table-button-edit {
padding: 11px 13px;
min-width: auto;
}

.table__actions .table-button-edit svg path {
transition: all ease-in-out 0.25s;
}

.table__actions .table-button-edit:hover svg path {
fill: #fff;
}

.table__filter {
margin-bottom: 2rem;
display: flex;
}

.table__filter .form__search {
flex-grow: 1;
max-width: 400px;
}

.table-responsive {
border-radius: 3px;
overflow: visible;
}

.table-responsive--with-shadow {
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
}

.table-responsive--with-shadow .table {
margin-bottom: 0;
}

.table-responsive .profile-systems__list-item__actions.dropdown {
position: relative;
top: unset;
inset-inline-end: unset;
} */

/* .table-responsive .profile-systems__list-item__actions .dropdown-menu.show {
top: 0 !important;
}

.form__calendar-wrapper.inline .dropdown-menu.show {
top: 47px !important;
border-radius: 0 0 5px 5px;
z-index: 89999999;
max-width: 253px;
} */

.pagination {
  padding: 0;
}

.page-link {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #adb2c4;
}

.page-link:hover,
.page-link:focus {
  color: #fff;
  background-color: #6258a6;
  border-color: #6258a6;
  cursor: pointer;

}

html[dir='ltr'] .page-link__arrow {
  transform: rotate(180deg);
}

.page-item.active .page-link {
  background-color: #6258a6;
  border-color: #6258a6;
}

.page-item.disabled .page-link {
  color: #bbb;
  background-color: #eee;
  border-color: #ddd;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-start-end-radius: 0.25rem;
  border-end-end-radius: 0.25rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-start-start-radius: 0.25rem;
  border-end-start-radius: 0.25rem;
}

.modal-content {
  border: 0;
  border-radius: 3px;
  box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0.8);
  margin: 0 1rem;
}

/* .modal-header .btn-close {
margin: -0.5rem;
background: transparent
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
  center/1em auto no-repeat;
transition: opacity 0.25s ease-in-out;
} */

.modal-body {
  padding: 1.5rem;
}

.modal-custom-md {
  max-width: 650px;
}

.alert-box {
  display: inline-flex;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
}

.alert-box__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 95px;
  flex: 0 0 100px;
}

@media (max-width: 767.9px) {
  .alert-box__icon {
    flex: 0 0 80px;
    width: 80px;
  }
}

@media (max-width: 575.9px) {
  .alert-box__icon {
    flex: 0 0 60px;
    width: 60px;
  }
}

.alert-box__message {
  display: flex;
  align-items: center;
  padding: 1rem 3rem;
  margin-bottom: 0;
}

@media (max-width: 575.9px) {
  .alert-box__message {
    padding: 0 0.75rem;
    font-size: 0.875rem;
  }
}

.alert-box--danger .alert-box__icon {
  background-color: #fd5151;
  border-radius: 3px;
}

.alert-box--danger .alert-box__message {
  color: #fd5151;
}

.notify {
  padding: var(--space-sm) var(--space-md) var(--space-md) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.notify--warining {
  background-color: #f4e2c2;
  color: #a58449;
}

.app-alert {
  display: flex;
  gap: 1.125rem;
  padding: 15px 20px;
  align-items: center;
  border-radius: 5px;
  border: 1px solid;
  line-height: 1.3;
}

.app-alert--info {
  color: #66ccff;
}

.app-alert--info::before {
  content: '';
  width: 21px;
  height: 21px;
  flex: 21px 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3755 0.803711C5.02929 0.803711 0.679688 5.15332 0.679688 10.4995C0.679688 15.8458 5.02929 20.1954 10.3755 20.1954C15.7217 20.1954 20.0714 15.8458 20.0714 10.4995C20.0714 5.15332 15.7217 0.803711 10.3755 0.803711ZM11.3078 15.7162H9.44323V13.8516H11.3078V15.7162ZM11.1214 12.737H9.62969L9.35 5.27871H11.401L11.1214 12.737Z' fill='%2366CCFF'/%3E%3C/svg%3E%0A");
}

.choose-login-type {
  display: flex;
  gap: 3rem;
  padding: 1rem;
}

@media (max-width: 575.9px) {
  .choose-login-type {
  }
}

.choose-login-type__item {
  flex-grow: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
  padding: 2rem 1rem;
  background-color: #fff;
  transition: background-color 0.25s ease-in-out;
  color: var(--light-blue);
  text-decoration: none;
  width: 50%;
  text-align: center;
}

@media (max-width: 575.9px) {
  .choose-login-type__item {
    display: flex;
    width: 100%;
  }
}

.choose-login-type__item p {
  margin-bottom: 0;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.choose-login-type__item:hover {
  background-color: #f6f6f6;
  color: var(--light-blue);
}

.choose-login-type__or {
  display: inline-flex;
  align-items: center;
  color: #989fb2;
  font-weight: 600;
}

@media (max-width: 575.9px) {
  .choose-login-type__or {
    text-align: center;
    margin-block: 1rem;
  }
}

.toasters {
  position: fixed;
  inset-inline-end: 30px;
  z-index: 1060;
  /* max-width: 600px; */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-inline-start: 30px;
  top: 2%;
}

.toasters .left {
  left: 2%;
}

.toasters .right {
  right: 2%;
}

.toasters ngb-toast.ngbToast {
  position: absolute;
  top: 0;
  left: 0;
  inset-inline-end: 30px;
  z-index: 999;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-inline-start: 30px;
  min-width: 450px;
  max-width: 90vw;
  z-index: 8;
}

.toasters ngb-toast:last-child {
  z-index: 9 !important;
}

@media (max-width: 575.9px) {
  .toasters {
    inset-inline-end: 10px;
    padding-inline-start: 10px;
    top: 90px;
  }
}

.toaster {
  /* display: flex; */
  align-items: center;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid transparent;
  gap: 1rem;
  position: relative;
}

@media (max-width: 575.9px) {
  .toaster {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
    gap: 10px;
  }
}

.toaster__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 60px;
}

@media (max-width: 575.9px) {
  .toaster__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .toaster__icon svg {
    max-width: 16px;
    max-height: 16px;
    object-fit: contain;
  }
}

.toaster__message {
  color: #444;
}

.toaster__message h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

@media (max-width: 575.9px) {
  .toaster__message h4 {
    font-size: 1rem;
  }
}

.toaster__message p {
  margin-bottom: 0;
}

@media (max-width: 575.9px) {
  .toaster__message {
    font-size: 0.875rem;
  }
}

.toaster__close {
  margin-inline-start: auto;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.25s ease-in-out;
}

.toaster__close:hover {
  opacity: 0.8;
}

@media (max-width: 575.9px) {
  .toaster__close {
    position: absolute;
    top: 1rem;
    inset-inline-end: 1rem;
  }
}

.toaster--danger {
  border-color: #f24e3e;
  background-color: #ffe3e0;
}

.toaster--danger .toaster__icon {
  background-color: #f24e3e;
  border-radius: 3px;
}

.toaster--primary {
  border-color: #0076fd;
  background-color: #c3ecff;
}

.toaster--primary .toaster__icon {
  background-color: #0076fd;
  border-radius: 3px;
}

.toaster--success {
  border-color: #08a655;
  background-color: #b5e9cc;
}

.toaster--success .toaster__icon {
  background-color: #08a655;
  border-radius: 3px;
}

.toaster--warning {
  border-color: #faa103;
  background-color: #ffe3c7;
}

.toaster--warning .toaster__icon {
  background-color: #faa103;
  border-radius: 3px;
}

.search__wrapper {
  position: relative;
}

.search__wrapper.active .search__dropdown {
  opacity: 1;
  visibility: visible;
  top: 40px;
}

.search__dropdown-link {
  color: #fff;
  transition: color 0.25s ease-in-out;
}

body.light-mode-active .search__dropdown-link {
  color: var(--dark-blue);
}

.search__dropdown-link:hover {
  color: var(--light-blue) !important;
}

.search__dropdown {
  position: absolute;
  padding: 1.25rem;
  background-color: #fff;
  box-shadow: 0 3px 26px rgba(0, 0, 0, 0.13);
  border-radius: 3px;
  width: 440px;
  inset-inline-end: 0;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
}

.search__input {
  padding-inline-end: 7rem;
}

.search__submit {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  inset-inline-end: 1.5rem;
  padding: 0.35rem 2rem 0.6rem;
}

.content .typography {
  background: #6264af;
  padding: 30px;
  margin-bottom: 50px;
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
}

.content .typography h1 {
  font-size: 64px;
  margin-inline-end: 50px;
}

.content .typography ul {
  padding: 0;
  list-style: none;
}

.content .typography ul li {
  margin-bottom: 10px;
}

.content .p-info {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.content__template-info {
  font-size: 16px;
  color: #606060;
  display: block;
  margin-top: 20px;
}

.content__template-title {
  line-height: 1;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}

.content__template-title span {
  color: #6264af;
}

.content__template-subtitle {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #d9d9d9;
}

.content__photo {
  margin-bottom: 30px;
}

.content__photo img {
  width: 100%;
}

.content__title {
  font-size: 31px;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 33px;
}

@media (max-width: 575.9px) {
  .content__title {
    font-size: 25px;
  }
}

.content__info {
  display: flex;
  padding-bottom: 33px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dddddd;
}

.content__info.no-border {
  border-bottom: 0;
  padding-bottom: 0;
}

.content__info > p {
  margin: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  color: #444444;
  font-size: 14px;
}

.content__info > p svg {
  margin-inline-end: 12px;
}

.content__info > p:not(:last-child) {
  margin-inline-end: 22px;
}

.content__with-sidebar {
  display: flex;
}

@media (max-width: 991.9px) {
  .content__with-sidebar {
    flex-wrap: wrap;
  }
}

.content__with-sidebar .site-content {
  flex: 0 0 calc(100% - 300px);
  width: calc(100% - 300px);
  padding-inline-start: 30px;
}

@media (max-width: 991.9px) {
  .content__with-sidebar .site-content {
    flex: 0 0 100%;
    width: 100%;
    order: 1;
  }
}

.content__sidebar {
  flex: 0 0 300px;
  width: 300px;
  background: var(--purple-dark);
  height: fit-content;
  padding: 30px 20px;
}

@media (max-width: 991.9px) {
  .content__sidebar {
    flex: 0 0 100%;
    width: 100%;
    order: 2;
    margin-bottom: 30px;
  }
}

@media (max-width: 991.9px) {
  .content__sidebar {
    padding: 30px 10px;
  }
}

.content__sidebar-content {
  flex: 0 0 calc(100% - 50px);
  padding-inline-start: 15px;
}

.content__sidebar-content p {
  margin-bottom: 0;
  font-size: 14px;
  color: #959fd6;
  margin-top: 10px;
}

.content__sidebar-subtitle {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}

.content__sidebar-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}

.content__sidebar-info-box {
  background: #1b255b;
  padding: 15px;
  display: flex;
  margin-bottom: 40px;
}

.content__sidebar-photo {
  width: 50px;
  flex: 0 0 50px;
}

.content__sidebar-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.content__sidebar-list li:last-child a {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.content__sidebar-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #4c589c;
}

.content__sidebar-list a span {
  display: block;
}

.content__sidebar-list a .content__sidebar-subtitle {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 180px;
  display: block;
  height: 20px;
}

.site-content {
  margin-bottom: 50px;
}

.site-content__frame:not(:last-child) {
  margin-bottom: 30px;
}

.site-content h1,
.site-content h2,
.site-content h3,
.site-content h4,
.site-content h5,
.site-content h6 {
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.site-content p {
  font-size: 16px;
  font-weight: 700;
  color: #606060;
  line-height: 26px;
  margin-bottom: 30px;
}

@media (max-width: 575.9px) {
  .site-content p {
    font-size: 14px;
  }
}

.site-content p:last-child {
  margin-bottom: 0;
}

.site-content img {
  max-width: 100%;
  display: block;
  margin: auto;
}

.site-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 30px;
}

.site-content ul:last-child {
  margin-bottom: 0;
}

.site-content ul li {
  position: relative;
  padding-inline-start: 15px;
}

.site-content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.site-content ul li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #606060;
  position: absolute;
  top: 12px;
  inset-inline-start: 0;
}

.rich-content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991.9px) {
  .rich-content__header {
    display: block;
  }
}

.rich-content__content-with-img {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991.9px) {
  .rich-content__content-with-img {
    display: block;
  }
}

.rich-content__content-with-img p {
  max-width: 1000px;
}

.rich-content__content-with-img img {
  max-width: 100%;
  height: fit-content;
}

@media (max-width: 991.9px) {
  .rich-content__content-with-img img {
    display: block;
    margin: 0 auto;
  }
}

.rich-content p {
  color: #4e4e4e;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 40px;
}

@media (max-width: 575.9px) {
  .rich-content p {
    font-size: 1.125rem;
    line-height: 30px;
  }
}

.rich-content h6 {
  color: var(--green);
}

.rich-content.style-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.download-pdf {
  display: inline-block;
  color: #c6ab84;
  font-size: 1.5rem;
  font-weight: 300;
  text-decoration: none;
  transition: all ease-in-out 0.25s;
}

@media (max-width: 991.9px) {
  .download-pdf {
    margin-top: 1rem;
  }
}

@media (max-width: 575.9px) {
  .download-pdf {
    font-size: 1rem;
  }
}

.download-pdf svg {
  display: inline-block;
  margin-inline-start: 1.125rem;
}

.download-pdf:hover {
  color: #9b8564;
}

.faq-item__header {
  background: #f8f8f8;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.16);
  padding: 1.25rem 2.5rem;
  border-radius: 3px;
  color: #646464;
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.faq-item__header span {
  display: inline-block;
  width: calc(100% - 30px);
}

@media (max-width: 767.9px) {
  .faq-item__header {
    font-size: 1.125rem;
  }
}

@media (max-width: 575.9px) {
  .faq-item__header {
    padding: 1.25rem;
  }
}

.faq-item__header::after {
  content: '';
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.353' height='9.541' viewBox='0 0 16.353 9.541'%3E%3Cpath id='Icon' d='M14.287,14.038l6.123,6.128a1.152,1.152,0,0,0,1.634,0,1.167,1.167,0,0,0,0-1.639l-6.938-6.943a1.155,1.155,0,0,0-1.6-.034L6.525,18.522a1.157,1.157,0,0,0,1.634,1.639Z' transform='matrix(1, -0.017, 0.017, 1, -6.383, -10.854)' opacity='0.5'/%3E%3C/svg%3E%0A");
  width: 16px;
  height: 9px;
  position: absolute;
  top: 34px;
  inset-inline-end: 34px;
  transition: all ease-in-out 0.25s;
}

@media (max-width: 575.9px) {
  .faq-item__header::after {
    inset-inline-end: 20px;
  }
}

.faq-item__header.collapsed::after {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 1.875rem 2.625rem 0;
}

@media (max-width: 575.9px) {
  .faq-item__body {
    padding: 1.5rem 1.5rem 0;
  }
}

.faq-item__body p {
  margin: 0;
  color: var(--text-base-color);
  font-size: 1.125rem;
}

@media (max-width: 767.9px) {
  .faq-item__body p {
    font-size: 0.875rem;
  }
}

.faq-item__body.flex-style {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767.9px) {
  .faq-item__body.flex-style {
    display: block;
  }
}

.faq-item__body.flex-style p {
  max-width: 900px;
}

.faq-item__body.flex-style img {
  width: 200px;
  height: fit-content;
}

@media (max-width: 991.9px) {
  .faq-item__body.flex-style img {
    padding-inline-start: 20px;
  }
}

@media (max-width: 767.9px) {
  .faq-item__body.flex-style img {
    padding: 0;
    display: block;
    margin: 10px auto 0;
  }
}

.faq-item:not(:last-child) {
  margin-bottom: 2.5rem;
}

@media (max-width: 575.9px) {
  .faq-item:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.blue-banner {
  background: linear-gradient(180deg, #263570 0%, #12100c 100%);
  padding: 104px 50px;
  margin-bottom: 1.25rem;
  z-index: 1;
}

@media (max-width: 575.9px) {
  .blue-banner {
    padding: 100px 20px;
  }
}

.blue-banner__title {
  color: #fff;
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 1.875rem;
}

.blue-banner p {
  text-align: center;
  color: #fff;
  margin-bottom: 2.5rem;
}

.blue-banner__search-container {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.blue-banner__search-container .search__submit {
  inset-inline-end: 5px;
}

@media (max-width: 575.9px) {
  .blue-banner__search-container .search__submit {
    position: static;
    transform: translateY(0);
    margin-top: 1rem;
    display: block;
  }
}

@media (max-width: 575.9px) {
  .blue-banner__search-container .search__input {
    padding-inline-end: 1.25rem;
  }
}

.blue-banner::before {
  content: '';
  /* background: url('../images/style_images/bg-shapes1.png') no-repeat; */
  max-width: 260px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.blue-banner::after {
  content: '';
  /* background: url('../images/style_images/bg-shapes2.png') no-repeat; */
  max-width: 700px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.blue-banner::before,
.blue-banner::after {
  opacity: 0.2;
}

.procedural-box {
  background: #fff;
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.05);
  padding: 1.875rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  height: 100%;
}

.procedural-box__title {
  color: var(--dark-blue);
  font-size: 1rem;
  margin-bottom: 1.875rem;
}

.icon--home::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2256_4907)'%3E%3Cpath d='M1.83398 9.75138L12.5007 2.20117L23.1673 9.75138V21.6167C23.1673 22.1889 22.9175 22.7377 22.473 23.1423C22.0284 23.5469 21.4254 23.7742 20.7967 23.7742H4.20465C3.57591 23.7742 2.97292 23.5469 2.52834 23.1423C2.08375 22.7377 1.83398 22.1889 1.83398 21.6167V9.75138Z' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.94531 23.7725V12.9863H16.0564V23.7725' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2256_4907'%3E%3Crect width='24' height='24' fill='white' transform='translate(0.5 0.988281)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.icon--map-marker::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='22' viewBox='0 0 18 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.00156 11.0379C9.56823 11.0379 10.0516 10.8379 10.4516 10.4379C10.8516 10.0379 11.0516 9.55456 11.0516 8.98789C11.0516 8.42122 10.8516 7.93789 10.4516 7.53789C10.0516 7.13789 9.56823 6.93789 9.00156 6.93789C8.4349 6.93789 7.95156 7.13789 7.55156 7.53789C7.15156 7.93789 6.95156 8.42122 6.95156 8.98789C6.95156 9.55456 7.15156 10.0379 7.55156 10.4379C7.95156 10.8379 8.4349 11.0379 9.00156 11.0379V11.0379ZM9.00156 21.1629C6.26823 18.8462 4.22656 16.6919 2.87656 14.6999C1.52656 12.7086 0.851562 10.8712 0.851562 9.18789C0.851562 6.63789 1.67223 4.60856 3.31356 3.09989C4.95556 1.59189 6.85156 0.837891 9.00156 0.837891C11.1516 0.837891 13.0476 1.59189 14.6896 3.09989C16.3309 4.60856 17.1516 6.63789 17.1516 9.18789C17.1516 10.8712 16.4766 12.7086 15.1266 14.6999C13.7766 16.6919 11.7349 18.8462 9.00156 21.1629Z' fill='%236459A7'/%3E%3C/svg%3E%0A");
  width: 16px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.icon--clock::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.2008 15.7141L15.7508 14.1891L12.1008 10.5391V6.01406H9.90078V11.4141L14.2008 15.7141ZM11.0008 21.1891C9.58411 21.1891 8.25478 20.9224 7.01278 20.3891C5.77145 19.8557 4.69245 19.1307 3.77578 18.2141C2.85911 17.2974 2.13411 16.2184 1.60078 14.9771C1.06745 13.7351 0.800781 12.4057 0.800781 10.9891C0.800781 9.5724 1.06745 8.24306 1.60078 7.00106C2.13411 5.75973 2.85911 4.68073 3.77578 3.76406C4.69245 2.8474 5.77145 2.1224 7.01278 1.58906C8.25478 1.05573 9.58411 0.789062 11.0008 0.789062C12.4174 0.789062 13.7468 1.05573 14.9888 1.58906C16.2301 2.1224 17.3091 2.8474 18.2258 3.76406C19.1424 4.68073 19.8674 5.75973 20.4008 7.00106C20.9341 8.24306 21.2008 9.5724 21.2008 10.9891C21.2008 12.4057 20.9341 13.7351 20.4008 14.9771C19.8674 16.2184 19.1424 17.2974 18.2258 18.2141C17.3091 19.1307 16.2301 19.8557 14.9888 20.3891C13.7468 20.9224 12.4174 21.1891 11.0008 21.1891Z' fill='%236459A7'/%3E%3C/svg%3E%0A");
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.icon--search::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.90323 15.086H8.0002L8.41054 14.7431C7.04141 13.1095 6.29086 11.0461 6.29041 8.91457C6.30216 7.16429 6.83237 5.45675 7.81407 4.00764C8.79577 2.55853 10.1849 1.43287 11.806 0.772841C13.4271 0.112812 15.2075 -0.0519737 16.9222 0.2993C18.6369 0.650573 20.2091 1.50215 21.44 2.74645C22.671 3.99076 23.5056 5.57198 23.8385 7.29037C24.1713 9.00876 23.9873 10.7872 23.3099 12.4012C22.6325 14.0151 21.4919 15.392 20.0323 16.3581C18.5728 17.3241 16.8596 17.8359 15.1093 17.8289C12.984 17.8158 10.9293 17.0644 9.29693 15.7033L8.88659 16.0462V17.1431L2.04744 24.0003L-0.00340271 21.9431L6.90323 15.086ZM15.1084 15.086C16.3298 15.0896 17.5247 14.7306 18.542 14.0547C19.5592 13.3787 20.353 12.4161 20.8229 11.2888C21.2927 10.1614 21.4175 8.91998 21.1814 7.72166C20.9453 6.52333 20.359 5.42201 19.4966 4.55712C18.6343 3.69223 17.5347 3.10266 16.337 2.86308C15.1394 2.62349 13.8976 2.74465 12.7689 3.21121C11.6401 3.67778 10.6752 4.46877 9.99631 5.48405C9.31739 6.49932 8.95498 7.69321 8.95498 8.91457C8.95046 9.72507 9.10652 10.5284 9.41416 11.2783C9.7218 12.0281 10.1749 12.7096 10.7474 13.2834C11.3198 13.8572 12.0002 14.3119 12.7494 14.6213C13.4985 14.9307 14.3015 15.0886 15.112 15.086H15.1084Z' fill='white'/%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.icon--arrow-right::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='18' viewBox='0 0 48 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38.4983 17.9994L37.3171 16.7901L44.2638 9.84342H0V8.15597H44.2638L37.3171 1.20933L38.4983 0L47.498 8.9997L38.4983 17.9994Z' fill='%236258A6'/%3E%3C/svg%3E%0A");
  display: inline-block;
  width: 48px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

html[dir='ltr'] .icon--arrow-right::before {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='18' viewBox='0 0 48 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.50166 17.9994L10.6829 16.7901L3.73623 9.84342H48V8.15597H3.73623L10.6829 1.20933L9.50166 0L0.501961 8.9997L9.50166 17.9994Z' fill='%236258A6'/%3E%3C/svg%3E%0A");
}

.icon--arrow-right-white::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='18' viewBox='0 0 48 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38.4983 17.9994L37.3171 16.7901L44.2638 9.84342H0V8.15597H44.2638L37.3171 1.20933L38.4983 0L47.498 8.9997L38.4983 17.9994Z' fill='white'/%3E%3C/svg%3E%0A");
  display: inline-block;
  width: 48px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

html[dir='ltr'] .icon--arrow-right-white::before {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='18' viewBox='0 0 48 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.50166 17.9994L10.6829 16.7901L3.73623 9.84342H48V8.15597H3.73623L10.6829 1.20933L9.50166 0L0.501961 8.9997L9.50166 17.9994Z' fill='white'/%3E%3C/svg%3E%0A");
  display: inline-block;
}

.icon--arrow-prev::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='18' viewBox='0 0 48 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.50166 17.9994L10.6829 16.7901L3.73623 9.84342H48V8.15597H3.73623L10.6829 1.20933L9.50166 0L0.501961 8.9997L9.50166 17.9994Z' fill='%236258A6'/%3E%3C/svg%3E%0A");
  display: inline-block;
  width: 48px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

html[dir='ltr'] .icon--arrow-prev::before {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='18' viewBox='0 0 48 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38.4983 17.9994L37.3171 16.7901L44.2638 9.84342H0V8.15597H44.2638L37.3171 1.20933L38.4983 0L47.498 8.9997L38.4983 17.9994Z' fill='%236258A6'/%3E%3C/svg%3E%0A");
}

.icon--arrow-prev-white::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='18' viewBox='0 0 48 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.50166 17.9994L10.6829 16.7901L3.73623 9.84342H48V8.15597H3.73623L10.6829 1.20933L9.50166 0L0.501961 8.9997L9.50166 17.9994Z' fill='white'/%3E%3C/svg%3E%0A");
  display: inline-block;
  width: 48px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

html[dir='ltr'] .icon--arrow-prev-white::before {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='18' viewBox='0 0 48 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38.4983 17.9994L37.3171 16.7901L44.2638 9.84342H0V8.15597H44.2638L37.3171 1.20933L38.4983 0L47.498 8.9997L38.4983 17.9994Z' fill='white'/%3E%3C/svg%3E%0A");
  display: inline-block;
}

.icon--blue-arrow::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='11' viewBox='0 0 6 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.838153 6.31171L5.93574 10.4287V0.0527344L0.838153 4.16974C0.486567 4.45383 0.289062 4.83905 0.289062 5.24072C0.289062 5.6424 0.486567 6.02761 0.838153 6.31171Z' fill='%2365CBFF'/%3E%3C/svg%3E%0A");
  display: inline-block;
  width: 5px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.icon--check-circle::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0.257812C4.62391 0.257812 0.25 4.63172 0.25 10.0078C0.25 15.3839 4.62391 19.7578 10 19.7578C15.3761 19.7578 19.75 15.3839 19.75 10.0078C19.75 4.63172 15.3761 0.257812 10 0.257812ZM8.21875 14.9006L4.44062 10.702L5.55578 9.69844L8.18078 12.615L14.4062 5.20125L15.5566 6.16406L8.21875 14.9006Z' fill='%2304AC63'/%3E%3C/svg%3E%0A");
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.icon--warning::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='19' viewBox='0 0 21 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.6141 14.7181L12.571 1.22334C12.1175 0.462232 11.3432 0.0078125 10.5 0.0078125C9.65669 0.0078125 8.88245 0.462232 8.42901 1.22334L0.385858 14.718C-0.096903 15.5281 -0.128929 16.555 0.302549 17.398C0.734027 18.2406 1.55955 18.7641 2.45697 18.7641H18.5431C19.4405 18.7641 20.266 18.2407 20.6976 17.3977C21.1289 16.555 21.0969 15.5282 20.6141 14.7181ZM10.5 16.4926C9.76034 16.4926 9.16082 15.8506 9.16082 15.0587C9.16082 14.2667 9.7604 13.6246 10.5 13.6246C11.2396 13.6246 11.8391 14.2667 11.8391 15.0587C11.8391 15.8506 11.2396 16.4926 10.5 16.4926ZM12.3562 6.52799L11.6966 11.2832C11.5995 11.9832 10.9909 12.4663 10.3372 12.3624C9.80912 12.2784 9.41318 11.835 9.33177 11.2994L8.6155 6.5536C8.44874 5.44862 9.15008 4.40811 10.182 4.22955C11.214 4.051 12.1857 4.80197 12.3524 5.90695C12.3838 6.11502 12.3827 6.32983 12.3562 6.52799Z' fill='%23ECA320'/%3E%3C/svg%3E%0A");
  width: 21px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon--calendar {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 4H17V3C17 2.73478 16.8946 2.48043 16.7071 2.29289C16.5196 2.10536 16.2652 2 16 2C15.7348 2 15.4804 2.10536 15.2929 2.29289C15.1054 2.48043 15 2.73478 15 3V4H9V3C9 2.73478 8.89464 2.48043 8.70711 2.29289C8.51957 2.10536 8.26522 2 8 2C7.73478 2 7.48043 2.10536 7.29289 2.29289C7.10536 2.48043 7 2.73478 7 3V4H6C5.20435 4 4.44129 4.31607 3.87868 4.87868C3.31607 5.44129 3 6.20435 3 7V19C3 19.7956 3.31607 20.5587 3.87868 21.1213C4.44129 21.6839 5.20435 22 6 22H18C18.7956 22 19.5587 21.6839 20.1213 21.1213C20.6839 20.5587 21 19.7956 21 19V7C21 6.20435 20.6839 5.44129 20.1213 4.87868C19.5587 4.31607 18.7956 4 18 4V4ZM6 6H7V7C7 7.26522 7.10536 7.51957 7.29289 7.70711C7.48043 7.89464 7.73478 8 8 8C8.26522 8 8.51957 7.89464 8.70711 7.70711C8.89464 7.51957 9 7.26522 9 7V6H15V7C15 7.26522 15.1054 7.51957 15.2929 7.70711C15.4804 7.89464 15.7348 8 16 8C16.2652 8 16.5196 7.89464 16.7071 7.70711C16.8946 7.51957 17 7.26522 17 7V6H18C18.2652 6 18.5196 6.10536 18.7071 6.29289C18.8946 6.48043 19 6.73478 19 7V11H5V7C5 6.73478 5.10536 6.48043 5.29289 6.29289C5.48043 6.10536 5.73478 6 6 6V6ZM18 20H6C5.73478 20 5.48043 19.8946 5.29289 19.7071C5.10536 19.5196 5 19.2652 5 19V13H19V19C19 19.2652 18.8946 19.5196 18.7071 19.7071C18.5196 19.8946 18.2652 20 18 20Z' fill='black'/%3E%3Cpath d='M8 17C8.55228 17 9 16.5523 9 16C9 15.4477 8.55228 15 8 15C7.44772 15 7 15.4477 7 16C7 16.5523 7.44772 17 8 17Z' fill='black'/%3E%3Cpath d='M16 15H12C11.7348 15 11.4804 15.1054 11.2929 15.2929C11.1054 15.4804 11 15.7348 11 16C11 16.2652 11.1054 16.5196 11.2929 16.7071C11.4804 16.8946 11.7348 17 12 17H16C16.2652 17 16.5196 16.8946 16.7071 16.7071C16.8946 16.5196 17 16.2652 17 16C17 15.7348 16.8946 15.4804 16.7071 15.2929C16.5196 15.1054 16.2652 15 16 15Z' fill='black'/%3E%3C/svg%3E%0A");
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5;
}

.icon--question {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M15 8.63636C15 5.13633 9 5.13636 9 8.63636C9 11.1364 11.7273 10.6363 11.7273 13.6363' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M11.7271 17.6464L11.7161 17.6353' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}

.icon--question-2 {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M9 9.00001C9 5.49998 14.5 5.50001 14.5 9.00001C14.5 11.5 12 10.9999 12 13.9999' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M12 18.01L12.01 17.9989' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
}

.custom-accordion {
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid #eff1fa;
}

.custom-accordion:not(:last-of-type) {
  margin-bottom: 0.875rem;
}

.custom-accordion__question--disabled .custom-accordion__question-title {
  opacity: 0.5;
}

.custom-accordion__question-title {
  color: #444;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 1.375rem;
}

.custom-accordion__answer-radio-wrapper {
  display: flex;
  gap: 70px;
}

@media (max-width: 575.9px) {
  .custom-accordion__answer-radio-wrapper {
    gap: 10px;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .custom-accordion__answer-radio-wrapper .form-check {
    min-width: 150px;
  }
}

.custom-accordion__status {
  margin: 0;
  padding: 0.2rem 0.5rem 0.5rem;
  font-size: 0.875rem;
  text-align: center;
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  white-space: nowrap;
}

html[dir='rtl'] .custom-accordion__status {
  padding: 0.2rem 0.5rem 0.5rem;
}

html[dir='ltr'] .custom-accordion__status {
  padding: 0.2rem 0.5rem 0.4rem;
}

.custom-accordion__status.success-status {
  border: 1px solid #4cbc94;
  border-radius: 30px;
  background: #e2f2e3;
  color: var(--green);
}

.custom-accordion__status.warning-status {
  background: #fbeacc;
  border: 1px solid #eca320;
  border-radius: 30px;
  color: #eca320;
}

.custom-accordion__header {
  position: relative;
}

.custom-accordion__header .accordion-button {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
  padding: 1rem 1.25rem;
}

.custom-accordion__header .accordion-button .accordion-title {
  margin-top: -5px;
}

.custom-accordion__header .accordion-button::after {
  content: '';
  display: none;
  background-position: center;
  transform: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
}

.custom-accordion__header .accordion-button .remove {
  display: none;
}

.custom-accordion__header .accordion-button .add {
  display: block;
}

.custom-accordion__header .accordion-button.print-view::after {
  background-image: none !important;
}

.custom-accordion__header .accordion-button.print-view:not(.collapsed) {
  color: var(--primary);
}

html[dir='rtl'] .custom-accordion__header .accordion-button::after {
  left: 0.6rem;
}

html[dir='ltr'] .custom-accordion__header .accordion-button::after {
  right: 0.6rem;
}

.custom-accordion__header .accordion-button:not(.collapsed) {
  color: #fff;
  background: transparent;
}

.custom-accordion__header .accordion-button:not(.collapsed) .remove {
  display: block;
}

.custom-accordion__header .accordion-button:not(.collapsed) .add {
  display: none;
}

@media (max-width: 991.9px) {
  .custom-accordion__header .accordion-button {
    padding-top: 0.875rem;
    padding-inline-start: 1.25rem;
    padding-bottom: 0.875rem;
    font-size: 0.875rem;
  }
}

.custom-accordion__body {
  font-size: 0.875rem;
  padding: 2rem 1rem;
  color: var(--primary);
  background-color: #f7f9fa;
}

@media (max-width: 767.98px) {
  .prefix_label {
    margin-top: -3px;
  }
}

html[dir='rtl'] .prefix_label {
  border-top-right-radius: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 0;
}

html[dir='ltr'] .prefix_label {
  border-top-right-radius: 3px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 3px;
}

html[dir='rtl'] .prefix_wrapper .form__control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

html[dir='ltr'] .prefix_wrapper .form__control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 575.9px) {
  .custom-accordion__body {
    font-size: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .custom-accordion__body {
    padding: 1rem 0;
  }

  .custom-accordion__status {
    display: none;
  }

  .prefix_wrapper {
    height: 35px;
    overflow: hidden;
  }
}

.custom-accordion__content {
  font-weight: 600;
}

.custom-accordion__content h4 {
  font-size: 0.875rem;
  color: var(--primary-hover);
  margin-bottom: 1rem;
}

.custom-accordion__content h5 {
  font-size: 0.875rem;
  color: var(--light-blue);
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}

.custom-accordion__content h5::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--light-blue);
  border-radius: 50%;
}

.custom-accordion__content p {
  font-size: 0.875rem;
}

.users-guide-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.primary-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin: 0.125rem auto 2.5rem;
  border: none;
  padding: 0;
}

@media (max-width: 575.9px) {
  .primary-tabs {
    display: block;
  }

  .primary-tabs li:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}

.primary-tabs .nav-link {
  text-decoration: none;
  text-align: center;
  border: 1px solid #fff;
  transition:
    background 0.25s ease-in-out,
    border 0.25s ease-in-out;
  background: #989fb2;
  color: #f3f5fb;
  font-weight: 400;
  font-size: 18px;
  padding: 0.5rem 1.25rem;
  border-radius: 0;
}

@media (max-width: 575.9px) {
  .primary-tabs .nav-link {
    margin: 0 auto;
  }
}

.primary-tabs .nav-link.active {
  background: var(--primary);
  color: #fff;
  border: none;
}

.steps-describtion {
  font-size: 16px;
  text-align: center;
  color: rgba(42, 52, 108, 0.6);
  max-width: 640px;
  padding: 1.875rem 2.125rem;
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.05);
  margin: 0 auto 3.75rem;
  background-color: #fff;
}

.steps {
  position: relative;
  max-width: 1050px;
}

.steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: calc(760px + 12rem);
  margin: 0rem auto;
}

@media (max-width: 1199.9px) {
  .steps ul {
    justify-content: center;
  }
}

@media (max-width: 991.9px) {
  .steps ul {
    gap: 4rem;
  }
}

@media (max-width: 575.9px) {
  .steps ul {
    display: block;
  }
}

.steps ul li {
  position: relative;
  padding: 1rem 2.5rem;
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
}

.steps ul li::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='201.865' height='32.922' viewBox='0 0 201.865 32.922'%3E%3Cpath id='Path_51964' data-name='Path 51964' d='M1,33c35.81-22.894,92.7-58.809,201.357,0' transform='translate(-0.73 -0.518)' fill='none' stroke='%23989fb2' stroke-width='1' stroke-dasharray='5 10'/%3E%3C/svg%3E%0A");
  position: absolute;
  z-index: -1;
}

.steps ul li::after {
  top: 2.5rem;
  inset-inline-end: -50%;
}

html[dir='rtl'] .steps ul li::after {
  transform: translateX(-25%);
}

html[dir='ltr'] .steps ul li::after {
  transform: translateX(22%);
}

.steps ul li:nth-child(4)::after,
.steps ul li:nth-child(6)::after {
  opacity: 0;
  visibility: hidden;
}

.steps ul li:nth-child(6)::before {
  content: url("data:image/svg+xml,%3Csvg width='104' height='272' viewBox='0 0 104 272' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M103.497 1C62.0019 1 -14.004 4 3.27468 98.9883C17.2093 175.593 78.3514 174 89.0033 148.5C96.7262 130.012 86.7052 117.4 59.5052 121C25.5052 125.5 -53 278.5 103.492 271' stroke='%23989FB2' stroke-dasharray='5 10'/%3E%3C/svg%3E%0A");
  position: absolute;
  top: -120%;
  inset-inline-end: -55px;
}

html[dir='rtl'] .steps ul li:nth-child(6)::before {
  transform: translate(0rem, 10%);
}

html[dir='ltr'] .steps ul li:nth-child(6)::before {
  top: -108%;
  transform: rotate(180deg);
}

.steps ul li:nth-child(even)::after {
  top: 4rem;
  inset-inline-end: -100%;
}

html[dir='rtl'] .steps ul li:nth-child(even)::after {
  transform: rotate(-180deg) translateX(-25%);
}

html[dir='ltr'] .steps ul li:nth-child(even)::after {
  transform: rotate(-180deg) translateX(25%);
}

@media (max-width: 1199.9px) {
  .steps ul li::after,
  .steps ul li::before {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 991.9px) {
  .steps ul li {
    padding: 0.875rem 0.5rem;
    width: 120px;
  }
}

@media (max-width: 575.9px) {
  .steps ul li {
    margin: 0 auto;
  }
}

.steps ul div {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #9286da;
  border-radius: 45px;
  margin-bottom: 0.5rem;
}

@media (max-width: 575.9px) {
  .steps ul div {
    width: 70px;
    height: 70px;
  }
}

.steps ul div span {
  position: absolute;
  position: absolute;
  width: 28px;
  height: 28px;
  inset-inline-end: 62.5px;
  top: 0.01px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-size: 0.875rem;
  font-weight: 600;
  background: #6459a7;
  border-radius: 14px;
  color: #fff;
}

@media (max-width: 575.9px) {
  .steps ul div span {
    width: 22px;
    height: 22px;
    inset-inline-end: 50px;
  }
}

.steps ul p {
  font-size: 0.875rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: 0;
  line-height: 26px;
}

.initiatives-box {
  background: #fff;
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
}

@media (max-width: 991.9px) {
  .initiatives-box {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.9px) {
  .initiatives-box {
    padding: 1rem 0.5rem;
  }
}

.initiatives-box__photo {
  margin-bottom: 1.25rem;
  display: block;
}

.initiatives-box__photo img {
  width: 100%;
  aspect-ratio: 2.25;
  object-fit: cover;
}

.initiatives-box__title {
  font-size: 1.5rem;
  color: var(--primary-hover);
  margin-bottom: 1.25rem;
  display: block;
  font-weight: 700;
  transition: all ease-in-out 0.25s;
  text-decoration: none;
}

.initiatives-box__title:hover {
  color: var(--dark-blue);
}

.initiatives-box > p {
  font-size: 0.875rem;
  line-height: 26px;
  color: var(--purple-dark);
  margin-bottom: 1.25rem;
}

.initiatives-box__list {
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--purple-dark);
  list-style: none;
}

.initiatives-box__list li {
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.875rem;
  align-items: center;
}

.initiatives-box__list li:not(:last-child) {
  margin-bottom: 1.25rem;
}

@media (max-width: 991.9px) {
  .swiper {
    overflow: unset !important;
  }

  .swiper-wrapper .swiper-slide:nth-of-type(4) h3 {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }
}

@media (max-width: 575.9px) {
  .about {
    padding: 50px 0;
  }
}

html[dir='ltr'] .about__swiper-wrapper .swiper-pagination-bullet {
  padding: 10px 1rem 13px;
}

.about__swiper-wrapper .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: transparent;
}

.about__swiper-wrapper .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
}

.about__title {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 3rem;
  overflow-wrap: break-word;
}

@media (max-width: 575.9px) {
  .about__title {
    font-size: 1.5rem;
    line-height: 40px;
    margin-bottom: 70px;
  }
}

.statistics {
  padding: 60px 0;
  /* background: url('../images/style_images/statistics-bg.jpg') no-repeat center center; */
  background-size: cover;
  position: relative;
  z-index: 1;
}

.statistics__shapes {
  content: '';
  /* background: url('../images/style_images/statistics-shapes.svg') no-repeat center center; */
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background-attachment: fixed;
}

.statistics__header {
  text-align: center;
  margin-bottom: 40px;
}

.statistics__header > p {
  font-size: 14px;
  color: var(--purple-dark);
  margin-bottom: 1.875rem;
}

.statistics__body {
  text-align: center;
}

.statistics__title.draft {
  color: #919eab;
}

.statistics__title.incomplete {
  color: #66ccff;
}

.statistics__title.researching {
  color: #f79e00;
}

.statistics__title.finished {
  color: var(--purple-pale);
}

.statistics__title.completed {
  color: #4dbd95;
}

.statistics__title.rejected {
  color: #f2786b;
}

.statistics__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 1.25rem;
}

.form__label.dpo-form.require.edited::after {
  font-size: 20px;
}

.form__label.dpo-form.require {
  font-size: 10px;
}

.manage-page.new {
  border-bottom: 2px solid #d9d9d9;
}

.statistics__item {
  padding: 2.5rem 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, var(--dark-blue), var(--primary-hover));
  border-radius: 20px;
  color: #ffffff;
}

@media (max-width: 1399.9px) {
  .statistics__item {
    padding: 2.5rem 1.25rem;
  }
}

.statistics__item__num {
  color: #fff;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  text-align: start;
  padding-inline-end: 3px;
}

.statistics__item__num span {
  font-size: 1.875rem;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.statistics__swiper-wrapper {
  margin-top: 4.375rem;
}

.statistics__swiper-wrapper .slide-button-wrapper {
  margin-top: 4rem;
}

.registration::before {
  content: '';
  width: 100%;
  height: 100%;
  /* background: url('../images/style_images/registration-shape.png') no-repeat center center; */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.registration__guide {
  flex: 0 0 585px;
  padding: 120px 0;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1679.9px) {
  .registration__guide {
    flex: 0 0 470px;
  }
}

@media (max-width: 1399.9px) {
  .registration__guide {
    flex: 0 0 370px;
  }
}

@media (max-width: 1199.9px) {
  .registration__guide {
    flex-direction: row;
  }
}

@media (max-width: 767.9px) {
  .registration__guide {
    flex-direction: column;
    align-items: center;
    padding: 70px 20px !important;
  }
}

@media (max-width: 575.9px) {
  .registration__guide {
    text-align: center;
  }
}

.registration__guide::before {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(30deg, var(--purple-pale), #0a1233);
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0.5;
}

html[dir='rtl'] .registration__guide::before {
  right: 0;
}

html[dir='ltr'] .registration__guide::before {
  left: 0;
}

html[dir='rtl'] .registration__guide {
  padding-right: 110px;
  padding-left: 90px;
}

@media (max-width: 1679.9px) {
  html[dir='rtl'] .registration__guide {
    padding-right: 80px;
    padding-left: 40px;
  }
}

@media (max-width: 1399.9px) {
  html[dir='rtl'] .registration__guide {
    padding-right: 30px;
    padding-left: 10px;
  }
}

html[dir='ltr'] .registration__guide {
  padding-left: 110px;
  padding-right: 90px;
}

@media (max-width: 1679.9px) {
  html[dir='ltr'] .registration__guide {
    padding-left: 80px;
    padding-right: 40px;
  }
}

@media (max-width: 1399.9px) {
  html[dir='ltr'] .registration__guide {
    padding-left: 30px;
    padding-right: 10px;
  }
}

@media (max-width: 1199.9px) {
  .registration__guide__item {
    flex-grow: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991.9px) {
  .registration__guide__item {
    width: 100%;
    display: block;
  }
}

.registration__guide__item h3 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 700;
  width: 95%;
  padding: 0;
}

@media (max-width: 575.9px) {
  .registration__guide__item h3 {
    font-size: 22px;
  }
}

.registration__guide__item p {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 30px;
  line-height: 30px;
}

@media (max-width: 1199.9px) {
  .registration__guide__item p {
    margin-top: auto;
  }
}

.registration__guide__item .button {
  padding: 10px 25px;
  font-size: 14px;
}

.registration__forms .slide-button-wrapper {
  margin-top: 100px;
}

.registration__forms .card-wrapper {
  width: 320px;
  transform-style: preserve-3d;
  display: block;
  position: relative;
  height: 473px;
  transition: all 0.25s ease-in-out;
  background: transparent;
  perspective: 1000px;
}

@media (max-width: 575.9px) {
  .registration__forms .card-wrapper {
    width: 270px;
  }
}

.registration__forms .card-wrapper:hover .registration__forms__card {
  transform: rotateY(180deg);
}

.registration__forms__card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.3, 0.41, 0, 1.24);
  transform-style: preserve-3d;
  border-radius: 35px;
}

.registration__forms__card__front {
  backface-visibility: hidden;
  overflow: hidden;
  padding: 30px;
  width: 100%;
  height: 100%;
  background-position: center center;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: ease-in-out 0.5s all;
  align-items: flex-start;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  color: #ffffff;
  z-index: 1;
}

.registration__forms__card__front::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to top, #263570 0%, rgba(18, 16, 12, 0) 100%);
  z-index: -2;
}

.registration__forms__card__front__title {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.registration__forms__card__front__title h4 {
  width: 60%;
}

.registration__forms__card__front__title .slide-button--prev::before {
  background: #ffffff;
  z-index: 8;
}

.registration__forms__card__front__title .slide-button--prev .icon--arrow-prev::before {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='18' viewBox='0 0 48 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.50166 17.9994L10.6829 16.7901L3.73623 9.84342H48V8.15597H3.73623L10.6829 1.20933L9.50166 0L0.501961 8.9997L9.50166 17.9994Z' fill='white'/%3E%3C/svg%3E%0A");
  display: inline-block;
  width: 48px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
}

html[dir='rtl'] .registration__forms__card__front__title .slide-button--prev .icon--arrow-prev::before {
  left: 50%;
}

html[dir='ltr'] .registration__forms__card__front__title .slide-button--prev .icon--arrow-prev::before {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='18' viewBox='0 0 48 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38.4983 17.9994L37.3171 16.7901L44.2638 9.84342H0V8.15597H44.2638L37.3171 1.20933L38.4983 0L47.498 8.9997L38.4983 17.9994Z' fill='white'/%3E%3C/svg%3E%0A");
  display: inline-block;
  right: 50%;
}

.registration__forms__card__back {
  position: absolute;
  overflow: hidden;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  z-index: 2;
  padding: 30px;
  height: 100%;
  transition: ease-in-out 0.5s all;
  width: auto;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #ffffff;
}

.registration__forms__card__back__content p {
  color: #303b6f;
  font-size: 14px;
  font-weight: 400;
}

.registration__forms__card__back .button--purple {
  border-radius: 10px;
  display: inline-flex;
  width: 100%;
}

.registration__forms__card__back .button--purple .icon--arrow-prev::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='18' viewBox='0 0 26 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.50166 17.9994L10.6829 16.7901L3.73623 9.84342H26V8.15597H3.73623L10.6829 1.20933L9.50166 0L0.501961 8.9997L9.50166 17.9994Z' fill='white'/%3E%3C/svg%3E%0A");
  width: 25px;
  height: 18px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}

html[dir='ltr'] .registration__forms__card__back .button--purple .icon--arrow-prev::before {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='18' viewBox='0 0 26 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.8231 18L15.6187 16.7906L22.7021 9.84375H0V8.15625H22.7021L15.6187 1.20937L16.8231 0L26 9L16.8231 18Z' fill='white'/%3E%3C/svg%3E%0A");
}

.registration__forms h4 {
  font-size: 14px;
  font-weight: 400;
}

.registration__forms h4 span {
  font-size: 25px;
  font-weight: 700;
  display: block;
}

.registration__forms img {
  width: 50px;
  height: 50px;
}

html[dir='rtl'] .registration__forms .slider-transition-next .registration__forms__card {
  transform: rotateY(30deg);
}

html[dir='ltr'] .registration__forms .slider-transition-next .registration__forms__card {
  transform: rotateY(-30deg);
}

html[dir='rtl'] .registration__forms .slider-transition-prev .registration__forms__card {
  transform: rotateY(-30deg);
}

html[dir='ltr'] .registration__forms .slider-transition-prev .registration__forms__card {
  transform: rotateY(30deg);
}

.home {
  padding-top: 60px;
}

body.light-mode-active .home {
  background-image: none;
}

@media (max-width: 991.9px) {
  .home {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 1199.9px) {
  .home {
    padding-top: 20px;
  }
}

.home:before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  inset-inline-start: 50%;
  /* background: url('../images/style_images/hero-bg.svg') center center no-repeat; */
  background-size: contain;
  padding-inline-end: 120px;
  background-origin: content-box;
  pointer-events: none;
}

body.light-mode-active .home:before {
  opacity: 0.3;
}

@media (max-width: 1199.9px) {
  .home:before {
    padding-inline-end: 40px;
  }
}

@media (max-width: 991.9px) {
  .home:before {
    inset-inline-start: 0;
    padding-inline-end: 0;
    width: 100%;
    opacity: 0.1 !important;
  }
}

@media (max-width: 575.9px) {
  .home:before {
    background-position: center 80px;
  }
}

.home:after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  inset-inline-end: 50%;
  /* background: url('../images/style_images/hero-bg-2.svg') no-repeat; */
  background-size: contain;
  padding-inline-end: 10%;
  background-origin: content-box;
  pointer-events: none;
  opacity: 0.5;
}

body.light-mode-active .home:after {
  opacity: 0.2;
}

html[dir='rtl'] .home:after {
  background-position: bottom right;
}

html[dir='ltr'] .home:after {
  background-position: bottom left;
}

@media (max-width: 991.9px) {
  .home:after {
    content: none;
  }
}

.home__content {
  width: 50%;
}

@media (max-width: 991.9px) {
  .home__content {
    width: 100%;
    text-align: center;
  }
}

.home__content h1 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--light-blue);
  position: relative;
  z-index: 1;
}

body.light-mode-active .home__content h1 {
  color: var(--dark-blue);
}

@media (max-width: 1679.9px) {
  .home__content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 1399.9px) {
  .home__content h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 991.9px) {
  .home__content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 575.9px) {
  .home__content h1 {
    font-size: 1.75rem;
  }
}

.register-type {
  margin-top: 100px;
}

@media (max-width: 1679.9px) {
  .register-type {
    margin-top: 60px;
  }
}

@media (max-width: 575.9px) {
  .register-type {
    margin-top: 40px;
  }
}

.register-type__title {
  color: #fff;
  font-weight: 300;
  font-size: 1.875rem;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}

body.light-mode-active .register-type__title {
  color: var(--dark-blue);
}

@media (max-width: 1679.9px) {
  .register-type__title {
    font-size: 1.75rem;
  }
}

@media (max-width: 1399.9px) {
  .register-type__title {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
  }
}

@media (max-width: 991.9px) {
  .register-type__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.9px) {
  .register-type__title {
    font-size: 1.125rem;
  }
}

.register-type__list {
  display: flex;
  gap: 2.5rem;
}

@media (max-width: 991.9px) {
  .register-type__list {
    justify-content: center;
  }
}

@media (max-width: 575.9px) {
  .register-type__list {
    gap: 0.5rem;
    justify-content: center;
  }
}

.register-type__item {
  text-decoration: none;
  border: 2px solid rgba(102, 204, 255, 0.6);
  min-width: 210px;
  padding: 2rem 1.75rem;
  height: 100%;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background-color 0.25s ease-in-out;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}

body.light-mode-active .register-type__item {
  border: 2px solid rgba(38, 53, 112, 0.6);
}

body.light-mode-active .register-type__item path {
  fill: var(--dark-blue);
  transition: fill 0.25s ease-in-out;
}

body.light-mode-active .register-type__item span {
  color: var(--dark-blue);
  transition: color 0.25s ease-in-out;
}

body.light-mode-active .register-type__item:hover {
  background-color: var(--dark-blue);
}

body.light-mode-active .register-type__item:hover span {
  color: #fff;
}

body.light-mode-active .register-type__item:hover path {
  fill: #fff;
}

@media (max-width: 1399.9px) {
  .register-type__item {
    padding: 1.75rem 1.5rem;
    min-width: 190px;
    min-height: 170px;
  }
}

@media (max-width: 991.9px) {
  .register-type__item {
    align-items: center;
    min-height: 150px;
  }
}

@media (max-width: 575.9px) {
  .register-type__item {
    width: 50%;
    min-width: unset;
    padding: 1.5rem 1rem;
    min-height: 130px;
    max-width: 190px;
  }
}

.register-type__item svg {
  height: 55px;
  width: auto;
}

@media (max-width: 1399.9px) {
  .register-type__item svg {
    height: 40px;
  }
}

@media (max-width: 991.9px) {
  .register-type__item svg {
    height: 35px;
  }
}

.register-type__item span {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: auto;
}

@media (max-width: 1399.9px) {
  .register-type__item span {
    font-size: 1.125rem;
  }
}

@media (max-width: 575.9px) {
  .register-type__item span {
    font-size: 0.875rem;
  }
}

.register-type__item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.register-type__dropdown {
  position: relative;
}

@media (max-width: 991.9px) {
  .register-type__dropdown {
    position: static;
  }
}

@media (max-width: 575.9px) {
  .register-type__dropdown {
    width: 50%;
    max-width: 190px;
  }

  .register-type__dropdown .register-type__item {
    width: 100%;
    max-width: unset;
  }
}

/* .register-type__dropdown .dropdown-menu {
top: 30px;
inset-inline-start: 0;
left: auto;
min-width: 350px;
margin: 0;
border-radius: 0;
min-height: 190px;
text-align: start;
background-color: rgba(150, 140, 209, 0.3);
border: 2px solid rgba(104, 108, 155, 0.25);
backdrop-filter: blur(30px) brightness(0.75);
padding: 1.5rem 1rem;
display: block;
visibility: hidden;
opacity: 0;
transition: all 0.25s ease-in-out;
}

body.light-mode-active .register-type__dropdown .dropdown-menu {
background-color: rgba(38, 53, 112, 0.7);
border: 2px solid #263570;
}

@media (max-width: 991.9px) {
.register-type__dropdown .dropdown-menu {
  position: fixed;
  box-shadow: 0 0 0 2000px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  left: 50%;
  transform: translate(-50%, -50%);
  top: calc(50% + 30px);
  inset-inline-start: auto;
  min-width: unset;
  width: min(350px, 90%);
}
}

.register-type__dropdown .dropdown-menu.show {
visibility: visible;
opacity: 1;
top: 0;
}

@media (max-width: 991.9px) {
.register-type__dropdown .dropdown-menu.show {
  top: 50%;
}
} */

.register {
  padding-top: 110px;
  padding-bottom: 90px;
}

@media (max-width: 1199.9px) {
  .register {
    padding-top: 80px;
  }
}

@media (max-width: 991.9px) {
  .register {
    padding-bottom: 130px;
  }
}

@media (max-width: 575.9px) {
  .register {
    padding-bottom: 150px;
  }
}

.register .main-box {
  min-height: calc(100vh - 330px);
}

@media (max-width: 1199.9px) {
  .register .main-box {
    min-height: calc(100vh - 250px);
  }
}

@media (max-width: 991.9px) {
  .register .main-box {
    min-height: calc(100vh - 210px);
  }
}

@media (max-width: 575.9px) {
  .register .main-box {
    min-height: calc(100vh - 230px);
  }
}

.profile {
  padding: 2.25rem 0;
}

@media (max-width: 575.9px) {
  .profile {
    padding: 0;
  }
}

.profile__wrapper {
  display: flex;
}

@media (max-width: 991.9px) {
  .profile__wrapper {
    display: block;
  }
}

.profile__info_box {
  flex: 0 0 350px;
  width: 350px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 5px 83px rgba(0, 0, 0, 0.16);
  padding: 1.875rem 1.25rem;
  height: fit-content;
}

@media (max-width: 1679.9px) {
  .profile__info_box {
    flex: 0 0 300px;
    width: 300px;
  }
}

@media (max-width: 1199.9px) {
  .profile__info_box {
    flex: 0 0 260px;
    width: 260px;
  }
}

@media (max-width: 991.9px) {
  .profile__info_box {
    width: 100%;
    margin-bottom: 30px;
  }
}

.profile__details_wrapper {
  flex: 0 0 calc(100% - 350px);
  width: calc(100% - 350px);
  padding-inline-start: 0.875rem;
}

@media (max-width: 1679.9px) {
  .profile__details_wrapper {
    flex: 0 0 calc(100% - 300px);
    width: calc(100% - 300px);
  }
}

@media (max-width: 1199.9px) {
  .profile__details_wrapper {
    flex: 0 0 calc(100% - 260px);
    width: calc(100% - 260px);
  }
}

@media (max-width: 991.9px) {
  .profile__details_wrapper {
    width: 100%;
    padding-inline-start: 0;
  }
}

.profile__photo {
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #efefef;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0.625rem;
  position: relative;
}

.nav.nav-tabs.outlined-nav {
  border-bottom: #d9d9d9 2px solid;
  padding: 0px;
}

.outlined-nav .nav-link.active {
  border: 3px none;
  border-bottom: var(--base) 3px solid;
  color: #252f6b;
}

.outlined-nav .nav-link {
  border: 3px none;
  color: #bdbdbd;
}

@media (max-width: 575.9px) {
  .profile__photo {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
  }
}

.profile__photo.style2 {
  border: 0;
}

.profile__photo.style2 img {
  width: 100%;
  object-fit: cover;
}

.profile__photo img {
  width: 50px;
}

.profile__photo svg {
  width: 40px;
  height: auto;
}

.profile__photo .change__profile_photo {
  margin: 0;
  cursor: pointer;
  width: 26px;
  height: 26px;
  background: #989fb2;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
}

.profile__photo .change__profile_photo input {
  display: none;
}

.profile__name {
  text-align: center;
  color: var(--text-base-color);
  font-style: 1.325rem;
  margin-bottom: 3px;
}

.profile__location {
  text-align: center;
  color: #989fb2;
  font-size: 0.875rem;
  margin: 0;
}

.profile__location svg {
  margin-inline-end: 5px;
}

.profile__public_info {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  margin-top: 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 86px rgba(0, 0, 0, 0.1);
}

.profile__public_info > li {
  padding: 30px;
  display: flex;
}

.profile__public_info > li > svg {
  flex: 0 0 20px;
  width: 20px;
  display: block;
}

.profile__public_info > li > div {
  flex: 0 0 calc(100% - 20px);
  width: calc(100% - 20px);
  padding-inline-start: 20px;
}

.profile__public_info > li p {
  color: #989fb2;
  font-size: 1rem;
  line-height: 1;
}

.profile__public_info > li span {
  display: block;
  color: var(--text-base-color);
  font-size: 1rem;
  font-weight: 700;
}

.profile__public_info > li:not(:last-child) {
  border-bottom: 1px solid #d9d6e9;
}

.profile__title_box {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.16);
  border-radius: 3px;
  margin-bottom: 1rem;
}

@media (max-width: 575.9px) {
  .profile__title_box {
    display: block;
  }
}

.profile__title {
  margin: 0;
  font-weight: 700;
  font-size: 25px;
  color: var(--dark-blue);
}

@media (max-width: 575.9px) {
  .profile__title {
    margin-bottom: 15px;
    font-size: 22px;
  }
}

.profile__details_box {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.profile__subtitle {
  background: #fff;
  padding: 15px 60px;
  color: #989fb2;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
}

@media (max-width: 1679.9px) {
  .profile__subtitle {
    padding: 15px 30px;
  }
}

@media (max-width: 575.9px) {
  .profile__subtitle {
    font-size: 18px;
  }
}

.profile__entities-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 2rem 4rem;
  gap: 1rem;
}

@media (max-width: 1679.9px) {
  .profile__entities-row {
    padding: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1199.9px) {
  .profile__entities-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.profile__entities {
  padding: 1.5rem 1.125rem;
  border-bottom: 1px solid rgba(112, 112, 112, 0.15);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
}

.profile__entities.no-border {
  border-bottom: 0;
}

.profile__sub_entities_box {
  margin-top: 55px;
  background: #fff;
  border-radius: 5px;
  padding: 3rem 1rem 2rem;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
}

@media (max-width: 767.9px) {
  .profile__sub_entities_box {
    margin-inline-start: 0;
  }
}

@media (max-width: 575.9px) {
  .profile__sub_entities_box {
    margin-top: 35px;
  }
}

.profile__sub_entities_box .sub_entities_title {
  margin: 0;
  background: #989fb2;
  padding: 12px 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 33px;
  position: absolute;
  inset-inline-start: 20px;
  top: -25px;
}

@media (max-width: 575.9px) {
  .profile__sub_entities_box .sub_entities_title {
    inset-inline-start: 0;
    width: 100%;
    text-align: center;
  }
}

.profile__sub_entities_box > .entity__informations:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}

.profile__data {
  padding: 50px 60px 30px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}

@media (max-width: 1679.9px) {
  .profile__data {
    padding: 50px 30px 30px;
  }
}

@media (max-width: 1399.9px) {
  .profile__data {
    padding-bottom: 25px;
  }
}

@media (max-width: 575.9px) {
  .profile__data {
    padding: 40px 30px 20px;
  }
}

.profile__data.no-border {
  border-bottom: 0;
}

.profile__data.flex-style {
  display: flex;
}

@media (max-width: 1399.9px) {
  .profile__data.flex-style {
    flex-wrap: wrap;
  }
}

@media (max-width: 767.9px) {
  .profile__data.flex-style {
    display: block;
  }
}

.profile__data.flex-style .information__box {
  flex: 0 0 25%;
}

@media (max-width: 1399.9px) {
  .profile__data.flex-style .information__box {
    flex: 0 0 33.333%;
    margin-bottom: 10px;
  }
}

@media (max-width: 1199.9px) {
  .profile__data.flex-style .information__box {
    flex: 0 0 50%;
  }
}

.profile__entities-info {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 575.9px) {
  .profile__entities-info {
    flex-direction: column;
  }
}

.entity__informations {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.entity__photo {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.entity__photo img {
  max-height: 100%;
  object-fit: contain;
}

.entity__information__wrapper {
  flex: 0 0 calc(100% - 60px);
}

.entity__name {
  color: var(--text-base-color);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.entity__status {
  border-radius: 3px;
  padding: 5px 20px;
  margin: 0;
  font-size: 14px;
  height: fit-content;
  display: inline-block;
}

@media (max-width: 575.9px) {
  .entity__status {
    display: inline-block;
    margin-bottom: 15px;
  }
}

.entity__status.inprogress {
  color: #e5a430;
  background: rgba(229, 164, 48, 0.13);
}

.entity__status.completed {
  color: var(--green);
  background: rgba(77, 189, 149, 0.13);
}

.entity__status.uncompleted {
  color: #1bced8;
  background: rgba(27, 206, 216, 0.13);
}

.entity__info_list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  height: fit-content;
}

.entity__info_list > li {
  color: #989fb2;
  font-size: 14px;
}

.entity__info_list > li svg {
  margin-inline-end: 10px;
}

.entity__info_list > li:not(:last-child) {
  padding-inline-end: 20px;
  margin-inline-end: 20px;
  border-inline-end: 1px solid #eaeaea;
}

.information__icon {
  background: #fafafa;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

.information__data {
  flex: 0 0 calc(100% - 60px);
  padding-inline-start: 20px;
}

.information__data .data-label {
  color: #989fb2;
  font-size: 14px;
  margin: 0;
}

.information__data .data-info {
  color: var(--text-base-color);
  font-size: 20px;
  margin: 0;
}

.information__box {
  display: flex;
  flex-grow: 1;
}

.information__box--small .information__icon {
  width: 30px;
  height: 30px;
  flex: 30px 0 0;
}

.information__box--small .information__icon svg {
  width: auto;
  height: 14px;
  max-width: 100%;
}

.information__box--small .information__data {
  flex: 0 0 calc(100% - 30px);
  padding-inline-start: 10px;
}

.information__box--small .data-info {
  font-size: 18px;
}

.entity-landscape {
  display: flex;
}

@media (max-width: 991.9px) {
  .entity-landscape {
    display: block;
  }
}

.entity-landscape__profile {
  flex: 0 0 540px;
  width: 540px;
  background: #5758a1;
  padding: 100px 70px;
  text-align: center;
  height: 100%;
}

@media (max-width: 1679.9px) {
  .entity-landscape__profile {
    flex: 0 0 330px;
    width: 330px;
    padding: 100px 30px;
  }
}

@media (max-width: 991.9px) {
  .entity-landscape__profile {
    width: 100%;
    padding: 50px 30px;
  }
}

.entity-landscape .landscape-welcome {
  font-size: 2.5rem;
  color: #cbccff;
  font-weight: 700;
}

@media (max-width: 575.9px) {
  .entity-landscape .landscape-welcome {
    font-size: 1.875rem;
  }
}

.entity-landscape .profile__photo {
  width: 120px;
  height: 120px;
  overflow: hidden;
}

@media (max-width: 575.9px) {
  .entity-landscape .profile__photo {
    width: 90px;
    height: 90px;
  }
}

.entity-landscape .profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.entity-landscape__name {
  color: #fff;
  font-size: 2.125rem;
  margin-bottom: 3.125rem;
}

@media (max-width: 1679.9px) {
  .entity-landscape__name {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.9px) {
  .entity-landscape__name {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

.entity-landscape__profile-info {
  font-size: 1.25rem;
  color: #dedeff;
  margin-bottom: 3.125rem;
}

@media (max-width: 575.9px) {
  .entity-landscape__profile-info {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.entity-landscape .main-box__body {
  flex-grow: 1;
  padding-inline: 2.75rem;
}

@media (max-width: 1679.9px) {
  .entity-landscape .main-box__body {
    padding-inline: 2rem;
  }
}

@media (max-width: 575.9px) {
  .entity-landscape .main-box__body {
    padding-inline: 1rem;
  }
}

.entity-landscape .main-box__body .row {
  --bs-gutter-y: 1.5rem;
}

.search-result {
  padding-top: 1.5rem;
}

.search-result__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1679.9px) {
  .search-result__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199.9px) {
  .search-result__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.9px) {
  .search-result__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.search-result__list-item {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 4px 86px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1rem;
}

@media (max-width: 991.9px) {
  .search-result__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.search-result__list-item__logo {
  display: flex;
  flex: 90px 0 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 5px solid #efefef;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.search-result__list-item__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.search-result__list-item__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 4px;
}

.search-result__list-item__list {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
}

.search-result__list-item__list p {
  margin-bottom: 0;
  color: #989fb2;
}

.search-result__list-item__list p svg {
  display: inline-block;
  margin-inline-end: 0.5rem;
}

.search-404 {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.125rem;
  color: #989fb2;
}

.search-404 p {
  margin-top: 1rem;
}

.search-results {
  padding: 1.875rem 0;
}

.search-results__title {
  text-align: center;
  color: #989fb2;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.search-results__item {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 1.875rem;
  padding-bottom: 0.875rem;
}

.search-results__name {
  font-size: 1rem;
  color: var(--text-base-color);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.125rem;
}

.search-results__link {
  color: #989fb2;
  font-size: 0.875rem;
  transition: all 0.25s ease-in-out;
}

.search-results__link:hover {
  color: #777;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.pagination__button {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: transparent;
  border: 1px solid var(--sliver);
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.pagination__button:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
}

.pagination__button::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

html[dir='ltr'] .pagination__button::before {
  transform: rotate(180deg);
}

.pagination__button[disabled] {
  background: #e3e4e9;
  border-color: #e3e4e9;
  pointer-events: none;
}

.pagination__prev-btn::before {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='12' viewBox='0 0 9 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.839844 1.41L5.41984 6L0.839844 10.59L2.24984 12L8.24984 6L2.24984 0L0.839844 1.41Z' fill='%23C4CDD5'/%3E%3C/svg%3E%0A");
}

.pagination__next-btn::before {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='12' viewBox='0 0 9 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.16016 1.41L3.58016 6L8.16016 10.59L6.75016 12L0.750156 6L6.75016 0L8.16016 1.41Z' fill='%23C4CDD5'/%3E%3C/svg%3E%0A");
}

.pagination__page-num {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #212b36;
}

.pagination__page-num.current-page {
  background: var(--dark-blue);
  color: #fff;
  border-color: var(--dark-blue);
}

@media (max-width: 575.9px) {
  .switch-account {
    padding: 1.5rem 0;
  }
}

.switch-account__box {
  background-color: #f9f9f9;
  border-radius: 3px;
  max-width: 700px;
  margin-inline: auto;
  padding: 2rem;
}

@media (max-width: 575.9px) {
  .switch-account__box {
    padding: 1.5rem 1rem;
  }
}

.saved-account {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 3px;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border: 1px solid transparent;
}

@media (max-width: 767.9px) {
  .saved-account {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.9px) {
  .saved-account {
    padding: 1.5rem 0.5rem;
  }
}

.saved-account.active {
  border-color: var(--green);
}

@media (min-width: 768px) {
  .saved-account__info {
    margin-inline-end: auto;
    padding-inline-end: 1.5rem;
  }
}

.saved-account__logout {
  margin-inline-start: 0.5rem;
  color: var(--dark-orange);
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.saved-account__logout:hover {
  color: var(--red);
}

.saved-account .account-status {
  min-width: 140px;
  text-align: center;
}

.individual-welcome__title span {
  color: #989fb2;
  display: inline-block;
}

html[dir='ltr'] .individual-welcome__title span {
  margin-right: 1rem;
}

html[dir='rtl'] .individual-welcome__title span {
  margin-left: 1rem;
}

.profile-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0rem;
}

@media (max-width: 575.9px) {
  .profile-wrapper {
    display: block;
  }

  .profile-wrapper > .button {
    margin-top: 1rem;
  }
}

.profile-wrapper__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #989fb2;
}

@media (max-width: 575.9px) {
  .profile-wrapper__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}

.profile-systems {
  padding-top: 1.5rem;
  margin-bottom: 9rem;
}

.profile-systems__tabs .button {
  background-color: #f5f5f5;
  color: #303b6f;
  border: 1px solid rgba(87, 88, 161, 0.06);
}

.profile-systems__tabs .button:hover {
  color: #303b6f;
  background-color: #e6e4e4;
}

.profile-systems__tabs .button:not(:last-child) {
  margin-inline-end: 0.625rem;
}

.profile-systems__tabs .button.active {
  background-color: var(--dark-blue);
  color: #fff;
}

.profile-systems__tabs .button.active:hover {
  color: #fff;
  background-color: #1c264e;
}

.profile-systems__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1679.9px) {
  .profile-systems__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.9px) {
  .profile-systems__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.profile-systems__list-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--white);
  border-radius: 3px;
  transition: all 0.25s ease-in-out;
  text-decoration: none;
  border: 1px solid rgba(87, 88, 161, 0.1);
  height: 100%;
  position: relative;
  border-top: 3px solid var(--sky);
  display: flex;
  flex-direction: column;
}

.profile-systems__list-item header {
  padding-inline: 1rem;
  color: var(--primary-hover);
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.profile-systems__list-item header div {
  text-align: center;
}

.profile-systems__list-item header div:not(:last-child) {
  border: 1px solid var(--primary-hover);
  border-radius: 50px;
  padding: 0.1rem 1rem 0.5rem;
  font-size: 0.8rem;
}

@media (max-width: 575.9px) {
  .profile-systems__list-item header {
    flex-direction: column;
    align-items: start;
  }
}

html[dir='ltr'] .profile-systems__list-item header div:not(:last-child) {
  padding: 0.1rem 1rem 0.3rem;
}

.profile-systems__list-item header div:last-child {
  background-color: #f4f5f8;
  border-radius: 50px;
  padding: 0.1rem 1rem 0.4rem;
  font-size: 0.8rem;
}

.profile-systems__list-item h4 {
  color: #000062;
  margin: 1rem 0;
  padding-inline: 1rem;
  font-size: 1.2rem;
}

.profile-systems__list-item .timeline {
  background-color: #f5fcff;
  padding: 0.7rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.profile-systems__list-item .button {
  border-radius: 7px !important;
  margin-inline-end: 1rem;
  height: 35px;
  position: relative;
  border: 1px solid var(--dark-blue);
  font-size: 0.8rem;
}

.profile-systems__list-item .button i {
  position: relative;
  top: 3px;
}

.profile-systems__list-item .button:hover {
  background-color: var(--white);
  color: var(--dark-blue);
}

/* html[dir='rtl'] .profile-systems__list-item__actions {
margin-right: auto;
} */

/* html[dir='ltr'] .profile-systems__list-item__actions {
margin-left: auto;
} */

.profile-systems__list-item__logo {
  display: flex;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.profile-systems__list-item__logo.with-bg {
  background-color: #f5f5f5;
}

.profile-systems__list-item__logo img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border: 1px solid #f1f1f1;
  border-radius: 50%;
  object-fit: cover;
}

.profile-systems__list-item__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #263570;
}

.profile-systems__list-item__list {
  display: flex;
  margin-top: auto;
  flex-direction: column;
  gap: 0.5rem;
}

.profile-systems__list-item__list p {
  margin-bottom: 0;
  color: #989fb2;
  display: flex;
  align-items: baseline;
  position: relative;
  padding-inline-start: 20px;
  font-size: 0.8rem;
}

.profile-systems__list-item__list p svg,
.profile-systems__list-item__list p img {
  display: block;
  position: absolute;
  top: 3px;
  right: 0;
}

html[dir='rtl'] .profile-systems__list-item__list p svg,
html[dir='rtl'] .profile-systems__list-item__list p img {
  right: 0;
}

html[dir='ltr'] .profile-systems__list-item__list p svg,
html[dir='ltr'] .profile-systems__list-item__list p img {
  left: 0;
}

/* .profile-systems__list-item__actions {
position: absolute;
top: 0.75rem;
inset-inline-end: 0.5rem;
left: 0.45rem !important;
}

html[dir='ltr'] .profile-systems__list-item__actions {
position: absolute;
top: 0.75rem;
inset-inline-end: 0.5rem;
right: 0.45rem !important;
left: auto !important;
} */

/* .profile-systems__list-item__actions > a {
display: inline-block;
padding: 0.5rem 1rem;
} */

/* .profile-systems__list-item__actions > a img {
width: 60%;
} */

/* .profile-systems__list-item__actions .dropdown-menu.show {
inset: unset !important;
inset-inline-end: 0 !important;
transform: unset !important;
width: 250px;
min-width: 250px;
max-width: 250px;
} */

.login--links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.login--links a {
  display: inline-block;
  text-decoration: none;
  padding: 0.125rem 0rem;
  color: var(--dark-blue);
}

.login--links a:hover {
  color: #1c264e;
}

.coordinating-entity {
  margin-top: 35px;
  background: #fff;
  border: 1px solid rgba(87, 88, 161, 0.1);
  border-radius: 5px;
  padding: 3rem 3rem 2rem;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

@media (max-width: 1399.9px) {
  .coordinating-entity {
    flex-wrap: wrap;
  }
}

@media (max-width: 767.9px) {
  .coordinating-entity {
    margin-inline-start: 0;
  }
}

@media (max-width: 575.9px) {
  .coordinating-entity {
    margin-top: 20px;
  }
}

@media (max-width: 575.9px) {
  .coordinating-entity {
    display: block;
    padding: 2rem 1rem;
  }

  .coordinating-entity > div {
    margin-bottom: 20px;
  }
}

.coordinating-entity .sub_entities_title {
  margin: 0;
  background: #989fb2;
  color: #fff;
  padding: 8px 30px 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 25px;
  position: absolute;
  inset-inline-start: 20px;
  top: -25px;
}

@media (max-width: 575.9px) {
  .coordinating-entity .sub_entities_title {
    inset-inline-start: 0;
    text-align: center;
    top: -25px;
  }
}

.coordinating-entity__box {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-width: 200px;
  flex-grow: 1;
}

@media (min-width: 1400px) {
  .coordinating-entity__box:first-of-type {
    width: 25%;
  }
}

@media (max-width: 1399.9px) {
  .coordinating-entity__box {
    width: calc(50% - 1.75rem);
    flex-grow: unset;
  }
}

@media (max-width: 767.9px) {
  .coordinating-entity__box {
    width: 100%;
  }
}

.coordinating-entity__box__logo img {
  display: block;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  border: 2px solid #f1f1f1;
}

.coordinating-entity__box__logo.default-gov-logo {
  background-color: #f5f5f5;
}

.coordinating-entity__box__logo__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  flex: 35px 0 0;
}

.coordinating-entity__box__logo__icon.yellow-icon img {
  height: 18px;
}

.coordinating-entity__box__logo__icon svg {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.coordinating-entity__box__logo__icon.yellow-icon {
  background-color: rgba(252, 189, 76, 0.25);
}

.coordinating-entity__box__logo__icon.green-icon {
  background-color: #e8f7f1;
}

.coordinating-entity__box__logo__icon.status-rejected {
  background-color: #f7e8e8;
}

.coordinating-entity__box__logo__icon.status-completed {
  background-color: rgba(77, 189, 149, 0.1);
}

.coordinating-entity__box__logo__icon.status-inprogress {
  background-color: rgba(115, 200, 241, 0.1);
}

.coordinating-entity__box__logo__icon.status-waiting {
  background-color: #fff1d9;
}

.coordinating-entity__box__title {
  font-size: 1rem;
  color: #303b6f;
  font-weight: 600;
  margin-bottom: 0;
}

.coordinating-entity__box .coordinating__data .data-label {
  font-size: 0.8rem;
  color: #989fb2;
  margin: 0;
}

.coordinating-entity__box .coordinating-entity__box__logo img {
  width: 60px;
  height: 60px;
  border-radius: 3px;
}

.coordinating-entity__box .coordinating__data .data-info {
  color: var(--text-base-color);
  font-size: 0.9rem;
  margin: 0;
  display: flex;
}

.coordinating-entity__box .coordinating__data .data-info__edit {
  padding: 0.675rem;
  margin-inline-start: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(216, 216, 216, 0.25);
  transition: all 0.25s ease-in-out;
  border-radius: 3px;
  width: 37px;
  height: 37px;
  flex: 37px 0 0;
}

.coordinating-entity__box .coordinating__data .data-info__edit path {
  transition: all 0.25s ease-in-out;
}

.coordinating-entity__box .coordinating__data .data-info__edit:hover {
  background-color: var(--light-blue);
}

.coordinating-entity__box .coordinating__data .data-info__edit:hover path {
  fill: #fff;
}

.coordinating-entity__box > .entity__informations:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}

.empty-entities {
  height: 340px;
  border: 1px solid rgba(87, 88, 161, 0.3);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.empty-entities__icon {
  padding: 15px;
  background: #faa103;
  border-radius: 3px;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 1.25rem;
}

.empty-entities p {
  font-size: 1rem;
  color: #989fb2;
  margin: 0;
  text-align: center;
}

.empty-entities.no-border {
  border: 0;
}

.agency__profile--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 0.75rem;
  border: 1px solid #c5c5c5;
  border-radius: 3px;
}

.agency__profile--wrapper.disabled {
  background-color: #ececec;
  border-color: transparent;
}

.agency__photo-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agency__photo-actions a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  border: 1px solid transparent;
  background-color: #fff;
}

.agency__photo-actions a svg {
  width: 16px;
  height: 16px;
}

.agency__photo-actions-wrapper {
  display: flex;
  align-items: center;
}

.agency__photo-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #efefef;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.625rem;
  position: relative;
  background-color: #fff;
}

@media (max-width: 575.9px) {
  .agency__photo-wrapper {
    width: 70px;
    height: 70px;
  }
}

.agency__photo-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.agency__profile-photo {
  margin: 0;
  cursor: pointer;
  width: 26px;
  height: 26px;
  background: #989fb2;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  padding: 5px;
}

.agency__profile-photo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 575.9px) {
  .agency__profile-photo {
    width: 22px;
    height: 22px;
  }
}

.agency__profile-photo input {
  display: none;
}

.main-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0.125rem auto;
  max-width: 480px;
}

.main-tags a {
  padding: 0.75rem 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  border: 1px solid #fff;
  background: transparent;
  transition:
    background 0.25s ease-in-out,
    border 0.25s ease-in-out;
}

.main-tags a:hover {
  background: #fff;
  color: var(--primary);
}

.main-tags--status-colored {
  max-width: unset;
}

.main-tags--status-colored a {
  background: #989fb2;
  color: #f3f5fb;
  font-weight: 400;
  font-size: 18px;
}

.main-tags--status-colored a:hover {
  background: var(--primary);
  color: #fff;
}

.main-tabs {
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
}

.main-tabs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-tabs ul li:not(:last-child) {
  margin-bottom: 0.875rem;
}

@media (max-width: 991.9px) {
  .main-tabs {
    flex-direction: column;
  }
}

.main-tabs .nav {
  flex-direction: column;
  padding: 1.5rem 1.2rem;
  background: var(--white);
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

@media (min-width: 992px) {
  .main-tabs .nav {
    position: sticky;
    top: 1rem;
  }
}

.main-tabs .nav h5 {
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 991.9px) {
  .main-tabs .nav h5 {
    flex: 0 0 100%;
  }
}

@media (max-width: 991.9px) {
  .main-tabs .nav {
    flex-direction: row;
    gap: 0.875rem;
    justify-content: space-between;
  }
}

.main-tabs .nav-link {
  padding: 0.875rem;
  color: var(--primary);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  width: 250px;
  transition:
    color 0.25s ease-in-out,
    background 0.25s ease-in-out;
}

.main-tabs .nav-link:not(:last-of-type) {
  margin-bottom: 0.875rem;
}

.main-tabs .nav-link.active {
  background: var(--primary-hover);
  color: #fff;
  display: flex;
}

.main-tabs .nav-link.active::after {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' viewBox='0 0 9 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 15.9883L0 8.48828L7.5 0.988281L8.93382 2.44049L2.88603 8.48828L8.93382 14.5361L7.5 15.9883Z' fill='%23fff'/%3E%3C/svg%3E%0A");
}

.main-tabs .nav-link::after {
  content: '';
  width: 0.6rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' viewBox='0 0 9 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 15.9883L0 8.48828L7.5 0.988281L8.93382 2.44049L2.88603 8.48828L8.93382 14.5361L7.5 15.9883Z' fill='%232A346C'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  transition: background-image 0.25s ease-in-out;
}

@media (max-width: 991.9px) {
  .main-tabs .nav-link::after {
    display: none;
  }
}

html[dir='ltr'] .main-tabs .nav-link::after {
  transform: rotate(180deg);
}

@media (max-width: 991.9px) {
  .main-tabs .nav-link {
    padding: 0.5rem;
    text-align: center;
    width: 20%;
  }

  .main-tabs .nav-link:not(:last-of-type) {
    margin-bottom: 0;
  }
}

@media (max-width: 767.9px) {
  .main-tabs .nav-link {
    width: 30%;
    text-align: center;
  }
}

@media (max-width: 575.9px) {
  .main-tabs .nav-link {
    width: 100%;
    text-align: start;
  }
}

.main-tabs .tab-content {
  width: 100%;
}

.tab-content > .active {
  display: block;
}

.tab-content > .active .col-12 {
  min-height: 200px;
}

.contact-us__wrapper {
  padding-top: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-box {
  background: #fff;
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.05);
  padding: 1.875rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

@media (max-width: 767.9px) {
  .contact-box {
    height: fit-content;
    margin-bottom: 1.25rem;
  }
}

.contact-box__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact-box__icon::before {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-box__icon.purple {
  background: var(--primary-hover);
}

.contact-box__icon.purple::before {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='24' viewBox='0 0 15 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.43418 23.1742C1.80085 23.1742 1.26351 22.9536 0.82218 22.5122C0.38018 22.0702 0.15918 21.5326 0.15918 20.8992V3.09922C0.15918 2.46589 0.38018 1.92822 0.82218 1.48622C1.26351 1.04489 1.80085 0.824219 2.43418 0.824219H12.2342C12.8675 0.824219 13.4052 1.04489 13.8472 1.48622C14.2885 1.92822 14.5092 2.46589 14.5092 3.09922V20.8992C14.5092 21.5326 14.2885 22.0702 13.8472 22.5122C13.4052 22.9536 12.8675 23.1742 12.2342 23.1742H2.43418ZM7.33418 20.3992C7.61751 20.3992 7.85518 20.3032 8.04718 20.1112C8.23851 19.9199 8.33418 19.6826 8.33418 19.3992C8.33418 19.1159 8.23851 18.8786 8.04718 18.6872C7.85518 18.4952 7.61751 18.3992 7.33418 18.3992C7.05085 18.3992 6.81351 18.4952 6.62218 18.6872C6.43018 18.8786 6.33418 19.1159 6.33418 19.3992C6.33418 19.6826 6.43018 19.9199 6.62218 20.1112C6.81351 20.3032 7.05085 20.3992 7.33418 20.3992ZM2.43418 15.8992H12.2342V6.09922H2.43418V15.8992Z' fill='white'/%3E%3C/svg%3E%0A");
  width: 14px;
  height: 22px;
}

.contact-box__icon.light-blue {
  background: #66ccff;
}

.contact-box__icon.light-blue::before {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='18' viewBox='0 0 22 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.0748 17.2008C2.44147 17.2008 1.9038 16.9801 1.4618 16.5388C1.02047 16.0968 0.799805 15.5591 0.799805 14.9258V3.07578C0.799805 2.44245 1.02047 1.90478 1.4618 1.46278C1.9038 1.02145 2.44147 0.800781 3.0748 0.800781H18.9248C19.5581 0.800781 20.0958 1.02145 20.5378 1.46278C20.9791 1.90478 21.1998 2.44245 21.1998 3.07578V14.9258C21.1998 15.5591 20.9791 16.0968 20.5378 16.5388C20.0958 16.9801 19.5581 17.2008 18.9248 17.2008H3.0748ZM10.9998 10.2508L18.9248 5.25078V3.07578L10.9998 8.07578L3.0748 3.07578V5.25078L10.9998 10.2508Z' fill='white'/%3E%3C/svg%3E%0A");
  width: 20px;
  height: 16px;
}

.contact-box__icon.dark-blue {
  background: var(--primary);
}

.contact-box__icon.dark-blue::before {
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='22' viewBox='0 0 17 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.6666 11.0496C9.23327 11.0496 9.7166 10.8496 10.1166 10.4496C10.5166 10.0496 10.7166 9.56628 10.7166 8.99961C10.7166 8.43294 10.5166 7.94961 10.1166 7.54961C9.7166 7.14961 9.23327 6.94961 8.6666 6.94961C8.09993 6.94961 7.6166 7.14961 7.2166 7.54961C6.8166 7.94961 6.6166 8.43294 6.6166 8.99961C6.6166 9.56628 6.8166 10.0496 7.2166 10.4496C7.6166 10.8496 8.09993 11.0496 8.6666 11.0496ZM8.6666 21.1746C5.93327 18.8579 3.8916 16.7036 2.5416 14.7116C1.1916 12.7203 0.516602 10.8829 0.516602 9.19961C0.516602 6.64961 1.33727 4.62028 2.9786 3.11161C4.6206 1.60361 6.5166 0.849609 8.6666 0.849609C10.8166 0.849609 12.7126 1.60361 14.3546 3.11161C15.9959 4.62028 16.8166 6.64961 16.8166 9.19961C16.8166 10.8829 16.1416 12.7203 14.7916 14.7116C13.4416 16.7036 11.3999 18.8579 8.6666 21.1746Z' fill='white'/%3E%3C/svg%3E%0A");
  width: 16px;
  height: 20px;
}

.contact-box__label {
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #737b92;
}

.contact-box__info.purble-text {
  color: var(--purple-dark) !important;
}

.contact-box__info {
  display: block;
  margin: 0;
  color: var(--purple-dark);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all ease-in-out 0.25s;
}

.contact-box__info:hover {
  color: var(--dark-blue);
}

.steps-success .contact-box__info {
  color: #4dbd95;
}

.contact-us__form-wrapper {
  padding: 60px 0 40px;
  display: flex;
}

@media (max-width: 991.9px) {
  .contact-us__form-wrapper {
    display: block;
  }
}

.contact-us__form-wrapper_photo {
  flex: 0 0 400px;
  width: 400px;
}

@media (max-width: 1199.9px) {
  .contact-us__form-wrapper_photo {
    flex: 0 0 300px;
    width: 300px;
  }
}

@media (max-width: 991.9px) {
  .contact-us__form-wrapper_photo {
    margin: 0 auto 1.25rem;
  }
}

@media (max-width: 575.9px) {
  .contact-us__form-wrapper_photo {
    max-width: 300px;
    width: 100%;
  }
}

.contact-us__form-wrapper_photo img {
  width: 100%;
}

.contact-us__form-wrapper_form {
  flex-grow: 1;
  padding-inline-start: 60px;
}

@media (max-width: 991.9px) {
  .contact-us__form-wrapper_form {
    padding-inline-start: 0;
  }
}

.contact-us__form-wrapper_form textarea {
  height: auto;
  resize: none;
}

.contact-us__form-wrapper_form .submit-form-option {
  display: flex;
  gap: 1.25rem;
}

@media (max-width: 575.9px) {
  .contact-us__form-wrapper_form .submit-form-option {
    gap: 0.5rem;
  }
}

.about-office {
  max-width: 1000px;
  margin: 0 auto;
}

.about-office__box {
  background: #fff;
  border: 1px solid #eff1fa;
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-office__box__title {
  color: var(--primary-hover);
  font-size: 25px;
  margin-bottom: 15px;
}

.about-office__box p {
  color: var(--primary);
  font-size: 0.875rem;
  line-height: 24px;
  margin: 0;
}

.about-office__box.large-box {
  display: flex;
  margin-bottom: 1.25rem;
  padding-left: 2.75rem;
  align-items: flex-end;
}

html[dir='ltr'] .about-office__box.large-box {
  flex-direction: row-reverse;
}

@media (max-width: 991.9px) {
  .about-office__box.large-box {
    flex-direction: column;
    padding-left: 0;
    align-items: center;
  }

  html[dir='ltr'] .about-office__box.large-box {
    flex-direction: column;
  }
}

.about-office__box.large-box .office-manager-photo {
  flex: 0 0 250px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 991.9px) {
  .about-office__box.large-box .office-manager-photo {
    width: 200px;
    margin-inline: auto;
  }
}

.about-office__box.large-box .office-manager-photo img {
  width: 100%;
}

.about-office__box.large-box .office-manager-photo::after {
  content: '';
  /* background: url('../images/style_images/office-shape2.png'); */
  width: 90px;
  height: 138px;
  position: absolute;
  bottom: -15px;
  right: -25px;
  z-index: -1;
}

.about-office__box.large-box .office-manager-photo::before {
  content: '';
  /* background: url('../images/style_images/office-shape1.png'); */
  width: 110px;
  height: 170px;
  position: absolute;
  top: 0;
  left: -2.75rem;
  z-index: -1;
}

.about-office__box.large-box .large-box-info {
  padding: 1.875rem;
  flex-grow: 1;
}

@media (max-width: 575.9px) {
  .about-office__box.large-box .large-box-info {
    padding: 1rem;
  }
}

.button--red {
  background-color: #ff0000;
  color: #fff;
}

.button--red:hover {
  background-color: #cc0000;
  color: #fff;
}

.form-title {
  font-size: 1rem;
  color: #989fb2;
  margin: 0;
}

.form-title.edited {
  color: var(--dark-blue);
}

.form-title.date {
  font-size: 15px;
}

.form__control.dpo-form[readonly] {
  border-color: #c5c5c5;
  background-color: transparent;
}

.form__control.dpo-form::placeholder {
  font-weight: 700;
  color: #a1a1a1;
}

.form__label.dpo-form {
  display: block;
  font-weight: 400;
  font-size: 10px;
  color: var(--sliver);
}

.form__label.dpo-form.label-large {
  font-weight: 400;
  font-size: 14px;
}

.form--error .form__control.dpo-form {
  border-color: var(--pink);
}

.form--error .form__label.dpo-form.label-large {
  color: var(--pink);
}

.form__label.dpo-form.require::after {
  content: '*';
  font-size: 10px;
  color: #ff375e;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.form__control.dpo-form {
  border: none;
  border-bottom: 2px solid #c5c5c5;
  padding: 0.5rem 0rem;
  font-size: 0.813rem;
  font-weight: 600;
  color: #444;
  height: 50px;
  border-radius: 0;
}

input[type='date'].dpo-form::-webkit-inner-spin-button,
input[type='date'].dpo-form::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.days-en {
  direction: ltr;
  text-align: end;
}

.dropdown-men-end {
  line-height: normal;
  width: 200px;
}

.manage-page {
  margin-top: 0;
  margin-bottom: 2rem;
}

/* .table__status--incomplete-fixed {
background-color: rgba(115, 200, 241, 0.1);
color: #1bced8;
} */

.dark-blue-text {
  color: var(--dark-blue) !important;
}

.bold-text {
  font-weight: 600;
}

.owner-page-menu {
  line-height: normal;
}

.input-group-addon {
  padding: 12px 8px;
}

html[dir='ltr'] .input-group-addon {
  margin-left: -50px;
}

html[dir='rtl'] .input-group-addon {
  margin-right: -50px;
}

.new-card-alignment {
  display: flex;
}

.profile-system-edited {
  justify-content: space-between;
}

.list-items-edited {
  flex-direction: row;
}

@media (max-width: 1199.9px) {
  .new-card-alignment {
    flex-direction: column;
    align-items: center;
  }
}

.agency__profile--wrapper.no-border {
  border: 0;
  padding: 0;
  justify-content: right;
  gap: 4rem;
}

.agency__profile--wrapper.no-border.edited {
  border: 0;
  padding: 0;
  justify-content: left;
  gap: 4rem;
}

.dpo-form.require {
  font-size: 1rem;
}

.form__label.dpo-form.require::after {
  content: '*';
  font-size: 30px;
  color: #ff375e;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.steps-form__attachments__content.img {
  flex-grow: 0;
}

.splitter {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 575.9px) {
  .splitter {
    max-width: 266px;
  }

  .button.button--dark-blue.en {
    width: 30%;
  }
}

.uploaded-file.edited {
  width: 100%;
}

.steps-form__step-content.edited {
  background-color: #fff;
  padding: 0;
}

.orders-table-container.no-width {
  width: 100%;
  padding-bottom: 0;
  border-bottom: none;
}

/* .orders-table-item {
text-decoration: none;
color: var(--dark-blue);
}

.orders-table-container.no-width .profile-wrapper.manage-page.edited {
margin-bottom: 0;
} */

.calendar-toggler.inline a {
  text-align: center;
  width: 100%;
  border-bottom: 2px solid;
  border-radius: 0;
}

.orders-table-list li {
  width: 50%;
}

/* @media (max-width: 575.9px) {
.orders-table-container {
  width: 50%;
}
}

.orders-table-container.unselected {
border: none;
opacity: 0.4;
}

.orders-table-item:hover {
color: var(--dark-blue);
}
*/
/* ssssssssssss */
.orders-table-list {
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 0;
  align-items: center;
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.orders-table-list::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.manage-page.edited {
  border-bottom: 1px solid #eaeaea;
}

/* .table.tablestriped.edited {
color: var(--dark-blue);
}

.table__status--completed.edited {
background-color: unset;
}

.table__status--review.edited {
background-color: unset;
}

.table__status--reject.edited {
background-color: unset;
} */

.rotate-180 {
  transform: rotate(180deg);
}

.input-group-addon {
  padding: 12px 8px;
}

html[dir='ltr'] .input-group-addon {
  margin-left: -50px;
}

html[dir='rtl'] .input-group-addon {
  margin-right: -50px;
}

.form-message {
  background: rgba(115, 200, 241, 0.1);
  padding: 1.5rem 1.25rem;
  color: var(--dark-blue);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 0.875rem;
  border: 1px solid var(--dark-blue);
}

.custom-accordion__answer-radio-wrapper.edited {
  gap: 0px;
}

.form__control.edited {
  background: unset;
}

.form-error {
  background: rgba(232, 17, 17, 0.2);
  padding: 1.5rem 1.25rem;
  color: #e81111;
  display: flex;
  font-size: 14px;
  margin: 0;
  font-size: 0.875rem;
  gap: 0.75rem;
}

.form-inprogress {
  background: rgba(115, 200, 241, 0.1);
  padding: 1.25rem;
  color: #1bced8;
  display: flex;
  font-size: 14px;
  margin: 0;
  font-size: 0.875rem;
  gap: 0.75rem;
}

.form-accepted {
  background: rgba(77, 189, 149, 0.1);
  padding: 1.5rem 1.25rem;
  color: #4dbd95;
  display: flex;
  font-size: 14px;
  margin: 0;
  font-size: 0.875rem;
  gap: 0.75rem;
}

.form-error-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-button {
  background-color: transparent;
}

.accordion-item {
  background-color: transparent;
  overflow: hidden;
}

.accordion-button.edited {
  background-color: #dfe9ff;
}

.custom-accordion__header.edited {
  background-color: #6f6ea7;
  min-height: 65px;
  display: flex;
}

.accordion-button.disabled {
  background-color: rgba(152, 159, 178, 1);
  cursor: auto;
  color: black;
  opacity: 0.6;
}

/* .custom-accordion__header .accordion-button.disabled::after {
background-image: url('/images/style_images/plusSign.svg');
} */

.custom-accordion__header.disabled {
  color: black;
  opacity: 0.5;
}

.main-box__sub-title--black {
  color: #000;
  font-weight: 700;
}

/* .dropdown-menu.search-added {
width: 33%;
overflow-y: scroll;
height: 226px;
padding: 0 2rem;
margin: 0 2rem;
background: #fff;
}

.dropdown-menu.search-added::-webkit-scrollbar {
width: 16px;
}

.dropdown-menu.search-added::-webkit-scrollbar-track {
background: #d9d9d9;
border-radius: 2px;
margin-block-start: 4rem;
margin-block-end: 1rem;
}

.dropdown-menu.search-added::-webkit-scrollbar-thumb {
background: #616e7e;
border-radius: 2px;
margin-block-start: 4rem;
margin-block-end: 1rem;
}

html[dir='rtl'] .dropdown-menu.search-added::-webkit-scrollbar-track,
html[dir='rtl'] .dropdown-menu.search-added::-webkit-scrollbar-thumb {
border-right: 12px solid #fff;
}

html[dir='ltr'] .dropdown-menu.search-added::-webkit-scrollbar-track,
html[dir='ltr'] .dropdown-menu.search-added::-webkit-scrollbar-thumb {
border-left: 12px solid #fff;
} */

.form-group.edited {
  width: 100%;
}

.number-tasks {
  opacity: 0.4;
  position: absolute;
  margin: 0px 10px 0px 10px;
  background-color: var(--sliver);
  height: 20px;
  width: 20px;
  font-size: 14px;
  text-align: center;
  color: black;
}

.custom-accordion__status.edited {
  background: unset;
  font-size: 0.8rem;
}

.custom-accordion__status.edited i::before {
  width: 18px;
  height: 15px;
}

.custom-radio.edited {
  min-width: 150px;
}

.custom-radio__content {
  font-size: 1rem;
}

.eligibility-questions__form.edited {
  justify-content: flex-start;
}

.service-card {
  transition: ease-out 0.4s;
}

.service-card:hover .button.edited.service {
  display: block;
  background: var(--purple-pale);
  box-shadow: inset 0 0 0 0 var(--dark-blue);
}

.service-card .button.edited.service:hover {
  box-shadow: inset 400px 0 0 0 var(--dark-blue);
}

.row.flex-center {
  justify-content: center;
}

.dpo-form.date-form::before {
  /* content: url('../images/style_images/Calender.svg'); */
}

.dpo-form.date-form-en::after {
  /* content: url('../images/style_images/Calender.svg'); */
}

html[dir='ltr'] .dpo-form.outline {
  text-align: start;
}

.dpo-form.outline {
  border: 1px solid #c5c5c5;
  padding: 0.5rem 1.25rem;
  text-align: end;
  border-radius: 3px;
}

.button--light-blue-outline.attachement-edited {
  width: 100%;
  border-style: dotted;
  justify-content: flex-start;
  font-size: 1.25rem;
}

.button--light-blue-outline-attachment {
  width: auto;
  border-style: dotted;
  justify-content: flex-start;
  font-size: 0.8rem;
  background: rgba(216, 237, 249, 0.41);
  border: 2px dashed #66ccff;
  color: #66ccff;
}

.button--light-blue-outline-attachment[disabled] {
  background-color: #e3e4e9 !important;
  border-color: #e3e4e9 !important;
  cursor: auto;
  color: #c9c9c9 !important;
}

.attachement.require::after {
  content: '*';
  font-size: 30px;
  color: #ff375e;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.steps-form__step-content.edited {
  background: unset;
}

.step-success-style2 {
  margin-bottom: 1rem;
  background: rgba(77, 189, 149, 0.1);
  border-radius: 5px;
  color: #4dbd95;
  font-size: 1rem;
  align-items: center;
}

.title-text-normal {
  font-weight: 400;
  font-size: 2rem;
  color: var(--primary);
  line-height: 67px;
  text-align: start;
}

.title-text-normal b {
  font-weight: 700;
}

.agency__profile--wrapper.en {
  justify-content: initial;
}

.step-inprogress-style2 {
  margin-bottom: 1rem;
  background: rgba(115, 200, 241, 0.1);
  border-radius: 5px;
  color: #1bced8;
  font-size: 1rem;
  align-items: center;
}

.form__control.en {
  padding-inline-start: 0.5rem;
}

.form__search__icon-en {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  inset-inline-end: 2rem;
  pointer-events: none;
}

.statistics-list {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.statistics-list::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.statistics-list .card-status-wrapper {
  flex: 0 0 183px;
}

@media (min-width: 767.9px) and (max-width: 1680px) {
  .statistics-list .card-status-wrapper {
    flex: 1 0 120px;
  }
}

@media (max-width: 767.9px) {
  .statistics-list .card-status-wrapper {
    flex: 1 0 150px;
  }
}

.card-status-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  box-shadow: 0px 5px 25px rgb(0 0 0 / 5%);
  padding: 8px;
}

.card__status {
  border-radius: 100%;
  width: 63px;
  height: 63px;
  min-width: 63px;
  min-height: 63px;
  max-width: 63px;
  max-height: 63px;
  padding: 16px;
  text-align: center;
}

.card__status--incomplete {
  background: rgba(102, 204, 255, 0.05);
}

.card__status--incompleted {
  background-color: rgb(145, 158, 171, 0.1);
}

.card__status--inprogress {
  background: rgba(243, 189, 80, 0.05);
}

.card__status--declined {
  background: rgba(235, 118, 110, 0.05);
}

.card__status--resend {
  background: rgba(6, 59, 204, 0.05);
}

.card__status--complete {
  background: rgba(78, 184, 150, 0.05);
}

.card__status--pending {
  background: rgba(243, 189, 80, 0.05);
}

.card__status--expired {
  background: rgba(105, 90, 163, 0.05);
}

.requests-card-status {
  color: #949494;
  font-size: 12px;
}

@media (max-width: 767.9px) {
  .card__status {
    width: 42px;
    height: 42px;
    padding: 10px;
    max-height: 42px;
    max-width: 42px;
    overflow: hidden;
    min-width: 42px;
    min-height: 42px;
  }

  .card__status img {
    width: 100%;
  }

  .statistics__title {
    font-size: 1rem;
  }

  .requests-card-status {
    font-size: 0.7rem;
  }
}

html[dir='rtl'] .container.edited {
  max-width: 95vw;
  padding: 0;
  margin-right: 4vw;
}

html[dir='ltr'] .container.edited {
  max-width: 95.12vw;
  padding: 0rem;
  margin-left: 4vw;
}

@media (max-width: 991px) {
  /* .table__card__mob > .col-md-6 div:nth-of-type(1) .headerTExt {
  margin-top: 30px;
} */

  .button {
    max-width: 100%;
  }

  .steps-form__attachments__item,
  .steps-form__attachments__item__updated {
    max-width: 100%;
  }

  .steps-form__attachments__item,
  .steps-form__attachments__item__updated {
    max-width: 100%;
  }

  /* .orders-table-list {
  overflow: auto;
  max-width: 100%;
} */

  form .devider {
    width: 80px;
    height: 0;
    border-bottom: 2px solid #e8eaee;
    margin: auto !important;
    display: inline-block;
  }

  .side-bar-container .col-md-1.side-bar,
  .side-bar-container .col-md-2.side-bar {
    width: 6.333333% !important;
  }

  .side-bar-container .col-md-11.side-bar,
  .side-bar-container .col-md-10.side-bar {
    width: 93.666667% !important;
  }

  .mom_w100 {
    max-width: 100%;
  }

  #mainBox {
    overflow: hidden;
  }
}

.container-header {
  display: flex;
  justify-content: space-between;
  padding-left: 1rem;
  padding-right: 1rem;
  padding: 1rem 1rem 1rem 1rem;
  background: white;
  box-shadow: 0 5px 15px rgb(0 0 0 / 16%);
  width: 100%;
  position: relative;
  align-items: center;
  color: var(--sliver);
}

.container-details {
  display: flex;
  gap: 3rem;
  width: max-content;
}

.container-user,
.container-entity {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 575px) {
  .side-bar-container .col-md-1.side-bar,
  .side-bar-container .col-md-2.side-bar {
    width: 12.333333% !important;
  }

  .side-bar-container .col-md-11.side-bar,
  .side-bar-container .col-md-10.side-bar {
    width: 87.666667% !important;
  }

  .container-header {
    flex-flow: column;
    align-items: start;
  }

  .container-details {
    margin-bottom: 0.5rem;
  }

  /* .container-button a {
      padding: 0.1rem 1rem 0.3rem;
      font-size: 0.8rem;
      border: 1px solid var(--dark-blue);
      background: transparent;
      color: var(--dark-blue);
      border-radius: 0;
  } */
}

@media (max-width: 992px) {
  .container-details {
    width: 100%;
    flex-flow: column;
    gap: 1rem;
  }

  .container-user {
    gap: 0.5rem;
  }

  .container-entity {
    gap: 0.5rem;
  }
}

.modal-title-blue {
  color: var(--purple-dark);
  font-weight: 700;
}

.modal-description {
  color: #989fb2;
  font-weight: 400;
  font-size: 13px;
}

.accordion-button.collapsed.optional-attachments-tag {
  justify-content: flex-start;
  gap: 2rem;
}

/* .table__status--optional {
color: #000;
background-color: rgba(125, 125, 125, 1);
font-size: 15px;
position: absolute;
right: 110px;
width: 60px;
height: 25px;
border-radius: 6px;
text-align: center;
}

html[dir='ltr'] .table__status--optional {
left: 155px;
width: 70px;
}

.table__status--optional.shown {
background: var(--secondary);
color: white;
font-weight: 300;
} */

.checkbox {
  width: 1.4rem;
}

.form__label.dpo-form.accordion-label {
  padding-bottom: 1rem;
}

.tooltip-group {
  display: flex;
}

.form__label.dpo-form.edited-new {
  margin-bottom: 0.5rem;
}

.text-color-dark {
  color: #4f5053;
}

.accordion-button.edited.print::after {
  display: none;
}

.devider {
  border-right: 2px solid #e8eaee;
  height: 76px;
  width: 0px;
}

.search-bar .col-md-1 {
  width: 10% !important;
}

.no-result {
  font-weight: 700;
  font-size: 18px;
  color: #6e77a5;
}

.search-bar {
  background-color: var(--white);
  box-shadow: 20px 20px 120px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem 0;
  padding: 0.5rem 1rem;
}

.search-bar section {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}

.search-bar header {
  cursor: pointer;
  color: #919191;
}

.search-bar section > div {
  width: 100%;
}

.search-bar section div:last-child {
  gap: 0.1rem;
}

@media (min-width: 1199.9px) {
  .search-bar section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 147px;
    gap: 1rem;
  }
}

.search-bar .col-md-1 {
  width: 10% !important;
  padding: 0;
  text-align: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 5px 15px rgb(0 0 0 / 16%);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  padding-top: 3rem;
  align-items: center;
  gap: 2rem;
  height: 268px;
  min-width: 200px;
  flex: 1;
}

html[dir='ltr'] .service-card:hover .service-title {
  font-size: 14px;
}

.col-md-2.edited {
  flex-wrap: wrap;
}

.service-title {
  color: var(--purple-pale);
  font-size: 1rem;
  text-align: center;
}

.service-card-icon {
  width: 80px;
  height: 80px;
}

@media (min-width: 575.9px) {
  .service-card:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgb(0 0 0 / 32%);
    padding-top: 1rem;
    gap: 10px;
  }

  .service-card:hover .service-card-icon {
    display: none;
  }

  .service-card .service-card-icon {
    display: inline-block;
    width: 60px;
    height: 50px;
  }

  .service-card:hover .service-card-text {
    color: #919191;
    font-size: 12px;
    text-align: center;
    display: inline-block;
  }
}

.service-card-text {
  display: none;
}

.button.edited.service {
  display: none;
}

.sidebar-dots {
  display: none;
}

@media (max-width: 575.9px) {
  .container-details {
    gap: 6px;
    font-size: 12px;
  }

  .container-entity {
    gap: 3px;
  }

  .container-user {
    gap: 3px;
  }

  html[dir='rtl'] .container.edited {
    width: 85vw;
    margin: 0;
    padding: 0;
    margin-right: 15vw;
  }

  html[dir='rtl'] .container.edited.is-open {
    margin-right: 15vw;
    width: 85vw;
  }

  .row.edited {
    margin: 0;
    gap: 2rem;
  }

  .sidebar-dots {
    display: block;
  }

  /* .sidebar-dots .profile-systems__list-item__actions > a {
  padding: 0;
  padding-right: 1.1rem;
} */

  /* .sidebar-dots .profile-systems__list-item__actions .dropdown-menu.show {
  width: auto;
  margin-left: 1rem;
} */

  .service-card {
    height: 35vh;
  }

  @media (min-width: 575.9px) {
    .service-card:hover {
      background: rgba(255, 255, 255, 1);
      box-shadow: 0 10px 30px rgb(0 0 0 / 32%);
      padding-top: 1rem;
      gap: 10px;
    }

    .service-card:hover .service-card-icon {
      width: 60px;
      height: 50px;
    }

    .service-card:hover .service-card-text {
      color: #919191;
      font-size: 12px;
      text-align: center;
      display: inline-block;
    }
  }

  .service-card-text {
    display: none;
  }

  .button.edited.service {
    display: none;
  }

  .sidebar-dots {
    display: none;
  }

  @media (max-width: 575.9px) {
    .container-details {
      gap: 6px;
      font-size: 12px;
    }

    .container-entity {
      gap: 3px;
    }

    .container-user {
      gap: 3px;
    }

    html[dir='rtl'] .container.edited {
      width: 85vw;
      margin: 0;
      padding: 0;
      margin-right: 15vw;
    }

    html[dir='rtl'] .container.edited.is-open {
      margin-right: 15vw;
      width: 85vw;
    }

    .row.edited {
      margin: 0;
      gap: 2rem;
    }

    .sidebar-dots {
      display: block;
    }

    /* .sidebar-dots .profile-systems__list-item__actions > a {
    padding: 0;
    padding-right: 1.1rem;
  } */

    /* .sidebar-dots .profile-systems__list-item__actions .dropdown-menu.show {
    width: auto;
    margin-left: 1rem;
  } */

    .service-card {
      height: 35vh;
    }

    .service-card:hover {
      background: rgba(255, 255, 255, 1);
      box-shadow: 0 10px 30px rgb(0 0 0 / 32%);
      padding-top: 1rem;
      gap: 2rem;
    }

    .service-card:hover .service-card-icon {
      width: 60px;
      height: 50px;
    }

    .service-card:hover .service-card-text {
      color: #919191;
      font-size: 1rem;
      text-align: center;
      display: inline-block;
    }
  }
}

.side-bar-container .col-md-2.side-bar {
  width: 12.66666667%;
}

.side-bar-container .col-md-10.side-bar {
  width: 87.33333333%;
}

.side-bar-container .col-md-1.side-bar {
  width: 4.33333333%;
}

.side-bar-container .col-md-11.side-bar {
  width: 95.66666667%;
}

.steps-form__step-warning.step-error-style2 {
  background: rgba(255, 55, 94, 0.1);
  color: #ff375e;
  margin-bottom: 8px;
}

.main-box-grey {
  background-color: #f4f5f8;
}

/**
 * placeholder-loading v0.6.0
 * Author: Zalog (https://www.zalog.ro/)
 * License: MIT
 **/
.ph-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 15px 15px 15px;
  margin-bottom: 30px;
  overflow: hidden;
  direction: ltr;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
}

.ph-item,
.ph-item *,
.ph-item ::after,
.ph-item ::before {
  box-sizing: border-box;
}

.ph-item::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 500%;
  margin-left: -250%;
  pointer-events: none;
  content: ' ';
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 46%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 54%
    )
    50% 50%;
  -webkit-animation: ph-animation 0.8s linear infinite;
  animation: ph-animation 0.8s linear infinite;
}

.ph-item > * {
  display: flex;
  flex: 1 1 auto;
  flex-flow: column;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 15px;
}

.ph-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: -7.5px;
}

.ph-row div {
  height: 10px;
  margin-top: 7.5px;
  background-color: #ced4da;
}

.ph-row .big,
.ph-row.big div {
  height: 20px;
}

.ph-row .empty {
  background-color: rgba(255, 255, 255, 0);
}

.ph-col-2 {
  flex: 0 0 16.6666666667%;
}

.ph-col-4 {
  flex: 0 0 33.3333333333%;
}

.ph-col-6 {
  flex: 0 0 50%;
}

.ph-col-8 {
  flex: 0 0 66.6666666667%;
}

.ph-col-10 {
  flex: 0 0 83.3333333333%;
}

.ph-col-12 {
  flex: 0 0 100%;
}

[class*='ph-col'] {
  direction: ltr;
}

[class*='ph-col'] > * + .ph-row {
  margin-top: 0;
}

[class*='ph-col'] > * + * {
  margin-top: 7.5px;
}

.ph-avatar {
  position: relative;
  width: 100%;
  min-width: 60px;
  overflow: hidden;
  background-color: #ced4da;
  border-radius: 50%;
}

.ph-avatar::before {
  display: block;
  padding-top: 100%;
  content: ' ';
}

.ph-picture {
  width: 100%;
  height: 120px;
  background-color: #ced4da;
}

@keyframes ph-animation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }

  100% {
    transform: translate3d(30%, 0, 0);
  }
}

.loader-container {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: inherit;
  background-color: #fff;
  background-image: -moz-linear-gradient(0deg, #fff 0%, #eee 50%);
}

.spinner-border {
  color: var(--primary);
}

ngb-datepicker {
  width: 100%;
}

ngb-datepicker .ngb-dp-weekdays,
ngb-datepicker .ngb-dp-week {
  justify-content: space-between;
}

ngb-datepicker .ngb-dp-month {
  width: 100%;
}

.form__control.readonly-form-input {
  border: 1px solid #c5c5c5;
  background-color: #fff;
}

.form__control.readonly-form-input:disabled {
  border-color: transparent;
  background-color: #ececec;
}

/* html[dir='rtl'] .table__card__mob .profile-systems__list-item__actions {
left: -0.55rem;
}

html[dir='ltr'] .table__card__mob .profile-systems__list-item__actions {
left: -auto;
right: -0.55rem;
} */

/* .table__card__mob .table__status {
border-radius: 50px;
min-width: auto;
margin-top: 0.5rem;
} */

select.form-select {
  padding: 0.375rem 0.75rem 0.375rem 2.25rem;
}

.viewInWeb {
  display: none;
}

.viewInMob {
  display: block;
  width: 100%;
}

@media (min-width: 1400px) {
  .viewInWeb {
    display: block;
  }

  .viewInMob {
    display: none;
  }
}

@media (max-width: 1680px) {
  .search-bar .col-md-2 {
    width: 16.66666667% !important;
  }
}

@media (max-width: 991px) {
  .search-bar .col-md-2 {
    width: 100% !important;
  }
}

/*---------------------------new css ----------------------------*/
.button--dark-blue-outline.reload:hover svg {
  fill: #fff;
}

.button--dark-blue-outline.reload svg {
  fill: var(--dark-blue);
}

.steps-form__step-warning.step-accepted-style2 {
  margin-bottom: 1rem;
  background: rgba(77, 189, 149, 0.1);
  border-radius: 5px;
  color: #4dbd95;
  font-size: 1rem;
  align-items: center;
}

@media (max-width: 575.9px) {
  .search-bar.edited {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
  }

  .search-bar.edited .col-md-2 {
    width: 100% !important;
  }

  .search-bar.edited .devider {
    display: none;
  }

  .search-bar.edited .col-md-1 {
    width: auto !important;
  }
}

.sidebar-divider {
  border: 1px solid rgba(248, 248, 248, 0.29);
  margin: 2rem 1rem 2rem 2rem;
}

html[dir='ltr'] .container-header {
  padding-right: 2rem;
}

.container-header-icon {
  width: 20px;
  height: 20px;
}

.container.edited {
  transition: ease-out 0.4s;
}

.service-card:hover .service-card-icon {
  display: none;
}

.eligibility-questions__form.index-animation {
  transition: 0.3s ease-in;
}

.form__search.edited {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.search-index {
  width: 420px;
  border-radius: 0.5rem;
  border: 1px solid var(--dark-blue);
}

@media (max-width: 575.9px) {
  .form__search.edited {
    display: block;
  }

  .search-index {
    width: 100%;
    margin-bottom: 1rem;
  }

  .form__search.edited .button {
    width: 100%;
  }
}

.new-card-alignment.edited {
  align-items: center;
  padding: 1rem;
  background: #f4f5f8;
  justify-content: center;
}

html[dir='ltr'] .new-card-alignment.edited {
  font-size: 1rem;
}

.card-details {
  display: flex;
  padding: 1rem;
  padding-right: 2rem;
  gap: 10px;
  justify-content: center;
}

html[dir='ltr'] .card-details {
  padding-left: 2rem;
}

.search-bar .form__control {
  color: var(--dark-blue);
}

.card-item {
  display: flex;
  gap: 10px;
  font-size: 12px;
  align-items: flex-end;
}

.card-item-text {
  display: flex;
  flex-direction: column;
  color: #a6a6a6;
  white-space: nowrap;
}

.card-item-content {
  color: var(--purple-dark);
  font-weight: 600;
}

.profile-systems__list-item__title.edited {
  color: black;
}

html[dir='ltr'] .profile-systems__list-item__title.edited {
  font-size: 1rem;
}

.modal-text-consultation {
  color: var(--sliver);
  font-size: 18px;
}

.attachement-consultation {
  border-style: dashed;
  background: rgba(216, 237, 249, 0.41);
}

.attachement-consultation.edited {
  border-width: 2px;
}

.info-box-with-copy.edited p {
  color: var(--dark-blue);
  font-size: 1.125rem;
}

.info-box-with-copy.edited p span {
  color: black;
  font-size: 1.125rem;
}

.info-box-with-copy.edited p span span {
  color: var(--dark-blue);
}

.steps-form.edited {
  margin: 0;
  max-width: inherit;
  padding: 1rem 4rem 0rem 4rem;
}

lib-buttons-radio-group,
app-block-radio-group {
  display: flex !important;
}

@media print {
  body {
    background: transparent !important;
  }

  ._certificate__list ul li.with-bg {
    background: linear-gradient(to left, #dcdcdc, transparent);
  }
}

.user-profile-img-contianer {
  margin-inline-end: 0.5rem;
}

html[dir='ltr'] .continue-button img {
  transform: rotate(180deg);
}

.justify-content-right {
  justify-content: right;
}

.main-box.style2 {
  min-height: 85vh;
}

a {
  text-decoration: none !important;
}

.padding-top {
  padding-top: 1.5rem !important;
}

.loader_parent_element {
  max-height: 50vh !important;
  overflow: hidden !important;
  min-height: 15vh;
}

.loader_parent_element .ph-item {
  height: 100%;
}

.main_about-office__box__title {
  color: var(--primary-hover);
  font-size: 31px;
  margin-bottom: 15px;
}

.service-card:hover .button.edited.service {
  background: var(--purple-pale);
  box-shadow: inset 0 0 0 0 var(--dark-blue);
  width: 100%;
  padding: 7px;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

.service-card:hover .button.edited.service.button--dark-blue-outline {
  display: block;
  background: transparent;
  box-shadow: inset 0 0 0 0 var(--dark-blue);
}

.video_wrapper img {
  width: 100%;
}

.video_content {
  position: relative;
}

.video_content_words {
  position: absolute;
  z-index: 9;
  width: 50%;
  top: 30%;
  left: 0;
  color: #fff;
}

.video_content_words h3 {
  font-size: 25px !important;
  margin-bottom: 20px;
}

.underLine_P {
  position: relative;
}

.underLine_P::after {
  position: absolute;
  content: '';
  height: 5px;
  width: 88px;
  background-color: var(--white);
  bottom: -20px;
}

html[dir='rtl'] .underLine_P::after {
  right: 0;
}

html[dir='ltr'] .underLine_P::after {
  left: 0;
}

.video_content_words .btn-info {
  width: 65%;
  padding: 15px;
  border-radius: 30px;
  background: transparent;
  border-color: #66ccff;
  color: #66ccff;
  font-size: 25px;
  margin-top: 15%;
  justify-content: space-between;
  display: flex;
  max-width: 450px;
  padding-top: 4px;
}

.video_content_words .btn-info img {
  width: auto;
  height: 30px;
}

iframe {
  max-width: 100% !important;
}

.sp_p {
  padding: 0 25px;
}

.video {
  position: relative;
}

.Mask {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 4;
  right: 0;
  background-image: linear-gradient(transparent, #24336a);
  bottom: 0;
}

.video_Mask {
  height: 50%;
  width: 100%;
  position: absolute;
  z-index: 4;
  right: 0;
  background-image: linear-gradient(#fff0, #11325d);
  bottom: 0;
}

.registration .sp_p {
  position: relative;
  color: var(--white);
  overflow: hidden;
  border-radius: 2.5rem;
  padding: 0;
  height: 100%;
  max-height: 450px;
}

.registration .sp_p h2 {
  font-size: 1.2rem;
}

.registration .sp_p img.img-fluid,
.bigImg .Mask {
  transition: 0.3s;
}

.registration .sp_p img.img-fluid {
  width: 100%;
}

.bigImg img,
.bigImg .Mask {
  transform: scale(1.1);
}

.registration .content {
  position: absolute;
  bottom: 0;
  z-index: 9;
  right: 0;
  left: 0;
  font-size: 1.3rem;
  padding: 1rem 1rem 100px;
}

.registration .underLine_P {
  opacity: 0.9;
  font-size: 0.8rem;
}

.arrow_con {
  position: absolute;
  bottom: 25px;
  z-index: 9;
}

html[dir='rtl'] .arrow_con {
  left: 20px;
}

html[dir='ltr'] .arrow_con {
  right: 20px;
}

.arrow_con .left_arrow {
  bottom: 27%;
  left: 16px;
  position: absolute;
  padding-bottom: 2px;
  width: auto;
  height: auto;
}

html[dir='ltr'] .arrow_con .left_arrow {
  transform: scaleX(-1);
}

.registration__forms {
  background-image: linear-gradient(#263570, #12100c);
  padding: 3rem 0;
}

.modal-custom-xl-width {
  max-width: 60%;
}

.modal-custom-xl-width iframe {
  width: 100%;
}

.modal-custom-xl-width .modal-header {
  background-color: var(--white);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  color: var(--dark-blue);
  font-weight: bolder;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.modal-custom-xl-width .modal-header span {
  color: var(--white);
}

.button--dark-blue {
  border-radius: 6px;
}

.index-col-xs-6 {
  flex: 0 0 auto;
  width: 50%;
}

.index-col-xs-4 {
  flex: 0 0 auto;
  width: 40%;
}

.faq_tab_height {
  height: 50vh;
  overflow-y: auto;
  width: 100%;
  padding-inline-end: 10px;
}

.faq_tab_height::-webkit-scrollbar {
  width: 0.5em;
}

.faq_tab_height::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.faq_tab_height::-webkit-scrollbar-thumb {
  background-color: #a9a1df;
  outline: 1px solid #a9a1df;
}

@media (min-width: 991px) {
  .video_content {
    height: 600px;
  }

  .video img {
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 991px) {
  br {
    display: none !important;
  }

  .video_content_words {
    width: 100%;
    padding: 0 25px;
    position: relative;
  }

  .video_content_words .btn-info {
    max-width: none;
    width: auto;
  }

  .registration__forms .overflow-hidden {
    margin-bottom: 30px;
  }

  .index-col-xs-6 {
    flex: 0 0 auto;
    width: 100%;
  }
}

html[dir='ltr'] .video_content_words {
  left: auto;
  right: 0;
}

/******************** inner pages style*********************/
.banner_image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 35px auto 0;
}

.transparent-banner,
.FAQ_banner,
.about_banner,
.privacy_banner {
  background: none !important;
  /* text-align: center; */
  padding-bottom: 35px;
}

.about_banner {
  background: none !important;
}

.privacy_banner {
  /* background-image: url('../images/style_images/Header_Image.svg'); */
}

.about_us_content ul li {
  position: relative;
  padding-inline-start: 30px;
  margin: 30px 0;
  padding-top: 6px;
  line-height: 20px;
}

.about_us_content ul li::before {
  content: '';
  width: 24px;
  height: 25px;
  /* background-image: url('../images/style_images/article_FILL0.png'); */
  position: absolute;
  right: 0;
  background-repeat: no-repeat;
  top: 21%;
}

.about_us_content ul.tracker_ul li::before {
  content: '';
  width: 30px;
  height: 30px;
  /* background-image: url('../images/style_images/article_FILL0.png'); */
  position: absolute;
  right: 0;
  background-repeat: no-repeat;
  top: 5px;
}

html[dir='ltr'] .about_us_content ul li {
  padding-left: 40px;
  padding-right: 0;
}

html[dir='ltr'] .about_us_content ul li::before {
  left: 0px;
  right: auto;
  top: 21%;
}

html[dir='ltr'] .about_us_content .tracker_ul li::before {
  left: -20px;
  right: auto;
  top: 0;
}

.accorddion_border {
  border: 1px solid var(--light-base);
  background-color: var(--white);
}

.tracker_ul ul {
  position: relative;
}

.tracker_ul ul::before {
  position: absolute;
  content: ' ';
  right: 0;
  height: 98%;
  width: 1px;
  border-left: 2px dashed #d1cbee;
  top: 5%;
}

@media (max-width: 768px) {
  .tracker_ul ul::before {
    top: 2%;
  }
}

html[dir='ltr'] .tracker_ul ul::before {
  right: auto;
  left: 0;
}

.tracker_ul ul li {
  margin-top: 0;
}

.tracker_ul ul li:not(:last-child) {
  margin-bottom: 2rem;
}

.tracker_ul ul li::before {
  /* background-image: url('../images/style_images/list_edit_icon.png'); */
  background-size: 100%;
  width: 40px;
  height: 40px;
}

.tracker_ul ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

html[dir='rtl'] .tracker_ul ul li::before {
  right: -19px;
}

html[dir='ltr'] .tracker_ul ul li::before {
  left: -19px;
}

.about_us_content .tracker_ul ul li:nth-child(1)::before {
  /* background-image: url('../images/style_images/flag_icon.png'); */
}

.about_us_content .tracker_ul ul li:nth-child(2)::before {
  /* background-image: url('../images/style_images/hand_icon.png'); */
}

.about_us_content .GOV_tracker_ul li:nth-child(1)::before {
  /* background-image: url('../images/style_images/flag_icon.png'); */
}

.about_us_content .GOV_tracker_ul li:nth-child(2)::before {
  /* background-image: url('../images/style_images/person_icon.png'); */
}

.about_us_content .GOV_tracker_ul li:nth-child(3)::before {
  /* background-image: url('../images/style_images/list_edit_icon.png'); */
}

.about_us_content .GOV_tracker_ul li:nth-child(4)::before {
  /* background-image: url('../images/style_images/person_icon_plus.png'); */
}

.about_us_content .GOV_tracker_ul li:nth-child(5)::before {
  /* background-image: url('../images/style_images/medal_icon.png'); */
}

.about_us_content .complaint_tracker_ul li:nth-child(1)::before {
  /* background-image: url('../images/style_images/flag_icon.png'); */
}

.about_us_content .complaint_tracker_ul li:nth-child(2)::before {
  /* background-image: url('../images/style_images/dashboard.png'); */
}

.about_us_content .complaint_tracker_ul li:nth-child(3)::before {
  /* background-image: url('../images/style_images/person_icon.png'); */
}

.about_us_content .complaint_tracker_ul li:nth-child(4)::before {
  /* background-image: url('../images/style_images/question_list.png'); */
}

.about_us_content .complaint_tracker_ul li:nth-child(5)::before {
  /* background-image: url('../images/style_images/list_edit_icon.png'); */
}

.about_us_content .complaint_tracker_ul li:nth-child(6)::before {
  /* background-image: url('../images/style_images/submit_icon.png'); */
}

.about_us_content .corrective_tracker_ul li:nth-child(1)::before {
  /* background-image: url('../images/style_images/letter_down_arrow.png'); */
}

.about_us_content .corrective_tracker_ul li:nth-child(2)::before {
  /* background-image: url('../images/style_images/submit_icon.png'); */
}

.about_us_content .corrective_tracker_ul li:nth-child(3)::before {
  /* background-image: url('../images/style_images/alarm.png'); */
}

.about_us_content .corrective_tracker_ul li:nth-child(4)::before {
  /* background-image: url('../images/style_images/right_iaon.png'); */
}

.about_us_content .corrective_tracker_ul li:nth-child(5)::before {
  /* background-image: url('../images/style_images/like_icon.png'); */
}

.about_us_content .dataLeak_tracker_ul li:nth-child(1)::before {
  /* background-image: url('../images/style_images/flag_icon.png'); */
}

.about_us_content .dataLeak_tracker_ul li:nth-child(2)::before {
  /* background-image: url('../images/style_images/dashboard.png'); */
}

.about_us_content .dataLeak_tracker_ul li:nth-child(3)::before {
  /* background-image: url('../images/style_images/hand_icon.png'); */
}

.about_us_content .dataLeak_tracker_ul li:nth-child(4)::before {
  /* background-image: url('../images/style_images/list_edit_icon.png'); */
}

.registration__forms img.img-fluid {
  max-width: 100%;
  height: 100%;
  width: auto;
}

.about_us_content .impactAsessment_tracker_ul li:nth-child(1)::before {
  /* background-image: url('../images/style_images/flag_icon.png'); */
}

.about_us_content .impactAsessment_tracker_ul li:nth-child(2)::before {
  /* background-image: url('../images/style_images/dashboard.png'); */
}

.about_us_content .impactAsessment_tracker_ul li:nth-child(3)::before {
  /* background-image: url('../images/style_images/hand_icon.png'); */
}

.about_us_content .impactAsessment_tracker_ul li:nth-child(4)::before {
  /* background-image: url('../images/style_images/list_edit_icon.png'); */
}

.about_us_content .impactAsessment_tracker_ul li:nth-child(5)::before {
  /* background-image: url('../images/style_images/submit_icon.png'); */
}

.about_us_content .impactAsessment_tracker_ul li:nth-child(6)::before {
  /* background-image: url('../images/style_images/list_search.png'); */
}

.about_us_content .impactAsessment_tracker_ul li:nth-child(7)::before {
  /* background-image: url('../images/style_images/letter_check.png'); */
}

@media (max-width: 768px) {
  .FAQ_banner,
  .about_banner,
  .privacy_banner {
    background: none;
    min-height: auto;
  }

  .faq_tab_height {
    height: auto;
  }

  .blue-banner::before,
  .blue-banner::after {
    content: none;
  }

  .blue-banner {
    padding: 2rem 0;
  }
}

.main-link {
  color: #fff;
  text-decoration: none;
  padding: 1rem 0 1.875rem;
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.25s ease-in-out;
  position: relative;
}

.main-link:hover {
  color: #ececec;
}

.static_download_pdf {
  display: inline-block;
  font-size: 14px;
  margin-top: 25px;
  border: 1px solid var(--purple-dark);
  color: var(--purple-dark);
  font-weight: bold;
}

.static_download_pdf img {
  margin-left: 20px;
}

html[dir='ltr'] .static_download_pdf img {
  margin-right: 20px;
  margin-left: 0;
}

.start_service_btn {
  margin-top: 20px;
  float: left;
  display: flex;
  padding: 8px 60px;
  border-radius: 0;
}

html[dir='ltr'] .start_service_btn {
  float: right;
}

.child_ul li::before {
  display: none !important;
}

.child_ul {
  list-style: disc !important;
}

.child_ul li {
  padding: 0 !important;
}

html[dir='ltr'] .slide-button--prev::before {
  left: 0;
}

html[dir='ltr'] .slide-button--next::before {
  right: 0;
  left: auto;
}

.no_banner_bg .blue-banner::before,
.no_banner_bg .blue-banner::after {
  display: none;
}

.no_banner_bg .tab-pane {
  position: relative;
  height: 100%;
}

.no_banner_bg .tab-pane::before {
  content: '';
  /* background: url('../images/style_images/bg-shapes1.png') no-repeat; */
  max-width: 20%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9;
  background-size: 100%;
  opacity: 0.2;
}

html[dir='ltr'] .no_banner_bg .tab-pane::before {
  right: 0;
  left: auto;
  transform: scaleX(-1);
}

/* .row {
margin-left: 0 !important;
margin-right: 0 !important;
} */

.video_content > img {
  padding-left: 0;
  padding-right: 0;
}

.button.edited.service.button--dark-blue-outline:hover {
  color: #fff;
  background-color: var(--dark-blue) !important;
}

.multiselect-dropdown .dropdown-btn {
  display: flex !important;
  width: 100% !important;
  border: 1px solid #c5c5c5 !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.813rem !important;
  font-weight: 100 !important;
  color: #c5c5c5 !important;
  min-height: 50px !important;
  border-radius: 3px !important;
  padding-top: 13px !important;
  flex-wrap: wrap;
}

.multiselect-dropdown .dropdown-btn .dropdown-multiselect__caret:before {
  position: relative !important;
  border-color: transparent !important;
  border-width: 0 !important;
  top: 10px !important;
  content: '' !important;
  display: block !important;
  width: 10px !important;
  height: 10px !important;
  border-bottom: 2px solid #c5c5c5 !important;
  border-right: 2px solid #c5c5c5 !important;
  transform: rotate(45deg) !important;
}

.multiselect-dropdown .dropdown-btn .dropdown-multiselect__caret {
  left: 1px !important;
  right: auto !important;
}

html[dir='ltr'] .multiselect-dropdown .dropdown-btn .dropdown-multiselect__caret {
  right: 1px !important;
  left: auto !important;
}

html[dir='rtl'] ng-multiselect-dropdown .dropdown-list li {
  padding: 6px 10px;
  cursor: pointer;
  font-size: 14px;
  text-align: right !important;
}

html[dir='rtl'] ng-multiselect-dropdown .multiselect-item-checkbox input[type='checkbox'] + div {
  padding-right: 2em !important;
  padding-left: 0 !important;
}

html[dir='rtl'] ng-multiselect-dropdown .multiselect-item-checkbox input[type='checkbox'] + div:before {
  left: auto !important;
  right: 0 !important;
}

html[dir='rtl'] ng-multiselect-dropdown .multiselect-item-checkbox input[type='checkbox'] + div:after {
  left: auto !important;
  right: 4px !important;
}

html[dir='rtl'] .multiselect-dropdown .dropdown-btn {
  text-align: right !important;
}

html[dir='ltr'] .multiselect-dropdown .dropdown-btn {
  text-align: left !important;
}

.multiselect-item-checkbox input[type='checkbox'] + div:before {
  border: 2px solid var(--dark-blue) !important;
}

.multiselect-item-checkbox input[type='checkbox']:checked + div:before {
  background: var(--dark-blue) !important;
}

.multiselect-dropdown .dropdown-btn .selected-item-container .selected-item {
  background: var(--dark-blue) !important;
  border: 1px solid var(--dark-blue) !important;
}

/* html[dir=rtl] ng-multiselect-dropdown .dropdown-list .filter-textbox input::placeholder{
color: transparent !important;
}
html[dir=rtl] ng-multiselect-dropdown .dropdown-list .filter-textbox input{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='50px' width='100%'><text x='0' y='15' fill='gray' font-size='15'>البحث</text></svg>");
  background-repeat: no-repeat;
  padding: 0 26px 0 0 !important;
  transform: translate(calc(100% - 45px));
}
html[dir=rtl] ng-multiselect-dropdown .dropdown-list .filter-textbox input:focus {
  background-image: none;
} */

html[dir='rtl'] label.star {
  float: left !important;
}

.comment-thread {
  border-color: transparent;
  background-color: #ececec;
}

.scroll-content {
  max-height: calc(100vh - 500px);
  overflow-y: auto;
}

.comment-thread-button {
  float: right !important;
}

html[dir='rtl'] .comment-thread-button {
  float: left !important;
}

.vision_and_mission h2 {
  color: var(--primary-hover);
  font-size: 31px;
  margin-bottom: 15px;
}

.registration__forms img.img-fluid {
  max-width: 100%;
  height: 100%;
  width: auto;
}

.comment-overflow {
  max-height: 100%;
  overflow-y: scroll;
}

/**************tet*******************/
.image-rounded {
  width: 100%;
  height: 100%;
  border-radius: 200px;
  overflow: hidden;
}

questionnaire-page {
  margin-right: unset;
  margin-left: unset;
  padding-right: unset;
  padding-left: unset;
}

.about_us_content .tracker_ul li {
  padding-top: 9px;
}

html[dir='rtl'] .top {
  float: right !important;
}

html[dir='ltr'] .top {
  float: left !important;
  padding: 16px;
  max-width: 252px;
}

html[dir='ltr'] .top2 {
  padding: 14px !important;
  margin: 5px 9px 7px 285px;
}

html[dir='rtl'] .top2 {
  padding: 4px !important;
  margin: 5px 320px 0px 7px;
}

.result-button {
  margin-right: 200px;
}

html[dir='ltr'] .result-button {
  margin-left: 200px;
}

.card-button[_ngcontent-rlu-c353] {
  border-radius: 17px;
  background: #eded33;
  width: 140px;
  border-color: #eded33;
  font-size: 15px;
  padding: 3px;
}

.img-flip {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

html[dir='rtl'] .new__form__label {
  margin-right: -68rem;
  width: 146rem;
}

html[dir='ltr'] .button-card {
  left: 93rem !important;
}

html[dir='ltr'] .typograpghy {
  right: 32rem !important;
}

html[dir='rtl'] .span_Spacing {
  margin-right: 20px !important;
}

html[dir='ltr'] .span_Spacing {
  margin-left: 20px !important;
}

html[dir='rtl'] .profile-systems__list-item__title.edited.test {
  font-size: 1rem;
}

html[dir='rtl'] .img-flip {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

html[dir='ltr'] .second-card-button1 {
  margin-left: -9rem !important;
  width: 10rem;
  height: 3rem;
}

html[dir='ltr'] .second-card-button2 {
  margin-left: -5.5rem !important;
  width: 13.5rem;
  height: 3rem;
}

html[dir='rtl'] .card {
  padding: 2% !important;
}

.update-address {
  position: absolute;
  left: 73.8%;
  bottom: 51.03%;
}

.beta_label {
  padding: 7px 0px;
  text-align: center;
  background: #7a7297;
  border-radius: 8px;
  display: inline-block;
  margin-top: 10px;
  font-size: 15px;
  color: #fff;
  line-height: 100%;
  height: 30px;
  width: 125px;
}

.cookies_model {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #00000026;
  z-index: 5;
  display: none;
}

.cookies_model.show {
  display: block;
}

.cookies_model_content {
  position: fixed;
  height: 175px;
  width: 100vw;
  bottom: 0;
  background: #fffffff6;
  color: rgba(42, 52, 108, 1);
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
}

.cookies_model_content h2 {
  margin-bottom: 32px;
  font-size: 25px;
  width: 100%;
}

.cookies_model_content p {
  width: 100%;
}

.cookies_model_content span.first {
  width: 75%;
  display: inline-block;
}

.cookies_model_content span.first a {
  color: rgba(115, 126, 176, 1);
  text-decoration: underline !important;
}

.cookies_model_content span.second {
  width: 20%;
  display: inline-block;
  text-align: center;
}

.temp-header {
  color: #fff;
  text-decoration: none;
  padding: 1rem 0 1.875rem;
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.25s ease-in-out;
  position: relative;
}

.cookies_model_content span.second button.button--dark-blue {
  border-radius: 0 !important;
}

@media (max-width: 1366px) {
  .registration___label___tag {
    font-size: 13px;
  }

  .about__title {
    font-size: 1.4rem;
  }
}

.site_map_container {
  background-color: rgba(244, 245, 248, 1);
}

.site_map_section_wrapper {
  padding: 20px;
}

.site_map_section {
  box-shadow: 0 10px 20px rgba(38, 53, 112, 0.16);
  padding: 20px;
  margin-bottom: 35px;
  border-radius: 7px;
}

.site_map_section h2 {
  color: rgba(42, 52, 108, 1);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: HelveticaNeueLTArabic;
}

.site_map_section li a,
.site_map_section li {
  color: rgba(98, 88, 166, 1);
  font-size: 14px;
  margin-bottom: 15px;
}

@media (max-width: 991.9px) {
  .col-sm-12 {
    width: 100% !important;
  }

  .registration___label___tag {
    position: relative !important;
    transform: none !important;
    top: 0 !important;
    left: -5% !important;
  }

  html[dir='ltr'] .registration___label___tag {
    right: -5% !important;
    top: 0 !important;
    left: auto !important;
  }

  .cookies_model_content {
    height: auto !important;
  }

  .cookies_model_content span.first,
  .cookies_model_content span.second {
    width: 100% !important;
  }

  .cookies_model_content span.second {
    text-align: left !important;
    margin-top: 25px !important;
  }

  html[dir='ltr'] .cookies_model_content span.second {
    text-align: right !important;
  }
}

ng-multiselect-dropdown .no-data h5 {
  font-size: 15px;
}

.noScore {
  border-top: 3px solid #989fb2;
}

.level1 {
  border-top: 3px solid #e5828d;
}

.level2 {
  border-top: 3px solid #e2bc41;
}

.level3 {
  border-top: 3px solid #d4d419;
}

.level4 {
  border-top: 3px solid #55c15b;
}

.level5 {
  border-top: 3px solid #009d14;
}

.noScore-btn {
  border-color: #989fb2;
  background: #989fb2;
}

.level1-btn {
  border-color: #e5828d;
  background: #e5828d;
}

.level2-btn {
  border-color: #e2bc41;
  background: #e2bc41;
}

.level3-btn {
  border-color: #d4d419;
  background: #d4d419;
}

.level4-btn {
  border-color: #55c15b;
  background: #55c15b;
}

.level5-btn {
  border-color: #009d14;
  background: #009d14;
}

html[dir='ltr'] .modal-body-custom {
  width: 82rem;
}

html[dir='ltr'] .modal-content-custom {
  width: 85rem;
  margin-left: -15rem;
}

.about_us_content ul.tracker_ul li::before {
  top: 0 !important;
}

html[dir='ltr'] .about_us_content ul.tracker_ul li {
  padding-top: 9px !important;
}

html[dir='rtl'] .about_us_content ul.tracker_ul li {
  padding-top: 7px !important;
}

.profile-systems__list-item__info {
  width: 100%;
}

html[dir='ltr'] .profile-systems__list-item__info {
  margin-right: 0 !important;
  margin-left: 1rem;
}

.label___button {
  font-size: 15px;
  padding: 10px;
}

.register_main_bg {
  /* background: url('../images/style_images/main-bg.jpg') center top no-repeat; */
  margin-bottom: -25px;
  padding-bottom: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.header-main-link.no-hover,
.temp-header {
  position: relative;
}

.registration___label___tag {
  position: absolute;
  top: -5px;
  left: -22%;
  padding: 1px 16px;
  transform: rotate(-13deg);
  background: rgba(217, 214, 241, 1);
  border-radius: 21px;
  color: rgba(100, 89, 167, 1);
  font-size: 0.8rem;
}

html[dir='ltr'] .registration___label___tag {
  left: auto;
  right: -45%;
  transform: rotate(13deg);
}

.privacy_data {
  /* background-image: url('../images/style_images/shutterstock.png'); */
}

html[dir='ltr'] .privacy_data {
  /* background-image: url('../images/style_images/shutterstock_flipped.png'); */
}

.privacy_data .statistics__header {
  margin-bottom: 100px;
  justify-content: start;
  text-align: justify;
}

.privacy_data h3,
.privacy_data p {
  color: #fff;
  font-size: 1.2rem;
  width: 100%;
  line-height: 2rem;
}

.privacy_data .btn-info img {
  width: auto;
  height: 30px;
  margin-bottom: -5px;
}

.privacy_data .btn-info {
  width: 75%;
  padding: 15px;
  border-radius: 30px;
  background: transparent;
  border-color: #66ccff;
  color: #66ccff;
  font-size: 107%;
  margin-top: 5%;
  justify-content: space-between;
  display: flex;
  max-width: 100%;
  padding-top: 4px;
}

html[dir='ltr'] .privacy_data .btn-info {
  width: 85%;
  font-size: 107%;
}

html[dir='ltr'] .privacy_data .btn-info img {
  transform: rotate(180deg);
}

.privacy_data h3 {
  font-size: 1.8rem;
}

html[dir='ltr'] .privacy_data .statistics__shapes {
  transform: scale(-1);
}

html[dir='ltr'] ::first-letter {
  text-transform: capitalize !important;
}

.multiselect-dropdown .dropdown-btn .dropdown-multiselect__caret {
  width: 24px !important;
  height: 70% !important;
}

app-block-radio-group {
  flex-wrap: wrap;
}

html[dir='rtl'] .prefix_wrapper {
  direction: ltr;
}

.wpthemeFrame {
  min-width: auto !important;
}

.services___tabs {
  flex-wrap: wrap;
}

.services___tabs .nav-pills {
  width: 100%;
  border-bottom: 1px solid rgba(217, 217, 217, 1);
}

.services___tabs .tab-content {
  margin-top: 50px;
}

.services___tabs .nav-link {
  font-size: 18px;
  padding: 15px 45px;
  color: rgba(152, 159, 178, 1);
}

.services___tabs .nav-link.active {
  background: none;
  outline: none;
  box-shadow: none;
  color: var(--dark-blue);
  border-bottom: 3px solid #263570;
  border-radius: 0;
}

.text-purple {
  color: var(--primary-hover);
}

.text-base {
  color: var(--base);
}

.text-orange {
  color: var(--orange);
}

.text-fade {
  color: var(--purple-fade);
}

.text-dark-silver {
  color: var(--darkSliver);
}

.list-inside {
  margin-inline-start: 1rem;
}

.cta-section {
  background-color: var(--purple-light);
  /* background-image: url('../images/style_images/pattern-bg-left.svg'), */
  /* url('../images/style_images/pattern-bg-right.svg'); */
  background-position:
    left top,
    right top;
  background-repeat: no-repeat;
}

.data-section {
  background-color: var(--purple-base);
  padding: 3rem;
}

.data-section p {
  font-size: 14px;
}

.data-section .card-box {
  background-color: var(--purple-base-light);
  border-radius: 25px;
  padding: 2rem 4rem;
  min-height: 288px;
  height: 100%;
}

.data-section .card-box h5 {
  white-space: pre-line;
}

.data-section .card-box div:first-child {
  width: 175px;
}

.data-section .card-box ul li {
  display: flex;
  align-items: center;
  list-style: none;
}

.data-section .card-box ul li:before {
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-right: 15px;
  /* background: url('../images/icons/tick-square.svg') no-repeat left center; */
  background-size: contain;
  content: '';
}

html[dir='rtl'] .data-section .card-box ul li:before {
  margin-left: 15px;
  margin-right: 0;
}

.gather-data-section .col {
  padding-top: 12px;
  padding-bottom: 12px;
}

.box-bg-pattern {
  border-radius: 25px;
  background-color: var(--purple-light);
  /* background-image: url('../images/style_images/pattern-bg-left.svg'); */
  background-position: left top;
  background-repeat: no-repeat;
}

.gather-data-section .box-bg-pattern,
.info-section .box-bg-pattern {
  height: 100%;
}

.rights-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 3rem;
}

.ndmo-button {
  font-size: 0.9em;
  padding: 0.3em 1.2em;
  line-height: 1.6em;
  text-decoration: none;
  display: block;
  text-align: center;
  transition:
    color 0.25s ease-in-out,
    background 0.25s ease-in-out;
}

.button-base {
  border: 1px solid var(--primary-hover);
  background: var(--primary-hover);
  color: var(--white);
}

.button-base:hover {
  background: var(--white);
  border-color: var(--primary-hover);
  color: var(--primary);
}

.button-border-base {
  border: 1px solid var(--primary-hover);
  background: var(--white);
  color: var(--primary-hover);
}

.button-border-base:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
}

.back-button {
  font-size: 1em;
  width: 200px;
  font-weight: bold;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

html[dir='rtl'] .back-button {
  padding: 0.5rem 3rem 1rem;
}

html[dir='ltr'] .back-button {
  padding: 0.7rem 3rem 1rem;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.card-with-shadow {
  background: var(--white);
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 2rem;
}

.card-with-shadow--pattern {
  /* background-image: url('../images/style_images/card-pattern.svg'); */
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 45%;
  height: 100%;
}

.card-with-shadow--border {
  border: 1px solid var(--light-base);
}

.hide {
  visibility: hidden;
  display: none !important;
  opacity: 0;
}

.link-text {
  color: var(--link-color);
  text-decoration: underline !important;
  transition: color 0.25s ease-in-out;
}

.link-text:hover {
  color: var(--purple-base);
}

.f-small {
  font-size: 0.9em;
}

.list-styled {
  list-style: disc !important;
  list-style-position: inside !important;
}

.scroll-warpper {
  height: 250px;
  overflow-y: auto;
  /* Firefox Scroll Hack */
  scrollbar-width: thin;
  scrollbar-color: #a9a1df #e3e7f2;
  /* Scrollbar position hack */
  direction: ltr;
}

html[dir='rtl'] .scroll-warpper {
  direction: ltr;
}

html[dir='ltr'] .scroll-warpper {
  direction: rtl;
}

.scroll-warpper--list {
  height: 500px;
}

.scroll-warpper::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroll-warpper::-webkit-scrollbar-track {
  background: #e3e7f2;
  border-radius: 5px;
}

/* Handle */
.scroll-warpper::-webkit-scrollbar-thumb {
  background: #a9a1df;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--purple-base);
}

.scroll-warpper-content {
  padding-inline-start: 12px;
}

html[dir='rtl'] .scroll-warpper-content {
  direction: rtl;
}

html[dir='ltr'] .scroll-warpper-content {
  direction: ltr;
}

.me-1 {
  margin-inline-end: 1em;
}

.me-2 {
  margin-inline-end: 2em;
}

.white-banner__title {
  color: var(--purple-dark);
}

/* Privacy Policy */
.bg-white p {
  white-space: pre-line;
}

@media (max-width: 992px) {
  .bg-white p {
    white-space: unset;
  }

  .search-bar .col-md-1.col-sm-12 {
    width: 100% !important;
    justify-content: end;
    display: flex;
  }

  .privacy-page .data-section .row > div:first-child {
    margin-bottom: 2rem;
  }

  .privacy-page .info-section > div {
    margin-bottom: 0 !important;
  }

  .privacy-page .bg-white .row > div:nth-child(3),
  .privacy-page .bg-white .row > div:nth-child(4) {
    margin-bottom: 0;
  }

  .privacy-page .rights-row {
    grid-template-columns: auto;
    text-align: center;
  }

  .privacy-page .rights-row img {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 770px) {
  .bg-white p {
    white-space: unset;
  }

  .privacy-page h4 {
    font-size: 1.75vmax;
  }

  .privacy-page .cta-section,
  .privacy-page .data-section,
  .privacy-page .bg-white {
    padding: 2rem !important;
  }

  .privacy-page .gather-data-sectio {
    padding: 0 !important;
  }

  .privacy-page .data-section .card-box {
    flex-wrap: wrap;
    padding: 2rem;
  }

  .privacy-page .data-section .card-box div:first-child {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }

  .privacy-page .data-section .card-box div:first-child h5 {
    margin-top: 0.5rem !important;
    white-space: unset;
  }

  .privacy-page .data-section .card-box div:first-child h5 br {
    margin: 0 10px;
  }

  .privacy-page .info-section > div:first-child {
    margin-bottom: 2rem !important;
  }
}

#sticky-header.sticky:after,
.modal .modal-header:after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: linear-gradient(#263570, #12100c);
  opacity: 0.5;
  z-index: -1;
}

.modal .modal-header {
  box-shadow: none;
}

.mega-hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 105px;
  z-index: 1;
}

body::-webkit-scrollbar {
  width: 10px;
}

body,
html {
  /* Firefox Scroll Hack */
  scrollbar-width: thin;
  scrollbar-color: var(--purple-dark) #fff;
  /* Scrollbar position hack */
}

/* Track */
body::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 0;
}

/* Handle */
body::-webkit-scrollbar-thumb {
  background-color: #445390;
  border-radius: 0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--purple-dark);
}

/* *::selection {
  color: var(--white);
  background-color: var(--purple-dark);
} */

.data-privacy h4,
.envieonment-section h4 {
  position: relative;
  line-height: inherit;
  font-size: 2rem;
  padding-bottom: 20px;
  overflow-wrap: break-word;
  white-space: pre-line;
}

.data-privacy h4::after,
.envieonment-section h4:after {
  content: '';
  width: 88px;
  border-top: 5px solid var(--white);
  position: absolute;
  bottom: 0;
}

html[dir='rtl'] .data-privacy h4::after,
html[dir='rtl'] .envieonment-section h4:after {
  right: 0;
}

html[dir='ltr'] .data-privacy h4::after,
html[dir='ltr'] .envieonment-section h4:after {
  left: 0;
}

.data-privacy p,
.envieonment-section p {
  margin: 2rem 0;
}

.data-privacy a,
.envieonment-section a {
  color: var(--sky);
}

.data-privacy a img,
.envieonment-section a img {
  margin-inline-start: 10px;
}

html[dir='ltr'] .data-privacy a img,
html[dir='ltr'] .envieonment-section a img {
  transform: scaleX(-1);
}

.data-privacy a span,
.envieonment-section a span {
  margin-top: -5px;
}

/* background: blue; */
@media (max-width: 575.9px) {
  .about__swiper-wrapper {
    /* background: blue; */
  }

  .about__swiper-wrapper .swiper-pagination {
    gap: 0.3rem;
    flex-wrap: wrap;
  }

  .about__swiper-wrapper .swiper-pagination-bullet {
    padding: 10px 0 16px;
    font-size: 0.9rem;
    min-width: 90%;
    margin-bottom: 1rem !important;
  }

  .about__swiper-wrapper .about__title {
    font-size: 1rem;
  }

  .data-privacy .content,
  .envieonment-section .content {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .data-privacy h4,
  .envieonment-section h4 {
    font-size: 1.9rem;
  }
}

/* background: red; */
@media (min-width: 576px) {
  .about__swiper-wrapper .swiper-pagination {
    gap: 0.3rem;
  }

  .about__swiper-wrapper {
    /* background: red; */
  }

  .about__swiper-wrapper .swiper-pagination {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  html[dir='rtl'] .about__swiper-wrapper .swiper-pagination-bullet {
    padding: 10px 0 16px;
    font-size: 0.9rem;
    min-width: 90%;
    margin-bottom: 1rem !important;
  }

  html[dir='ltr'] .about__swiper-wrapper .swiper-pagination-bullet {
    padding: 10px 0 16px;
    font-size: 0.9rem;
    min-width: 90%;
    margin-bottom: 1rem !important;
  }

  .about__swiper-wrapper .about__title {
    font-size: 1rem;
  }

  .data-privacy .content,
  .envieonment-section .content {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

/* background: black; */
@media (min-width: 768px) {
  .about__swiper-wrapper {
    /* background: black; */
  }

  .about__swiper-wrapper .swiper-pagination {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  html[dir='rtl'] .about__swiper-wrapper .swiper-pagination-bullet {
    padding: 10px 0 16px;
    font-size: 0.9rem;
    min-width: 45%;
    margin-bottom: 1rem !important;
  }

  html[dir='ltr'] .about__swiper-wrapper .swiper-pagination-bullet {
    padding: 10px 0 16px;
    font-size: 0.9rem;
    min-width: 45%;
    margin-bottom: 1rem !important;
  }

  .about__swiper-wrapper .about__title {
    font-size: 1rem;
  }

  .data-privacy .content,
  .envieonment-section .content {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

/* background: orange; */
@media (min-width: 992px) {
  .data-privacy .content,
  .envieonment-section .content {
    padding-inline-start: 40%;
  }

  .about__swiper-wrapper {
    /* background: orange; */
  }

  html[dir='ltr'] .about__swiper-wrapper .swiper-pagination {
    gap: 0.3rem;
    flex-wrap: wrap;
  }

  html[dir='ltr'] .about__swiper-wrapper .swiper-pagination-bullet {
    padding: 10px 0.5rem 13px;
    font-size: 0.9rem;
    min-width: 45%;
    margin-bottom: 1rem;
  }
}

/* background: green; */
@media (min-width: 1200px) {
  .data-privacy .content,
  .envieonment-section .content {
    padding-inline-start: 40%;
  }

  .about__swiper-wrapper {
    /* background: green; */
  }

  .about__swiper-wrapper .swiper-pagination {
    gap: 0.5rem;
  }

  html[dir='rtl'] .about__swiper-wrapper .swiper-pagination-bullet {
    padding: 10px 1rem 16px;
    font-size: 0.9rem;
    display: inline-flex;
    min-width: 185px;
    width: auto;
    margin-bottom: 1rem !important;
  }

  html[dir='ltr'] .about__swiper-wrapper .swiper-pagination-bullet {
    padding: 10px 1rem 13px;
    display: inline-flex;
    min-width: 185px;
    width: auto;
  }
}

/* background: cyan; */
@media (min-width: 1700px) {
  .data-privacy .content,
  .envieonment-section .content {
    padding-inline-start: 40%;
  }

  .about__swiper-wrapper {
    /* background: cyan; */
  }

  html[dir='ltr'] .about__swiper-wrapper .swiper-pagination-bullet {
    padding: 10px 1rem 13px;
    display: inline-flex;
    min-width: 185px;
    width: auto;
  }
}

/* // iPhone SE */
@media (max-width: 375px) {
}

@media (max-width: 1200px) {
  .mega-hero {
    max-height: 650px;
  }
}

@media (max-width: 800px) {
  .mega-hero {
    max-height: 750px;
  }
}

/* Landscape */
@media only screen and (max-height: 414px) and (orientation: landscape) {
}

@media only screen and (max-height: 428px) {
}

@media only screen and (max-height: 600px) {
}

@media only screen and (max-width: 800px) and (max-height: 414px) and (orientation: landscape) {
  .swiper-slide .row {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: start !important;
  }

  .swiper-slide .row > div {
    position: relative;
    width: auto;
  }
}

.sdaia-logo {
  width: 180px;
  position: relative;
}

.sdaia-logo img:first-child {
  position: absolute;
}

html[dir='rtl'] .sdaia-logo img:first-child {
  left: 100px;
}

html[dir='ltr'] .sdaia-logo img:first-child {
  right: 100px;
}

.sdaia-logo img:nth-child(2) {
  position: absolute;
}

.about-section {
  position: relative;
  /* background-image: url('../images/style_images/about-bg.png'); */
  background-size: cover;
  z-index: 1;
  padding: 6rem 0;
  overflow: hidden;
}

.data-privacy {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  color: var(--white);
}

.data-privacy::before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background-image: url('../images/style_images/data-privacy-bg.png'); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  z-index: -2;
  position: absolute;
}

html[dir='ltr'] .data-privacy::before {
  transform: scaleX(-1);
}

.data-privacy::after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.data-privacy p,
.envieonment-section p {
  opacity: 0.8;
}

.cards-section {
  background-image: linear-gradient(#263570, #12100c);
  padding: 3rem 0;
}

.envieonment-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  color: var(--white);
}

.envieonment-section::before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background-image: url('../images/style_images/environment-bg.png'); */
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: -2;
  position: absolute;
}

html[dir='ltr'] .envieonment-section::before {
  transform: scaleX(-1);
}

.about-page .tab-pane {
  padding: 1.5rem 2rem;
}

@media (max-width: 991.9px) {
  .about-page .tab-pane {
    padding: 0.875rem 1.25rem;
  }
}

/* Application styles */
.profile-systems-item {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 4px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease-in-out;
  text-decoration: none;
  border: 1px solid rgba(87, 88, 161, 0.1);
  position: relative;
  display: block;
  height: 100%;
}

.profile-systems-item:hover {
  border-color: rgba(87, 88, 161, 1);
}

.profile-systems-item header {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: center;
}

@media (max-width: 767.98px) {
  .profile-systems-item header {
    display: flex;
    flex-direction: column;
  }
}

.profile-systems-item header h3 {
  font-size: 0.95rem;
  margin: 0;
  color: #263570;
  padding-inline-end: 1rem;
  line-height: 1.5rem;
}

.profile-systems-item header img {
  display: block;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  border: 2px solid #f1f1f1;
}

.profile-systems-item .list {
  margin: 0;
  padding: 0;
}

.profile-systems-item .list div {
  margin-bottom: 0.5rem;
  color: #989fb2;
  font-size: 0.8rem;
}

.profile-systems-item .list div:last-child {
  margin-bottom: 0;
}

:host ::ng-deep .profile-systems-item header img {
  display: block;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  border: 2px solid #f1f1f1;
}

.service-component {
  background: var(--white);
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 268px;
  min-width: 200px;
  flex: 1;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: ease-out 0.4s;
}

.service-component *,
.service-component > * {
  transition: ease-out 0.4s;
}

.service-component div {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.service-component img {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}

.service-component h3 {
  color: #6258a6;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.service-component p,
.service-component a {
  display: none;
}

.service-component p {
  color: #919191;
  font-size: 0.85rem;
}

.service-component a {
  background-color: #fff;
  border: 1px solid #6258a6;
  color: #6258a6;
  width: 100%;
  padding: 0.3rem 0 0.5rem;
}

.service-component:hover::after {
  content: '';
  /* background: url('../images/style_images/card-pattern.svg') no-repeat; */
  max-width: 700px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.service-component:hover p,
.service-component:hover a {
  display: block;
}

.service-component:hover img {
  width: 40px;
  height: 40px;
}

.service-component a:hover {
  color: var(--white) !important;
  background-color: var(--purple-pale);
  border-color: 1px solid var(--purple-pale);
}

@media (max-width: 991.9px) {
  .certificate-container header {
    padding: 1.5rem 0.5rem;
    gap: 0.5rem;
  }

  .certificate-container header img {
    width: 40px;
  }

  .certificate-container header h6 {
    font-size: 0.6rem;
  }

  .certificate-container header h1,
  .certificate-container .entity-info h4 {
    font-size: 1rem;
  }

  .certificate-container .entity-logo img {
    width: 50px;
    height: 50px;
    border-width: 1px;
  }

  .certificate-container .entity-info {
    padding: 1rem 0.5rem;
    flex-direction: column-reverse;
  }

  .certificate-container .entity-info img:nth-of-type(2) {
    position: absolute;
    bottom: 70px;
    width: 150px;
  }

  html[dir='ltr'] .certificate-container .entity-info img:nth-of-type(2) {
    right: 10px;
    transform: rotate(24deg);
  }

  html[dir='rtl'] .certificate-container .entity-info img:nth-of-type(2) {
    left: 10px;
    transform: rotate(-24deg);
  }

  .certificate-container .entity-info img:first-child {
    display: block;
  }

  .certificate-container .entity-info h4 {
    margin-bottom: 1.5rem;
  }

  .certificate-container .entity-info p {
    font-size: 0.8rem;
    margin-bottom: 0;
  }

  .certificate-container .certificate-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 1rem;
  }

  .certificate-container .certificate-info > div {
    max-width: unset;
    width: 100%;
  }

  .certificate-container .certificate-info .title {
    border-bottom: 0;
  }
}

@media (max-width: 767.9px) {
  .certificate-container .certificate-info {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    padding-inline: 1rem;
  }
}

/* Timeline component */
.timeline-container {
  border-color: rgb(229 231 235/1);
  position: relative;
}

html[dir='rtl'] .timeline-container {
  border-right-width: 1px;
  border-right-style: solid;
}

html[dir='ltr'] .timeline-container {
  border-left-width: 1px;
  border-left-style: solid;
}

.timeline-container .timeline-component {
  margin-bottom: 2.5rem;
}

html[dir='rtl'] .timeline-container .timeline-component {
  margin-right: 1.5rem;
}

html[dir='ltr'] .timeline-container .timeline-component {
  margin-left: 1.5rem;
}

.timeline-container .timeline-component:last-child {
  margin-bottom: 0;
}

.timeline-container .timeline-component span {
  box-shadow:
    #f9f9f9 0px 0px 0px 0px,
    #f9f9f9 0px 0px 0px 8px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px;
  background-color: #6258a6;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: absolute;
}

html[dir='rtl'] .timeline-container .timeline-component span {
  right: -0.75rem;
}

html[dir='ltr'] .timeline-container .timeline-component span {
  left: -0.75rem;
}

.timeline-container .timeline-component span svg,
.timeline-container .timeline-component span img {
  width: 0.625rem;
  height: 0.625rem;
  display: block;
}

.timeline-container .timeline-component span svg {
  color: var(--white);
}

.timeline-container .timeline-component h4 {
  color: #6258a6;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.2rem;
  align-items: center;
  display: flex;
  margin-bottom: 0.5rem;
}

.timeline-container time {
  color: rgb(156 163 175/1);
  line-height: 1;
  font-weight: 400;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-container .comment-text {
  box-shadow:
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  padding: 0.5rem 1rem;
  border-width: 1px;
  border-style: solid;
  background-color: #f3f4f4;
  font-style: italic;
  font-size: 0.9rem;
  border-color: rgb(229 231 235/1);
  border-radius: 4px;
  margin-top: 1rem;
}

.modal-auto-open {
  display: block;
  opacity: 1 !important;
}

@media (max-width: 991.3px) {
  .header-home li {
    opacity: 1 !important;
  }

  .registration .sp_p h2 {
    font-size: 1rem;
  }
}

/* end dx container height */

.fullWidth .wrapper_____div,
.fullWidth .wrapper_____div .button--light-blue-outline-attachment {
  width: 100%;
}

.badge-purble {
  background-color: var(--purple-pale);
  color: white;
}

/* let duration .5s */
@keyframes card-fade-in-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 5%, 0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

.menue_devider {
  color: rgba(102, 204, 255, 1);
  font-size: 16px;
  font-weight: 700;
}

.soon_link {
  padding: 5px 17px;
  background: rgba(102, 204, 255, 1);
  margin: 0 7px;
  border-radius: 5px;
  color: #fff;
}

.disabled_link {
  cursor: text;
}

.alert_message {
  color: red;
}

.mat-tooltip {
  font-family: 'HelveticaNeueLTArabic' !important;
  font-size: 13px !important;
  /* background: #dfe9ff !important;
color: var(--dark-blue) !important;
box-shadow: 1px 1px 2px rgb(0 0 0 / 23%); */
}

.lib-chip mat-chip.fourth {
  border-color: #ff6666 !important;
  background-color: #ffe6e6 !important;
  color: #ff6666 !important;
}

.lib-chip mat-chip.warning.selected {
  background-color: #f3c0c0 !important;
  color: #4d4726 !important;
  border-color: #4d4726 !important;
}

mat-icon {
  font-family: 'Material Icons' !important;
}

.cdk-overlay-pane,
.cdk-overlay-container {
  z-index: 999999 !important;
}

.no-before::before {
  content: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
}

/* abedlrahman code */

/* generic elements */

.generic-button__read-more {
}

.generic-button__read-more a {
  font-size: 18px;
  color: #fff;
  background-color: #5c4dc0;
  border: 1px #5c4dc0 solid;
  padding: 10px 35px 13px 35px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-block;
  font-weight: bold;
}

.generic-button__read-more a:hover {
  background-color: #fff;
  color: #5c4dc0;
}

.generic-chip__date {
  direction: ltr;
  font-size: 12px;
  background-color: #7e92ee;
  color: #fff;
  padding: 1px 5px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 8px;
  border-radius: 2px;
}

.generic-button__back {
  display: flex;
  justify-content: flex-end;
  padding: 15px;
}

.generic-button__back a {
  font-weight: 700;
  font-size: 20px;
  color: #252f6b;
  line-height: 44.4px;
  border: 1px #252f6b solid;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}

.generic-button__back a:hover {
  border-color: #fff;
  color: #fff;
  background-color: #252f6b;
}

.media-center__main-title {
  font-size: 40px;
  margin-bottom: 40px;
  color: #41329e;
}

/* knowledge center page */

/* knowledge center page generic elements */

.knowledge-center {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding: 30px 50px 50px 50px;
}

@media (max-width: 1000px) {
  .knowledge-center {
    padding: 20px 20px 30px 20px;
  }
}

.knowledge-center * {
  box-sizing: border-box;
}

.knowledge-center__first-header {
  color: #66ccff;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 6px;
}

.knowledge-center__second-header {
  color: #5c4dc0;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 18px;
}

.knowledge-center__paragraph-wrapper p,
.knowledge-center__ul-wrapper ul,
.knowledge-center__ul-wrapper li {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 18px;
}

/* knowledge center page first section */

.knowledge-center__page-header {
  margin-bottom: 80px;
}

@media (max-width: 1000px) {
  .knowledge-center__page-header {
    margin-bottom: 40px;
  }
}

.knowledge-center__slider-wrapper {
  position: relative;
}

.knowledge-center__swiper {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 1000px) {
  .knowledge-center__swiper {
    height: 80vh;
  }
}

.knowledge-center .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  overflow: hidden;
}

.knowledge-center .swiper-slide::after {
  content: '';
  width: 100%;
  height: 42%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg, #31316300, rgb(49 49 99 / 74%), rgb(37 25 120 / 64%));
  transform-origin: bottom;
}
/*
.swiper-slide-active.swiper-slide::after {
animation: scalingUp 2s;
opacity: 1;
} */

.knowledge-center .swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  transition: filter 1s;
  /* filter: blur(30px); */
}

/* .swiper-slide-active.swiper-slide img {
filter: blur(0px);
} */

.knowledge-center__slide-contnet {
  position: absolute;
  bottom: 10%;
  right: 70px;
  width: 60%;
  color: #fff;
  z-index: 2;
}

@media (max-width: 1000px) {
  .knowledge-center__slide-contnet {
    bottom: 16%;
    text-align: center;
    right: 50%;
    width: 100%;
    transform: translateX(50%);
  }
}

.knowledge-center__slide-contnet * {
  opacity: 0;
}

.knowledge-center .swiper-slide-active .generic-chip__date {
  animation: fadeInUp 1.2s;
  opacity: 1;
}

@media (max-width: 1000px) {
  .knowledge-center .swiper-slide-active .generic-chip__date {
    display: none;
  }
}

.knowledge-center__slider-data {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 35px;
  position: relative;
  /* text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap; */
}

.swiper-slide-active .knowledge-center__slider-data {
  animation: fadeInRight 1s;
  opacity: 1;
}

.knowledge-center__slider-data::after {
  content: '';
  height: 60%;
  width: 7px;
  position: absolute;
  background-color: #66ccff;
  top: 15px;
  left: calc(100% + 10px);
}

@media (max-width: 1000px) {
  .knowledge-center__slider-data::after {
    content: none;
  }
}

.swiper-slide-active .knowledge-center__slider-data::after {
  animation: zoomIn 1s;
  opacity: 1;
}

.knowledge-center .swiper-slide-active .generic-button__read-more,
.knowledge-center .swiper-slide-active .generic-button__read-more a {
  animation: zoomIn 1s;
  opacity: 1;
}

.knowledge-center .swiper-slide-active .generic-button__read-more a:hover {
  background-color: #fff;
  color: #5c4dc0;
}

.knowledge-center__slider-navigations {
  position: absolute;
  bottom: 5%;
  left: 5%;
  z-index: 1;
  direction: rtl;
}

@media (max-width: 1000px) {
  .knowledge-center__slider-navigations {
    left: 50%;
    transform: translateX(-50%);
  }
}

html[dir='ltr'] .knowledge-center__slide-contnet {
  right: unset;
  left: 70px;
}

@media (max-width: 1000px) {
  html[dir='ltr'] .knowledge-center__slide-contnet {
    right: 50%;
    left: unset;
  }
}

html[dir='ltr'] .knowledge-center__slider-navigations {
  left: unset;
  right: 5%;
}

@media (max-width: 1000px) {
  html[dir='ltr'] .knowledge-center__slider-navigations {
    left: 50%;
    right: unset;
  }
}

html[dir='ltr'] .knowledge-center__slider-data::after {
  left: unset;
  right: calc(100% + 10px);
}

.knowledge-center__events-link {
  position: absolute;
  top: 3%;
  right: 20px;
  z-index: 4;
  font-size: 16px;
  font-weight: 800;
  line-height: 22px;
  color: #5c4dc0;
  background-color: rgb(255 255 255 / 66%);
  border-radius: 10px;
  padding: 3px 16px 9px 16px;
}

html[dir='ltr'] .knowledge-center__events-link {
  right: unset;
  left: 20px;
}

.knowledge-center__events-link:hover {
  color: #fff;
}

.knowledge-center__slider-prev,
.knowledge-center__slider-next {
  background-color: transparent;
  border: 0;
}

/* .knowledge-center__slider-prev {
}

.knowledge-center__slider-next {
} */

/* knowledge center page second section */

.knowledge-center__second-section {
  display: flex;
  gap: 20px;
  margin-bottom: 160px;
}

@media (max-width: 1000px) {
  .knowledge-center__second-section {
    flex-wrap: wrap;
    gap: 70px;
    margin-bottom: 50px;
  }
}

.knowledge-center__second-section__start {
  width: 45%;
}

@media (max-width: 1000px) {
  .knowledge-center__second-section__start {
    width: 100%;
  }
}

.knowledge-center__second-section__start-images {
  justify-content: center;
  gap: 20px;
  padding: 60px 40px;
  display: none;
}

.knowledge-center__second-section__start-images img {
  width: calc(100% / 3);
  object-fit: cover;
  border-radius: 35px;
}

.knowledge-center__second-section__start-images img:first-of-type {
  transform: translateY(20px);
}

.knowledge-center__second-section__start-images img:last-of-type {
  transform: translateY(-20px);
}

@media (max-width: 1000px) {
  .knowledge-center__second-section__start-images {
    display: flex;
  }
}

@media (max-width: 500px) {
  .knowledge-center__second-section__start-images {
    padding: 35px 10px;
  }
}

.knowledge-center__second-section__end {
  width: 55%;
  display: flex;
  justify-content: center;
  gap: 15px;
}

@media (max-width: 1000px) {
  .knowledge-center__second-section__end {
    display: none;
  }
}

.knowledge-center__second-section__end img {
  width: 33.33333%;
  object-fit: cover;
  border-radius: 20px;
}

.knowledge-center__second-section__first-img {
  position: relative;
  top: 25px;
}

.knowledge-center__second-section__second-img {
  position: relative;
  top: -20px;
}

.knowledge-center__second-section__third-img {
  position: relative;
  top: 80px;
}

/* knowledge center page third section */

.knowledge-center__third-section {
  display: flex;
  gap: 20px;
}

@media (max-width: 1000px) {
  .knowledge-center__third-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
}

.knowledge-center__third-section__start {
  width: 45%;
}

@media (max-width: 1000px) {
  .knowledge-center__third-section__start {
    width: 100%;
  }
}

.knowledge-center__third-section__start-images {
  justify-content: center;
  gap: 20px;
  padding: 60px 40px;
  display: none;
}

@media (max-width: 1000px) {
  .knowledge-center__third-section__start-images {
    display: flex;
  }
}

@media (max-width: 500px) {
  .knowledge-center__third-section__start-images {
    padding: 35px 10px;
  }
}

.knowledge-center__third-section__start-images img {
  width: calc(100% / 3);
  object-fit: cover;
  border-radius: 25px;
}

@media (max-width: 500px) {
  .knowledge-center__third-section__start-images img {
    width: calc(100% / 2);
  }
}

.knowledge-center__third-section__start-images img:first-of-type {
  transform: translateY(-20px);
}

.knowledge-center__third-section__start-images img:last-of-type {
  transform: translateY(20px);
}

@media (max-width: 500px) {
  .knowledge-center__third-section__start-images img:last-of-type {
    display: none;
  }
}

.knowledge-center__third-section__end {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

@media (max-width: 1000px) {
  .knowledge-center__third-section__end {
    display: none;
  }
}

.knowledge-center__third-section__end img {
  max-width: 100%;
  max-height: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 40px;
}

@media (max-width: 1399px) {
  .knowledge-center__third-section__end img {
    width: 100% !important;
  }
}

@media (max-width: 700px) {
  .knowledge-center__third-section__end img {
    border-radius: 20px;
  }
}

.knowledge-center__third-section__first-img {
  width: 100%;
}

.knowledge-center__third-section__second-img {
  width: 50%;
}

.knowledge-center__third-section__third-img {
  width: 48%;
}

/* news and events page */

.news-and-events__read-more {
  font-size: 18px;
  color: #fff;
  background-color: #5c4dc0;
  padding: 10px 35px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-block;
  font-weight: bold;
}

/* news-and-events page first section */
.news-and-events {
  background-color: #fff;
  padding: 20px;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.news-and-events__page-header {
  margin-bottom: 20px;
}

.news-and-events__hero-wrapper {
  height: 60vh;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.news-and-events__hero-img {
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: cover;
}

.news-and-events__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.news-and-events__hero-overlay::after {
  content: '';
  width: 100%;
  height: 42%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgb(36, 15, 160, 12%), rgb(37, 25, 120, 59%));
  transform-origin: bottom;
}

.news-and-events__hero-content {
  width: 100%;
  padding: 0 70px 40px 70px;
}

@media (max-width: 767px) {
  .news-and-events__hero-content {
    padding: 0 40px 40px 40px;
  }
}

.news-and-events__event-header {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  z-index: 5;
}

@media (max-width: 767px) {
  .news-and-events__event-header {
    font-size: 16px;
  }
}

.news-and-events__event-header::after {
  content: '';
  background-color: #66ccff;
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  width: 7px;
  height: 70%;
  transform: translateY(calc(-50% + 5px));
}

@media (max-width: 767px) {
  .news-and-events__event-header::after {
    width: 5px;
  }
}

html[dir='ltr'] .news-and-events__event-header::after {
  left: unset;
  right: calc(100% + 10px);
}

.news-and-events__page-p {
  padding: 15px;
}

.news-and-events__page-p p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.news-and-events__slider-wrapper {
  position: relative;
}

.news-and-events__swiper {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 1000px) {
  .news-and-events__swiper {
    height: 80vh;
  }
}

.news-and-events .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  overflow: hidden;
}

.news-and-events .swiper-slide::after {
  content: '';
  width: 100%;
  height: 42%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg, #31316300, rgb(49 49 99 / 74%), rgb(37 25 120 / 64%));
  transform-origin: bottom;
}
/*
.swiper-slide-active.swiper-slide::after {
animation: scalingUp 2s;
opacity: 1;
} */

.news-and-events .swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  transition: filter 1s;
  /* filter: blur(30px); */
}

/* .swiper-slide-active.swiper-slide img {
filter: blur(0px);
} */

.news-and-events__slide-contnet {
  position: absolute;
  bottom: 10%;
  right: 70px;
  width: 60%;
  color: #fff;
  z-index: 2;
}

@media (max-width: 1000px) {
  .news-and-events__slide-contnet {
    bottom: 16%;
    text-align: center;
    right: 50%;
    width: 100%;
    transform: translateX(50%);
  }
}

.news-and-events__slide-contnet * {
  opacity: 0;
}

.news-and-events .swiper-slide-active .generic-chip__date {
  animation: fadeInUp 1.2s;
  opacity: 1;
}

@media (max-width: 1000px) {
  .news-and-events .swiper-slide-active .generic-chip__date {
    display: none;
  }
}

.news-and-events__slider-data {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 35px;
  position: relative;
}

.swiper-slide-active .news-and-events__slider-data {
  animation: fadeInRight 1s;
  opacity: 1;
}

.news-and-events__slider-data::after {
  content: '';
  height: 60%;
  width: 7px;
  position: absolute;
  background-color: #66ccff;
  top: 15px;
  left: calc(100% + 10px);
}

.swiper-slide-active .news-and-events__slider-data::after {
  animation: zoomIn 1s;
  opacity: 1;
}

.news-and-events .swiper-slide-active .generic-button__read-more,
.news-and-events .swiper-slide-active .generic-button__read-more a {
  animation: zoomIn 1s;
  opacity: 1;
}

.news-and-events .generic-button__read-more a:hover {
  background-color: #fff;
  color: #5c4dc0;
}

.news-and-events__slider-navigations {
  position: absolute;
  bottom: 5%;
  left: 5%;
  z-index: 1;
  direction: rtl;
}

@media (max-width: 1000px) {
  .news-and-events__slider-navigations {
    left: 50%;
    transform: translateX(-50%);
  }
}

html[dir='ltr'] .news-and-events__slide-contnet {
  right: unset;
  left: 70px;
}

@media (max-width: 1000px) {
  html[dir='ltr'] .news-and-events__slide-contnet {
    right: 50%;
    left: unset;
  }
}

html[dir='ltr'] .news-and-events__slider-navigations {
  left: unset;
  right: 5%;
}

@media (max-width: 1000px) {
  html[dir='ltr'] .news-and-events__slider-navigations {
    left: 50%;
    right: unset;
  }
}

html[dir='ltr'] .news-and-events__slider-data::after {
  left: unset;
  right: calc(100% + 10px);
}

.news-and-events__events-link {
  position: absolute;
  top: 5%;
  right: 35px;
  z-index: 4;
  font-size: 20px;
  font-weight: 800;
  line-height: 22px;
  color: #fff;
  background-color: rgb(255 255 255 / 30%);
  border-radius: 10px;
  padding: 2px 16px 9px 16px;
}

.news-and-events__events-link:hover {
  color: #fff;
}

.news-and-events__slider-prev,
.news-and-events__slider-next {
  background-color: transparent;
  border: 0;
}

/* .news-and-events__slider-prev {
}

.news-and-events__slider-next {
} */

/* events section */

.news-and-events__events {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.news-and-events__event {
  position: relative;
  height: 300px;
  width: calc(100% / 3 - 14px);
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .news-and-events__event {
    width: 100%;
  }
}

.news-and-events__event::after {
  content: '';
  background: linear-gradient(180deg, #31316300, rgb(49 49 99 / 74%), rgb(37 25 120 / 64%));
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40%;
  width: 100%;
  z-index: 1;
}

.news-and-events__event-img {
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: top;
}

.news-and-events__event-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
}

.news-and-events__event-content-end {
  color: #fff;
  display: flex;
  gap: 5%;
  align-items: end;
  justify-content: space-between;
  z-index: 2;
}

.news-and-events__event-content-data {
  font-size: 14px;
  line-height: 22px;
}

.news-and-events__event-content-button {
  border: 0;
  background-color: transparent;
}

html[dir='ltr'] .news-and-events__event-content-button {
  transform: rotateY(180deg);
}
/* news-and-events thumbnails section */

.news-and-events__thumbnails-section {
  margin-bottom: 60px;
}

.news-and-events__thumbnail {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 797px) {
  .news-and-events__thumbnail {
    flex-direction: column;
    gap: 0;
    margin-bottom: 46px;
    position: relative;
  }

  .news-and-events__thumbnail::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 50%;
    background-color: #eaeaea;
    height: 1px;
    width: 100%;
    transform: translateX(-50%);
  }
}

.news-and-events__thumbnail-img-wrapper {
  min-width: 250px;
  max-width: 250px;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .news-and-events__thumbnail-img-wrapper {
    min-width: 200px;
    max-width: 200px;
  }
}

@media (max-width: 797px) {
  .news-and-events__thumbnail-img-wrapper {
    min-width: 100%;
    max-width: 100%;
    align-self: center;
  }
}

.news-and-events__thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform 0.2s; */
}
/* .news-and-events__thumbnail-img:hover {
transform: scale(1.05) rotate(-2deg);
} */
.news-and-events__thumbnail-content {
  padding-top: 8px;
}

@media (max-width: 797px) {
  .news-and-events__thumbnail-content {
  }
}

.news-and-events__thumbnail-content .generic-chip__date {
  margin: 0;
}

.news-and-events__thumbnail-content-end {
}

.news-and-events__thumbnail-content-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #6258a6;
  display: block;
  margin-bottom: 12px;
}

.news-and-events__thumbnail-content-link:hover {
  color: #6258a6;
}

.news-and-events__thumbnail-content-data {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #7f7f7f;
}

.news-and-events__pagination {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  direction: ltr;
  list-style-type: none;
  padding: 0;
}

.news-and-events__pagination-button {
  border: 1px solid #dfe3e8;
  width: 33px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #273470;
  color: #fff;
}

.news-and-events__pagination-button:first-of-type,
.news-and-events__pagination-button:last-of-type {
  background-color: #fff;
  color: #888;
}

.news-and-events__pagination-button a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #888;
}

.news-and-events__pagination-button a:hover {
  background-color: #273470;
  color: #fff;
}

.news-and-events__pagination-button a:hover span svg {
  fill: #fff;
}

.news-and-events__pagination-button a span {
}

.news-and-events__pagination-button a span svg {
  fill: #888;
}

.news-and-events__pagination-button .news-and-events__pagination-button--back {
  transform: rotate(180deg) translateY(-4px);
}

.news-and-events__pagination-button .news-and-events__pagination-button--next {
  transform: translateY(-2px);
}

.news-and-events__pagination-button .news-and-events__pagination-button--disabled {
}

/* images library */

/* images-library page first section */
.images-library {
  background-color: #fff;
  padding: 20px;
  min-height: 100vh;
}

.images-library__page-header {
  margin-bottom: 20px;
}

/* videoes-switcher */

.videoes-switcher {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 6px;
}

.videoes-switcher a {
  border: 1px #6258a6 solid;
  padding: 5px 12px 8px 12px;
  min-width: 130px;
  text-align: center;
  color: #6258a6;
}

.videoes-switcher a.selected {
  background-color: #6258a6;
  color: #fff;
}

/* events section */

.images-library__events {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.images-library__event {
  position: relative;
  height: 300px;
  width: calc(100% / 3 - 14px);
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .images-library__event {
    width: calc(100% / 2 - 10px);
  }
}

@media (max-width: 767px) {
  .images-library__event {
    width: 100%;
  }
}

.images-library__event::after {
  content: '';
  background: linear-gradient(180deg, #3131634a, rgb(49 49 99 / 47%), rgb(37 25 120 / 64%));
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.images-library__event-img {
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.images-library__event:hover .images-library__event-img {
  transform-origin: center;
  transform: scale(1.1);
}

.images-library__event-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  z-index: 2;
}

.images-library__event-content-end {
  color: #fff;
  display: flex;
  gap: 20%;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.images-library__event-content-data {
  font-size: 14px;
  line-height: 20px;
}

.images-library__event-content-button {
  border: 0;
  background-color: transparent;
}

/* modal */

.images-library__modal .modal-content {
  animation: fadeInUp 0.5s ease-in-out;
}

.images-library__modal .modal-header span {
  color: #000;
}

.images-library__carousel {
  position: relative;
}

.images-library__carousel .carousel-caption {
  z-index: 2;
}

.images-library__carousel button {
  display: block;
  padding: 5px;
}

.images-library__carousel button img {
  width: 100%;
}

.images-library__carousel .carousel-item::after {
  content: '';
  width: 100%;
  height: 42%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  background: linear-gradient(rgba(49, 49, 99, 0), rgba(49, 49, 99, 0.74), rgba(37, 25, 120, 0.64));
  transform-origin: center bottom;
}

/* videoes library */

/* videoes-library page first section */
.videoes-library {
  background-color: #fff;
  padding: 20px;
  min-height: 100vh;
}

.videoes-library__page-header {
  margin-bottom: 20px;
}

/* events section */

.videoes-library__events {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.videoes-library__event {
  position: relative;
  height: 300px;
  width: calc(100% / 3 - 14px);
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .videoes-library__event {
    width: calc(100% / 2 - 10px);
  }
}

@media (max-width: 767px) {
  .videoes-library__event {
    width: 100%;
  }
}

.videoes-library__event::after {
  content: '';
  background: linear-gradient(180deg, #31316396, rgb(49 49 99 / 74%), rgb(37 25 120 / 64%));
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.videoes-library__event-img {
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.videoes-library__event-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  z-index: 2;
}

.videoes-library__event-content-start {
  z-index: 2;
}

.videoes-library__event-content-center {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 100%;
}

.videoes-library__video-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.videoes-library__video-icon-wrapper::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

.videoes-library__video-icon-wrapper::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.1;
}

.videoes-library__event:hover .videoes-library__video-icon-wrapper::before {
  animation: videoesLibraryVideoIcon 2s infinite linear;
}

.videoes-library__event:hover .videoes-library__video-icon-wrapper::after {
  animation: videoesLibraryVideoIcon 2s infinite linear 1s;
}

@keyframes videoesLibraryVideoIcon {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  80% {
    opacity: 0.3;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.videoes-library__event-content-end {
  color: #fff;
  display: flex;
  gap: 20%;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.videoes-library__event-content-data {
  font-size: 14px;
  line-height: 20px;
}

.videoes-library__event-content-button {
  border: 0;
  background-color: transparent;
}

/* modal */

.videoes-library__video-modal {
  animation: fadeInUp 0.5s ease-in-out;
}

/* user guide */

.news-and-events__guide {
  min-height: 70vh;
}

.news-and-events__guide-img {
  width: 70vw;
  margin: 0 auto;
  display: block;
}

@media (max-width: 1000px) {
  .news-and-events__guide-img {
    width: 100%;
  }
}

/* abedlrahman code end */

.iti {
  width: 100%;
}

/*
Don't modify this part as this part is for the library of international telephone number.
*/
.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input,
.iti input[type='tel'],
.iti input[type='text'] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}

.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.iti__country {
  padding: 5px 10px;
  outline: 0;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__country-name,
.iti__dial-code,
.iti__flag-box {
  vertical-align: middle;
}

.iti__country-name,
.iti__flag-box {
  margin-right: 6px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type='tel'],
.iti--allow-dropdown input[type='text'],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type='tel'],
.iti--separate-dial-code input[type='text'] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}

.iti__flag.iti__ac {
  height: 10px;
  background-position: 0 0;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0;
}

.iti__flag {
  height: 15px;
  box-shadow: 0 0 1px 0 #888;
  background-image: url(../images/flags.png);
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url(../images/flags@2x.png);
  }
}

.iti__flag.iti__np {
  background-color: transparent;
}

/************************************** committee project **************************************/
@import '~@angular/material/prebuilt-themes/deeppurple-amber.css';

* {
  font-family: var(--font-family), 'sans-serif';
}
/* page ui */
.page-wrapper {
  background-color: var(--new-white);
  padding: var(--space-lg);
  border-radius: 12px;
}

/* form group */

.form__group {
  margin-bottom: var(--space-base);
}

.form__group > label,
.form__group .uploader-box > .detail > label {
  animation: fadeInDown 0.7s;
}

.form__group > .form__control-wrapper,
.form__group > .form__calendar-wrapper,
.form__group .uploader-box > .detail > app-textfield,
.form__group .uploader-box > .detail > app-button {
  animation: fadeInUp 0.7s;
}

.form__group--disabled .form__label {
  opacity: 0.5;
}

.form__group .form__error-message.dpo-form {
  color: var(--pink);
}

.form__group.checkbox-form {
  margin-right: 1rem;
  display: flex;
  gap: 2rem;
  font-size: 1rem;
}

html[dir='ltr'] .form__group.checkbox-form {
  margin-left: 1rem;
}

.ng-invalid.ng-touched > .agency__profile--wrapper.form__group {
  border-color: red;
}

.search-bar .form__group {
  margin-bottom: 0 !important;
}

/************************************** overwrite bootstrap **************************************/

.nav-link {
  text-align: start;
  text-transform: capitalize;
}

/************************************** material **************************************/
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  src: url('../fonts/material.woff2') format('woff2');
}

.mat-menu-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  direction: ltr;
}

html[dir='rtl'] .mat-menu-list-item {
  direction: rtl;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

html[dir='ltr'] .material-symbols-outlined {
  direction: rtl !important;
}

.transformClass .mat-progress-bar-fill {
  transform: scale3d(0, 1, 1) !important;
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/materialIcons.woff2') format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 200,
    'GRAD' 200,
    'opsz' 40;
}

.decision-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* tabs */
.mat-tab-group.mat-primary .mat-ink-bar,
.mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #625d9c;
}

.mat-tab-label {
  opacity: 1 !important;
  padding: 0 10px !important;
  min-width: unset !important;
}

.customized-tap-label {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mat-tab-label-active .customized-tap-label {
  color: #625d9c;
  font-weight: 700;
}

.customized-tap-label--has-badge span {
  background-color: #3f51b5;
  color: #fff;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 400;
  font-size: 12px;
  font-family: sans-serif;
}

.customized-tap-content {
  margin-top: 22px;
}

/* dropdown */

.mat-menu-panel {
  max-width: unset !important;
}

/* table status */
app-data-table table lib-public-status label {
  padding: 7px 20px !important;
}


.actions {
  display: flex;
  gap: var(--space-xs);
  justify-content: flex-end;
}


/************************************** new root colors for new ndmo dashboard ui **************************************/
:root {
  --new-white: #fff;
  --new-black: #000;
  --new-default: #555;
  --new-default-light: #efefef;
  --new-default-text: #6d6d6d;
  --new-primary: #2e2377;
  --new-primary-light: #efeef6;
  --new-primary-text: #6258a6;
  --new-primary-step-50: #ededf4;
  --new-primary-step-200: #b7b7d3;
  --new-secondry: #4dbd95;
  --new-secondry-light: #e9f7f2;
  --new-secondry-text: #479c7e;
  --new-third: #d1ba39;
  --new-third-light: #fef9dd;
  --new-third-text: #918230;
  --new-warning: #d13939;
  --new-warning-light: #fedddd;
  --new-warning-text: #918230;
  --font-family: 'HelveticaNeueLTArabic';
  --card-shadow: 0px 2px 4.8px 0px #00000040;
  --button-shadow: 0px 1px 1.899999976158142px 0px #00000040;
  --menu-shadow: 0px 1px 1.9px 0px #00000040;
  --space-base: 1rem;
  --space-xs: calc(var(--space-base) - 0.6rem);
  --space-sm: calc(var(--space-base) - 0.3rem);
  --space-md: calc(var(--space-base));
  --space-lg: calc(var(--space-base) + 0.3rem);
  --space-xl: calc(var(--space-base) + 0.6rem);
  --space-xxl: calc(var(--space-base) + 0.9rem);
  --dashboard-sidenav-width: 64px;

  /* New */
  --light-blue-2: #73c8f1;
  --light-blue: #65cbff;
  --dark-blue: #263570;
  --dark-orange: #ed7624;
  --orange: #f79e00;
  --green: #4dbd95;
  --light-green: #9ccc3c;
  --red: #cb0000;
  --primary: #252f6b;
  --secondary: #73c8f1;
  --secondary-hover: #60a9cd;
  --primary-hover: #6459a7;
  --darkSliver: #707070;
  --sliver: #949494;
  --lightSliver: #c9c9c9;
  --danger: #f16739;
  --danger-hover: #d1572f;
  --pink: #ff375e;
  --base: #273470;
  --purple-light: #eeecfe;
  --purple-base: #4859a0;
  --purple-base-light: #5567a9;
  --purple-fade: #f0eeff;
  --white: #fff;
  --link-color: #66bbf2;
  --light-base: #eff1fa;
  --purple-dark: #2a346c;
  --purple-pale: #6258a6;
  --text-base-color: #1d252d;
  --purple-dim: #b5abe9;
  --sky: #66ccff;
  --grey-base: #c7c5d2;
  --header-max-height: 100px;
  --footer-max-height: 200px;
  --max-content-margins: 100px;
  --content-min-height: 80vh;
}

/************************************** animations **************************************/

@keyframes headings-fading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes scalingUp {
  0% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleY(1);
  }
}
