:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-border-color: #ccc;
  --iti-dialcode-color: #999;
  --iti-dropdown-bg: white;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 12px;
  --iti-flag-width: 16px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-arrow-color: #555;
  --iti-path-flags-1x: url("../img/flags.webp");
  --iti-path-flags-2x: url("../img/flags@2x.webp");
  --iti-path-globe-1x: url("../img/globe.webp");
  --iti-path-globe-2x: url("../img/globe@2x.webp");
  --iti-flag-sprite-width: 3904px;
  --iti-flag-sprite-height: 12px;
  --iti-mobile-popup-margin: 30px;
}

.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}

.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  position: relative;
  z-index: 0;
  margin: 0 !important;
}

.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: var(--iti-border-width);
}

.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}

.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
}

.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 0;
  height: 0;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
}

[dir=rtl] .iti__arrow {
  margin-right: var(--iti-arrow-padding);
  margin-left: 0;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}

.iti__dropdown-content {
  border-radius: 3px;
  background-color: var(--iti-dropdown-bg);
}

.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-color);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
}

.iti__search-input+.iti__country-list {
  border-top: 1px solid var(--iti-border-color);
}

.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}

.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}

@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}

.iti__country {
  display: flex;
  align-items: center;
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
}

.iti__dial-code {
  color: var(--iti-dialcode-color);
}

.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}

.iti__country-list .iti__flag,
.iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}

[dir=rtl] .iti__country-list .iti__flag,
[dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover button {
  cursor: pointer;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}

.iti .iti__selected-dial-code {
  margin-left: 4px;
}

[dir=rtl] .iti .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 4px;
}

.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: var(--iti-border-width);
}

.iti--container:hover {
  cursor: pointer;
}

.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}

.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 100px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  border-radius: 1px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -16px;
}

.iti__ae {
  --iti-flag-offset: -32px;
}

.iti__af {
  --iti-flag-offset: -48px;
}

.iti__ag {
  --iti-flag-offset: -64px;
}

.iti__ai {
  --iti-flag-offset: -80px;
}

.iti__al {
  --iti-flag-offset: -96px;
}

.iti__am {
  --iti-flag-offset: -112px;
}

.iti__ao {
  --iti-flag-offset: -128px;
}

.iti__ar {
  --iti-flag-offset: -144px;
}

.iti__as {
  --iti-flag-offset: -160px;
}

.iti__at {
  --iti-flag-offset: -176px;
}

.iti__au {
  --iti-flag-offset: -192px;
}

.iti__aw {
  --iti-flag-offset: -208px;
}

.iti__ax {
  --iti-flag-offset: -224px;
}

.iti__az {
  --iti-flag-offset: -240px;
}

.iti__ba {
  --iti-flag-offset: -256px;
}

.iti__bb {
  --iti-flag-offset: -272px;
}

.iti__bd {
  --iti-flag-offset: -288px;
}

.iti__be {
  --iti-flag-offset: -304px;
}

.iti__bf {
  --iti-flag-offset: -320px;
}

.iti__bg {
  --iti-flag-offset: -336px;
}

.iti__bh {
  --iti-flag-offset: -352px;
}

.iti__bi {
  --iti-flag-offset: -368px;
}

.iti__bj {
  --iti-flag-offset: -384px;
}

.iti__bl {
  --iti-flag-offset: -400px;
}

.iti__bm {
  --iti-flag-offset: -416px;
}

.iti__bn {
  --iti-flag-offset: -432px;
}

.iti__bo {
  --iti-flag-offset: -448px;
}

.iti__bq {
  --iti-flag-offset: -464px;
}

.iti__br {
  --iti-flag-offset: -480px;
}

.iti__bs {
  --iti-flag-offset: -496px;
}

.iti__bt {
  --iti-flag-offset: -512px;
}

.iti__bw {
  --iti-flag-offset: -528px;
}

.iti__by {
  --iti-flag-offset: -544px;
}

.iti__bz {
  --iti-flag-offset: -560px;
}

.iti__ca {
  --iti-flag-offset: -576px;
}

.iti__cc {
  --iti-flag-offset: -592px;
}

.iti__cd {
  --iti-flag-offset: -608px;
}

.iti__cf {
  --iti-flag-offset: -624px;
}

.iti__cg {
  --iti-flag-offset: -640px;
}

.iti__ch {
  --iti-flag-offset: -656px;
}

.iti__ci {
  --iti-flag-offset: -672px;
}

.iti__ck {
  --iti-flag-offset: -688px;
}

.iti__cl {
  --iti-flag-offset: -704px;
}

.iti__cm {
  --iti-flag-offset: -720px;
}

.iti__cn {
  --iti-flag-offset: -736px;
}

.iti__co {
  --iti-flag-offset: -752px;
}

.iti__cr {
  --iti-flag-offset: -768px;
}

.iti__cu {
  --iti-flag-offset: -784px;
}

.iti__cv {
  --iti-flag-offset: -800px;
}

.iti__cw {
  --iti-flag-offset: -816px;
}

.iti__cx {
  --iti-flag-offset: -832px;
}

.iti__cy {
  --iti-flag-offset: -848px;
}

.iti__cz {
  --iti-flag-offset: -864px;
}

.iti__de {
  --iti-flag-offset: -880px;
}

.iti__dj {
  --iti-flag-offset: -896px;
}

.iti__dk {
  --iti-flag-offset: -912px;
}

.iti__dm {
  --iti-flag-offset: -928px;
}

.iti__do {
  --iti-flag-offset: -944px;
}

.iti__dz {
  --iti-flag-offset: -960px;
}

.iti__ec {
  --iti-flag-offset: -976px;
}

.iti__ee {
  --iti-flag-offset: -992px;
}

.iti__eg {
  --iti-flag-offset: -1008px;
}

.iti__eh {
  --iti-flag-offset: -1024px;
}

.iti__er {
  --iti-flag-offset: -1040px;
}

.iti__es {
  --iti-flag-offset: -1056px;
}

.iti__et {
  --iti-flag-offset: -1072px;
}

.iti__fi {
  --iti-flag-offset: -1088px;
}

.iti__fj {
  --iti-flag-offset: -1104px;
}

.iti__fk {
  --iti-flag-offset: -1120px;
}

.iti__fm {
  --iti-flag-offset: -1136px;
}

.iti__fo {
  --iti-flag-offset: -1152px;
}

.iti__fr {
  --iti-flag-offset: -1168px;
}

.iti__ga {
  --iti-flag-offset: -1184px;
}

.iti__gb {
  --iti-flag-offset: -1200px;
}

.iti__gd {
  --iti-flag-offset: -1216px;
}

.iti__ge {
  --iti-flag-offset: -1232px;
}

.iti__gf {
  --iti-flag-offset: -1248px;
}

.iti__gg {
  --iti-flag-offset: -1264px;
}

.iti__gh {
  --iti-flag-offset: -1280px;
}

.iti__gi {
  --iti-flag-offset: -1296px;
}

.iti__gl {
  --iti-flag-offset: -1312px;
}

.iti__gm {
  --iti-flag-offset: -1328px;
}

.iti__gn {
  --iti-flag-offset: -1344px;
}

.iti__gp {
  --iti-flag-offset: -1360px;
}

.iti__gq {
  --iti-flag-offset: -1376px;
}

.iti__gr {
  --iti-flag-offset: -1392px;
}

.iti__gt {
  --iti-flag-offset: -1408px;
}

.iti__gu {
  --iti-flag-offset: -1424px;
}

.iti__gw {
  --iti-flag-offset: -1440px;
}

.iti__gy {
  --iti-flag-offset: -1456px;
}

.iti__hk {
  --iti-flag-offset: -1472px;
}

.iti__hn {
  --iti-flag-offset: -1488px;
}

.iti__hr {
  --iti-flag-offset: -1504px;
}

.iti__ht {
  --iti-flag-offset: -1520px;
}

.iti__hu {
  --iti-flag-offset: -1536px;
}

.iti__id {
  --iti-flag-offset: -1552px;
}

.iti__ie {
  --iti-flag-offset: -1568px;
}

.iti__il {
  --iti-flag-offset: -1584px;
}

.iti__im {
  --iti-flag-offset: -1600px;
}

.iti__in {
  --iti-flag-offset: -1616px;
}

.iti__io {
  --iti-flag-offset: -1632px;
}

.iti__iq {
  --iti-flag-offset: -1648px;
}

.iti__ir {
  --iti-flag-offset: -1664px;
}

.iti__is {
  --iti-flag-offset: -1680px;
}

.iti__it {
  --iti-flag-offset: -1696px;
}

.iti__je {
  --iti-flag-offset: -1712px;
}

.iti__jm {
  --iti-flag-offset: -1728px;
}

.iti__jo {
  --iti-flag-offset: -1744px;
}

.iti__jp {
  --iti-flag-offset: -1760px;
}

.iti__ke {
  --iti-flag-offset: -1776px;
}

.iti__kg {
  --iti-flag-offset: -1792px;
}

.iti__kh {
  --iti-flag-offset: -1808px;
}

.iti__ki {
  --iti-flag-offset: -1824px;
}

.iti__km {
  --iti-flag-offset: -1840px;
}

.iti__kn {
  --iti-flag-offset: -1856px;
}

.iti__kp {
  --iti-flag-offset: -1872px;
}

.iti__kr {
  --iti-flag-offset: -1888px;
}

.iti__kw {
  --iti-flag-offset: -1904px;
}

.iti__ky {
  --iti-flag-offset: -1920px;
}

.iti__kz {
  --iti-flag-offset: -1936px;
}

.iti__la {
  --iti-flag-offset: -1952px;
}

.iti__lb {
  --iti-flag-offset: -1968px;
}

.iti__lc {
  --iti-flag-offset: -1984px;
}

.iti__li {
  --iti-flag-offset: -2000px;
}

.iti__lk {
  --iti-flag-offset: -2016px;
}

.iti__lr {
  --iti-flag-offset: -2032px;
}

.iti__ls {
  --iti-flag-offset: -2048px;
}

.iti__lt {
  --iti-flag-offset: -2064px;
}

.iti__lu {
  --iti-flag-offset: -2080px;
}

.iti__lv {
  --iti-flag-offset: -2096px;
}

.iti__ly {
  --iti-flag-offset: -2112px;
}

.iti__ma {
  --iti-flag-offset: -2128px;
}

.iti__mc {
  --iti-flag-offset: -2144px;
}

.iti__md {
  --iti-flag-offset: -2160px;
}

.iti__me {
  --iti-flag-offset: -2176px;
}

.iti__mf {
  --iti-flag-offset: -2192px;
}

.iti__mg {
  --iti-flag-offset: -2208px;
}

.iti__mh {
  --iti-flag-offset: -2224px;
}

.iti__mk {
  --iti-flag-offset: -2240px;
}

.iti__ml {
  --iti-flag-offset: -2256px;
}

.iti__mm {
  --iti-flag-offset: -2272px;
}

.iti__mn {
  --iti-flag-offset: -2288px;
}

.iti__mo {
  --iti-flag-offset: -2304px;
}

.iti__mp {
  --iti-flag-offset: -2320px;
}

.iti__mq {
  --iti-flag-offset: -2336px;
}

.iti__mr {
  --iti-flag-offset: -2352px;
}

.iti__ms {
  --iti-flag-offset: -2368px;
}

.iti__mt {
  --iti-flag-offset: -2384px;
}

.iti__mu {
  --iti-flag-offset: -2400px;
}

.iti__mv {
  --iti-flag-offset: -2416px;
}

.iti__mw {
  --iti-flag-offset: -2432px;
}

.iti__mx {
  --iti-flag-offset: -2448px;
}

.iti__my {
  --iti-flag-offset: -2464px;
}

.iti__mz {
  --iti-flag-offset: -2480px;
}

.iti__na {
  --iti-flag-offset: -2496px;
}

.iti__nc {
  --iti-flag-offset: -2512px;
}

.iti__ne {
  --iti-flag-offset: -2528px;
}

.iti__nf {
  --iti-flag-offset: -2544px;
}

.iti__ng {
  --iti-flag-offset: -2560px;
}

.iti__ni {
  --iti-flag-offset: -2576px;
}

.iti__nl {
  --iti-flag-offset: -2592px;
}

.iti__no {
  --iti-flag-offset: -2608px;
}

.iti__np {
  --iti-flag-offset: -2624px;
}

.iti__nr {
  --iti-flag-offset: -2640px;
}

.iti__nu {
  --iti-flag-offset: -2656px;
}

.iti__nz {
  --iti-flag-offset: -2672px;
}

.iti__om {
  --iti-flag-offset: -2688px;
}

.iti__pa {
  --iti-flag-offset: -2704px;
}

.iti__pe {
  --iti-flag-offset: -2720px;
}

.iti__pf {
  --iti-flag-offset: -2736px;
}

.iti__pg {
  --iti-flag-offset: -2752px;
}

.iti__ph {
  --iti-flag-offset: -2768px;
}

.iti__pk {
  --iti-flag-offset: -2784px;
}

.iti__pl {
  --iti-flag-offset: -2800px;
}

.iti__pm {
  --iti-flag-offset: -2816px;
}

.iti__pr {
  --iti-flag-offset: -2832px;
}

.iti__ps {
  --iti-flag-offset: -2848px;
}

.iti__pt {
  --iti-flag-offset: -2864px;
}

.iti__pw {
  --iti-flag-offset: -2880px;
}

.iti__py {
  --iti-flag-offset: -2896px;
}

.iti__qa {
  --iti-flag-offset: -2912px;
}

.iti__re {
  --iti-flag-offset: -2928px;
}

.iti__ro {
  --iti-flag-offset: -2944px;
}

.iti__rs {
  --iti-flag-offset: -2960px;
}

.iti__ru {
  --iti-flag-offset: -2976px;
}

.iti__rw {
  --iti-flag-offset: -2992px;
}

.iti__sa {
  --iti-flag-offset: -3008px;
}

.iti__sb {
  --iti-flag-offset: -3024px;
}

.iti__sc {
  --iti-flag-offset: -3040px;
}

.iti__sd {
  --iti-flag-offset: -3056px;
}

.iti__se {
  --iti-flag-offset: -3072px;
}

.iti__sg {
  --iti-flag-offset: -3088px;
}

.iti__sh {
  --iti-flag-offset: -3104px;
}

.iti__si {
  --iti-flag-offset: -3120px;
}

.iti__sj {
  --iti-flag-offset: -3136px;
}

.iti__sk {
  --iti-flag-offset: -3152px;
}

.iti__sl {
  --iti-flag-offset: -3168px;
}

.iti__sm {
  --iti-flag-offset: -3184px;
}

.iti__sn {
  --iti-flag-offset: -3200px;
}

.iti__so {
  --iti-flag-offset: -3216px;
}

.iti__sr {
  --iti-flag-offset: -3232px;
}

.iti__ss {
  --iti-flag-offset: -3248px;
}

.iti__st {
  --iti-flag-offset: -3264px;
}

.iti__sv {
  --iti-flag-offset: -3280px;
}

.iti__sx {
  --iti-flag-offset: -3296px;
}

.iti__sy {
  --iti-flag-offset: -3312px;
}

.iti__sz {
  --iti-flag-offset: -3328px;
}

.iti__tc {
  --iti-flag-offset: -3344px;
}

.iti__td {
  --iti-flag-offset: -3360px;
}

.iti__tg {
  --iti-flag-offset: -3376px;
}

.iti__th {
  --iti-flag-offset: -3392px;
}

.iti__tj {
  --iti-flag-offset: -3408px;
}

.iti__tk {
  --iti-flag-offset: -3424px;
}

.iti__tl {
  --iti-flag-offset: -3440px;
}

.iti__tm {
  --iti-flag-offset: -3456px;
}

.iti__tn {
  --iti-flag-offset: -3472px;
}

.iti__to {
  --iti-flag-offset: -3488px;
}

.iti__tr {
  --iti-flag-offset: -3504px;
}

.iti__tt {
  --iti-flag-offset: -3520px;
}

.iti__tv {
  --iti-flag-offset: -3536px;
}

.iti__tw {
  --iti-flag-offset: -3552px;
}

.iti__tz {
  --iti-flag-offset: -3568px;
}

.iti__ua {
  --iti-flag-offset: -3584px;
}

.iti__ug {
  --iti-flag-offset: -3600px;
}

.iti__us {
  --iti-flag-offset: -3616px;
}

.iti__uy {
  --iti-flag-offset: -3632px;
}

.iti__uz {
  --iti-flag-offset: -3648px;
}

.iti__va {
  --iti-flag-offset: -3664px;
}

.iti__vc {
  --iti-flag-offset: -3680px;
}

.iti__ve {
  --iti-flag-offset: -3696px;
}

.iti__vg {
  --iti-flag-offset: -3712px;
}

.iti__vi {
  --iti-flag-offset: -3728px;
}

.iti__vn {
  --iti-flag-offset: -3744px;
}

.iti__vu {
  --iti-flag-offset: -3760px;
}

.iti__wf {
  --iti-flag-offset: -3776px;
}

.iti__ws {
  --iti-flag-offset: -3792px;
}

.iti__xk {
  --iti-flag-offset: -3808px;
}

.iti__ye {
  --iti-flag-offset: -3824px;
}

.iti__yt {
  --iti-flag-offset: -3840px;
}

.iti__za {
  --iti-flag-offset: -3856px;
}

.iti__zm {
  --iti-flag-offset: -3872px;
}

.iti__zw {
  --iti-flag-offset: -3888px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }

  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-style: italic;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

video {
  display: block;
}

.iti__search-input {
  padding: 10px;
  outline: 0;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

textarea {
  resize: none;
}

abbr[title] {
  text-decoration: none;
}

button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

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

:root {
  --font-family-base: "Gilroy", sans-serif, system-ui;
  --border-radius-small: 10px;
  --border-color-dark: var(--color-dark);
  --letter-spacing-small: 1.6px;
  --outline-offset: 2px;
  --timing: 0.3s;
  --preloader-z-index: 1001;
  --header-nav-z-index: 10;
  --overlay-shadow: rgba(0, 0, 0, 0.6);
}

:root {
  --color-light: hsl(0, 0%, 100%);
  --color-dark: hsl(0, 0%, 0%);
}

:root {
  --offset-huge: 50px;
  --offset-medium-huge: 45px;
  --offset-large: 40px;
  --offset-medium-large: 35px;
  --offset-medium: 30px;
  --offset-medium-small: 25px;
  --offset-small: 20px;
  --offset-tiny: 15px;
}

@font-face {
  font-family: "FONTSPRING DEMO - Proxima Nova ExCn";
  src: url("../fonts/FONTSPRINGDEMO-ProximaNovaExCnBold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "FONTSPRING DEMO - Proxima Nova Cond";
  src: url("../fonts/FONTSPRINGDEMO-ProximaNovaCondMediumRegular.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "FONTSPRING DEMO - Proxima Nova ExCn";
  src: url("../fonts/FONTSPRINGDEMO-ProximaNovaExCnSemiboldRegular.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "FONTSPRING DEMO - Proxima Nova";
  src: url("../fonts/FONTSPRINGDEMO-ProximaNovaRegular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Regular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Eina03";
  src: url("../fonts/Eina03-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Eina03";
  src: url("../fonts/Eina03-Regular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Eina03";
  src: url("../fonts/Eina03-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Eina03";
  src: url("../fonts/Eina03-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-BoldMT.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/ArialMT.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Proxima Nova Rg";
  src: url("../fonts/ProximaNova-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Proxima Nova Rg";
  src: url("../fonts/ProximaNova-Regular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Dazzle Unicase";
  src: url("../fonts/DazzleUnicase-Medium.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: "Roboto Lt";
  src: url("../fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: "Roboto Bk";
  src: url("../fonts/Roboto-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: "Roboto Th";
  src: url("../fonts/Roboto-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: "Roboto Lt";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: "Dazzle Unicase";
  src: url("../fonts/DazzleUnicase-Medium.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: 'Dazzle Unicase';
  src: url('../fonts/DazzleUnicase-Thin.woff2') format('woff2'),
    url('../fonts/DazzleUnicase-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: swap;
}

@font-face {
  font-family: "Proxima Nova Lt";
  src: url("../fonts/ProximaNova-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: swap;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

.page__body:has(dialog[open]) {
  overflow: hidden;
}

.site-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
}

.scroll-lock {
  overflow: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.custom-scrollbar {
  scrollbar-color: var(--color-green) var(--color-light);
}

.custom-scrollbar::-webkit-scrollbar {
  background-color: var(--color-light);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--color-green);
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  --content-max-width: 1200px;
  --content-max-width: 0px;
  --padding-inline: 15px;
  margin-inline: auto;
  width: min(var(--content-max-width), 100% - var(--padding-inline) * 2);
  width: 100%;
}

.skiplink {
  --skiplink-offset: 20px;
  --skiplink-overlay-color: rgba(0, 0, 0, 0.6);
  --skiplink-bgcolor: rgba(13, 32, 202, 0.473);
  --skiplink-flashing-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  inset: 0;
  opacity: 0;
  font-family: inherit;
  font-size: var(--skiplink-offset);
  font-weight: 700;
  background-color: var(--skiplink-overlay-color);
  color: var(--color-black);
  z-index: var(--skiplink-z-index);
  pointer-events: none;
  -webkit-transition: opacity var(--timing) ease, background-color var(--timing) ease;
  transition: opacity var(--timing) ease, background-color var(--timing) ease;
}

.skiplink__text {
  position: relative;
  top: var(--skiplink-offset);
  left: var(--skiplink-offset);
  padding: var(--skiplink-offset);
  background-color: var(--skiplink-bgcolor);
  color: var(--color-light);
  border: 2px solid var(--color-light);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-animation: pulse-btn-bg 1.5s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running;
  animation: pulse-btn-bg 1.5s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running;
  -webkit-transition: -webkit-box-shadow var(--timing);
  transition: -webkit-box-shadow var(--timing);
  transition: box-shadow var(--timing);
  transition: box-shadow var(--timing), -webkit-box-shadow var(--timing);
}

.skiplink__text::before {
  content: url(../img/skiplink-enter-icon.svg);
  margin-left: var(--skiplink-offset);
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: var(--skiplink-offset);
  height: var(--skiplink-offset);
}

.skiplink__text::after {
  content: attr(data-title);
  font-size: initial;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  padding-top: 2px;
  margin-left: 2px;
}

.skiplink:focus {
  opacity: 1;
}

.skiplink:focus .skiplink__text {
  -webkit-box-shadow: var(--skiplink-flashing-color) 0px 0px 0px 0px;
  box-shadow: var(--skiplink-flashing-color) 0px 0px 0px 0px;
}

.text-stroke {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-dark);
  text-stroke: 1px var(--color-dark);
}

.text-bg-gradient {
  background: -webkit-gradient(linear, left top, right top, color-stop(36%, rgb(158, 63, 58)), to(rgb(52, 17, 142)));
  background: linear-gradient(90deg, rgb(158, 63, 58) 36%, rgb(52, 17, 142));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (prefers-reduced-motion) {

  *,
  *::after,
  *::before {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: 0.01s !important;
    transition: 0.01s !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-contrast: more) {
  .backdrop-title::after {
    -webkit-text-stroke: 10px var(--color-dark);
    text-stroke: 10px var(--color-dark);
  }
}

.title {
  font-family: var(--font-family-base);
  font-size: 70px;
  font-weight: 400;
  line-height: 1.1;
}

.button {
  -webkit-transition: scale var(--timing) ease;
  transition: scale var(--timing) ease;
}

.button:active {
  scale: 0.9;
}

.header-gradient-color {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(198, 224, 244)), to(rgb(222, 239, 243)));
  background: linear-gradient(180deg, rgb(198, 224, 244) 0%, rgb(222, 239, 243) 100%);
}



.header-transparent-color-container {
  position: relative;
  z-index: 10000;
  padding: 16px 0px;
}

.header-transparent-color-container::before {
  content: "";
  /* background: -webkit-gradient(linear, left top, left bottom, color-stop(48%, rgba(0, 0, 0, 0.1797093838)), to(rgb(0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1797093838) 48%, rgb(0, 0, 0) 100%); */
  opacity: 0.19;
  opacity: 1;
  background-image: linear-gradient(to bottom, #ffffff30, #ffffff30, #ffffff30, #ffffff30, #ffffff30, #ffffff30, #ffffff30, #ffffff30, #ffffff30, #ffffff25, #ffffff20, #ffffff00);
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: background 0.3s ease;
}

.header_container_transparent {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
}

.header_container {
  position: fixed;
  left: 0;
  right: 0;
  padding-top: 30px;
  padding-bottom: 20px;
  z-index: 999999999;
  transition: background-color 0.3s ease;
  /* Adjust time as needed */
}

.header_container .header-left {
  z-index: 10000;
}

.header_container .header-left .logo-container {
  width: 180px;
  height: 65px;
  position: relative;
  margin-right: 30px;
  align-items: center;
}

.header_container .header-left .image-logo {
  position: absolute;
  width: 100%;
  height: 100% !important;
  -o-object-fit: contain;
  object-fit: contain;
  inset: 0;
}

.header_container .header-left .header-left-list li {
  padding: 0px 14px;
  padding-top: 4px;
  padding-bottom: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 20px;
  text-align: center;
  margin-right: 15px !important;
}

.header_container .header-left .header-left-list li a {
  text-decoration: none;
}

.header_container .header-left .header-left-list li {
  background-color: #2699FB;
  color: white !important;
  border-radius: 20px;
}

.header_container .header-left .header-left-list li a {
  color: white !important;
}

.header_container .header-right {
  z-index: 10000;
}

.header_container .header-right .header-right-list li {
  padding: 0px 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header_container .header-right .header-right-list li a {
  text-decoration: none;
}

.header_container .header-right .header-right-list li:hover {
  color: #2699FB !important;
}

.header_container .header-right .header-right-list li:hover a {
  color: #2699FB !important;
}

.header-right-login {
  padding: 3px 4px;
  padding-left: 15px;
  border-radius: 40px;
  margin-left: 20px;
}

.header-right-login a {
  text-decoration: none;
}

.header-right-login a p {
  margin-right: 10px;
  margin-bottom: 0;
  text-align: center;
  -ms-grid-column-align: center;
  justify-self: center;
  margin-top: 2px;
}

.header-right-login:hover {
  background-color: #619F3C;
}

.header_container-light {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.color-white {
  color: white !important;
}

.header-mobile-container-home {
  position: absolute !important;
}

.header-mobile-container {
  position: relative;
  z-index: 10000;
  padding: 7px 0px;
  background-color: transparent;
  width: 100%;
}

@media (max-width: 992px) {
  .header_container {
    display: none;
  }

  .header-mobile-container {
    display: block;
  }
}

@media (min-width: 992px) {
  .header_container {
    display: block;
  }

  .header-mobile-container {
    display: none;
  }
}

.logo-container-mobile {
  width: 110px;
  height: auto;
}

.humberger-menu-container {
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #D6DDEB;
}

.humberger-menu-container svg:hover {
  fill: blue;
}

@media (min-width: 992px) {
  .mobile-menu-overlay {
    display: none;
  }
}

.mobile-menu-msg-container {
  width: 28px;
  height: 28px;
}

/* Basic Styling for Header */
@media (max-width: 992px) {
  .header_container {
    padding: 20px;
  }

  .d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  /* Desktop Menu Styling */
  .header-left-list,
  .header-right-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header-left-list li,
  .header-right-list li {
    margin-right: 20px;
  }

  .image-logo {
    width: 150px;
  }

  /* Mobile Menu Styling */
  .mobile-menu {
    list-style: none;
    text-align: center;
  }

  .mobile-menu li {
    margin: 20px 0;
  }

  .mobile-menu li a {
    color: #000000;
    font-size: 24px;
    text-decoration: none;
  }

  .mobile-menu li a:hover {
    color: #2699FB;
    font-size: 24px;
    text-decoration: none;
  }

  /* Hamburger Menu Icon */
  .humberger-menu-container svg {
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }

  /* Change to X Icon */
  .humberger-menu-container.active svg {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /* Responsive Design */
}

@media (max-width: 992px) and (max-width: 767px) {
  .header_container {
    display: none;
  }
}

@media (max-width: 992px) {
  .ham-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 70px;
    cursor: pointer;
    z-index: 10000 !important;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
  }

  .ham-label .ham-span {
    background: #1b1a1a;
    border-radius: 10px;
    height: 7px;
    margin: 3px 0;
    -webkit-transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }

  .ham-span:nth-of-type(1) {
    width: 50%;
  }

  .ham-span:nth-of-type(2) {
    width: 100%;
  }

  .ham-span:nth-of-type(3) {
    width: 75%;
  }

  #check {
    display: none;
  }

  .form-label-check {
    color: #5F5F5F;
  }

  input[type=checkbox]:checked~span:nth-of-type(1) {
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: rotatez(45deg) translate(5px, 1px);
    -ms-transform: rotate(45deg) translate(5px, 1px);
    transform: rotatez(45deg) translate(5px, 1px);
  }

  input[type=checkbox]:checked~span:nth-of-type(2) {
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotatez(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotatez(-45deg);
  }

  input[type=checkbox]:checked~span:nth-of-type(3) {
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    width: 50%;
    -webkit-transform: translate(12px, -6px) rotatez(45deg);
    -ms-transform: translate(12px, -6px) rotate(45deg);
    transform: translate(12px, -6px) rotatez(45deg);
  }

  .warp-content {
    z-index: 1020;
  }

  .mobile-menu-overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .mobile-menu-overlay:before,
  .mobile-menu-overlay:after {
    content: "";
    position: fixed !important;
    height: 100vh;
    background: rgba(234, 234, 234, 0.2);
    z-index: -1;
    -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    -webkit-transform: translateX(0%) translateY(-100%);
    -ms-transform: translateX(0%) translateY(-100%);
    transform: translateX(0%) translateY(-100%);
    z-index: 1001;
    top: 0;
    right: 0;
    left: 0;
  }

  .nav-active {
    overflow: hidden;
  }

  body.nav-active .nav:after {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }

  body.nav-active .mobile-menu-overlay:before,
  body.nav-active .mobile-menu-overlay:after {
    -webkit-transform: translateX(0%) translateY(0%);
    -ms-transform: translateX(0%) translateY(0%);
    transform: translateX(0%) translateY(0%);
  }

  .mobile-menu-overlay:after {
    background: rgb(198, 224, 244);
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(198, 224, 244)), to(rgb(222, 239, 243)));
    background: linear-gradient(180deg, rgb(198, 224, 244) 0%, rgb(222, 239, 243) 100%);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .mobile-menu-overlay .warp-content {
    position: absolute;
    width: 100%;
    height: calc(100% - 125px);
    top: 90px;
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.2s ease, transform 0.3s ease;
    transition: opacity 0.2s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    overflow: scroll;
    padding: 0 10px;
  }

  body.nav-active .mobile-menu-overlay .warp-content {
    pointer-events: auto;
    opacity: 1;
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }
}

.fixed-btn-height {
  height: 30px;
  margin: 0px !important;
  display: flex;
  align-items: center
}

.mobile-menu-msg-container {
  position: relative;
}

.message-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body {
  background-color: #EEF3F4 !important;
}

.dark-red {
  color: #9F3131;
}

.red {
  color: #FF0000;
}

.dark-red-2 {
  border-color: #951616;
}

.week-red {
  color: #EDACAC;
}

.blue {
  color: #2699FB;
}

.bg--blue {
  background-color: #2699FB;
}

.blue-light {
  color: #06B4FE;
}

.purble-text {
  color: #5F4EE0;
}

.dark-blue {
  color: #26335E;
}

.blue-med {
  color: #00539A;
}

.blue-un {
  color: #2689DD;
}

.secondary-blue {
  color: #BCE0FD;
}

.cold-blue {
  color: #EEF3F4;
}

.lighted-blue {
  color: #24E8FB;
}

.gray {
  color: #A0AABE;
}

.dark-gray {
  color: #777E8E;
}

.cold-gray {
  color: #C3C3C3;
}

.gray-text {
  color: #707070;
}

.tabs-gray {
  color: #D6D6D6;
}

.prc-gray {
  color: #848484;
}

.near-black-2 {
  border-color: #2E2E22;
}

.red-text {
  color: #FF0100;
}

.white {
  color: #FFFFFF;
}

.black {
  color: #000000;
}

.purple {
  color: #5E4DDF;
}

.green {
  color: #7CCA4D;
}

.green-med {
  color: #619F3C;
}

.green-dark {
  color: #305C15;
}

.font-size-9 {
  font-size: 6px;
}

.font-size-10 {
  font-size: 8px;
}

.font-size-12 {
  font-size: 10px;
}

.font-size-14 {
  font-size: 12px;
}

.font-size-16 {
  font-size: 14px;
}

.font-size-17 {
  font-size: 13px;
}

.font-size-18 {
  font-size: 16px;
}

.font-size-19 {
  font-size: 17px;
}

.font-size-20 {
  font-size: 18px;
}

.font-size-23 {
  font-size: 21px;
}

.font-size-24 {
  font-size: 22px;
}

.font-size-25 {
  font-size: 23px;
}

.font-size-28 {
  font-size: 26px;
}

.font-size-30 {
  font-size: 28px;
}

.font-size-40 {
  font-size: 38px;
}

.font-size-45 {
  font-size: 43px;
}

.font-size-48 {
  font-size: 46px;
}

@media (min-width: 481px) {
  .font-size-9 {
    font-size: 8px;
  }

  .font-size-10 {
    font-size: 9px;
  }

  .font-size-12 {
    font-size: 11px;
  }

  .font-size-14 {
    font-size: 13px;
  }

  .font-size-16 {
    font-size: 15px;
  }

  .font-size-17 {
    font-size: 16px;
  }

  .font-size-18 {
    font-size: 17px;
  }

  .font-size-19 {
    font-size: 18px;
  }

  .font-size-20 {
    font-size: 19px;
  }

  .font-size-23 {
    font-size: 22px;
  }

  .font-size-24 {
    font-size: 23px;
  }

  .font-size-25 {
    font-size: 24px;
  }

  .font-size-28 {
    font-size: 27px;
  }

  .font-size-30 {
    font-size: 29px;
  }

  .font-size-40 {
    font-size: 39px;
  }

  .font-size-45 {
    font-size: 44px;
  }

  .font-size-48 {
    font-size: 47px;
  }
}

@media (min-width: 769px) {
  .font-size-9 {
    font-size: 9px;
  }

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

  .font-size-12 {
    font-size: 12px;
  }

  .font-size-14 {
    font-size: 14px;
  }

  .font-size-16 {
    font-size: 16px;
  }

  .font-size-17 {
    font-size: 17px;
  }

  .font-size-18 {
    font-size: 18px;
  }

  .font-size-19 {
    font-size: 19px;
  }

  .font-size-20 {
    font-size: 20px;
  }

  .font-size-23 {
    font-size: 23px;
  }

  .font-size-24 {
    font-size: 24px;
  }

  .font-size-25 {
    font-size: 25px;
  }

  .font-size-28 {
    font-size: 28px;
  }

  .font-size-30 {
    font-size: 30px;
  }

  .font-size-40 {
    font-size: 40px;
  }

  .font-size-45 {
    font-size: 45px;
  }

  .font-size-48 {
    font-size: 48px;
  }
}

.bordred-input {
  border: 1px solid #BACAD1;
}

.proxima-regular {
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

.proxima-bold {
  font-family: "Proxima Nova Rg";
  font-weight: bold;
}

.proxima-semi-bold {
  font-family: "Proxima Nova Lt";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.proxima-medium {
  font-family: "ProximaNova";
  font-weight: 500;
  font-style: normal;
}

.dazzle-un-medium {
  font-family: "Dazzle Unicase";
  font-weight: normal;
}

.arial-bold {
  font-family: "Arial";
  font-weight: bold !important;
}

.arial-regular {
  font-family: "Arial";
  font-weight: normal !important;
}

.font-eina03 {
  font-family: "Eina03";
}

.margin-0 {
  margin: 0;
}

.poppins-semi-bold {
  font-family: "Poppins";
  font-weight: 600;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins";
  font-weight: normal;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins";
  font-weight: 500;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto Lt";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

.roboto-bold {
  font-family: "Roboto";
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.roboto-regular {
  font-family: "Roboto";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.roboto-thin {
  font-family: "Roboto Th";
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

.roboto-black {
  font-family: "Roboto Bk";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.roboto-light {
  font-family: "Roboto Lt";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.font-sf-pro-display {
  font-family: "SF Pro Display";
}

.font-sf-pro-display-bold {
  font-family: "SF Pro Display";
  font-weight: bold;
}

.font-sf-pro-display-medium {
  font-family: "SF Pro Display";
  font-weight: 500;
}

.font-eina03-semi-bold {
  font-family: "Eina03";
  font-weight: 600;
}

.font-eina03-bold {
  font-family: "Eina03";
  font-weight: bold;
}

.font-eina03-light {
  font-family: "Eina03";
  font-weight: 300;
}

.upperc {
  text-transform: uppercase;
}

.ob-hidden {
  opacity: 0;
}

.dash-search-btn {
  text-decoration: none;
  background-color: #7CCA4D;
  padding: 8px 10px;
  width: 100%;
  border-radius: 5px;
  margin-top: 15px;
}

.has-select2-custom .select2-container .select2-search--inline .select2-search__field {
  margin-top: 10px;
  color: #A6A6A6;
  opacity: .7;
}

.has-select2-custom .select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  border: 1px solid #BACAD1;
  font-size: 12px;
  min-height: 38px;
  user-select: none;
  -webkit-user-select: none;
}

#searchJobs {
  margin: 0 !important;
}

.no-decoration {
  text-decoration: none;
}

.form-control:focus {
  border: none !important;
}

.dark-input {
  background-color: #BACAD1 !important;
  outline: 0;
  border: 1px solid #BACAD1;
  border-radius: 5px;
  width: 100%;
  margin: 0 0 15px;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}

.dark-input::-webkit-input-placeholder {
  color: #5A7885 !important;
}

.dark-input::-moz-placeholder {
  color: #5A7885 !important;
}

.dark-input:-ms-input-placeholder {
  color: #5A7885 !important;
}

.dark-input::-ms-input-placeholder {
  color: #5A7885 !important;
}

.dark-input::placeholder {
  color: #5A7885 !important;
}

.dazzle_unicase {
  font-family: "Dazzle Unicase";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@media (max-width: 768px) {
  .dazzle_unicase-in-mobile {
    font-family: "Dazzle Unicase";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
}

.gray-title {
  color: #707070;
}

.black-title {
  color: #000000;
  text-transform: uppercase;
}

.form {
  position: relative;
  z-index: 100 !important;
  padding: 45px;
  width: 100%;
}

.form .input-text {
  outline: 0;
  background: #ffffff !important;
  border: 1px solid #BACAD1;
  border-radius: 5px;
  width: 100%;
  margin: 0 0 15px;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}

.form .submit-btn-condidat {
  background: #2699FB;
}

.form button:hover,
.form button:active,
.form button:focus {
  background: #43A047;
}

.form .message {
  margin: 15px 0 0;
  color: #626262;
  font-size: 12px;
}

.form .message a {
  color: #626262;
  text-decoration: underline;
  text-align: left;
}

.input-text-password {
  width: 100%;
  border: none !important;
}

.input-check {
  border: 1px solid #BACAD1;
  width: 20px;
  height: 20px;
  z-index: 1000;
  margin-right: 11px;
  border-radius: 3px;
}

.checkbox-text-container {
  margin: 20px 0px;
  margin-bottom: 30px;
}

.input-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-text {
  padding-right: 30px;
  /* Adjust padding to make space for the icon */
}

.password-icon {
  position: absolute;
  right: 10px;
  /* Adjust as needed */
  width: 16px;
  /* Set the desired width */
  height: 16px;
  /* Set the desired height */
  pointer-events: none;
  /* Prevent clicks on the icon */
}

.eye-icon-container {
  width: 24px;
  height: 24px;
}

.input-container svg {
  width: 100% !important;
  height: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.already-label {
  margin-bottom: 72px !important;
}

.prices_container .prices-box-container {
  background-color: #F1F9FF;
  padding: 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  padding-top: 40px;
}

.price-card {
  max-width: 500px;
}

.svg-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
  position: absolute;
  top: -20px;
  border: 1px solid #BCE0FD;
}

.price-btn {
  text-transform: uppercase;
  outline: 0;
  background: #2699FB;
  border: 0;
  padding: 10px 20px;
  padding-top: 13px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  border-radius: 5px;
  min-width: 140px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.price-btn:hover {
  background: #7CCA4D;
}

.prices-paragraph {
  margin-top: 10px;
  color: #2699FB;
  font-weight: bold;
  text-align: center;
  padding: 30px;
}

.sous-title {
  color: #7F7F7F;
}

.price {
  color: #2699FB;
}

.border-top-bottom {
  border-top: 1px solid #BCE0FD;

}

.per-month {
  color: #2699FB;
}

.success_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.success_container .gray-title {
  font-weight: 500;
}

.svg-container {
  margin: 50px 0;
}

.success-description {
  color: #707070;
  font-family: "Proxima Nova Rg";
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin-top: 25px;
}

.form {
  position: relative;
  z-index: 10;
  padding: 45px;
  width: 100%;
}

.form .input-text {
  outline: 0;
  background: #ffffff !important;
  border: 1px solid #BACAD1;
  border-radius: 5px;
  width: 100%;
  margin: 0 0 15px;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}

.form .input-text:focus {
  border: 1px solid gray !important;
}

.input-text-password:focus {
  border: none !important;
  outline: none;
}

.input-text::-webkit-input-placeholder {
  font-family: "Proxima Nova Rg" !important;
  font-weight: normal;
  font-size: 14px;
}

.input-text::-moz-placeholder {
  font-family: "Proxima Nova Rg" !important;
  font-weight: normal;
  font-size: 14px;
}

.input-text:-ms-input-placeholder {
  font-family: "Proxima Nova Rg" !important;
  font-weight: normal;
  font-size: 14px;
}

.input-text::-ms-input-placeholder {
  font-family: "Proxima Nova Rg" !important;
  font-weight: normal;
  font-size: 14px;
}

.input-text::placeholder {
  font-family: "Proxima Nova Rg" !important;
  font-weight: normal;
  font-size: 14px;
}

.input-text-password::-webkit-input-placeholder {
  font-family: "Proxima Nova Rg" !important;
  font-weight: normal;
  font-size: 14px;
}

.input-text-password::-moz-placeholder {
  font-family: "Proxima Nova Rg" !important;
  font-weight: normal;
  font-size: 14px;
}

.input-text-password:-ms-input-placeholder {
  font-family: "Proxima Nova Rg" !important;
  font-weight: normal;
  font-size: 14px;
}

.input-text-password::-ms-input-placeholder {
  font-family: "Proxima Nova Rg" !important;
  font-weight: normal;
  font-size: 14px;
}

.input-text-password::placeholder {
  font-family: "Proxima Nova Rg" !important;
  font-weight: normal;
  font-size: 14px;
}

.submit-btn {
  text-transform: uppercase;
  outline: 0;
  background: #7CCA4D;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  border-radius: 5px;
}

.form button:hover,
.form button:active,
.form button:focus {
  background: #2699FB;
}

.form .message {
  margin: 15px 0 0;
  color: #626262;
  font-size: 12px;
}

.form .message a {
  color: #626262;
  text-decoration: underline;
  text-align: left;
}

.input-text-password {
  width: 100%;
}

.input-check {
  border: 1px solid #BACAD1;
  width: 20px;
  height: 20px;
  z-index: 1000;
  margin-right: 11px;
  border-radius: 3px;
}

.checkbox-text-container {
  margin: 20px 0px;
  margin-bottom: 30px;
}

.input-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-text {
  padding-right: 30px;
  /* Adjust padding to make space for the icon */
}

.password-icon {
  position: absolute;
  right: 10px;
  /* Adjust as needed */
  width: 16px;
  /* Set the desired width */
  height: 16px;
  /* Set the desired height */
  pointer-events: none;
  /* Prevent clicks on the icon */
}



.input-text-password :focus {
  border: 1px solide red;
}

.top-footer-container {
  background-color: white;
  padding: 50px 0px;
  margin-top: 0px;
}

.top-footer-container hr {
  color: #D7CCDD;
  margin: 2rem 0;
}

.top-footer-container p {
  margin-bottom: 3rem;
}

.text-one {
  color: #354E57;
}

.text-two {
  color: #354E57;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
  margin: 0;
  text-align: center;
}

.subscribe_form {
  max-width: 470px;
  width: 100%;
  border: 1px solid #5E4DDF;
  margin: auto;
}

.subscribe_form:focus {
  outline: none;
}

.subscribe_form .form-control {
  border: none;
}

.subscribe_form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.subscribe_form input {
  height: 40px;
}

.subscribe_form button {
  border: none;
  height: 40px;
  background-color: #5E4DDF;
  color: #fff;
  margin: -1px;
  border-radius: 0;
  width: 120px;
  text-transform: capitalize;
  position: relative;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  color: white;
  font-size: 16px;
  font-family: "Proxima Nova Rg";
  font-weight: bold;
}

.subscribe_form button:hover,
.subscribe_form button:focus,
.subscribe_form button:active,
.subscribe_form button:visited {
  color: #fff;
  background-color: #7CCA4D;
  outline: none;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
}

.subscribe_form button:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 1px;
  background-color: #5E4DDF;
  width: 100%;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
}

.subscribe_form .input-group-btn:last-child>.btn,
.subscribe_form .input-group-btn:last-child>.btn-group {
  z-index: 2;
  margin-left: 0px;
}

@media (min-width: 767px) {
  .top-footer-container p {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .top-footer-container hr {
    display: none;
  }

  .top-footer-container p {
    margin-bottom: 0;
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .text-one {
    font-size: 30px;
  }
}

.footer-container {
  padding: 100px 0px;
}

.logo-footer-container {
  width: 200px;
  height: 100px;
  position: relative;
  margin: auto;
}

.image-footer-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-desc {
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

.footer-list-title {
  font-family: "Proxima Nova Rg";
  color: #3C3C3C;
  text-transform: uppercase;
}

.footer-list li a {
  text-decoration: none;
  color: #3C3C3C;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-list li a:hover {
  color: #2699FB;
  border-bottom: 1px solid #2699FB;
}

@media (max-width: 766px) {
  .footer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .footer-list .logo-footer-container {
    margin: 0;
  }
}

.footer-list-section {
  margin-top: 50px !important;
}

.footer_form {
  max-width: 470px;
  width: 100%;
  border: 1px solid #5F4EE0;
  background-color: #EEF3F4;
}

.footer_form:focus {
  outline: none;
}

.footer_form .form-control {
  border: none;
}

.footer_form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.footer_form .input-footer {
  height: 44px;
  background-color: #EEF3F4;
}

.footer_form .btn-default {
  border: 1px solid #5F4EE0;
  height: 46px;
  background-color: #EEF3F4;
  color: #000000;
  margin: -1px;
  border-radius: 0;
  width: 135px;
  text-transform: capitalize;
  position: relative;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  font-size: 14px;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

.footer_form .btn-default:hover,
.footer_form .btn-default:focus,
.footer_form .btn-default:active,
.footer_form .btn-default:visited {
  color: #fff;
  background-color: #7CCA4D;
  outline: none;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
}

.footer_form .input-group-btn:last-child>.btn,
.footer_form .input-group-btn:last-child>.btn-group {
  z-index: 2;
  margin-left: 0px;
}

.footer-paragraph {
  text-transform: uppercase;
  color: #3C3C3C;
  font-family: "FONTSPRING DEMO - Proxima Nova";
}

.footer-bottom-list li a {
  color: #3C3C3C;
  font-family: "FONTSPRING DEMO - Proxima Nova";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-bottom-list li a:hover {
  color: #7CCA4D;
}

.social-media-list li a {
  margin-right: 30px;
}

.social-media-list li a svg {
  fill: "#3c3c3c";
  -webkit-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}

.social-media-list li a svg:hover {
  fill: #2699FB;
}

.social-media-list li:last-child a {
  margin-right: 0px;
}

.gray-title {
  color: #707070;
  font-family: "Proxima Nova Rg";
  font-weight: bold;
  text-transform: uppercase;
}

.form {
  position: relative;
  z-index: 100;
  padding: 45px;
  width: 100%;
}

.input-text {
  outline: 0;
  background: #ffffff !important;
  border: 1px solid #BACAD1;
  border-radius: 5px;
  width: 100%;
  margin: 0 0 15px;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}

.form .submit-btn {
  text-transform: uppercase;
  outline: 0;
  background: #7CCA4D;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  border-radius: 5px;
}

.form button:hover,
.form button:active,
.form button:focus {
  background: #2699FB;
}

.form .message {
  margin: 15px 0 0;
  color: #626262;
  font-size: 12px;
}

.form .message a {
  color: #626262;
  text-decoration: underline;
  text-align: left;
}

.input-text-password {
  width: 100%;
}

.input-check {
  border: 1px solid #BACAD1;
  width: 15px;
  height: 15px;
  z-index: 1000;
  margin-right: 11px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .input-check {
    margin-left: 0;
  }
}

.checkbox-text-container {
  margin: 20px 0px;
  margin-bottom: 30px;
}

.input-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-text {
  padding-right: 30px;
  /* Adjust padding to make space for the icon */
}

.browse {
  border-radius: 0 5px 5px 0 !important;
  text-transform: capitalize !important;
  font-family: "Proxima Nova Rg";
  font-weight: bold;
}

.input-file {
  border-radius: 5px 0px 0px 5px !important;
  padding-bottom: 12px !important;
  border: 1px solid #BACAD1 !important;
}

.input-file::-webkit-input-placeholder {
  color: #354E57;
  font-size: 14px;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

.input-file::-moz-placeholder {
  color: #354E57;
  font-size: 14px;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

.input-file:-ms-input-placeholder {
  color: #354E57;
  font-size: 14px;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

.input-file::-ms-input-placeholder {
  color: #354E57;
  font-size: 14px;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

.input-file::placeholder {
  color: #354E57;
  font-size: 14px;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

.password-icon {
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.register-bg-container {
  position: relative;
  height: 100vh;
  padding-top: 100px;
}

.inscription-back {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.white-title {
  color: #ffffff;
  font-family: "FONTSPRING DEMO - Proxima Nova ExCn";
  text-transform: uppercase;
  z-index: 10;
}

.form .button {
  background: #24E8FB;
}

.check-label {
  color: white;
}

.white-message {
  color: white !important;
}

.white-message a {
  color: white !important;
}

.form {
  padding: 0 !important;
}

.account-desc {
  font-family: "Proxima Nova Rg";
  font-weight: bold;
}

.card-height {
  padding: 20px;
  position: relative;
}

@media (min-width: 768px) {
  .card-height {
    aspect-ratio: 1/1;
  }
}

.card-height-v2 {
  padding: 20px;
  height: 100% !important;
}

.account-card-v2 {
  height: 100% !important;
}

.account-card {
  height: 100% !important;
}

.account-grid-two .card-height {
  margin-bottom: 0px;
  position: relative;
}

.account-card-title {
  text-transform: uppercase;
  font-weight: bold;
  color: #007BE3;
  margin-bottom: 5px;
}

.account-card-description {
  color: #FFFFFF;
  font-size: 40px;
  line-height: 1;
  margin: 20px 0;
}

.account-card-description.t_18 {
  font-size: 18px;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 0;
}

.account-card-button {
  border: 1px solid white !important;
  width: 100% !important;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  font-family: "Proxima Nova Rg";
  padding: 6px 0px !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.account-card-button:hover {
  border: 1px solid #fff !important;
  background-color: white;
  color: #007BE3;
}

.account-card-button-v2 {
  margin-bottom: 30px;
  margin-top: 30px;
}

@media (min-width: 992px) {
  .card-height-v2 {
    padding: 30px;
    height: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .account-card-description {
    font-size: 21px;
  }

  .account-card-description.t_18 {
    font-size: 24px;
  }
}

@media (min-width: 1400px) {

  .account-card-description {
    font-size: 28px;
  }
}

.card-button-container {
  width: 100%;
}

.green-gradient-back {
  background: rgb(24, 235, 253);
  background: linear-gradient(183deg, rgb(24, 235, 253) 0%, rgb(149, 193, 32) 100%);
}

.purble-gradient-back {
  background: rgb(36, 232, 251);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(36, 232, 251)), to(rgb(99, 64, 221)));
  background: linear-gradient(180deg, rgb(36, 232, 251) 0%, rgb(99, 64, 221) 100%);
}

.blue-gradient-back {
  background: rgb(183, 244, 250);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(183, 244, 250)), to(rgb(38, 153, 251)));
  background: linear-gradient(180deg, rgb(183, 244, 250) 0%, rgb(38, 153, 251) 100%);
}

.green-blue-gradient {
  background: rgb(24, 235, 253);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(24, 235, 253)), to(rgb(149, 193, 32)));
  background: linear-gradient(180deg, rgb(24, 235, 253) 0%, rgb(149, 193, 32) 100%);
}

.purble-blue-gradient {
  background: rgb(36, 232, 251);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(36, 232, 251)), to(rgb(99, 64, 221)));
  background: linear-gradient(180deg, rgb(36, 232, 251) 0%, rgb(99, 64, 221) 100%);
}

.blue-sky-blue-gradient {
  background: rgb(183, 244, 250);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(183, 244, 250)), to(rgb(38, 153, 251)));
  background: linear-gradient(180deg, rgb(183, 244, 250) 0%, rgb(38, 153, 251) 100%);
}

.purble-black-gradient {
  background: rgb(95, 78, 224);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(95, 78, 224)), to(rgb(36, 65, 107)));
  background: linear-gradient(180deg, rgb(95, 78, 224) 0%, rgb(36, 65, 107) 100%);
}

.account-description-text {
  line-height: 1;
}

.home-account-slider {
  position: relative;
}

.home-account-slider .slick-dots {
  position: absolute;
  bottom: 10px !important;
}

.home-account-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px !important;
  margin-top: 20px;
}

.home-account-slider .slick-dots li {
  width: 2px;
  margin: 0 3px;
}

.home-account-slider .slick-dots li button {
  border: none;
  background-color: transparent;
  border-radius: 50%;
  width: 0;
  height: 0;
  cursor: pointer;

  box-shadow: unset;
  ;
}

.home-account-slider .slick-dots li.slick-active button {
  background-color: #7CCA4D;
}


@media (max-width: 992px) {
  .acc-txt-line-h {
    line-height: 1rem;
  }
}

@media (max-width: 768px) {
  .acc-btn-zone {
    width: 40%;
    display: inline-block;
  }

  .acc-text-zone {
    width: 85%;
  }

  .account-types-btn-container {
    position: relative;
    margin-left: auto;
  }

  .acc-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    margin-top: 15px;
    height: 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px 15px;
    font-size: 10px !important;
  }
}

@media (min-width: 768px) {
  .btn-acc-home-width {
    width: 90% !important;
  }
}

.account-desc {
  font-family: "Proxima Nova Rg";
  font-weight: bold;
}

.card-height {
  padding: 30px;
  position: relative;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .card-height {
    aspect-ratio: 1/1;
  }
}

.account-card-title {
  text-transform: uppercase;
  font-weight: bold;
  color: #007BE3;
}

.green-gradient-back {
  background: rgb(24, 235, 253);
  background: linear-gradient(183deg, rgb(24, 235, 253) 0%, rgb(149, 193, 32) 100%);
}

.purble-gradient-back {
  background: rgb(36, 232, 251);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(36, 232, 251)), to(rgb(99, 64, 221)));
  background: linear-gradient(180deg, rgb(36, 232, 251) 0%, rgb(99, 64, 221) 100%);
}

.blue-gradient-back {
  background: rgb(183, 244, 250);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(183, 244, 250)), to(rgb(38, 153, 251)));
  background: linear-gradient(180deg, rgb(183, 244, 250) 0%, rgb(38, 153, 251) 100%);
}

.home-account-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home-account-slider .slick-track .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.seach-result-content {
  background-color: white;
  padding: 35px !important;
}

@media (max-width: 768px) {
  .seach-result-content {
    padding: 15px !important;
  }
}

.search-result-title {
  font-family: "FONTSPRING DEMO - Proxima Nova ExCn";
}

.search-result-logo-container {
  aspect-ratio: 1.5/1;
}

@media (max-width: 768px) {
  .search-result-logo-container {
    aspect-ratio: 3/1;
    margin-bottom: 10px;
  }
}

.search-result-logo {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}

.search-result-btn-apply {
  border: 1px solid #5F4EE0;
  padding: 8px 70px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.search-result-btn-apply:hover {
  border-color: #7CCA4D;
  color: #7CCA4D;
}

.span {
  color: #7CCA4D;
}

.search-count-container {
  margin-bottom: 22px;
}

.sort-by-container {
  border: 1px solid #354E57;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 15px 8px;
}

.sort-select {
  background: transparent;
  border: none;
  padding-right: 20px;
}

.sort-label {
  margin-right: 0.5rem;
  /* Adjust spacing as needed */
}

.looking-svg-container {
  padding-right: 5px;
}

.job-search-btn-seach-by-job {
  position: relative;
  padding-left: 20px;
  /* Adjust padding to make space for the triangle */
}

.top-section-title {
  color: #7CCA4D;
}

.top-section-title-v2 {
  color: #24E8FB;
}

.top-section-desc {
  color: #6C6C6C;
}

.top-section-title-two {
  color: #7CCA4D;
}

.top-section-title-two-v2 {
  color: #24E8FB;
}

.top-section-desc-two {
  color: #4D4D4D;
}

.bordred {
  border: 1px solid #707070;
  border-radius: 30px;
  padding: 22px;
}

.job-search-btn-post {
  border: 1px solid #7CCA4D;
  padding: 8px 70px;
}

.job-search-btn-post:hover {
  border-color: #4D4D4D;
}

.looking-section {
  background-color: white;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 40px;
}

.job-search-btn-seach-by-job {
  background-color: #2699FB;
  color: white;
  padding: 10px 15px 10px;
  border-radius: 10px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.looking-section-input {
  border-bottom: 1px solid #D1D1D1;
}

.looking-section-input:focus {
  border: none;
}

.find-title {
  text-transform: uppercase;
  color: black;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .count-result-title {
    margin-bottom: 20px;
  }

  .input-container {
    margin-bottom: 20px;
  }

  .input-container input {
    width: 100%;
  }

  .looking-section {
    padding: 30px;
  }
}

.job-card {
  background-color: white;
  margin-top: 10px;
  padding-left: 50px;
  padding-bottom: 20px;
  padding-top: 30px;
}

.job-card-desc {
  margin: 0 !important;
}

.green-border {
  border: 3px solid #67F400;
  border-radius: 8px;
}

.btn-containers {
  margin-top: 15px;
}

.purble-border {
  border: 3px solid #5F4EE0;
  border-radius: 8px;
}

.cold-blue-border {
  border: 3px solid #BCE0FD;
  border-radius: 8px;
}

.blue-border {
  border: 3px solid #24E8FB;
  border-radius: 8px;
}

.job-card-button {
  color: #2699FB;
  padding: 5px 12px;
}

.job-card-button:hover {
  border-color: #707070;
  color: black;
}

@media (max-width: 768px) {
  .job-card-button {
    padding: 0px 8px;
  }

  .job-card {
    padding-left: 27px;
  }
}

.pagination-container {
  margin-top: 30px;
}

.circle {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 29px;
  margin: 0 10px;
  cursor: pointer;
}

.circle-1 {
  background-color: #5F4EE0;
}

.circle-2,
.circle-3 {
  background-color: #2699FB;
}

.circle:hover {
  background-color: #7CCA4D;
}

.places-listing-container {
  background-color: white;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
}

.place-title {
  color: black;
  margin: 0;
}

.place-title-span {
  color: #1581EF;
}

.place-sous-title {
  color: #1581EF;
  margin: 0;
}

.place-view-button {
  border: 1px solid #2E2E22;
  text-transform: uppercase;
  padding: 6px 20px;
  width: 100%;
}

.place-view-button:hover {
  border: 1px solid #5F4EE0;
  color: #5F4EE0;
}

.place-img-container {
  aspect-ratio: 2/1;
  position: relative;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.place-img {
  position: absolute;
  width: 90%;
  height: 100%;
}

.place-card {
  margin-top: 40px;
}

.place-details-container {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 50px;
  background-color: white;
}

.place-details-img-container {
  aspect-ratio: 1/0.7;
  position: relative;
}

.place-details-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.last-card {
  background-color: #E8E8E8;
}

.place-btn {
  background-color: #5F4EE0;
  color: white;
  padding: 8px 30px;
  margin-right: 15px;
  margin-top: 10px;
  width: 30%;
}

@media (max-width: 768px) {
  .place-btn {
    width: 100%;
  }

  .place-details-container {
    margin-top: 50px;
  }
}

:root {
  --c-white-01: #fff;
  --c-white-02: #e1dec4;
  --c-brown-01: #A6713F;
  --c-brown-01-hover: #bd844e;
  --c-dark-blue-01: #161434;
  --c-dark-blue-01-hover: #373370;
  --c-light-blue-01: #898FA0;
}

#close-icon {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 99;
  margin: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

#close-icon:hover>svg {
  color: var(--c-dark-blue-01-hover);
}

#close-icon svg {
  color: var(--c-dark-blue-01);
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#openIcon {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 30px;
  border: 0;
  background: var(--c-brown-01);
  color: white;
  font-size: 0.9rem;
  letter-spacing: 2px;
  border-radius: 5px;
  -webkit-box-shadow: 8px 10px 24px -8px var(--c-brown-01);
  box-shadow: 8px 10px 24px -8px var(--c-brown-01);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

#openIcon:hover {
  background: var(--c-brown-01-hover);
}

.popover {
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 500px;
  opacity: 0;
  border: none;
  padding: 20px;
  position: fixed;
  pointer-events: none;
  top: 50%;
  left: 50%;
  z-index: 991;
}

.popover.popover-open {
  opacity: 1;
  -webkit-animation: slide 0.5s ease-out;
  animation: slide 0.5s ease-out;
  pointer-events: auto;
}

@-webkit-keyframes slide {
  from {
    opacity: 0;

  }

  to {
    opacity: 1;

  }
}

@keyframes slide {
  from {
    opacity: 0;

  }

  to {
    opacity: 1;

  }
}

.popup-send-btn {
  background-color: #24E8FB;
  padding: 10px 49px;
  border-radius: 5px;
}

.popup-btn-v2 {
  background-color: #24E8FB;
  padding: 6px 60px;
  min-width: 250px;
  margin: 5px;
}

.border-container {
  border: 1px solid white;
  border-radius: 10px;
  padding: 10px;
}

.textarea-popup {
  border-radius: 10px;
  border: none;
}

.width--600 {
  width: 800px;
}

@media (max-width: 510px) {
  .width--600 {
    width: auto;
  }
}

.under-header-container {
  background-color: #2699FB;
  padding-top: 20px 0;
}

@media (min-width: 768px) {
  .under-header-container {
    padding: 20px !important;
  }
}

.under-header-container .rounded-white-btn {
  border: 3px solid white;
  border-radius: 21px;
  text-decoration: none;
  color: white;
  min-width: 129px;
  text-align: left;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 5px 0;
  padding: 4px 15px 4px;
  position: relative;
  text-transform: uppercase;
}

.under-header-container .message-count {
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 12px;
  margin-left: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.under-header-container .rounded-white-btn:hover {
  border-color: #7CCA4D;
}

@media (max-width: 992px) {
  .rounded-white-btn {
    width: 44% !important;
  }
}

@media (max-width: 576px) {
  .rounded-white-btn {
    width: 80% !important;
  }
}

.under-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .under-header-container {
    display: none;
  }
}

.under-header-mobile-container {
  display: none;
  background-color: #2699FB;
  padding: 0px 0;
}

@media (max-width: 768px) {
  .under-header-mobile-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.menu-text-container {
  border-bottom: 1px solid #D7CCDD;
}

.menu-text-container p {
  margin-left: 100px;
}

.menu-text-container:last-child {
  border-bottom: none;
}

/* Initially hide the menu items */
.menu-items {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.menu-items.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.menu-icon.rotate {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu-text-container {
  padding: 10px 0;
}

.menu-text-container.no-border {
  border-bottom: none;
}

.menu-control-icon {
  margin-right: 0;
  display: flex;
}

.menu-control-icon svg {
  margin-bottom: 10px;
}

.text-container {
  padding: 0px;
}

.menu-first-item {
  padding-top: 15px;
}

.breadcrumb-container {
  background-color: #EEF3F4;
}

.crumb-link {
  text-decoration: none;
}

.green-breadcrumb {
  background-color: #7CCA4D;
  margin: 10px 0px;
  margin-top: 20px;
  padding: 8px;
}

.green-breadcrumb p {
  margin: 0;
}

.green-breadcrumb a {
  margin-right: 5px;
}

.breadcrumb-link-v2 {
  color: #5C5F6A;
  text-decoration: none;
  font-size: 14px;
}

.breadcrumb-container svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 767px) {
  .green-breadcrumb {
    margin-top: 0;
  }
}

.profile-container {
  margin-top: 30px;
}

.photo-desc {
  margin-bottom: 30px;
}

.profile-content {
  background-color: white;
}

.green-text {
  color: #7CCA4D;
}

.blue-text {
  color: #1581EF;
}

.gray-text {
  color: #707070;
}

.photo-container {
  width: 151px;
  height: 151px;
  margin-right: 15px;
  position: relative;
}

@media (max-width: 400px) {
  .photo-container {
    width: 120px;
    height: 124px;
  }
}

.profile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.profile-img-v2 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .profile-img-v2 {
    position: absolute;
  }
}

.profile-desc p {
  margin: 0;
}

.profile-left-section {
  padding-left: 30px;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .profile-left-section {
    padding-left: 0px;
  }
}

.profile-right-section {
  padding-right: 30px;
  padding-top: 20px;
}

@media (max-width: 992px) {
  .profile-right-section {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.skills-container {
  background-color: #7CCA4D;
  padding: 15px;
  margin-bottom: 20px;
  padding-left: 30px;
  padding-bottom: 30px;
}

.delete-app-btn {
  border: 1px solid #951616;
  padding: 4px 25px;
}

.delete-app-btn:hover {
  border-color: #1581EF;
}

@media (max-width: 768px) {
  .delete-app-btn {
    width: 100%;
  }
}

.download-btn {
  border: 1px solid #354E57;
  padding: 4px 25px;
}

.download-btn:hover {
  border-color: #1581EF;
}

@media (max-width: 768px) {
  .download-btn {
    width: 100%;
  }
}

.send-msg-btn {
  border: 1px solid #7CCA4D;
  padding: 4px 25px;
  margin-bottom: 15px;
}

.send-msg-btn:hover {
  border-color: #1581EF;
}

@media (max-width: 768px) {
  .send-msg-btn {
    width: 100%;
  }
}

.bottom-btns-container {
  background-color: white;
  padding: 20px 40px !important;
}

.bottom-navigation-container {
  background-color: #D9D9D9;
  padding: 20px 40px !important;
}

.navigation-btn {
  border: 1px solid #354E57;
  padding: 4px 25px;
  min-width: 100px;
}

.navigation-btn:hover {
  border-color: #1581EF;
}

.top-bar {
  background-color: #CECECE;
  padding: 10px;
}

.red-top-bar {
  background-color: #EDACAC;
  padding: 10px;
}

p {
  margin: 0;
}

.view-link {
  text-decoration: none;
}

.job-details {
  padding: 12px;
  background-color: white;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  gap: 15px;
}

.job-details-v2 {
  background-color: white;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.job-details-right-side-v2 {
  width: 50%;
  position: relative;
}

.job-details-left-side-v2 {
  width: 50%;
}

.job-details-left-side-v2 p {
  margin: 0 !important;
}

@media (min-width: 768px) {

  .job-details-right-side,
  .job-details-left-side {
    width: 50%;
  }

  .job-details-right-side {
    order: 1;
  }
}

.job-details-right-side-v2-img {
  position: absolute;
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.btn-view-job-v2 {
  border: 1px solid #354E57;
  padding: 5px 22px;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 15px;
}

.btn-view-job {
  border: 1px solid #354E57;
  padding: 10px 20px;
  width: 100%;
  display: block;
  text-align: center;
  color: black;
  text-decoration: none;
}

.btn-view-job:hover {
  border-color: #7CCA4D;
  color: #7CCA4D;
}

.job-company {
  margin-bottom: 9px;
}

.job-time {
  margin-bottom: 9px;
}

.new-post-btn {
  background-color: #7CCA4D;
  padding: 5px 61px;
  border-radius: 33px;
}

.new-post-btn:hover {
  background-color: #2699FB;
}

.renew-btn {
  border: 1px solid #354E57;
  padding: 3px 25px;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.renew-btn:hover {
  background-color: #2699FB;
  border-color: #2699FB;
  color: white;
}

/* .open-job-card-container {
  height: 100% !important;
} */

.form-container {
  background-color: white;
  padding: 40px 0px;
}

.post-job-input {
  min-height: 60px;
  padding-top: 17px;
  padding-bottom: 17px;
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #151515;
  background-color: #ffffff;
  background-image: none;
  border-radius: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
}

.post-job-select {
  min-height: 60px;
  padding-top: 17px;
  padding-bottom: 17px;
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 26px;
  padding-right: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #151515;
  background-color: #ffffff;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1000px" height="1000px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><g><path d="M78.466,35.559L50.15,63.633L22.078,35.317c-0.777-0.785-2.044-0.789-2.828-0.012s-0.789,2.044-0.012,2.827L48.432,67.58c0.365,0.368,0.835,0.563,1.312,0.589c0.139,0.008,0.278-0.001,0.415-0.021c0.054,0.008,0.106,0.021,0.16,0.022c0.544,0.029,1.099-0.162,1.515-0.576l29.447-29.196c0.785-0.777,0.79-2.043,0.012-2.828S79.249,34.781,78.466,35.559z"/></g></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 20px;
  border-radius: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.post-job-label {
  margin-bottom: 10px;
}

.form-two-content {
  background-color: #f3f4f9;
  padding: 40px 30px;
}

@media (max-width: 768px) {
  .form-two-content {
    padding: 10px 11px;
  }
}

.add-education-btn {
  background-color: #2699FB;
  padding: 10px 40px;
}

.complete-cv-container {
  background-color: white;
  padding-top: 40px;
}

.complete-cv-container p {
  color: #707070;
}

.complete-cv-container h2 {
  color: #707070;
}

.upload-files-container {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: white;
}

.custom-button {
  background-color: white;
  border: 2px solid #2699FB;
  color: #2699FB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  width: 50%;
  margin-right: 10px;
}

.custom-button-two {
  background-color: #2699FB;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  width: 50%;
  margin-right: 10px;
}

@media (max-width: 992px) {

  .custom-button,
  .custom-button-two {
    width: 100%;
    margin: 5px 0px;
  }
}

.preview-btn {
  background-color: #CA5217;
  padding: 10px 15px;
}

.m-hr {
  margin-bottom: 20px;
}

.radio-container {
  background-color: #EEF3F4;
}

.checked-ul {
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 320px;
  margin-left: auto !important;
}

.checked-ul li {
  margin: 0 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.switch {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 18px;
  outline: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0;
  cursor: pointer;
  background: black;
  -webkit-transition: background 0.3s, border-color 0.3s, -webkit-box-shadow 0.2s;
  transition: background 0.3s, border-color 0.3s, -webkit-box-shadow 0.2s;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  width: 38px;
  border-radius: 11px;
}

.switch:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s, -webkit-transform 0.3s;
}

.switch:checked {
  background: #2699FB;
}

.switch:disabled {
  background: #F6F8FF;
  cursor: not-allowed;
  opacity: 0.9;
}

.switch:disabled:checked {
  background: #E1E6F9;
}

.switch:focus {
  -webkit-box-shadow: 0 0 0 rgba(39, 94, 254, 0.3);
  box-shadow: 0 0 0 rgba(39, 94, 254, 0.3);
}

.switch+label {
  font-size: 12px;
  line-height: 21px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  margin-right: 4px;
  font-weight: 400;
}

.switch:after {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background: #ffffff;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.switch:checked:after {
  background: #fff;
  -webkit-transform: translateX(17px);
  -ms-transform: translateX(17px);
  transform: translateX(17px);
}

.switch:disabled:not(:checked):after {
  opacity: 0.6;
}

@media (min-width: 1200px) {
  .switch+label {
    font-size: 16px;
  }
}

.title-blue-bg-1 {
  background-color: #2699FB;
  padding: 15px 15px;
  line-height: 1;
  text-align: center;
}

.title-blue-bg-2 {
  background-color: #2689DD;
  padding: 15px 15px;
  line-height: 1;
  text-align: center;
}

.title-blue-bg-3 {
  background-color: #00539A !important;
  padding: 15px 15px;
  line-height: 1;
  text-align: center;
}

.title-green-bg-1 {
  background-color: #7CCA4D;
  padding: 15px 15px;
  line-height: 1;
  text-align: center;
}

.title-green-bg-2 {
  background-color: #789C40;
  padding: 15px 15px;
  line-height: 1;
  text-align: center;
}

.title-green-bg-3 {
  background-color: #305C15 !important;
  padding: 15px 15px;
  line-height: 1;
  text-align: center;
}

.dash-table {
  width: 100%;
  padding: 4px 12px;
}

.dash-table thead tr th {
  padding: 10px 20px;
}

.dash-table tbody tr td {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}

.dash-table tbody tr:last-child td {
  padding-bottom: 15px;
}

.dash-table tbody tr td:not(:last-child) {
  border-right: 1px solid #E1EAEB;
}

.dash-table tbody tr td p {
  line-height: 1;
}

.border-left-right {
  border-left: 1px solid #E1EAEB;
  border-right: 1px solid #E1EAEB;
}

.dash-table-header {
  background-color: #E1EAEB !important;
  padding: 4px 12px;
  text-align: center;
}

.dash-card-btn {
  padding: 10px 15px;
  width: 100%;
  border-radius: 5px;
}

.dash-card-btn-blue {
  background-color: #2699FB;
}

.dash-card-btn-blue:hover {
  background-color: #7CCA4D;
}

.dash-card-btn-green {
  background-color: #7CCA4D;
}

.dash-card-btn-green:hover {
  background-color: #2699FB;
}

.dash-card-btn-blue-gray {
  background-color: #C3C3C3;
}

.dash-card-btn-blue-gray:hover {
  background-color: #7CCA4D;
}

.dash-right-card {
  background-color: white;
  padding: 30px;
  border-radius: 5px;
}

.see-notification-div {
  background-color: #A1AA9B;
  margin-top: 30px;
  padding: 10px 10px;
  color: white;
  text-align: center;
}

.dash-notification-link {
  text-decoration: none;
  color: white;
}

.dash-bottom-link {
  text-decoration: none;
}

.dash-bottom-link:hover {
  color: #2689DD;
  text-decoration: underline;
}

.application-card {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.app-contact-btn {
  border: 1px solid #BABABA;
  padding: 8px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

@media (max-width: 768px) {
  .app-contact-btn {
    font-size: small;
  }
}

.app-contact-btn:hover {
  background-color: #2699FB;
  color: white;
  border: 1px solid white;
}

.app-view-contact {
  border: 1px solid;
  padding: 5px 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .app-view-contact {
    font-size: small;
    padding: 5px 29px;
  }
}

.app-view-contact:hover {
  background-color: #2699FB;
  color: white;
  border: 1px solid white;
}

.app-view-contact-width {
  width: 50%;
}

.app-btn-container {
  margin-top: 8px;
}

.application-sent-title {
  background-color: #2699FB;
  padding: 8px;
}

@media (min-width: 999px) {
  .filter-btn-modal {
    display: none;
  }
}

.wrapper {
  width: 100%;
  border-radius: 10px;
}

.content p {
  margin: 0;
}

.tab-button {
  border: none;
  padding: 10px;
  background-color: #D6D6D6;
  color: #707070;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 25px 25px 0 0;
  min-width: 200px;
}

@media (max-width: 768px) {
  .tab-button {
    padding: 8px;
    border-radius: 0px 0px 0 0;
    min-width: 55px;
    width: 49%;
  }
}

.tab-button.active {
  background-color: white;
  color: #2699FB;
}

.active {
  background-color: white;
}

p {
  text-align: left;
}

.content {
  display: none;
  padding: 20px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.content.active {
  display: block;
}

.welcome-container {
  position: relative;
  padding: 30px 0px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.welcome-image-back {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.welcome-content {
  z-index: 9;
  position: relative;
}

.welcome-home-blue-btn {
  background-color: #93D612;
  padding: 3px 6px 2px;
  margin-right: 0;
}

.welcome-sky-blue-btn {
  background-color: #6C0FE8;
  padding: 3px 6px 2px;
  margin-right: 0;
}

.color-text-green strong {
  color: #93D612;
}

.color-text-blue strong {
  color: #1291D4;
}

.color-text-purple strong {
  color: #6C0FE8;
}


.welcome-home-blue-btn:hover {
  background-color: #93d61285;
}

.welcome-sky-blue-btn:hover {
  background-color: #6c0fe852 !important;
}

.welcome-home-purble-btn:hover {
  background-color: #1291d478;
}

.welcome-home-purble-btn {
  background-color: #1291D4;
  padding: 3px 6px 2px;
  margin-right: 0;
}

.search-container {
  padding: 0px;
  border: none !important;
}

.welcome-home-card {
  padding: 30px;
  background-color: hsla(0, 0%, 100%, 0.415);
  border-radius: 5px;
}

.welcome-underline-img {
  width: 190px;
}

.welcome-text-container {
  margin-top: 250px !important;
  margin-bottom: 50px !important;

}

.welcome-container .slider-items .slick-dots {
  bottom: -15px !important;
}

@media (max-width: 500px) {
  .welcome-text-container {
    margin-top: 200px !important;
    margin-left: 0px;
    margin-bottom: 50px !important;
  }

  .welcome-title {
    font-size: 30Px;
  }

  .welcome-container .slider-items .slick-arrow {
    display: none !important;
  }

  .welcome-container .slider-items .slick-dots {
    bottom: -20px !important;
  }

  .welcome-container .slider-items .slick-dots li {
    margin: 0 !important;
  }




}

.looking-section-input {
  border: none;
  border-bottom: 1px solid gray !important;
  width: 100%;
}

.looking-section-input:focus {
  border-bottom: 1px solid gray !important;
}

.looking-section-input::-webkit-input-placeholder {
  color: #2699FB;
}

.looking-section-input::-moz-placeholder {
  color: #2699FB;
}

.looking-section-input:-ms-input-placeholder {
  color: #2699FB;
}

.looking-section-input::-ms-input-placeholder {
  color: #2699FB;
}

.looking-section-input::placeholder {
  color: #2699FB;
}

.welcome-home-card-mobile {
  padding: 30px;
  background-color: hsl(0deg 0.16% 59.1% / 84%);
  border-radius: 15px;
}

.title-blue-background {
  background-color: #0081EF;
  display: inline-block;
  padding: 5px;
  padding-top: 10px;
  margin: 0;
}

.title-purble-background {
  background-color: #6500EF;
  display: inline-block;
  padding: 5px;
  padding-top: 10px;
  margin: 0;
}

.title-sky-blue-background {
  background-color: #00EFE6;
  display: inline-block;
  padding: 5px;
  padding-top: 10px;
  margin: 0;
}

.welcome-container .slick-prev {
  left: -5px !important;
  top: 0px !important;
  z-index: 1000;
}

.tab-content label {
  color: white;
}

.welcome-container .slick-next {
  right: 15px !important;
  top: 0 !important;
  z-index: 1000;
}

.welcome-container .slick-prev:before,
.welcome-container .slick-next:before {
  color: #167EBB !important;
  /* Change arrow color */
  font-size: 20px;
  display: none !important;
  /* Adjust arrow size */
}

.job-search-btn-seach-by-job-welcome {
  margin-bottom: 15px;
  height: auto;
  background-color: #2699FB;
  color: white;
  padding: 10px 15px 10px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.job-search-btn-seach-by-job-welcome:hover {
  background-color: #7CCA4D;
}

.tab-btn.active-tab {
  /* Example active color */
  border: 1px solid white;
  opacity: 1 !important;
  /* Adds a white border to the active tab */
}

.account-card-text-mobile {
  font-size: 40px;
}

.min-height-card {
  min-height: 400px;
}

.welcome-title {
  font-weight: 100;
  font-family: "Dazzle Unicase" !important;

}

.welcome-title strong {
  font-weight: 100;
  font-family: "Dazzle Unicase" !important;

}

.welcome-home-card .tab-btn {
  opacity: 0.5;
}

.welcome-description {
  line-height: 1;
}

.custom-nice-select-v2 {
  padding: 7px !important;
}

.js-select-filter-padding {
  padding: 2px !important;
  margin-bottom: 0px;
}

.filter-btn-modal {
  text-decoration: none;
  border: 1px solid #2699FB;
  color: #707070;
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.heading-filter {
  position: relative;
  margin-bottom: 15px;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

#filterModal .modal-content {
  margin: 15% auto;
  padding: 20px;
  max-width: 600px;
  width: 91%;
  border-radius: 8px;
  background-color: #2699FB;
}

#filterModal .check-boxes-container {
  border: 1px solid hsla(0, 0%, 53%, 0.411);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 0px;
  background: white;
}

#filterModal .close {
  text-align: right;
  margin-bottom: 0;
}

#filterModal .close:hover,
#filterModal .close:focus {
  opacity: 0.7;
  cursor: pointer;
}

#filterModal .nice-select {
  line-height: 10px !important;
  height: 40px;
  float: unset !important;
  margin-bottom: 0;
}

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

.dash-card__filter .dash-card-btn {
  background: #A1AA9B;
  padding: 10px 15px;
  border-radius: 5px;
  width: 80%;
  margin: 10px 0;
}

.dash__filter {
  margin-bottom: 20px;
}

.home-see-all-link {
  text-decoration: none;
}

.home-see-all-link:hover {
  color: #2699FB;
}

.h1-container {
  padding-right: 80px;
  margin-bottom: 20px;
  margin-top: 40px;
  border-right: 1px solid #707070;
}

.home-open-job-top-section {
  margin-top: 0;
}

@media (max-width: 768px) {
  .h1-container {
    border-right: none;
  }
}

.border-r {
  border-radius: 2px;
  padding: 5px !important;
}

.home-latest-product-top-container {
  position: relative;
}

.home-latest-product-top-container::after {
  content: "";
  position: absolute;
  width: 20Px;
  height: 100%;
  background-color: #7CCA4D;
  left: 0;
  top: 0;
}

.home-latest-product-top-container-purble {
  position: relative;
}

.home-latest-product-top-container-purble::after {
  content: "";
  position: absolute;
  width: 20Px;
  height: 100%;
  background-color: #5F4EE0;
  left: 0;
  top: 0;
}

.home-latest-product-top-container-blue {
  position: relative;
}

.home-latest-product-top-container-blue::after {
  content: "";
  position: absolute;
  width: 20Px;
  height: 100%;
  background-color: #0081EF;
  left: 0;
  top: 0;
}

@media (max-width: 600px) {
  .home-latest-product-top-container-purble::after {
    display: none !important;
  }

  .home-latest-product-top-container-blue::after {
    display: none !important;
  }

  .home-latest-product-top-container::after {
    display: none !important;
  }
}

.title-purble-blue-bg {
  background: rgb(36, 232, 251);
  background: -webkit-gradient(linear, right top, left top, from(rgb(36, 232, 251)), to(rgb(99, 64, 221)));
  background: linear-gradient(270deg, rgb(36, 232, 251) 0%, rgb(99, 64, 221) 100%);
}

.product-img-container {
  background-color: rgb(255, 255, 255);
  aspect-ratio: 1/1.2;
  position: relative;
}

.home-product-img {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.cold-blue-gradient {
  background: rgb(226, 243, 245);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(226, 243, 245)), to(rgb(198, 225, 245)));
  background: linear-gradient(180deg, rgb(226, 243, 245) 0%, rgb(198, 225, 245) 100%);
}

@media (max-width: 400px) {
  .cold-blue-gradient {
    background: transparent !important;
  }
}

.top-and-content-container {
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 90px;
}

@media (max-width: 1025px) {
  .top-and-content-container {
    padding-bottom: 20px;
    margin-top: 30px;
  }
}

.h1-container-product {
  padding-right: 0;
  margin-bottom: 0;
  margin-top: 0;
}

.left-gray-border {
  height: 100% !important;
  padding-left: 20px;
  border-left: 1px solid #707070;
}

.home-account-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.home-account-slider .slick-slide {
  height: inherit !important;
}

@media (min-width: 1200px) {
  .home-account-slider .slick-dots {
    display: none;
  }
}

@media (min-width: 768px) {
  .home-account-slider .card-height {
    height: 100%;
  }
}

.home-activity-card {
  border-radius: 20px;
  border-radius: 5px;
}

.photo-desc-v2 {
  margin-bottom: 0 !important;
}

.activity-img-height {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .wd-55 {
    width: 55%;
  }

  .wd-45 {
    width: 45%;
  }
}

.condidat-img-container {
  aspect-ratio: 2/1.8;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.condidat-img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.white-bg-card {
  background-color: white;
  padding: 10px;
}

.home-services-svg-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}

.home-services-container {
  margin-top: 80px;
}

.home-services-link-phone:hover {
  color: #65D173;
}

.home-services-link-shop:hover {
  color: #7263E3;
}

.home-services-link-store:hover {
  color: #44EAF9;
}

.upload-img-container-img {
  position: relative;
  height: 100px !important;
  width: 100px !important;
  border-radius: 8px;
}

.upload-img-container-img-v2 {
  position: relative;
  height: 85px !important;
  width: 99px !important;
  border-radius: 8px;
}

.upload-img-container-img-v2 img {
  border-radius: 3px;
}

.upload-button-v2 {
  background-color: #fdfdfd;
  color: #B9D5E2;
  padding: 10px 10px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  margin-right: 10px;
  border: 1px solid #B9D5E2;
}

.upload-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.upload-image-input {
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
}

/* Hide the original file input */
/* Hide the original file input */
.upload-image-input {
  display: none;
}

/* Style the container */
.file-upload-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px;
}

/* Style the label to hold both button and text */
.custom-file-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

/* Style the blue button */
.upload-button {
  background-color: #fdfdfd;
  color: #B9D5E2;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 10px;
  text-align: center;
  margin-right: 10px;
  letter-spacing: normal;
  border: 1px solid #B9D5E2;
}

/* Style the text on the right */
.file-text {
  font-size: 10px;
  color: #333;
  letter-spacing: normal;
}

.next-btn-update {
  padding: 18px 30px;
}

.custom-nice-select.nice-select {
  padding: 15px 15px !important;
  color: #BACAD1;
  border: 1px solid #BACAD1 !important;
  line-height: 1 !important;
}

.custom-nice-select.nice-select::after {
  content: "" !important;
  position: absolute !important;
  right: 10px !important;
  top: 57% !important;
  -webkit-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
  width: 14px !important;
  height: 10px !important;
  background-image: url('data:image/svg+xml,%3Csvg width="10" height="11" viewBox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 3.5L5 7.5L9 3.5" stroke="%23404040"/%3E%3C/svg%3E') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  pointer-events: none !important;
  z-index: 1;
  border: none !important;
}

.nice-select.custom-nice-select-v2 {
  color: #A6A6A6;
  border: 1px solid #A6A6A6 !important;
  height: 30px !important;
  line-height: 30Px !important;
  font-size: 12px;
  padding: 0 10Px !important;
}

.nice-select.custom-nice-select-v2::after {
  content: "" !important;
  position: absolute !important;
  right: 0px !important;
  top: 50% !important;
  -webkit-transform: translate(0%, 0) !important;
  -ms-transform: translate(0%, 0) !important;
  transform: translate(0%, 0) !important;
  width: 14px !important;
  height: 10px !important;
  background-image: url('data:image/svg+xml,%3Csvg width="10" height="11" viewBox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 3.5L5 7.5L9 3.5" stroke="%23404040"/%3E%3C/svg%3E') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  pointer-events: none !important;
  z-index: 1;
  border: none !important;
}

._search-top_job label {
  letter-spacing: 2px;
}

@media (min-width: 999px) {
  .nice-select {
    line-height: 1 !important;
  }

  .nice-select.custom-nice-select-v2 {
    height: 40px !important;
    line-height: 40px !important;
  }
}

.upload-img-container__warp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.upload-img-container-content {
  width: calc(100% - 110px);
  margin-left: 10Px;
}

.upload-img-container-content p {
  font-size: 10px;
  font-style: italic;
}

@media (min-width: 767px) {
  .upload-img-container-content {
    width: calc(100% - 110px);
    margin-left: 10px;
  }

  .upload-img-container-content p {
    font-size: 12px;
    font-style: italic;
  }

  .upload-button,
  .file-text {
    font-size: 13px;
  }

  .file-upload-wrapper {
    padding: 10px 10px;
  }
}

@media (min-width: 999px) {
  .upload-img-container-content {
    width: calc(100% - 110px);
    margin-left: 10px;
  }

  .upload-img-container-content p {
    font-size: 14px;
    font-style: italic;
  }

  .upload-button,
  .file-text {
    font-size: 14px;
  }

  .file-upload-wrapper {
    padding: 10px 10px;
  }
}

.card-padding {
  padding: 25px;
}

.bordred-input::-webkit-input-placeholder {
  color: #BACAD1 !important;
}

.bordred-input::-moz-placeholder {
  color: #BACAD1 !important;
}

.bordred-input:-ms-input-placeholder {
  color: #BACAD1 !important;
}

.bordred-input::-ms-input-placeholder {
  color: #BACAD1 !important;
}

.bordred-input::placeholder {
  color: #BACAD1 !important;
}

.custom-placeholder {
  color: #BACAD1 !important;
}

.card-number-container {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #BACAD1;
  padding-right: 10px;
}

.padding {
  padding: 14px !important;
  border: 1px solid #BACAD1 !important;
}

.no-border {
  border: none !important;
}

.no-margin {
  margin: 0 !important;
}

.previw-red-btn {
  text-decoration: none;
  color: white;
  background-color: #878787;
  padding: 15px 50px;
  border-radius: 3px;
  display: block;
  min-width: 200px;
  text-align: center;
}

@media (max-width: 768px) {
  .previw-red-btn {
    width: 100%;
    margin-top: 10px;
  }
}

.previw-red-btn:hover {
  background-color: rgba(0, 0, 0, 0.6039215686);
}

.save-profil-green-btn {
  background-color: #7CCA4D;
  color: white;
  padding: 15px 50px;
  border-radius: 3px;
  text-decoration: none;
  margin-left: 15px;
  display: block;
  min-width: 200px;
  text-align: center;
}

@media (max-width: 768px) {
  .save-profil-green-btn {
    width: 100%;
    margin-left: 0px;
    margin-top: 10px;
  }
}

.save-profil-green-btn:hover {
  background-color: #5D7F49;
}

.we-are-looking {
  padding: 40px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .we-are-looking {
    padding: 20px;
  }
}

.reject-btn {
  background-color: #A1AA9B;
  text-decoration: none;
  color: white;
  padding: 15px 40px;
  text-align: center;
  border-radius: 25px;
  min-width: 200px;
  margin-top: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.reject-btn:hover {
  background-color: #2699FB;
}

.send-btn {
  background-color: #7CCA4D;
  text-decoration: none;
  color: white;
  padding: 15px 40px;
  text-align: center;
  border-radius: 25px;
  min-width: 200px;
  margin-top: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background-color: #2699FB;
}

.dashed-text {
  text-decoration: line-through;
}

.photo-container-v2 {
  width: 121px;
  height: 121px;
  margin-right: 15px;
  position: relative;
}

.photo-container-v3 {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  position: relative;
}

.dash-profil-right-content {
  background-color: hsla(97, 54%, 55%, 0.364);
  padding: 15px;
  border-radius: 8px;
}

.dash-profil-right-content.bg-blue {
  background-color: rgba(37, 153, 251, 0.364);
}

.dash-profil-right-content.bg-green {
  background-color: rgba(124, 202, 77, 0.364);
}

.dash-profil-right-content.bg-grey {
  background-color: rgba(161, 170, 155, 0.364);
}

.dash-ul {
  list-style: none;
  /* Remove default bullets */
  padding-left: 0;
  /* Remove default indentation */
}

.dash-ul li {
  position: relative;
  padding-left: 30px;
  /* Adjust space for the SVG */
  /* Optional: add space between items */
}

.dash-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M12 19C10.05 19 8.39583 18.3208 7.0375 16.9625C5.67917 15.6042 5 13.95 5 12C5 10.05 5.67917 8.39583 7.0375 7.0375C8.39583 5.67917 10.05 5 12 5C13.95 5 15.6042 5.67917 16.9625 7.0375C18.3208 8.39583 19 10.05 19 12C19 13.95 18.3208 15.6042 16.9625 16.9625C15.6042 18.3208 13.95 19 12 19Z" fill="%235F6368"/></svg>') no-repeat center center;
  background-size: contain;
}

.search-input-text-container {
  background-color: white;
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #E4E5E8;
}

.dash-search-input {
  border: none;
}

.dash-search-input:focus {
  outline: none !important;
}

.dash-search-input ::-webkit-input-placeholder {
  color: #A1AA9B;
}

.dash-search-input ::-moz-placeholder {
  color: #A1AA9B;
}

.dash-search-input :-ms-input-placeholder {
  color: #A1AA9B;
}

.dash-search-input ::-ms-input-placeholder {
  color: #A1AA9B;
}

.dash-search-input ::placeholder {
  color: #A1AA9B;
}

.hidden {
  display: none;
}

.card-btn-hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-btn-hover:hover {
  background-color: #7CCA4D;
  color: white;
}

.check-boxes-container {
  border: 1px solid hsla(0, 0%, 53%, 0.411);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  max-height: 300px;
  overflow: hidden;
  overflow-y: scroll;
}

.select-style {
  border: 1px solid hsla(0, 0%, 53%, 0.411);
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  padding-right: 20px;
  position: relative;
  background-color: white;
}

.select-style::after {
  content: "" !important;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L5 5L9 1" stroke="%23404040"/></svg>') !important;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.btn-dark-grren {
  background-color: #A1AA9B !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  display: block;
}

.btn-dark-grren:hover {
  background-color: #bcc5b5;
}

.page-number {
  padding: 8px 12px;
}

.pagination-active {
  background-color: #5E4DDF;
  border-radius: 25px;
  color: white;
}

.experience-left-side {
  background-color: white;
  padding: 30px 15px 15px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  height: 100%;
  position: relative;
}

.purble-color {
  color: #5E4DDF;
}

.dashed-plus-container {
  border: 1px dashed #D7D3F7;
  height: 100%;
  border-radius: 8px;
  padding: 0 30px;
  min-height: 90px;
  cursor: pointer;
}

.dashed-plus-container:hover {
  background-color: #ffffff;
}

.btn-confirmer-condidate {
  background-color: #D7D3F7 !important;
  text-decoration: none;
  display: block;
  padding: 10px 20px;
  display: block !important;
  min-width: 200px;
  text-align: center;
  border: 0;
}

.btn-confirmer-condidate:hover {
  background-color: #C3C3C3 !important;
  color: white;
}

.skill {
  background-color: #D7D3F7;
  padding: 5px 10px;
  position: relative;
  margin: 5px 0px;
  margin-right: 10px;
}

.close-skill-icon-container {
  margin-bottom: 3px;
}

.close-skill-icon-container {
  opacity: 0;
  /* Hide the close icon by default */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  /* Smooth transition for opacity */
}

.skill:hover .close-skill-icon-container {
  opacity: 1;
  /* Show the close icon on hover */
}

.experience-row-container input,
.experience-row-container select {
  outline: 0;
  background: #ffffff !important;
  border: 1px solid #BACAD1;
  border-radius: 5px;
  width: 100%;
  margin: 0 0 15px;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}

.upload-button-v2:hover {
  background-color: #B9D5E2;
  color: white;
}

.upload-button:hover {
  background-color: #B9D5E2;
  color: white;
}

/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.img-replace {
  /* replace text with an image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}

/* --------------------------------

  xnugget info

  -------------------------------- */
.cd-nugget-info {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 50px;
  line-height: 50px;
  bottom: 0;
  left: 0;
}

.cd-nugget-info a {
  position: relative;
  font-size: 14px;
  color: #5e6e8d;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.no-touch .cd-nugget-info a:hover {
  opacity: 0.8;
}

.cd-nugget-info span {
  vertical-align: middle;
  display: inline-block;
}

.cd-nugget-info span svg {
  display: block;
}

.cd-nugget-info .cd-nugget-info-arrow {
  fill: #5e6e8d;
}

.cd-popup-trigger {
  display: block;
}

/* --------------------------------

  xpopup

  -------------------------------- */
.cd-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: scroll;
}

.cd-popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
  position: relative;
}

.cd-popup-container .cd-buttons:after {
  content: "";
  display: table;
  clear: both;
}

.cd-popup-container .cd-buttons li {
  float: left;
  width: 50%;
  list-style: none;
}

.cd-popup-container .cd-buttons a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FFF;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cd-popup-container .cd-buttons li:first-child a {
  background: #fc7169;
  border-radius: 0 0 0 0.25em;
}

.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
  background-color: #fc8982;
}

.cd-popup-container .cd-buttons li:last-child a {
  background: #b6bece;
  border-radius: 0 0 0.25em 0;
}

.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
  background-color: #c5ccd8;
}

.cd-popup-container .cd-popup-close {
  position: absolute;
  top: 8px;
  right: 20px;
  width: 30px;
  height: 30px;
}

.cd-popup-container .cd-popup-close::before,
.cd-popup-container .cd-popup-close::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 14px;
  height: 3px;
  background-color: #8f9cb5;
}

.cd-popup-container .cd-popup-close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}

.cd-popup-container .cd-popup-close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 8px;
}

.is-visible .cd-popup-container {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@media only screen and (min-width: 1170px) {
  .cd-popup-container {
    margin: 8em auto;
  }
}

@media only screen and (max-width: 768px) {
  .mobile-margin-top {
    margin-top: 700px !important;
  }
}

body {
  font-family: "DM Sans", sans-serif;
  --text-dark: #1a2f45;
  --text-light: #445e78;
  --chat-box-dark: #1b243b;
  --chat-box-light: #fff;
  --button-text: #fff;
  --toggle-ball: #fff;
  --list-item-active: #e5effb;
  --number-bg: #6895A3;
  --message-box-1: #fff;
  --message-box-2: #1a233b;
  --chat-input: #060415;
  --border-light: #8187a2;
  --info-box-color-1: #004dfc;
  --info-box-color-2: #00ba9d;
  --info-box-color-3: #715fc2;
  --info-box-color-4: #ff562d;
  --info-icon-bg-1: #b1c7fc;
  --info-icon-bg-2: #c6f0ea;
  --info-icon-bg-3: #d9d3ff;
  --info-icon-bg-4: #ffe1d4;
  --app-bg: #060415;
  --box-color: #12172d;
  --box-border: #477eff;
  --button-bg: #477eff;
  --text-dark: rgba(255, 255, 255, 1);
  --text-light: rgba(255, 255, 255, .6);
  --info-box-1: rgba(160, 186, 242, 0.5);
  --info-box-2: rgba(168, 240, 229, 0.55);
  --info-box-3: rgba(194, 168, 240, 0.34);
  --info-box-4: rgba(240, 185, 168, 0.34);
  --toggle-bg: #477eff;
  --toggle-bg-off: #6895a3;
  --message-box-2: #477eff;
  --message-box-1: #576c99;
  --logo-path-1: #477eff;
  --logo-path-2: #576c99;
  --box-shadow: rgba(18, 23, 45, .6) 0px 8px 24px;
  --scrollbar-thumb: linear-gradient(to bottom, rgba(43, 88, 118, .8), rgba(78, 67, 118, .8));
}

body[data-theme=indigo],
body[data-theme=pink] {
  --app-bg: #fff;
  --box-color: #f5f8fc;
  --box-border: #e7edf5;
  --text-dark: #1a2f45;
  --text-light: #445e78;
  --chat-box-dark: #1b243b;
  --chat-box-light: #fff;
  --button-bg: #004dfc;
  --button-text: #fff;
  --toggle-bg: #004dfc;
  --toggle-bg-off: #6895A3;
  --toggle-ball: #fff;
  --logo-path-1: #A0C9E1;
  --logo-path-2: #18689C;
  --list-item-active: #e5effb;
  --number-bg: #6895A3;
  --message-box-1: #fff;
  --message-box-2: #1a233b;
  --chat-input: #f5f8fc;
  --border-light: #e5e6eb;
  --info-box-1: rgba(217, 228, 252, 1);
  --info-box-2: rgba(226, 246, 243, 1);
  --info-box-3: #f7f3ff;
  --info-box-4: #fff1e9;
  --box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  --info-box-3: #b3a5ce;
  --info-box-4: #ffceb3;
  --scrollbar-thumb: linear-gradient(to top, rgba(131, 164, 212, .5), rgb(182, 188, 255, 0.4));
}

body[data-theme=pink] {
  --box-color: #f8f1f1;
  --button-bg: #1a233b;
  --logo-path-1: #e8d5db;
  --logo-path-2: #6895A3;
  --toggle-bg: #1a233b;
}

body[data-theme=navy-dark] {
  --app-bg: #060415;
  --box-color: #12172d;
  --box-border: #477eff;
  --button-bg: #477eff;
  --toggle-bg: #477eff;
  --toggle-bg-off: #6895a3;
  --message-box-2: #477eff;
  --message-box-1: #576c99;
  --chat-input: #060415;
  --border-light: #8187a2;
}

body[data-theme=navy-dark],
body[data-theme=dark] {
  --text-dark: rgba(255, 255, 255, 1);
  --text-light: rgba(255, 255, 255, .6);
  --info-box-1: rgba(160, 186, 242, 0.5);
  --info-box-2: rgba(168, 240, 229, 0.55);
  --info-box-3: rgba(194, 168, 240, 0.34);
  --info-box-4: rgba(240, 185, 168, 0.34);
  --logo-path-1: #477eff;
  --logo-path-2: #576c99;
  --scrollbar-thumb: linear-gradient(to bottom, rgba(43, 88, 118, .8), rgba(78, 67, 118, .8));
}

body[data-theme=dark] {
  --app-bg: #040508;
  --box-color: #131a24;
  --box-border: #131a24;
  --button-bg: #1e2b4a;
  --toggle-bg: #477eff;
  --toggle-bg-off: #6895a3;
  --message-box-2: #1e2b4a;
  --message-box-1: #576c99;
  --chat-input: #040508;
  --border-light: #040508;
}

.app-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  max-width: 1800px;
}

.app-left {
  -ms-flex-preferred-size: 320px;
  flex-basis: 320px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 480px;
  overflow-y: auto;
}

.app-left-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: var(--app-bg);
}

.app-left-header h1 {
  margin: 0;
  font-size: 20px;
  color: var(--text-dark);
  margin-left: 12px;
}

.app-logo svg {
  width: 40px;
  height: 40px;
}

.app-logo svg .path-1 {
  fill: var(--logo-path-1);
}

.app-logo svg .path-2 {
  fill: var(--logo-path-2);
}

.app-profile-box {
  border: 1px solid var(--box-border);
  background-color: var(--box-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.app-profile-box img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.app-profile-box-name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.app-profile-box-title {
  font-size: 12px;
  line-height: 16px;
  color: var(--text-light);
  margin: 0;
}

.switch-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 12px;
}

.switch-status input {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.switch-status input:checked+label {
  background-color: var(--toggle-bg);
}

.switch-status input:checked+label:before {
  left: 12px;
}

.switch-status input:checked~.toggle-offline {
  display: none;
}

.switch-status input:checked~.toggle-online {
  display: inline-block;
}

.toggle-text {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--text-light);
}

.toggle-online {
  display: none;
}

.toggle-offline {
  display: inline-block;
}

.label-toggle {
  background-color: var(--toggle-bg-off);
  border-radius: 24px;
  width: 24px;
  height: 14px;
  display: inline-block;
  margin-right: 4px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.label-toggle:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 2px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  transform: translatey(-50%);
  border-radius: 50%;
  background-color: var(--toggle-ball);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.toggle-text {
  font-size: 12px;
  line-height: 16px;
}

.app-setting {
  padding: 0;
  border: none;
  background-color: transparent;
  color: var(--text-dark);
  margin-left: 4px;
}

.chat-list {
  padding: 0;
  list-style: none;
  height: 0px;
  overflow: hidden;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
  display: none;
  opacity: 0;
}

.chat-list.active {
  display: block;
  height: auto;
  max-height: auto;
  opacity: 1;
}

.chat-list-item {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 8px 14px;
  margin: 0;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}

.chat-list-item.active {
  background-color: #EEF3F4;
}

.chat-list-item.active span {
  font-weight: 700;
}

.chat-list-item img {
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 8px;
}

.chat-list-item:hover {
  background-color: #EEF3F4;
}

.chat-list-name {
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: var(--text-light);
}

.chat-list-header {
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: var(--text-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  height: 40px;
}

.chat-list-header .c-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--button-bg);
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-left: 8px;
}

.list-header-arrow {
  margin-left: auto;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.chat-list-header.active .list-header-arrow {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.app-main {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  height: 70vh;
  width: 100%;
  background-color: #EEF3F4;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.app-main-header {
  position: sticky;
  top: 0;
  background-color: var(--box-color);
  border: 1px solid var(--box-border);
}

.chat-wrapper {
  overflow: auto;
  padding-left: 24px;
  padding-top: 24px;
}

.chat-list-wrapper {
  height: 100vh;
  background-color: white;
}

.chat-input {
  border: none;
  outline: none;
  height: 32px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #040508 !important;
  color: var(--text-dark);
}

.chat-input:placeholder {
  color: #98A2B3;
  font-size: 12px;
  font-family: "Poppins";
  font-weight: 600;
  font-style: normal;
}

.chat-input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  margin-top: auto;
  padding: 12px;
  background-color: transparent;
}

.input-wrapper {
  border-radius: 50px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  padding: 10px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: white;
  margin-right: 40px;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1411764706);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1411764706);
}

.emoji-btn {
  border: none;
  background-color: transparent;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 4px;
  color: #ffca3e;
}

.chat-send-btn {
  height: 32px;
  color: #fff;
  background-color: white;
  border-radius: 50%;
  border: none;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1411764706);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1411764706);
  padding-top: 26px;
  padding-right: 20px;
  padding-bottom: 26px;
  padding-left: 34px;
  font-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  line-height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='16' viewBox='0 0 18 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.666016 0.5V15.5L17.3327 8L0.666016 0.5ZM2.33268 9.66667L9.83268 8L2.33268 6.33333V3.075L13.2743 8L2.33268 12.925V9.66667Z' fill='%2398A2B3'/%3E%3C/svg%3E");
}

.chat-send-btn:hover {
  background-color: #e2e8f5;
}

.chat-attachment-btn {
  border: none;
  padding: 0;
  background-color: transparent;
  color: var(--text-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0.7;
}

.chat-top-bar {
  height: 62px;
  background-color: #D9D9D9;
}

.message-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
}

.message-wrapper.reverse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.message-wrapper.reverse .message-box {
  background-color: #E4E7EC;
  color: #1D2739;
}

.message-wrapper.reverse .message-box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.message-wrapper.reverse .message-pp {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.message-pp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.left-msg {
  border-radius: 30px 30px 30px 0px !important;
}

.right-msg {
  border-radius: 30px 30px 0 30px !important;
}

.message-box {
  background-color: #E4E7EC;
  font-size: 12px;
  line-height: 16px;
  color: #1D2739;
  padding: 20px;
}

.message-box-wrapper {
  max-width: 70%;
  padding: 10px 15px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;

}

.message-box-wrapper span {
  font-size: 10px;
  line-height: 16px;
  color: black;
  opacity: 0.6;
}

.received .message {
  background-color: #efefef;
  border-bottom-left-radius: 4px;
}

.message-wrapper.reverse .message-box.right-msg {
  background-color: #2699FB;
  color: white;
}

.message-wrapper .message-box.left-msg {
  background-color: #7CCA4D;
  color: white;
}

.app-right {
  -ms-flex-preferred-size: 320px;
  flex-basis: 320px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 24px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: auto;
}

.app-right .app-profile-box img {
  margin-bottom: 16px;
}

.app-right .app-profile-box-title {
  width: 100%;
  color: var(--text-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.app-right .app-profile-box-title svg {
  width: 16px;
  margin-right: 6px;
}

.archive-btn {
  color: #fff;
  height: 32px;
  margin-top: 16px;
  border-radius: 4px;
  background-color: var(--button-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  border: none;
}

.archive-btn svg {
  margin-left: 6px;
}

.app-activity-box {
  border-radius: 10px;
  padding: 16px 16px 8px 16px;
  border: 1px solid var(--box-border);
  background-color: var(--box-color);
}

.activity-info-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.activity-info-box {
  width: 48%;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.activity-info-box.time {
  background-color: var(--info-box-1);
  color: var(--info-box-color-1);
}

.activity-info-box.time .info-icon-wrapper {
  background-color: var(--info-icon-bg-1);
}

.activity-info-box.atendee {
  background-color: var(--info-box-2);
  color: var(--info-box-color-2);
}

.activity-info-box.atendee .info-icon-wrapper {
  background-color: var(--info-icon-bg-2);
}

.activity-info-box.meeting {
  background-color: var(--info-box-3);
  color: var(--info-box-color-3);
}

.activity-info-box.meeting .info-icon-wrapper {
  background-color: var(--info-icon-bg-3);
}

.activity-info-box.reject {
  background-color: var(--info-box-4);
  color: var(--info-box-color-4);
}

.activity-info-box.reject .info-icon-wrapper {
  background-color: var(--info-icon-bg-4);
}

.info-icon-wrapper {
  border-radius: 50%;
  margin-right: 4px;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.info-icon-wrapper svg {
  width: 16px;
  height: 16px;
}

.info-text-wrapper span {
  display: block;
}

.info-text-upper {
  font-size: 14px;
  font-weight: 700;
}

.info-text-bottom {
  font-size: 10px;
  color: var(--text-light);
}

.activity-info-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 4px;
  margin-top: 16px;
}

.info-header-bold {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text-dark);
}

.info-header-light {
  color: var(--text-light);
  font-size: 12px;
  line-height: 24px;
}

.activity-days-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 24px;
}

.day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 64px;
}

.day.current .chart {
  opacity: 1;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
}

.day:first-child .chart {
  height: 20%;
}

.day:nth-child(3) .chart {
  height: 100%;
}

.day .chart {
  border-radius: 6px;
  height: 50%;
  width: 6px;
  background-color: var(--button-bg);
  opacity: 0.5;
  position: relative;
}

.day .chart:before {
  content: "";
  position: absolute;
  background-color: var(--button-bg);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: calc(100% + 4px);
}

.day span {
  margin-top: 20px;
  display: block;
  font-size: 10px;
  color: var(--text-light);
}

.app-right-bottom {
  position: fixed;
  bottom: 0;
  right: 24px;
  z-index: 1;
  background-color: var(--app-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: auto;
  padding-bottom: 10px;
}

.app-theme-selector {
  background-color: var(--box-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--box-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: auto;
  padding: 10px;
  border-radius: 6px;
}

.theme-color {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  border: none;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  color: #fff;
  cursor: pointer;
}

.theme-color.active {
  border: 1px solid rgb(71, 126, 255);
  -webkit-box-shadow: 0 0 0 3px rgba(71, 126, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(71, 126, 255, 0.2);
}

.theme-color svg {
  width: 14px;
  height: 14px;
}

.theme-color.indigo {
  background-color: #18689C;
}

.theme-color.pink {
  background-color: #e8d5db;
}

.theme-color.dark {
  background-color: #060415;
}

.theme-color.navy-dark {
  background-color: #192734;
  color: #fff;
}

.open-left,
.open-right {
  position: absolute;
  padding: 0;
  display: none;
  width: 20px;
  height: 20px;
  background-color: var(--box-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--box-border);
  border-radius: 4px;
  top: 24px;
}

.open-left {
  left: 0;
}

.open-right {
  right: 0;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(209, 207, 207, 0.658);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgb(83, 82, 82);
}

.back-btn {
  display: none;
  align-items: center;
  text-decoration: none;
  color: #000;
}

@media screen and (max-width: 1025px) {
  .back-btn {
    display: flex;
  }

  .back-btn svg {
    width: 20px;
    height: 20px;
  }

  .app-left {
    flex-basis: auto;
    height: auto;

  }

  .app-main.empty-state {
    display: none;
  }

  .h-120.is-mobile-space {
    height: 0px !important;
  }

  .chat-wrapper {
    overflow: auto;
    padding-left: 10px;
    height: 400px;
    padding-top: 24px;
    background-color: #fff;
  }

  .app-container {

    flex-direction: column;
  }

  .chat-list-wrapper {
    height: auto;
  }

  .chat-listing-wrapper-single .chat-list-wrapper {
    display: none;
  }
}

@media screen and (max-width: 680px) {
  .app-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    position: absolute;
    opacity: 0;
    top: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    -webkit-transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
    transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
  }

  .app-right.open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  .open-right {
    display: block;
  }

  .app-theme-selector {
    position: fixed;
    bottom: 0;
  }

  .app-main {
    height: calc(100% - 48px);
  }
}

.msg-time {
  justify-self: flex-end;
}

.chat-list-wrapper {
  overflow-y: auto;
  /* Enable vertical scrolling */
  /* Set a maximum height for the chat list */
}

.chat-profile-image-container {
  background-color: #000000;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.chat-profile-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.desktop-chat-container {
  display: block;
}

.mobile-chat-container {
  display: none;
}


@media screen and (min-width: 1020px) {
  .mobile-chat-container {
    display: none;
  }

  .desktop-chat-container {
    display: block;
  }
}

.messenger {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #ffffff;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.header h1 {
  font-size: 24px;
  font-weight: bold;
}

.header .search-icon,
.header .back-button,
.header .more-options {
  cursor: pointer;
}

.search-container {
  padding: 10px 15px;
  padding: 0;
  border-bottom: 1px solid #f0f0f0;
}

.search-container .search-input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 20px;
  background-color: #f0f0f0;
  font-size: 14px;
}

.contacts {
  overflow-y: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.contacts .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  cursor: pointer;
}

.contacts .contact:hover {
  background-color: #f0f0f0;
}

.contacts .contact .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.contacts .contact .contact-details {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.contacts .contact .contact-details h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.contacts .contact .contact-details p {
  font-size: 14px;
  color: #65676b;
}

.contacts .contact .time {
  font-size: 12px;
  color: #65676b;
}

.conversation {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
}

.conversation.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.conversation .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.conversation .header .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 15px;
}

.conversation .header .contact-info .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
}

.conversation .header .contact-info .contact-details h2 {
  font-size: 16px;
}

.conversation .header .contact-info .contact-details p {
  font-size: 12px;
  color: #65676b;
}

.conversation .messages {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow-y: auto;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.conversation .messages .message {
  max-width: 70%;
  padding: 10px 15px;
  border-radius: 18px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.conversation .messages .message.received {
  background-color: #f0f0f0;
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.conversation .messages .message.sent {
  background-color: #0084ff;
  color: white;
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.conversation .message-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  border-top: 1px solid #f0f0f0;
}

.conversation .message-input .attachment-icon,
.conversation .message-input .send-icon {
  cursor: pointer;
}

.conversation .message-input .message-input-field {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 15px;
  padding: 10px;
  border: none;
  border-radius: 20px;
  background-color: #f0f0f0;
  font-size: 14px;
}

@media (max-width: 480px) {
  .messenger {
    height: 100vh;
    overflow: scroll;
  }
}

.online-people {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.online-people-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 0 15px;
  padding-bottom: 14px;
}

.online-people-scroll::-webkit-scrollbar {
  height: 2px !important;
  display: none;
}

.online-person {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
  width: 80px;
}

.online-person-container {
  position: relative;
  /* Make container relative */
  width: 50px;
  /* Set the width for the container */
  height: 50px;
  /* Set the height for the container */
  overflow: hidden;
  /* Ensure anything outside the container is hidden */
}

.online-avatar {
  position: absolute;
  /* Position the image absolutely */
  top: 0;
  /* Align to top */
  left: 0;
  /* Align to left */
  width: 100%;
  /* Take full width of the container */
  height: 100%;
  /* Take full height of the container */
  border-radius: 50%;
  /* Keep the rounded corners */
  border: 2px solid #0084ff;
  /* Border around the image */
}

.online-name {
  font-size: 12px;
  margin-top: 5px;
  color: #65676b;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 3px !important;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.product-card-container {
  aspect-ratio: 1/.9;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.product-card-container:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.post-product-activity-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.add-pro-act-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgb(68, 197, 239);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 197, 239, 0)), color-stop(59%, rgba(68, 197, 239, 0.41)), to(rgb(68, 197, 239)));
  background: linear-gradient(180deg, rgba(68, 197, 239, 0) 0%, rgba(68, 197, 239, 0.41) 59%, rgb(68, 197, 239) 100%);
  z-index: 100;
}

.add-pro-act-title {
  color: #3E42A2;
  position: absolute;
  bottom: 30px;
  z-index: 101;
  left: 30px;
}

.form-fee-text {
  color: #000;
}

.form-fee-text-a {
  color: #398535;
  font-weight: bold;
}

.alert {
  text-align: center;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.alert-title {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.alert-about {
  padding-bottom: 25px;
}

.images-holder {
  margin-top: 20px;
  padding: 0px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-perspective: 300px;
  perspective: 300px;
}

.images-holder__thumbnail {
  position: relative;
  padding-bottom: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: AnimIn 500ms ease-in;
  animation: AnimIn 500ms ease-in;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 22%;
  margin-right: 15px;
}

.images-holder__holder {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: white;
}

.images-holder__holder:hover .images-holder__overlay {
  opacity: 1;
}

.images-holder__image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}

.images-holder__title {
  display: none;
  padding: 10px;
  width: 100%;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.images-holder__overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.images-holder__overlay span {
  color: white;
  font-size: 22px;
}

.images-holder__remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 23px;
  height: 23px;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.images-holder__remove::before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background: url('data:image/svg+xml;utf8,<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="22.8553" height="22.8553" rx="11.4276" fill="%23D14343"/><g opacity="0.8"><path d="M14.7523 7.07974L7.07948 14.7526C6.79719 15.0348 6.79719 15.4925 7.07948 15.7748L7.08023 15.7755C7.36252 16.0578 7.82019 16.0578 8.10247 15.7755L15.7753 8.10273C16.0576 7.82045 16.0576 7.36278 15.7753 7.08049L15.7745 7.07974C15.4922 6.79746 15.0346 6.79746 14.7523 7.07974Z" fill="white"/><path d="M7.07974 8.1022L14.7526 15.775C15.0348 16.0573 15.4925 16.0573 15.7748 15.775L15.7755 15.7743C16.0578 15.492 16.0578 15.0343 15.7755 14.752L8.10273 7.07921C7.82045 6.79693 7.36278 6.79693 7.0805 7.07921L7.07974 7.07997C6.79746 7.36225 6.79746 7.81992 7.07974 8.1022Z" fill="white"/></g></svg>') no-repeat center;
  background-size: contain;
}

.images-holder__remove:hover {
  opacity: 0.5;
}

@-webkit-keyframes AnimIn {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(5deg);
    transform: rotateX(5deg);
  }
}

@keyframes AnimIn {
  0% {
    opacity: 0;
    -webkit-transform: rotateX(5deg);
    transform: rotateX(5deg);
  }
}

.upload-images-btn {
  background-color: #E1EBF5;
  padding: 10px 30px;
  border-radius: 25px;
  padding-bottom: 20px;
  cursor: pointer;
}

.upload-images-btn:hover {
  background-color: #7CCA4D;
}

.upload-images-top-container {
  background-color: #FAFAFA;
  border: 1px dashed gray;
  border-radius: 8px;
  padding: 10px;
}

.upload-images-top-container .upload-images-top-container {
  position: relative;
}

.click-here-uploader {
  text-decoration: none;
  cursor: pointer;
}

.click-here-uploader:hover {
  color: #7CCA4D;
}

.single-product-price {
  background-color: #D7D3F7;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 3px;
}

.single-product-price-mobile {
  background-color: #D7D3F7;
  display: inline-block;
  padding: 4px 9px;
  font-size: 16px;
}

.complete-your-profile-container label {
  letter-spacing: 3px;
}

.single-product-slider-container {
  margin-top: 20px;
  border-radius: 15px;
  position: relative;
  border: 1px solid pink;
}

.product-slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-etat {
  background-color: #D7D3F7;
  padding: 10px;
  text-align: center;
  border-radius: 3px;
  cursor: text !important;
}

@media (max-width: 400px) {
  .product-etat {
    padding: 7px;
  }
}

.single-product-btn {
  border: 1px solid #3C3C3C;
  text-decoration: none;
  padding: 15px;
  border-radius: 25px;
  color: #3C3C3C;
}

.single-product-btn:hover {
  background-color: #7CCA4D;
}

/* This line can be removed it was just for display on CodePen: */
.slider-labels {
  margin-top: 10px;
}

/* Functional styling;
   * These styles are required for noUiSlider to function.
   * You don't need to change these rules to apply your design.
   */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
}

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  /* Fix 401 */
}

.noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}

.noUi-handle {
  position: relative;
  z-index: 1;
}

.noUi-stacking .noUi-handle {
  /* This class is applied to the lower origin when
   its values is > 50%. */
  z-index: 10;
}

.noUi-state-tap .noUi-origin {
  -webkit-transition: left 0.3s, top 0.3s;
  transition: left 0.3s, top 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Painting and performance;
   * Browsers can paint handles in their own layer.
   */
.noUi-base,
.noUi-handle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Slider size and handle placement;
   */
.noUi-horizontal {
  height: 4px;
}

.noUi-horizontal .noUi-handle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  left: -7px;
  top: -7px;
  background-color: #AC9BCD;
}

/* Styling;
   */
.noUi-background {
  background: #87C745;
}

.noUi-connect {
  background: #AC9BCD;
  -webkit-transition: background 450ms;
  transition: background 450ms;
}

.noUi-origin {
  border-radius: 2px;
}

.noUi-target {
  border-radius: 2px;
}

/* Handles and cursors;
   */
.noUi-draggable {
  cursor: w-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: n-resize;
}

.noUi-handle {
  cursor: default;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
}

.noUi-handle:active {
  border: 8px solid #AC9BCD;
  border: 8px solid rgba(53, 93, 187, 0.38);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  left: -14px;
  top: -14px;
}

/* Disabled state;
   */
[disabled].noUi-connect,
[disabled] .noUi-connect {
  background: #87C745;
}

[disabled].noUi-origin,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

.activity-right-img {
  border-radius: 11px;
}

.price-on-img {
  top: 12px;
  left: 20px;
  right: 20px;
  width: auto;
  text-align: center;
  border-radius: 3px;
}

.ifram-map-border {
  border: 25px solid #D7D3F7;
  border-radius: 20px;
  position: relative;
}

.map-overlay {
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
}

.show-btn-container {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.svg-hover:hover path {
  fill: #7CCA4D;
  /* Change this to your desired hover color */
}

.slider {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 20px auto;
  border-radius: 20px;
  margin-bottom: 20px;
}

.slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f0f0f0;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  width: 100%;
  height: 100%;
  z-index: 2225445122255 !important;
  overflow: hidden;
}

.slick-dots {
  bottom: 19px !important;
}

.slick-dots li button:before {
  color: #D4D2D3 !important;
}

.slick-dots li button {
  padding: 0 !important;
}

.jos-first-p {
  line-height: 1rem;
}

.no-radius {
  border-radius: 0 !important;
}

.view-btn-hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.view-btn-hover:hover {
  background-color: #7CCA4D;
  color: white;
}

.see-more-btn {
  text-decoration: none;
  border-radius: 28px;
  color: #3C3C3C;
  padding: 15px;
  border: 1px solid #3C3C3C;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.see-more-btn:hover {
  background-color: #7CCA4D;
  color: white;
  border: 1px solid white;
}

.form-no-label {
  width: 100%;
}

.file-upload-wrapper .form-no-label {
  width: auto;
}

.js-form-item-files-field-ac-images {
  display: none;
  ;
}

#fileToUploadmedia,
#fileToUpload {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
}

.upload-img-container {
  position: relative;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.limit-text,
.application-card .photo-desc p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.lt-0 {
  letter-spacing: normal !important;
}

.views-row {
  display: none !important;
}

.check-text-container label {
  letter-spacing: 0 !important;
}

input:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.rejected-btn {
  opacity: .8;
  background: #ed8b8b !important;
  cursor: not-allowed;
  text-transform: capitalize !important;
}

/* Custom pagination styles */
.custom-pagination .pagination {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.custom-pagination .page-item {
  display: inline-block;
}

.custom-pagination .page-link {
  padding: 10px 15px;
  border: 1px solid #ddd;
  background-color: #f8f9fa;
  color: #2699FB;
  text-decoration: none;
}

.custom-pagination .page-item.active .page-link {
  background-color: #2699FB;
  color: white;
}

.custom-pagination .page-link:hover {
  background-color: #0056b3;
  color: white;
}

.font-size-skill {
  font-size: 10px;
  text-align: right;
  line-height: 1;
}

.select2-container .select2-selection--single {
  height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #A6A6A6;
  line-height: 38px;
  font-size: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;

}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #248de8;
  color: white;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
  font-size: 14px;
}

.form .select2-container {
  margin-bottom: 15px;
}

.form .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000;
  line-height: 43px;
  font-size: 12px;
}

.form .select2-container .select2-selection--single,
.form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 43px;

}

.select2-container--default .select2-selection--single {
  border: 1px solid #BACAD1;
}

.form .select2-container .select2-selection--multiple {
  min-height: 43px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
  font-size: 12px;
}

.bg--red {
  background-color: #9F3131;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  width: 100% !important;
}

@media (min-width: 1200px) {
  .checked-ul {

    margin-bottom: 10px !important;
  }
}

.fieldset-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.fieldset-experience:not(.is-empty) {
  display: none
}

@media (max-width: 999px) {
.fieldset-wrapper {
    display: flex;
    gap: 0 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.fieldset-wrapper .js-form-item{
  width: 100%;
  }

}

.fieldset-experience label {
  font-size: 10px;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: .5rem !important;
}

.form-item--error-message {
  font-size: 13px;
  color: red;
  line-height: 1;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
  margin-top: -10px;
  margin-bottom: 20px;
}

@media (min-width: 481px) {
  .fieldset-experience label {
    font-size: 11px;
  }
}

@media (min-width: 769px) {
  .fieldset-experience label {
    font-size: 12px;
  }
}

#experiences-wrapper .item-list__comma-list,
#educations-wrapper .item-list__comma-list {
  display: none;
}

#experiences-wrapper .alert,
#educations-wrapper .alert {
  color: red;
  line-height: 1;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

#edit-add-education,
#edit-submit--4.btn-confirmer-condidate,
#edit-submit--3.btn-confirmer-condidate,
#edit-add-experience {
  display: none !important;
  ;
}

#edit-submit--4.btn-confirmer-condidate.btn-show,
#edit-submit--3.btn-confirmer-condidate.btn-show {
  display: block !important;
}

.experience-right-text {
  width: 40%;
  text-align: right;
}

.experience-right-text p {
  text-align: right !important;
}

.line-height-1 {
  line-height: 1 !important;
}

.experience-title-container {
  width: 30px;
  position: absolute;
  top: 0;
  right: 15px;
  margin: auto;
  cursor: pointer;
  z-index: 1;
  cursor: pointer;
}

.experience-title-container svg {
  width: 100%;
  height: 100%
}

.latest-jobs-right-btns {
  width: 60%;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.latest-jobs-left-btns {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.wd-55 {
  width: 55%;
}

.wd-45 {
  width: 45%;
}


.forgot-password input {
  outline: 0;
  background: #ffffff !important;
  border: 1px solid #BACAD1;
  border-radius: 5px;
  width: 100%;
  margin: 0 0 15px;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}

.forgot-password .button {
  text-transform: uppercase;
  outline: 0;
  background: #7CCA4D !important;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  border-radius: 5px;
}

.forgot-password .button:hover {
  background: #2699FB !important;
}

.forgot-password p {
  font-size: 13px;
  margin-bottom: 20px;
  color: #354E57;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

.forgot-password label {


  color: #354E57;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

.text-container {
  padding: 0px;
  font-size: 55px;
  color: #707070;
  font-family: "Proxima Nova Rg";
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}

.error-page .button {
  display: flex;
  border: none;
  align-items: center;
  height: 40px;
  background-color: #5E4DDF;
  color: #fff;
  border-radius: 0;
  width: fit-content;
  position: relative;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  color: white;
  font-size: 16px;
  font-family: "Proxima Nova Rg";
  font-weight: bold;
  padding: 0 30px;
  margin: 20Px auto 0;
}

.btn-edit-job a,
.btn-edit-job svg {
  display: block;
}

.btn-edit-job {
  display: flex;
  gap: 5px;
  margin-left: 10px;
  color: #5f6367;
}

.job-imgs img {
  width: 100%;
  height: 100%;
}

.h-120 {
  height: 115px !important;
}

.scrolled .header-transparent-color-container::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(198, 224, 244)), to(rgb(222, 239, 243)));
  background: linear-gradient(180deg, rgb(198, 224, 244) 0%, rgb(222, 239, 243) 100%);
  transition: background 0.3s ease;
  /* Adjust time as needed */
  opacity: 1;

}

.applayed-job {
  background-color: #2699FB;
  color: white;
  border: 1px solid white;
  pointer-events: none;
}

.upload-image {
  position: relative;
  aspect-ratio: 1 / .5;
  aspect-ratio: 1 ;
  cursor: pointer;
}

.upload-image img {
  object-fit: cover;
}

.hidden-input-file {
  display: none !important;
}

.remove-image-uploaded {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 9;
  width: 30px;
  height: 30px;
  display: flex;
  background: #a03132;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 100%;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}

.remove-image-uploaded.active {

  opacity: 1;
  pointer-events: auto;
}

.p-relative {
  position: relative;
}


.success_container a {
  border: none;
  height: 40px;
  background-color: #5E4DDF;
  margin: 20px auto 0;
  border-radius: 0;
  width: fit-content;
  position: relative;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  color: white;
  font-size: 16px;
  font-family: "Proxima Nova Rg";
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 15px;
}

body {
  overflow-x: hidden;
}

.min-w100 {
  width: 100px;
  text-align: right;
}

.btn-select {
  border-radius: 4px;
  padding: 9px 5px !important;
  color: #A6A6A6;
  font-size: 12px;
}

.btn-select:focus-visible,
.btn-select:focus {
  outline: unset;
}

.bg-404 {
  max-width: 250px;
  margin: auto;
  margin-bottom: 30px;
}

.StripeElement {
  outline: 0;
  background: #ffffff !important;
  border: 1px solid #BACAD1;
  border-radius: 5px;
  width: 100%;
  margin: 0 0 15px;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}

.empty-state-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.empty-state-content .emoji {
  font-size: 50px;
}

.selected-user-info {
  display: flex;
  align-items: center;
  padding: 10px;
}

.selected-user-info-left {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  ;
}

.selected-user-info-left img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.selected-user-info-right {
  margin-left: 15px;
}

.chat-options-btn {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}

.chat-options-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}

.gap-price-card {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

@media (min-width: 767px) {
  .gap-price-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

.responsive-gap {
  height: 10vh;
  width: 100%;
  background-color: transparent;
}

.pagination-info {
  background-color: #E1EAEB !important;
  padding: 12px;

}

.pagination-info .info-text {
  font-family: "Proxima Nova Rg";
  font-weight: normal;
  font-size: 14px;
}

.pagination-wrapper .pagination-nav {
  margin-top: 15px;
}

.empty-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
  font-size: 14px;
  padding: 20px;
}

#postDropdown {
  background-color: #7CCA4D;
  color: white !important;
  border-radius: 20px;
  padding: 0px 20px;
  padding-top: 4px;
  padding-bottom: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 20px;
  text-align: center;
  margin-right: 15px !important;
  display: block;
  animation: animate-pulse 3s linear infinite;
  cursor: pointer
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(124 202 77 / 70%), 0 0 0 0 rgb(124 202 77 / 70%);
  }

  40% {
    box-shadow: 0 0 0 20px rgba(255, 109, 74, 0.0), 0 0 0 0 rgb(124 202 77 / 70%);
  }

  80% {
    box-shadow: 0 0 0 20px rgba(255, 109, 74, 0.0), 0 0 0 10px rgba(255, 109, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0.0), 0 0 0 10px rgba(255, 109, 74, 0);
  }

}

.dropdown-menu-post {
  display: none;
  position: absolute;
  top: 35px;
  left: -85px;
  background: white;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 180px;
  border-radius: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.dropdown-menu-post li a {
  padding: 8px 16px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease;

}

@media (max-width: 767px) {

  #postDropdown {

    padding: 6px 20px;
    text-transform: uppercase;
    font-size: 10px;
    margin-right: 5px !important;
    display: flex;
    line-height: 1;
    gap: 5px;
    align-items: center;
    justify-content: center;
  }

  .dropdown-menu-post li a svg {
    height: unset;
    width: 15px;
  }
}

.gap-l-3 {
  gap: 0 15px;
}

.user-annonymous .txt-blur {
  filter: blur(3px);
}

.txt-blur-all {
  filter: blur(3px);
}
.blr-wrp{
  position: relative;
  overflow: hidden;
}
.blr-wrp .blr-img{
  filter: blur(20px);
}
.path-frontpage .btn-account {

  color: #fff;
}

.path-frontpage.scrolled .btn-account {

  color: #000;
}

.header_container .header-left .header-left-list li {
  position: relative;
}

.dropdown-menu-items {
  display: none;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0px);
  padding-top: 10px;
  min-width: 220px;
  border-radius: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}


.dropdown-menu-items-ul {
  background: white;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-radius: 8px;
}

.header_container .header-left .header-left-list li:hover .dropdown-menu-items {
  display: block;
}

.header_container .header-left .header-left-list .dropdown-menu-items li {
  padding: 8px 16px;
  display: block;
  background-color: #fff;
  color: #333 !important;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-right: 0 !important;
}

.header_container .header-left .header-left-list .dropdown-menu-items li a {
  color: #333 !important;
}

.header_container .header-left .header-left-list .dropdown-menu-items li a:hover {
  color: #2699FB !important;
}

.header-left-list li a svg {
  height: unset;
  width: 15px;
}

.upload-error-msg {
  margin-top: 1rem;
}

.dashed-plus-container.add-pdf.green {

  background: #c3eda9;
  color: white;
}

.dashed-plus-container.add-pdf.red {

  background: #ef8c8c;
  color: white;
}


/* Simple toast styles (customize to fit your theme) */
#toast-container {
  position: fixed;
  top: 120px;
  right: 30px;
  z-index: 9999
}

.custom-toast {
  background: #222;
  color: #fff;
  padding: 20px 32px;
  border-radius: 7px;
  margin-bottom: 12px;
  min-width: 200px;
  box-shadow: 0 8px 24px #0002;
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.3s all;
}

.custom-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.custom-toast.success {
  background: #7cca4d;
}

.custom-toast.error {
  background: #9f3131;
}

.custom-toast.warning {
  background: #ff9800;
}

.war-cards-v2 {
  background-color: white;
  border-radius: 5px;
  position: relative;
  padding: 15px;
  display: flex;
  gap: 15px;
  height: 100%;
}

.war-cards-v2-left {
  width: 40%;
  width: 38%;
}

.war-cards-v2-right {
  width: 60%;
}

.activity-card .war-cards-v2-right,
.activity-card .war-cards-v2-left {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.war-cards-v2-left__content__img {
  aspect-ratio: 1;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.cards-v2-title {
  font-size: 12px;
  display: block;
  line-height: 1;
}

.war-cards-v2-left__content__infos {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.color-green {
  display: block;
  margin-top: 4px;
  color: #7ec753;
}

.txt-green {
  color: #7ec753;
}

.color-blue {
  display: block;
  margin-top: 4px;
  color: #2699FB;
}

.war-cards-v2__infos p,
.war-cards-v2__content p {
  font-size: 12px;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
}

.war-cards-v2 hr {
  margin: 10px 0;
}

.war-cards-v2 .title-carde {
  font-size: 16px;
}

.war-cards-v2__btn {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.text-localtion {
  font-size: 14px;
}

.cards-v2__btn {
  margin-top: 15px;
  display: block;
}

@media (min-width: 767px) {
  .cards-v2-title {
    font-size: 15px;
  }

  .war-cards-v2 {

    border-radius: 8px;

    padding: 20px;

    gap: 20px;
  }

  .war-cards-v2__infos p,
  .war-cards-v2__content p {
    font-size: 14px;
  }

  .text-localtion {
    font-size: 16px;
  }

  .war-cards-v2 .title-carde {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 5px;
  }
}

.item-list-status {
  display: flex;
  gap: 5px;
  justify-content: center;
  background-color: #E8E8E8;
  padding: 10px;
  border-radius: 5px;
  flex-direction: column;
}

.item-list-status span {
  font-size: 12px;
}

.title-carde-price {
  font-size: 16px;
}

.war-cards-v2-left__content__infos .item-list span span {
  display: block;
}

.activity-card.war-cards-v2 hr {
  margin: 1px 0;
  border: 0 solid #000;
}

.pr-sale-carde.war-cards-v2 hr {
  margin: 5px 0;
}

@media (min-width: 767px) {
  .title-carde-price {
    width: 70%;
    font-size: 16px;
    text-align: end;
  }
}

.price-on-img {
  padding: 10px;
  text-align: center;
  border-radius: 3px;
  background-color: #fff;
  color: #000;
  position: absolute;
}

.open-job-card-container .war-cards-v2 {
  margin-top: 15px;
}

.has-desc p:not(:last-child) {
  margin-bottom: 10px;
}


.tabs-pricing {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.tabs-pricing:after {
  content: "";
  display: table;
  clear: both;
}

.tabs-pricing input[type=radio] {
  display: none;
}

.tabs-pricing label {
  display: inline-block;
  min-width: 25%;
  flex: 1 1 25%;
  color: #000;
  font-family: "Proxima Nova Rg";
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  /* Safari 3.1 to 6.0 */
  padding: 15px 10px;
  transition: all 0.5s;
}



.tabs-pricing label span {
  font-size: 1rem;
}

.tabs-pricing label:hover {
  color: #3498db;
}

.tabs label:hover .icon {
  border-color: #3498db;
  background-position: 50px 0;
  background-size: 100px 50px;
}

.tabs-pricing .tab__content {
  display: none;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #ffffff;
  margin-top: 0;
  padding: 40px 20px;
}

.tabs-pricing .tab__content * {
  -webkit-animation: scale 0.2s ease-in-out;
  -moz-animation: scale 0.2s ease-in-out;
  animation: scale 0.2s ease-in-out;
}

@keyframes scale {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  50% {
    transform: scale(1.01);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.tabs-pricing [id^=tab]:checked+label {
  background: #FFF;
  color: #3498db;
}

.tabs-pricing [id^=tab]:checked+label i {
  border-color: #3498db;
  background-position: 50px 0;
  background-size: 100px 50px;
}

@media (max-width: 768px) {
  .tabs-pricing label {
    display: inline-block;
    min-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
  }

  .tabs-pricing [id^=tab]:checked+label {
    background: #3498db;
    color: #fff;
  }

  .tabs-pricing [id^=tab]+label {
    background: #fff;
    color: #3498db;
  }

}

@media (min-width: 768px) {
  .tabs-pricing label span {
    display: block;
  }

  .gap-price-card.grid-cols-of-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .gap-price-card.grid-cols-of-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gap-price-card.grid-cols-of-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.tabs-pricing .icon {
  margin-top: 1rem;
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  border: 2px solid #CACFD6;
  background-size: 100px 50px;
  box-sizing: border-box;
}

#tab1:checked~#tab__content--1,
#tab2:checked~#tab__content--2,
#tab3:checked~#tab__content--3,
#tab4:checked~#tab__content--4 {
  display: block;
}

.tabs-pricing .price-card:not(:last-child) {
  border-right: 1px solid #BCE0FD;
}

.tabs-pricing .svg-circle {
  position: relative;
  margin-left: auto;
  top: 0;
  margin-right: auto;
}

.tabs-pricing .grid-cols-of-1 .price-card {
  margin: auto;
}

#change_password_form .form-item--error-message {
  margin-top: 15px;
  left: 0;
  position: absolute;

}

#change_password_form .input-text {

  margin-bottom: 25px !important;
}

.list-tab-menu a {
  border: 2px solid #2599fb;
  border-radius: 21px;
  text-decoration: none;
  color: #2599fb;
  min-width: 129px;
  text-align: left;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 5px 0;
  padding: 4px 15px 4px;
  position: relative;
  text-transform: uppercase;
}

.list-tab-menu li,
.list-tab-menu ul {
  list-style: none;
}

.list-tab-menu a:hover {
  color: #fff;
  background-color: #2599fb;
}

.language-switch-list {
  display: flex;
  gap: 9px;
  justify-content: flex-end;
  align-items: center;
}

.language-switch-list .active {
  opacity: .3;
  pointer-events: none;
}

.language-switch-list a {
  display: block;
  padding: 5px 0;
}

.language-switch-list svg,
.language-switch-list img {
  height: 14px;
  width: auto;
}

.tooltip-warp {
  position: relative;

  cursor: pointer;
}

/* Tooltip text (hidden by default) */
.tooltip-warp .tooltip-text {
  visibility: hidden;
  width: max-content;
  max-width: 500px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px 8px;
  border-radius: 4px;

  /* Positioning */
  position: absolute;
  bottom: 125%;
  /* Above the element */
  right: 0%;
  transform: translateX(0%);

  /* Animation */
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 100;
  pointer-events: none;
  /* Don't interfere with mouse events */
}

/* Tooltip arrow */
.tooltip-warp .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  /* Arrow at the bottom of tooltip */
  right: 0%;
  margin-right: 5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* Show tooltip text on hover */
.tooltip-warp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  font-size: 11px;
}

.active-tabs-nav {
  color: #fff !important;
  background-color: #2599fb !important;
}



@media (min-width: 1024px) {
  .employer-menu-row .menu-row {
    max-width: 65%;
    gap: 5px 20px !important;
  }
}


#popover-wp-close {

  position: fixed;
  background-color: #080808a1;
  top: 0;
  opacity: 0;
  bottom: 0;
  height: 100vh;
  display: none;
  width: 100%;
  z-index: 2;

}

.h-slr {
  display: none !important;
}


.db-is_employer .h-slr {
  display: block !important;
}



/* Container spacing */
.container .alert-warp {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 14px;
  font-family: "Proxima Nova Rg";
  position: relative;
}

/* Error messages */
.alert-error {
  background-color: #ffe6e6;
  color: #b00020;
  border: 1px solid #f5c2c2;
}

/* Warning messages */
.alert-warning {
  background-color: #fff4e5;
  color: #9b5800;
  border: 1px solid #ffddb3;
}

/* Success messages */
.alert-status {
  background-color: #e6ffed;
  color: #007a3d;
  border: 1px solid #c2f0d1;
}

/* Info messages */
.alert-info {
  background-color: #e5f3ff;
  color: #005b99;
  border: 1px solid #b3d8ff;
}

/* List styling for multiple errors */
.error-list {
  list-style: disc inside;
  padding-left: 1rem;
  margin: 0;
}

.error-list li {
  margin-bottom: 0;
  position: relative;
  padding-left: 0;
}

/* Optional: add a small icon before each error item */
.error-list>li::before {
  content: "⚠";
  color: #b00020;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: 5px;
}

/* Inline error messages next to fields */
.container .alert-warp .error {
  color: #b00020;
  font-size: 13px;
  margin-top: 0.25rem;
  display: block;
}

.container .item-list__comma-list a {
  color: #b00020 !important;
}

.iti {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.banner-slider-imgs {
  position: absolute;
  inset: 0;
  height: 75%;
  width: 100%;
}

.banner-slider-imgs::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: #0000003b;
  z-index: 1;
}

.welcome-container-bg {
  position: absolute;
  bottom: 0;
  height: 55%;
  width: 100%;
  background: #000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 46%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.banner-slider-imgs .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-slider-img .slick-list,
.banner-slider-img,
.banner-slider-img .slick-slide img,
.banner-slider-imgs .slick-track {
  height: 100%;
  object-fit: cover;
}

.path-frontpage .color-white {
  color: white !important;
}

.opp-header-container {
  background-color: #FF8400;
  padding: 15px 0;
  font-size: 14px;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
  text-align: center;
}

.text-regist p,
.text-regist {
  text-align: center;
}

.opp-header-container.home-page {

  position: absolute;
  left: 0;
  right: 0;
  top: 90px;
  z-index: 2;
}

.toolbar-horizontal .opp-header-container.home-page {
  top: 90px;
}

.ppup-header-container {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  display: flex;
  top: 0;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: hsl(214deg 93% 12% / 68%);
  z-index: 9999999994;
}

.close-popup {
  position: absolute;
  left: 0;
  cursor: pointer;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
}

.ppup-header-container.active {
  opacity: 1;
  pointer-events: auto;
}

.text-regist-ppip {
  background-color: #FF8400;
  padding: 20px 44Px;
  max-width: 300px;
  border-radius: 30px;
  color: white;
  text-align: center;
}

.has-btn {
  text-align: right;
  display: block;
  color: black;
  margin-bottom: 40px;
  cursor: pointer;
}

.text-regist-ppip p {
  color: black;
  text-align: center;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
  font-size: 16px;
}

.text-regist-ppip .pp {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: .5px;
}

.text-regist-ppip h2 {
  font-weight: normal;
  font-size: 25px;
  letter-spacing: 1px;
  line-height: 1.3;
  font-family: "Dazzle Unicase" !important;

}

.text-regist-ppip .pp {
  margin: 20px 0;
}


.text-regist-ppip a {
  color: black;
  text-align: center;
  font-family: "Proxima Nova Rg";
  font-weight: normal;
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 20px;
  display: block;
}

.welcome-container .slider-items .slick-prev {
  left: -45px !important;
  top: 50% !important;
  z-index: 1000;
}

.welcome-container .slider-items .slick-next {
  right: -15px !important;
  top: 50% !important;
  z-index: 1000;
}


.prices-info-container {
  margin: 1em;
  padding: 1em;
  flex-basis: 500px;
  border: 1px dotted #ccc;
  display: inline-block;
  color: #484848;
}

.prices-info-container del {
  color: rgba(255, 0, 0, 0.5);
  text-decoration: none;
  position: relative;
  display: flex;
  font-size: 19px;
  margin-bottom: 10px;
  align-items: end;
}

.prices-info-container del::before {
  content: " ";
  display: block;
  width: 100%;
  border-top: 2px solid rgba(255, 0, 0, 0.8);
  /* equivalent to "rgba(red, 0.8)" */
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-7deg);
}




.welcome-home-card .slick-slide .tab-btn {

  opacity: 1 !important;
}


.btn-close-popover {
  margin-bottom: 10px;
  display: flex;
  cursor: pointer;
  justify-content: flex-end;
}

.btn-close-popover span {
  color: white;
}

.prices-paragraph span {
  color: black;
}

.form .inp_prices .input-text {
  border-radius: 0 5px 5px 0;
}

.form .inp_prices .input-group-text {
  border-right: 0;
  border: 1px solid #BACAD1;
  border-radius: 5px 0 0 5px;
}

.form .inp_prices .input-group {
  flex-wrap: nowrap;
  margin-bottom: 15px;
  height: 43px;
}

.not-allow {
  pointer-events: none;
  opacity: .4;
}

.experience-item-delete {
  position: absolute;
  right: 45px;
  top: 3px;
}

.experience-item-delete svg {
  width: 21px;
}

.btn-delete-eduction,
.btn-delete-experience {
  background: transparent !important;
}


.flex-btn-action {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.flex-btn-action .has-action {
  display: block;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}

.flex-btn-action .has-action.btn-non-eduction,
.flex-btn-action .has-action.btn-non {
  color: white;
  border: 1px solid white;
}

.flex-btn-action .has-action.btn-yes-eduction,
.flex-btn-action .has-action.btn-yes {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

#languageDropdownMobile,
#languageDropdown {
  display: flex;
  align-items: center;
}

.dropdown-menu-lang {
  display: none;
  position: absolute;
  min-width: 16px;
  overflow: hidden;
  padding: 5px 0 !important;
}

.dropdown-menu-lang a {

  display: block;
}

.dropdown-menu-lang a img {
  display: block;
  width: 30px;

}

.dropdown-menu-lang .dropdown-item.active {
  opacity: .4;
}

.user-logged-in-mobile svg {
  width: 25px;
}

.header-right-login-mobile {
  padding: 3px 4px !important;
}

.header-right-login-mobile.header-right-login a p {
  margin-left: 10px;
}

.btn-language {
  text-transform: uppercase;
  color: black !important;
  font-family: "Proxima Nova Rg";
  font-weight: bold;
}

.path-frontpage .btn-language {
  color: #fff !important;
}

.path-frontpage.scrolled .btn-language {
  color: #000 !important;
}

.dropdown-menu-lang a {
  text-transform: uppercase;
  color: black !important;
  font-family: "Proxima Nova Rg";
  font-weight: bold;
}

.alert-left-infos {
  text-align: left !important;
  padding: 20px !important;
  font-size: 14px;
  margin-bottom: 0 !important;
}

.alert-left-infos.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: .75rem 1.25rem;
  color: inherit;
  font-size: 1.2rem;
  background: transparent;

}

.alert-left-infos.alert-dismissible {
  padding-right: 4rem !important;
}

.alert-left-infos.alert-dismissible .close:hover {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.footer_msgs{
       max-width: 470px;
       margin-left: auto;
       margin-right: auto;
}
.ads-single{
display: block !important;
  }
.btn-colors{
  background: #7CCA4D !important;
}
.btn-colors:hover{
background: #2699FB !important;
}

#form-messages .alert-warp.alert-error{
display: none !important;
  }

  .menu-text-container a{
    text-transform: uppercase !important
    }
    @media (max-width: 700px) {

    .heading-filter .proxima-bold{
      max-width: 10em;
    }
    }




    .messages__wrapper {
      --content-max-width: 1200px;
      --content-max-width: 0px;
      --padding-inline: 15px;
      margin-inline: auto;
      width: min(var(--content-max-width), 100% - var(--padding-inline) * 2);
      width: 100%;
  }

  @media (min-width: 1400px) {
      .messages__wrapper {
          max-width: 1320px;
      }
  }
  @media (min-width: 1200px) {
      .messages__wrapper{
          max-width: 1140px;
      }
  }
  @media (min-width: 768px) {
      .messages__wrapper{
          max-width: 720px;
          max-width: 90%;
      }
  }
  @media (min-width: 576px) {
      .messages__wrapper {
          max-width: 540px;
          max-width: 90%;
      }
  }
  .messages__wrapper {
      --bs-gutter-x: 0;
      --bs-gutter-y: 0;
      width: 100%;
      padding-right: calc(var(--bs-gutter-x) * .5);
      padding-left: calc(var(--bs-gutter-x) * .5);
      margin-right: auto;
      margin-left: auto;
  }

  .profile-desc .profile-left-detail{
    word-break: break-all;
}

.messages.messages--status{
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 14px;
  font-family: "Proxima Nova Rg";
  position: relative;
  background-color: #e6ffed;
  color: #007a3d;
  border: 1px solid #c2f0d1;
}

#page-wrapper{
  position: relative;
  z-index: 1;
}

.header-mobile-list{
  display: flex;
  flex-direction: column;
}
.header-mobile-list > li {
  padding: 15px 40px;
}
.header-mobile-list > li:not(:last-child){
  border-bottom: 1px solid hsl(0deg 0% 0% / 20%);
}
.header-mobile-list > li a{
  display: flex;
    justify-content: space-between;
}
.header-mobile-list > li a svg{
 width: 30px;
}

.dropdown-menu-items-mobile .dropdown-menu-items-ul-mobile{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
 }
 .dropdown-menu-items-mobile.active .dropdown-menu-items-ul-mobile{
  max-height:100%;
  background: transparent !important;
  overflow: hidden;
}

.dropdown-menu-items-mobile.active {
  background: transparent !important;
}
.dropdown-menu-items-ul-mobile li:not(:last-child) {
  margin-bottom: 10px;
}

.header-mobile-list > li a.active svg {
  transform: rotate(180deg);
}
.header-mobile-list > li a.active  {
  background-color: transparent !important;
}

.grid-form-search-warp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.last-items-grid {
  grid-column: 1 / -1;
}

.grid-form-search-warp .ob-hidden{
 position: absolute;
 pointer-events: none;
 z-index: -3;
}

@media (min-width: 776px) {
  .grid-form-search-warp {

    grid-template-columns: repeat(3, 1fr);

  }
}

@media (min-width: 1200px) {
  .grid-form-search-warp {

    grid-template-columns: repeat(7, 1fr);

  }
  .grid-form-search-warp .ob-hidden{
    position: unset;
    pointer-events: none;
    z-index: -3;
   }
   .last-items-grid {
    grid-column: unset;
  }
}

.btn-call-infos img{

    height: 100%;
    width: 54px;
}
.has-gap{
  gap: 5px;
}
.has-gap a{
    background-color: #ab9bcd;
    text-align: center;
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    .has-gap {
        margin-top: 10px;
        margin-right: 10px;
    }
}
@media (min-width: 800px) {
    .has-gap {
        margin-top: 0px;
          gap: 15px;
        margin-right: 0px;
    }
}
.btn-call-infos {
display: block;
    width: 100%;
    margin-left: 0px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.btn-call-infos:hover {
background-color: black;
}


.form-contact-methods label{
  font-family: "Proxima Nova Rg";
  font-weight: bold;
  text-transform: uppercase;
  color: #707070;
  }
.form .button.btn-config{
    background: #7CCA4D !important;
  }
  .form .button.btn-config:hover{
    background: #2699FB !important
  }


.btn-config-path{
  display: none !important;
}
.db-is_seller .btn-config-path,
.db-is_employer .btn-config-path{
  display: block !important;
}

/* Contact Popup Styles */
.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 9999; /* High Z-index to sit on top */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.contact-popup-close:hover,
.contact-popup-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.contact-popup-body {
    width: 100%;
    text-align: center;
}

#contactPopupTitle {
    font-size: 20px;
    margin-bottom: 5px;
}

#contactPopupIntro {
    margin-bottom: 15px;
    text-align: center;
    color: #666;
    font-size: 16px;
}

#contactPopupValue {
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

#copyContactBtn {
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

#copySuccessMsg {
    color: green;
}

.contact-popup-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-popup-body-footer{
display: flex; align-items: center; gap: 10px;
flex-direction: column;
}

#contact-methods-form .input-text{
 margin: 15px 0 !important;
  }
