 :root {--animate-duration: 1s;--animate-delay: 1s;--animate-repeat: 1 }.animate__animated {animation-duration: 1s;animation-duration: var(--animate-duration);animation-fill-mode: both }.animate__animated.animate__infinite {animation-iteration-count: infinite }.animate__animated.animate__repeat-1 {animation-iteration-count: 1;animation-iteration-count: var(--animate-repeat) }.animate__animated.animate__repeat-2 {animation-iteration-count: calc(1 * 2);animation-iteration-count: calc(var(--animate-repeat) * 2) }.animate__animated.animate__repeat-3 {animation-iteration-count: calc(1 * 3);animation-iteration-count: calc(var(--animate-repeat) * 3) }.animate__animated.animate__delay-1s {animation-delay: 1s;animation-delay: var(--animate-delay) }.animate__animated.animate__delay-2s {animation-delay: calc(1s * 2);animation-delay: calc(var(--animate-delay) * 2) }.animate__animated.animate__delay-3s {animation-delay: calc(1s * 3);animation-delay: calc(var(--animate-delay) * 3) }.animate__animated.animate__delay-4s {animation-delay: calc(1s * 4);animation-delay: calc(var(--animate-delay) * 4) }.animate__animated.animate__delay-5s {animation-delay: calc(1s * 5);animation-delay: calc(var(--animate-delay) * 5) }.animate__animated.animate__faster {animation-duration: calc(1s / 2);animation-duration: calc(var(--animate-duration)/ 2) }.animate__animated.animate__fast {animation-duration: calc(1s * .8);animation-duration: calc(var(--animate-duration) * .8) }.animate__animated.animate__slow {animation-duration: calc(1s * 2);animation-duration: calc(var(--animate-duration) * 2) }.animate__animated.animate__slower {animation-duration: calc(1s * 3);animation-duration: calc(var(--animate-duration) * 3) }@media print, (prefers-reduced-motion:reduce) {.animate__animated {animation-duration: 1ms !important;transition-duration: 1ms !important;animation-iteration-count: 1 !important }.animate__animated[class*=Out] {opacity: 0 }}@keyframes bounce {20%, 53%, from, to {animation-timing-function: cubic-bezier(.215, .61, .355, 1);transform: translate3d(0, 0, 0) }40%, 43% {animation-timing-function: cubic-bezier(.755, .05, .855, .06);transform: translate3d(0, -30px, 0) scaleY(1.1) }70% {animation-timing-function: cubic-bezier(.755, .05, .855, .06);transform: translate3d(0, -15px, 0) scaleY(1.05) }80% {transition-timing-function: cubic-bezier(.215, .61, .355, 1);transform: translate3d(0, 0, 0) scaleY(.95) }90% {transform: translate3d(0, -4px, 0) scaleY(1.02) }}.animate__bounce {animation-name: bounce;transform-origin: center bottom }@keyframes flash {50%, from, to {opacity: 1 }25%, 75% {opacity: 0 }}.animate__flash {animation-name: flash }@keyframes pulse {from {transform: scale3d(1, 1, 1) }50% {transform: scale3d(1.05, 1.05, 1.05) }to {transform: scale3d(1, 1, 1) }}.animate__pulse {animation-name: pulse;animation-timing-function: ease-in-out }@keyframes rubberBand {from {transform: scale3d(1, 1, 1) }30% {transform: scale3d(1.25, .75, 1) }40% {transform: scale3d(.75, 1.25, 1) }50% {transform: scale3d(1.15, .85, 1) }65% {transform: scale3d(.95, 1.05, 1) }75% {transform: scale3d(1.05, .95, 1) }to {transform: scale3d(1, 1, 1) }}.animate__rubberBand {animation-name: rubberBand }@keyframes shakeX {from, to {transform: translate3d(0, 0, 0) }10%, 30%, 50%, 70%, 90% {transform: translate3d(-10px, 0, 0) }20%, 40%, 60%, 80% {transform: translate3d(10px, 0, 0) }}.animate__shakeX {animation-name: shakeX }@keyframes shakeY {from, to {transform: translate3d(0, 0, 0) }10%, 30%, 50%, 70%, 90% {transform: translate3d(0, -10px, 0) }20%, 40%, 60%, 80% {transform: translate3d(0, 10px, 0) }}.animate__shakeY {animation-name: shakeY }@keyframes headShake {0% {transform: translateX(0) }6.5% {transform: translateX(-6px) rotateY(-9deg) }18.5% {transform: translateX(5px) rotateY(7deg) }31.5% {transform: translateX(-3px) rotateY(-5deg) }43.5% {transform: translateX(2px) rotateY(3deg) }50% {transform: translateX(0) }}.animate__headShake {animation-timing-function: ease-in-out;animation-name: headShake }@keyframes swing {20% {transform: rotate3d(0, 0, 1, 15deg) }40% {transform: rotate3d(0, 0, 1, -10deg) }60% {transform: rotate3d(0, 0, 1, 5deg) }80% {transform: rotate3d(0, 0, 1, -5deg) }to {transform: rotate3d(0, 0, 1, 0deg) }}.animate__swing {transform-origin: top center;animation-name: swing }@keyframes tada {from {transform: scale3d(1, 1, 1) }10%, 20% {transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg) }30%, 50%, 70%, 90% {transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg) }40%, 60%, 80% {transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg) }to {transform: scale3d(1, 1, 1) }}.animate__tada {animation-name: tada }@keyframes wobble {from {transform: translate3d(0, 0, 0) }15% {transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg) }30% {transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg) }45% {transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg) }60% {transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg) }75% {transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg) }to {transform: translate3d(0, 0, 0) }}.animate__wobble {animation-name: wobble }@keyframes jello {11.1%, from, to {transform: translate3d(0, 0, 0) }22.2% {transform: skewX(-12.5deg) skewY(-12.5deg) }33.3% {transform: skewX(6.25deg) skewY(6.25deg) }44.4% {transform: skewX(-3.125deg) skewY(-3.125deg) }55.5% {transform: skewX(1.5625deg) skewY(1.5625deg) }66.6% {transform: skewX(-.78125deg) skewY(-.78125deg) }77.7% {transform: skewX(.39062deg) skewY(.39062deg) }88.8% {transform: skewX(-.19531deg) skewY(-.19531deg) }}.animate__jello {animation-name: jello;transform-origin: center }@keyframes heartBeat {0% {transform: scale(1) }14% {transform: scale(1.3) }28% {transform: scale(1) }42% {transform: scale(1.3) }70% {transform: scale(1) }}.animate__heartBeat {animation-name: heartBeat;animation-duration: calc(1s * 1.3);animation-duration: calc(var(--animate-duration) * 1.3);animation-timing-function: ease-in-out }@keyframes backInDown {0% {transform: translateY(-1200px) scale(.7);opacity: .7 }80% {transform: translateY(0) scale(.7);opacity: .7 }100% {transform: scale(1);opacity: 1 }}.animate__backInDown {animation-name: backInDown }@keyframes backInLeft {0% {transform: translateX(-2000px) scale(.7);opacity: .7 }80% {transform: translateX(0) scale(.7);opacity: .7 }100% {transform: scale(1);opacity: 1 }}.animate__backInLeft {animation-name: backInLeft }@keyframes backInRight {0% {transform: translateX(2000px) scale(.7);opacity: .7 }80% {transform: translateX(0) scale(.7);opacity: .7 }100% {transform: scale(1);opacity: 1 }}.animate__backInRight {animation-name: backInRight }@keyframes backInUp {0% {transform: translateY(1200px) scale(.7);opacity: .7 }80% {transform: translateY(0) scale(.7);opacity: .7 }100% {transform: scale(1);opacity: 1 }}.animate__backInUp {animation-name: backInUp }@keyframes backOutDown {0% {transform: scale(1);opacity: 1 }20% {transform: translateY(0) scale(.7);opacity: .7 }100% {transform: translateY(700px) scale(.7);opacity: .7 }}.animate__backOutDown {animation-name: backOutDown }@keyframes backOutLeft {0% {transform: scale(1);opacity: 1 }20% {transform: translateX(0) scale(.7);opacity: .7 }100% {transform: translateX(-2000px) scale(.7);opacity: .7 }}.animate__backOutLeft {animation-name: backOutLeft }@keyframes backOutRight {0% {transform: scale(1);opacity: 1 }20% {transform: translateX(0) scale(.7);opacity: .7 }100% {transform: translateX(2000px) scale(.7);opacity: .7 }}.animate__backOutRight {animation-name: backOutRight }@keyframes backOutUp {0% {transform: scale(1);opacity: 1 }20% {transform: translateY(0) scale(.7);opacity: .7 }100% {transform: translateY(-700px) scale(.7);opacity: .7 }}.animate__backOutUp {animation-name: backOutUp }@keyframes bounceIn {20%, 40%, 60%, 80%, from, to {animation-timing-function: cubic-bezier(.215, .61, .355, 1) }0% {opacity: 0;transform: scale3d(.3, .3, .3) }20% {transform: scale3d(1.1, 1.1, 1.1) }40% {transform: scale3d(.9, .9, .9) }60% {opacity: 1;transform: scale3d(1.03, 1.03, 1.03) }80% {transform: scale3d(.97, .97, .97) }to {opacity: 1;transform: scale3d(1, 1, 1) }}.animate__bounceIn {animation-duration: calc(1s * .75);animation-duration: calc(var(--animate-duration) * .75);animation-name: bounceIn }@keyframes bounceInDown {60%, 75%, 90%, from, to {animation-timing-function: cubic-bezier(.215, .61, .355, 1) }0% {opacity: 0;transform: translate3d(0, -3000px, 0) scaleY(3) }60% {opacity: 1;transform: translate3d(0, 25px, 0) scaleY(.9) }75% {transform: translate3d(0, -10px, 0) scaleY(.95) }90% {transform: translate3d(0, 5px, 0) scaleY(.985) }to {transform: translate3d(0, 0, 0) }}.animate__bounceInDown {animation-name: bounceInDown }@keyframes bounceInLeft {60%, 75%, 90%, from, to {animation-timing-function: cubic-bezier(.215, .61, .355, 1) }0% {opacity: 0;transform: translate3d(-3000px, 0, 0) scaleX(3) }60% {opacity: 1;transform: translate3d(25px, 0, 0) scaleX(1) }75% {transform: translate3d(-10px, 0, 0) scaleX(.98) }90% {transform: translate3d(5px, 0, 0) scaleX(.995) }to {transform: translate3d(0, 0, 0) }}.animate__bounceInLeft {animation-name: bounceInLeft }@keyframes bounceInRight {60%, 75%, 90%, from, to {animation-timing-function: cubic-bezier(.215, .61, .355, 1) }from {opacity: 0;transform: translate3d(3000px, 0, 0) scaleX(3) }60% {opacity: 1;transform: translate3d(-25px, 0, 0) scaleX(1) }75% {transform: translate3d(10px, 0, 0) scaleX(.98) }90% {transform: translate3d(-5px, 0, 0) scaleX(.995) }to {transform: translate3d(0, 0, 0) }}.animate__bounceInRight {animation-name: bounceInRight }@keyframes bounceInUp {60%, 75%, 90%, from, to {animation-timing-function: cubic-bezier(.215, .61, .355, 1) }from {opacity: 0;transform: translate3d(0, 3000px, 0) scaleY(5) }60% {opacity: 1;transform: translate3d(0, -20px, 0) scaleY(.9) }75% {transform: translate3d(0, 10px, 0) scaleY(.95) }90% {transform: translate3d(0, -5px, 0) scaleY(.985) }to {transform: translate3d(0, 0, 0) }}.animate__bounceInUp {animation-name: bounceInUp }@keyframes bounceOut {20% {transform: scale3d(.9, .9, .9) }50%, 55% {opacity: 1;transform: scale3d(1.1, 1.1, 1.1) }to {opacity: 0;transform: scale3d(.3, .3, .3) }}.animate__bounceOut {animation-duration: calc(1s * .75);animation-duration: calc(var(--animate-duration) * .75);animation-name: bounceOut }@keyframes bounceOutDown {20% {transform: translate3d(0, 10px, 0) scaleY(.985) }40%, 45% {opacity: 1;transform: translate3d(0, -20px, 0) scaleY(.9) }to {opacity: 0;transform: translate3d(0, 2000px, 0) scaleY(3) }}.animate__bounceOutDown {animation-name: bounceOutDown }@keyframes bounceOutLeft {20% {opacity: 1;transform: translate3d(20px, 0, 0) scaleX(.9) }to {opacity: 0;transform: translate3d(-2000px, 0, 0) scaleX(2) }}.animate__bounceOutLeft {animation-name: bounceOutLeft }@keyframes bounceOutRight {20% {opacity: 1;transform: translate3d(-20px, 0, 0) scaleX(.9) }to {opacity: 0;transform: translate3d(2000px, 0, 0) scaleX(2) }}.animate__bounceOutRight {animation-name: bounceOutRight }@keyframes bounceOutUp {20% {transform: translate3d(0, -10px, 0) scaleY(.985) }40%, 45% {opacity: 1;transform: translate3d(0, 20px, 0) scaleY(.9) }to {opacity: 0;transform: translate3d(0, -2000px, 0) scaleY(3) }}.animate__bounceOutUp {animation-name: bounceOutUp }@keyframes fadeIn {from {opacity: 0 }to {opacity: 1 }}.animate__fadeIn {animation-name: fadeIn }@keyframes fadeInDown {from {opacity: 0;transform: translate3d(0, -100%, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInDown {animation-name: fadeInDown }@keyframes fadeInDownBig {from {opacity: 0;transform: translate3d(0, -2000px, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInDownBig {animation-name: fadeInDownBig }@keyframes fadeInLeft {from {opacity: 0;transform: translate3d(-100%, 0, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInLeft {animation-name: fadeInLeft }@keyframes fadeInLeftBig {from {opacity: 0;transform: translate3d(-2000px, 0, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInLeftBig {animation-name: fadeInLeftBig }@keyframes fadeInRight {from {opacity: 0;transform: translate3d(100%, 0, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInRight {animation-name: fadeInRight }@keyframes fadeInRightBig {from {opacity: 0;transform: translate3d(2000px, 0, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInRightBig {animation-name: fadeInRightBig }@keyframes fadeInUp {from {opacity: 0;transform: translate3d(0, 100%, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInUp {animation-name: fadeInUp }@keyframes fadeInUpBig {from {opacity: 0;transform: translate3d(0, 2000px, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInUpBig {animation-name: fadeInUpBig }@keyframes fadeInTopLeft {from {opacity: 0;transform: translate3d(-100%, -100%, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInTopLeft {animation-name: fadeInTopLeft }@keyframes fadeInTopRight {from {opacity: 0;transform: translate3d(100%, -100%, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInTopRight {animation-name: fadeInTopRight }@keyframes fadeInBottomLeft {from {opacity: 0;transform: translate3d(-100%, 100%, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInBottomLeft {animation-name: fadeInBottomLeft }@keyframes fadeInBottomRight {from {opacity: 0;transform: translate3d(100%, 100%, 0) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__fadeInBottomRight {animation-name: fadeInBottomRight }@keyframes fadeOut {from {opacity: 1 }to {opacity: 0 }}.animate__fadeOut {animation-name: fadeOut }@keyframes fadeOutDown {from {opacity: 1 }to {opacity: 0;transform: translate3d(0, 100%, 0) }}.animate__fadeOutDown {animation-name: fadeOutDown }@keyframes fadeOutDownBig {from {opacity: 1 }to {opacity: 0;transform: translate3d(0, 2000px, 0) }}.animate__fadeOutDownBig {animation-name: fadeOutDownBig }@keyframes fadeOutLeft {from {opacity: 1 }to {opacity: 0;transform: translate3d(-100%, 0, 0) }}.animate__fadeOutLeft {animation-name: fadeOutLeft }@keyframes fadeOutLeftBig {from {opacity: 1 }to {opacity: 0;transform: translate3d(-2000px, 0, 0) }}.animate__fadeOutLeftBig {animation-name: fadeOutLeftBig }@keyframes fadeOutRight {from {opacity: 1 }to {opacity: 0;transform: translate3d(100%, 0, 0) }}.animate__fadeOutRight {animation-name: fadeOutRight }@keyframes fadeOutRightBig {from {opacity: 1 }to {opacity: 0;transform: translate3d(2000px, 0, 0) }}.animate__fadeOutRightBig {animation-name: fadeOutRightBig }@keyframes fadeOutUp {from {opacity: 1 }to {opacity: 0;transform: translate3d(0, -100%, 0) }}.animate__fadeOutUp {animation-name: fadeOutUp }@keyframes fadeOutUpBig {from {opacity: 1 }to {opacity: 0;transform: translate3d(0, -2000px, 0) }}.animate__fadeOutUpBig {animation-name: fadeOutUpBig }@keyframes fadeOutTopLeft {from {opacity: 1;transform: translate3d(0, 0, 0) }to {opacity: 0;transform: translate3d(-100%, -100%, 0) }}.animate__fadeOutTopLeft {animation-name: fadeOutTopLeft }@keyframes fadeOutTopRight {from {opacity: 1;transform: translate3d(0, 0, 0) }to {opacity: 0;transform: translate3d(100%, -100%, 0) }}.animate__fadeOutTopRight {animation-name: fadeOutTopRight }@keyframes fadeOutBottomRight {from {opacity: 1;transform: translate3d(0, 0, 0) }to {opacity: 0;transform: translate3d(100%, 100%, 0) }}.animate__fadeOutBottomRight {animation-name: fadeOutBottomRight }@keyframes fadeOutBottomLeft {from {opacity: 1;transform: translate3d(0, 0, 0) }to {opacity: 0;transform: translate3d(-100%, 100%, 0) }}.animate__fadeOutBottomLeft {animation-name: fadeOutBottomLeft }@keyframes flip {from {transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);animation-timing-function: ease-out }40% {transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);animation-timing-function: ease-out }50% {transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);animation-timing-function: ease-in }80% {transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);animation-timing-function: ease-in }to {transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);animation-timing-function: ease-in }}.animate__animated.animate__flip {-webkit-backface-visibility: visible;backface-visibility: visible;animation-name: flip }@keyframes flipInX {from {transform: perspective(400px) rotate3d(1, 0, 0, 90deg);animation-timing-function: ease-in;opacity: 0 }40% {transform: perspective(400px) rotate3d(1, 0, 0, -20deg);animation-timing-function: ease-in }60% {transform: perspective(400px) rotate3d(1, 0, 0, 10deg);opacity: 1 }80% {transform: perspective(400px) rotate3d(1, 0, 0, -5deg) }to {transform: perspective(400px) }}.animate__flipInX {-webkit-backface-visibility: visible !important;backface-visibility: visible !important;animation-name: flipInX }@keyframes flipInY {from {transform: perspective(400px) rotate3d(0, 1, 0, 90deg);animation-timing-function: ease-in;opacity: 0 }40% {transform: perspective(400px) rotate3d(0, 1, 0, -20deg);animation-timing-function: ease-in }60% {transform: perspective(400px) rotate3d(0, 1, 0, 10deg);opacity: 1 }80% {transform: perspective(400px) rotate3d(0, 1, 0, -5deg) }to {transform: perspective(400px) }}.animate__flipInY {-webkit-backface-visibility: visible !important;backface-visibility: visible !important;animation-name: flipInY }@keyframes flipOutX {from {transform: perspective(400px) }30% {transform: perspective(400px) rotate3d(1, 0, 0, -20deg);opacity: 1 }to {transform: perspective(400px) rotate3d(1, 0, 0, 90deg);opacity: 0 }}.animate__flipOutX {animation-duration: calc(1s * .75);animation-duration: calc(var(--animate-duration) * .75);animation-name: flipOutX;-webkit-backface-visibility: visible !important;backface-visibility: visible !important }@keyframes flipOutY {from {transform: perspective(400px) }30% {transform: perspective(400px) rotate3d(0, 1, 0, -15deg);opacity: 1 }to {transform: perspective(400px) rotate3d(0, 1, 0, 90deg);opacity: 0 }}.animate__flipOutY {animation-duration: calc(1s * .75);animation-duration: calc(var(--animate-duration) * .75);-webkit-backface-visibility: visible !important;backface-visibility: visible !important;animation-name: flipOutY }@keyframes lightSpeedInRight {from {transform: translate3d(100%, 0, 0) skewX(-30deg);opacity: 0 }60% {transform: skewX(20deg);opacity: 1 }80% {transform: skewX(-5deg) }to {transform: translate3d(0, 0, 0) }}.animate__lightSpeedInRight {animation-name: lightSpeedInRight;animation-timing-function: ease-out }@keyframes lightSpeedInLeft {from {transform: translate3d(-100%, 0, 0) skewX(30deg);opacity: 0 }60% {transform: skewX(-20deg);opacity: 1 }80% {transform: skewX(5deg) }to {transform: translate3d(0, 0, 0) }}.animate__lightSpeedInLeft {animation-name: lightSpeedInLeft;animation-timing-function: ease-out }@keyframes lightSpeedOutRight {from {opacity: 1 }to {transform: translate3d(100%, 0, 0) skewX(30deg);opacity: 0 }}.animate__lightSpeedOutRight {animation-name: lightSpeedOutRight;animation-timing-function: ease-in }@keyframes lightSpeedOutLeft {from {opacity: 1 }to {transform: translate3d(-100%, 0, 0) skewX(-30deg);opacity: 0 }}.animate__lightSpeedOutLeft {animation-name: lightSpeedOutLeft;animation-timing-function: ease-in }@keyframes rotateIn {from {transform: rotate3d(0, 0, 1, -200deg);opacity: 0 }to {transform: translate3d(0, 0, 0);opacity: 1 }}.animate__rotateIn {animation-name: rotateIn;transform-origin: center }@keyframes rotateInDownLeft {from {transform: rotate3d(0, 0, 1, -45deg);opacity: 0 }to {transform: translate3d(0, 0, 0);opacity: 1 }}.animate__rotateInDownLeft {animation-name: rotateInDownLeft;transform-origin: left bottom }@keyframes rotateInDownRight {from {transform: rotate3d(0, 0, 1, 45deg);opacity: 0 }to {transform: translate3d(0, 0, 0);opacity: 1 }}.animate__rotateInDownRight {animation-name: rotateInDownRight;transform-origin: right bottom }@keyframes rotateInUpLeft {from {transform: rotate3d(0, 0, 1, 45deg);opacity: 0 }to {transform: translate3d(0, 0, 0);opacity: 1 }}.animate__rotateInUpLeft {animation-name: rotateInUpLeft;transform-origin: left bottom }@keyframes rotateInUpRight {from {transform: rotate3d(0, 0, 1, -90deg);opacity: 0 }to {transform: translate3d(0, 0, 0);opacity: 1 }}.animate__rotateInUpRight {animation-name: rotateInUpRight;transform-origin: right bottom }@keyframes rotateOut {from {opacity: 1 }to {transform: rotate3d(0, 0, 1, 200deg);opacity: 0 }}.animate__rotateOut {animation-name: rotateOut;transform-origin: center }@keyframes rotateOutDownLeft {from {opacity: 1 }to {transform: rotate3d(0, 0, 1, 45deg);opacity: 0 }}.animate__rotateOutDownLeft {animation-name: rotateOutDownLeft;transform-origin: left bottom }@keyframes rotateOutDownRight {from {opacity: 1 }to {transform: rotate3d(0, 0, 1, -45deg);opacity: 0 }}.animate__rotateOutDownRight {animation-name: rotateOutDownRight;transform-origin: right bottom }@keyframes rotateOutUpLeft {from {opacity: 1 }to {transform: rotate3d(0, 0, 1, -45deg);opacity: 0 }}.animate__rotateOutUpLeft {animation-name: rotateOutUpLeft;transform-origin: left bottom }@keyframes rotateOutUpRight {from {opacity: 1 }to {transform: rotate3d(0, 0, 1, 90deg);opacity: 0 }}.animate__rotateOutUpRight {animation-name: rotateOutUpRight;transform-origin: right bottom }@keyframes hinge {0% {animation-timing-function: ease-in-out }20%, 60% {transform: rotate3d(0, 0, 1, 80deg);animation-timing-function: ease-in-out }40%, 80% {transform: rotate3d(0, 0, 1, 60deg);animation-timing-function: ease-in-out;opacity: 1 }to {transform: translate3d(0, 700px, 0);opacity: 0 }}.animate__hinge {animation-duration: calc(1s * 2);animation-duration: calc(var(--animate-duration) * 2);animation-name: hinge;transform-origin: top left }@keyframes jackInTheBox {from {opacity: 0;transform: scale(.1) rotate(30deg);transform-origin: center bottom }50% {transform: rotate(-10deg) }70% {transform: rotate(3deg) }to {opacity: 1;transform: scale(1) }}.animate__jackInTheBox {animation-name: jackInTheBox }@keyframes rollIn {from {opacity: 0;transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg) }to {opacity: 1;transform: translate3d(0, 0, 0) }}.animate__rollIn {animation-name: rollIn }@keyframes rollOut {from {opacity: 1 }to {opacity: 0;transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg) }}.animate__rollOut {animation-name: rollOut }@keyframes zoomIn {from {opacity: 0;transform: scale3d(.3, .3, .3) }50% {opacity: 1 }}.animate__zoomIn {animation-name: zoomIn }@keyframes zoomInDown {from {opacity: 0;transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);animation-timing-function: cubic-bezier(.55, .055, .675, .19) }60% {opacity: 1;transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);animation-timing-function: cubic-bezier(.175, .885, .32, 1) }}.animate__zoomInDown {animation-name: zoomInDown }@keyframes zoomInLeft {from {opacity: 0;transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);animation-timing-function: cubic-bezier(.55, .055, .675, .19) }60% {opacity: 1;transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);animation-timing-function: cubic-bezier(.175, .885, .32, 1) }}.animate__zoomInLeft {animation-name: zoomInLeft }@keyframes zoomInRight {from {opacity: 0;transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);animation-timing-function: cubic-bezier(.55, .055, .675, .19) }60% {opacity: 1;transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);animation-timing-function: cubic-bezier(.175, .885, .32, 1) }}.animate__zoomInRight {animation-name: zoomInRight }@keyframes zoomInUp {from {opacity: 0;transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);animation-timing-function: cubic-bezier(.55, .055, .675, .19) }60% {opacity: 1;transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);animation-timing-function: cubic-bezier(.175, .885, .32, 1) }}.animate__zoomInUp {animation-name: zoomInUp }@keyframes zoomOut {from {opacity: 1 }50% {opacity: 0;transform: scale3d(.3, .3, .3) }to {opacity: 0 }}.animate__zoomOut {animation-name: zoomOut }@keyframes zoomOutDown {40% {opacity: 1;transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);animation-timing-function: cubic-bezier(.55, .055, .675, .19) }to {opacity: 0;transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);animation-timing-function: cubic-bezier(.175, .885, .32, 1) }}.animate__zoomOutDown {animation-name: zoomOutDown;transform-origin: center bottom }@keyframes zoomOutLeft {40% {opacity: 1;transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0) }to {opacity: 0;transform: scale(.1) translate3d(-2000px, 0, 0) }}.animate__zoomOutLeft {animation-name: zoomOutLeft;transform-origin: left center }@keyframes zoomOutRight {40% {opacity: 1;transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0) }to {opacity: 0;transform: scale(.1) translate3d(2000px, 0, 0) }}.animate__zoomOutRight {animation-name: zoomOutRight;transform-origin: right center }@keyframes zoomOutUp {40% {opacity: 1;transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);animation-timing-function: cubic-bezier(.55, .055, .675, .19) }to {opacity: 0;transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);animation-timing-function: cubic-bezier(.175, .885, .32, 1) }}.animate__zoomOutUp {animation-name: zoomOutUp;transform-origin: center bottom }@keyframes slideInDown {from {transform: translate3d(0, -100%, 0);visibility: visible }to {transform: translate3d(0, 0, 0) }}.animate__slideInDown {animation-name: slideInDown }@keyframes slideInLeft {from {transform: translate3d(-100%, 0, 0);visibility: visible }to {transform: translate3d(0, 0, 0) }}.animate__slideInLeft {animation-name: slideInLeft }@keyframes slideInRight {from {transform: translate3d(100%, 0, 0);visibility: visible }to {transform: translate3d(0, 0, 0) }}.animate__slideInRight {animation-name: slideInRight }@keyframes slideInUp {from {transform: translate3d(0, 100%, 0);visibility: visible }to {transform: translate3d(0, 0, 0) }}.animate__slideInUp {animation-name: slideInUp }@keyframes slideOutDown {from {transform: translate3d(0, 0, 0) }to {visibility: hidden;transform: translate3d(0, 100%, 0) }}.animate__slideOutDown {animation-name: slideOutDown }@keyframes slideOutLeft {from {transform: translate3d(0, 0, 0) }to {visibility: hidden;transform: translate3d(-100%, 0, 0) }}.animate__slideOutLeft {animation-name: slideOutLeft }@keyframes slideOutRight {from {transform: translate3d(0, 0, 0) }to {visibility: hidden;transform: translate3d(100%, 0, 0) }}.animate__slideOutRight {animation-name: slideOutRight }@keyframes slideOutUp {from {transform: translate3d(0, 0, 0) }to {visibility: hidden;transform: translate3d(0, -100%, 0) }}.animate__slideOutUp {animation-name: slideOutUp }:root {--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #DF252A;--orange: #fd7e14;--yellow: #ffc107;--green: #1BB161;--teal: #20c997;--cyan: #17a2b8;--white: #ffffff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #DF252A;--success: #1BB161;--info: #17a2b8;--warning: #ffc107;--danger: #DF252A;--light: #f8f9fa;--dark: #1a1a19;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace }*, ::after, ::before {box-sizing: border-box }html {font-family: sans-serif;line-height: 1.15;-webkit-text-size-adjust: 100%;-webkit-tap-highlight-color: transparent }article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {display: block }body {margin: 0;font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size: 1rem;font-weight: 400;line-height: 1.5;color: #212529;text-align: left;background-color: #fff }[tabindex="-1"]:focus:not(:focus-visible) {outline: 0 !important }hr {box-sizing: content-box;height: 0;overflow: visible }h1, h2, h3, h4, h5, h6 {margin-top: 0;margin-bottom: .5rem }p {margin-top: 0;margin-bottom: 1rem }abbr[data-original-title], abbr[title] {text-decoration: underline;text-decoration: underline dotted;cursor: help;border-bottom: 0;text-decoration-skip-ink: none }address {margin-bottom: 1rem;font-style: normal;line-height: inherit }dl, ol, ul {margin-top: 0;margin-bottom: 1rem }ol ol, ol ul, ul ol, ul ul {margin-bottom: 0 }dt {font-weight: 700 }dd {margin-bottom: .5rem;margin-left: 0 }blockquote {margin: 0 0 1rem }b, strong {font-weight: bolder }small {font-size: 80% }sub, sup {position: relative;font-size: 75%;line-height: 0;vertical-align: baseline }sub {bottom: -.25em }sup {top: -.5em }a {color: #007bff;text-decoration: none;background-color: transparent }a:hover {color: #0056b3;text-decoration: underline }a:not([href]):not([class]) {color: inherit;text-decoration: none }a:not([href]):not([class]):hover {color: inherit;text-decoration: none }code, kbd, pre, samp {font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size: 1em }pre {margin-top: 0;margin-bottom: 1rem;overflow: auto;-ms-overflow-style: scrollbar }figure {margin: 0 0 1rem }img {vertical-align: middle;border-style: none }svg {overflow: hidden;vertical-align: middle }table {border-collapse: collapse }caption {padding-top: .75rem;padding-bottom: .75rem;color: #6c757d;text-align: left;caption-side: bottom }th {text-align: inherit;text-align: -webkit-match-parent }label {display: inline-block;margin-bottom: .5rem }button {border-radius: 0 }button:focus {outline: 1px dotted;outline: 5px auto -webkit-focus-ring-color }button, input, optgroup, select, textarea {margin: 0;font-family: inherit;font-size: inherit;line-height: inherit }button, input {overflow: visible }button, select {text-transform: none }[role=button] {cursor: pointer }select {word-wrap: normal }[type=button], [type=reset], [type=submit], button {-webkit-appearance: button }[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {cursor: pointer }[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {padding: 0;border-style: none }input[type=checkbox], input[type=radio] {box-sizing: border-box;padding: 0 }textarea {overflow: auto;resize: vertical }fieldset {min-width: 0;padding: 0;margin: 0;border: 0 }legend {display: block;width: 100%;max-width: 100%;padding: 0;margin-bottom: .5rem;font-size: 1.5rem;line-height: inherit;color: inherit;white-space: normal }progress {vertical-align: baseline }[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {height: auto }[type=search] {outline-offset: -2px;-webkit-appearance: none }[type=search]::-webkit-search-decoration {-webkit-appearance: none }::-webkit-file-upload-button {font: inherit;-webkit-appearance: button }output {display: inline-block }summary {display: list-item;cursor: pointer }template {display: none }[hidden] {display: none !important }.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {margin-bottom: .5rem;font-weight: 500;line-height: 1.2 }.h1, h1 {font-size: 2.5rem }.h2, h2 {font-size: 2rem }.h3, h3 {font-size: 1.75rem }.h4, h4 {font-size: 1.5rem }.h5, h5 {font-size: 1.25rem }.h6, h6 {font-size: 1rem }.lead {font-size: 1.25rem;font-weight: 300 }.display-1 {font-size: 6rem;font-weight: 300;line-height: 1.2 }.display-2 {font-size: 5.5rem;font-weight: 300;line-height: 1.2 }.display-3 {font-size: 4.5rem;font-weight: 300;line-height: 1.2 }.display-4 {font-size: 3.5rem;font-weight: 300;line-height: 1.2 }hr {margin-top: 1rem;margin-bottom: 1rem;border: 0;border-top: 1px solid rgba(0, 0, 0, .1) }.small, small {font-size: 80%;font-weight: 400 }.mark, mark {padding: .2em;background-color: #fcf8e3 }.list-unstyled {padding-left: 0;list-style: none }.list-inline {padding-left: 0;list-style: none }.list-inline-item {display: inline-block }.list-inline-item:not(:last-child) {margin-right: .5rem }.initialism {font-size: 90%;text-transform: uppercase }.blockquote {margin-bottom: 1rem;font-size: 1.25rem }.blockquote-footer {display: block;font-size: 80%;color: #6c757d }.blockquote-footer::before {content: "\2014\00A0" }.img-fluid {max-width: 100%;height: auto }.img-thumbnail {padding: .25rem;background-color: #fff;border: 1px solid #dee2e6;border-radius: .25rem;max-width: 100%;height: auto }.figure {display: inline-block }.figure-img {margin-bottom: .5rem;line-height: 1 }.figure-caption {font-size: 90%;color: #6c757d }code {font-size: 87.5%;color: #e83e8c;word-wrap: break-word }a > code {color: inherit }kbd {padding: .2rem .4rem;font-size: 87.5%;color: #fff;background-color: #212529;border-radius: .2rem }kbd kbd {padding: 0;font-size: 100%;font-weight: 700 }pre {display: block;font-size: 87.5%;color: #212529 }pre code {font-size: inherit;color: inherit;word-break: normal }.pre-scrollable {max-height: 340px;overflow-y: scroll }.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {width: 100%;padding-right: 15px;padding-left: 15px;margin-right: auto;margin-left: auto }@media (min-width:576px) {.container, .container-sm {max-width: 540px }}@media (min-width:768px) {.container, .container-md, .container-sm {max-width: 720px }}@media (min-width:992px) {.container, .container-lg, .container-md, .container-sm {max-width: 960px }}@media (min-width:1200px) {.container, .container-lg, .container-md, .container-sm, .container-xl {max-width: 1140px }}.row {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;margin-right: -15px;margin-left: -15px }.no-gutters {margin-right: 0;margin-left: 0 }.no-gutters > .col, .no-gutters > [class*=col-] {padding-right: 0;padding-left: 0 }.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {position: relative;width: 100%;padding-right: 15px;padding-left: 15px }.col {-ms-flex-preferred-size: 0;flex-basis: 0;-ms-flex-positive: 1;flex-grow: 1;max-width: 100% }.row-cols-1 > * {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100% }.row-cols-2 > * {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50% }.row-cols-3 > * {-ms-flex: 0 0 33.33333%;flex: 0 0 33.33333%;max-width: 33.33333% }.row-cols-4 > * {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25% }.row-cols-5 > * {-ms-flex: 0 0 20%;flex: 0 0 20%;max-width: 20% }.row-cols-6 > * {-ms-flex: 0 0 16.66667%;flex: 0 0 16.66667%;max-width: 16.66667% }.col-auto {-ms-flex: 0 0 auto;flex: 0 0 auto;width: auto;max-width: 100% }.col-1 {-ms-flex: 0 0 8.33333%;flex: 0 0 8.33333%;max-width: 8.33333% }.col-2 {-ms-flex: 0 0 16.66667%;flex: 0 0 16.66667%;max-width: 16.66667% }.col-3 {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25% }.col-4 {-ms-flex: 0 0 33.33333%;flex: 0 0 33.33333%;max-width: 33.33333% }.col-5 {-ms-flex: 0 0 41.66667%;flex: 0 0 41.66667%;max-width: 41.66667% }.col-6 {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50% }.col-7 {-ms-flex: 0 0 58.33333%;flex: 0 0 58.33333%;max-width: 58.33333% }.col-8 {-ms-flex: 0 0 66.66667%;flex: 0 0 66.66667%;max-width: 66.66667% }.col-9 {-ms-flex: 0 0 75%;flex: 0 0 75%;max-width: 75% }.col-10 {-ms-flex: 0 0 83.33333%;flex: 0 0 83.33333%;max-width: 83.33333% }.col-11 {-ms-flex: 0 0 91.66667%;flex: 0 0 91.66667%;max-width: 91.66667% }.col-12 {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100% }.order-first {-ms-flex-order: -1;order: -1 }.order-last {-ms-flex-order: 13;order: 13 }.order-0 {-ms-flex-order: 0;order: 0 }.order-1 {-ms-flex-order: 1;order: 1 }.order-2 {-ms-flex-order: 2;order: 2 }.order-3 {-ms-flex-order: 3;order: 3 }.order-4 {-ms-flex-order: 4;order: 4 }.order-5 {-ms-flex-order: 5;order: 5 }.order-6 {-ms-flex-order: 6;order: 6 }.order-7 {-ms-flex-order: 7;order: 7 }.order-8 {-ms-flex-order: 8;order: 8 }.order-9 {-ms-flex-order: 9;order: 9 }.order-10 {-ms-flex-order: 10;order: 10 }.order-11 {-ms-flex-order: 11;order: 11 }.order-12 {-ms-flex-order: 12;order: 12 }.offset-1 {margin-left: 8.33333% }.offset-2 {margin-left: 16.66667% }.offset-3 {margin-left: 25% }.offset-4 {margin-left: 33.33333% }.offset-5 {margin-left: 41.66667% }.offset-6 {margin-left: 50% }.offset-7 {margin-left: 58.33333% }.offset-8 {margin-left: 66.66667% }.offset-9 {margin-left: 75% }.offset-10 {margin-left: 83.33333% }.offset-11 {margin-left: 91.66667% }@media (min-width:576px) {.col-sm {-ms-flex-preferred-size: 0;flex-basis: 0;-ms-flex-positive: 1;flex-grow: 1;max-width: 100% }.row-cols-sm-1 > * {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100% }.row-cols-sm-2 > * {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50% }.row-cols-sm-3 > * {-ms-flex: 0 0 33.33333%;flex: 0 0 33.33333%;max-width: 33.33333% }.row-cols-sm-4 > * {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25% }.row-cols-sm-5 > * {-ms-flex: 0 0 20%;flex: 0 0 20%;max-width: 20% }.row-cols-sm-6 > * {-ms-flex: 0 0 16.66667%;flex: 0 0 16.66667%;max-width: 16.66667% }.col-sm-auto {-ms-flex: 0 0 auto;flex: 0 0 auto;width: auto;max-width: 100% }.col-sm-1 {-ms-flex: 0 0 8.33333%;flex: 0 0 8.33333%;max-width: 8.33333% }.col-sm-2 {-ms-flex: 0 0 16.66667%;flex: 0 0 16.66667%;max-width: 16.66667% }.col-sm-3 {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25% }.col-sm-4 {-ms-flex: 0 0 33.33333%;flex: 0 0 33.33333%;max-width: 33.33333% }.col-sm-5 {-ms-flex: 0 0 41.66667%;flex: 0 0 41.66667%;max-width: 41.66667% }.col-sm-6 {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50% }.col-sm-7 {-ms-flex: 0 0 58.33333%;flex: 0 0 58.33333%;max-width: 58.33333% }.col-sm-8 {-ms-flex: 0 0 66.66667%;flex: 0 0 66.66667%;max-width: 66.66667% }.col-sm-9 {-ms-flex: 0 0 75%;flex: 0 0 75%;max-width: 75% }.col-sm-10 {-ms-flex: 0 0 83.33333%;flex: 0 0 83.33333%;max-width: 83.33333% }.col-sm-11 {-ms-flex: 0 0 91.66667%;flex: 0 0 91.66667%;max-width: 91.66667% }.col-sm-12 {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100% }.order-sm-first {-ms-flex-order: -1;order: -1 }.order-sm-last {-ms-flex-order: 13;order: 13 }.order-sm-0 {-ms-flex-order: 0;order: 0 }.order-sm-1 {-ms-flex-order: 1;order: 1 }.order-sm-2 {-ms-flex-order: 2;order: 2 }.order-sm-3 {-ms-flex-order: 3;order: 3 }.order-sm-4 {-ms-flex-order: 4;order: 4 }.order-sm-5 {-ms-flex-order: 5;order: 5 }.order-sm-6 {-ms-flex-order: 6;order: 6 }.order-sm-7 {-ms-flex-order: 7;order: 7 }.order-sm-8 {-ms-flex-order: 8;order: 8 }.order-sm-9 {-ms-flex-order: 9;order: 9 }.order-sm-10 {-ms-flex-order: 10;order: 10 }.order-sm-11 {-ms-flex-order: 11;order: 11 }.order-sm-12 {-ms-flex-order: 12;order: 12 }.offset-sm-0 {margin-left: 0 }.offset-sm-1 {margin-left: 8.33333% }.offset-sm-2 {margin-left: 16.66667% }.offset-sm-3 {margin-left: 25% }.offset-sm-4 {margin-left: 33.33333% }.offset-sm-5 {margin-left: 41.66667% }.offset-sm-6 {margin-left: 50% }.offset-sm-7 {margin-left: 58.33333% }.offset-sm-8 {margin-left: 66.66667% }.offset-sm-9 {margin-left: 75% }.offset-sm-10 {margin-left: 83.33333% }.offset-sm-11 {margin-left: 91.66667% }}@media (min-width:768px) {.col-md {-ms-flex-preferred-size: 0;flex-basis: 0;-ms-flex-positive: 1;flex-grow: 1;max-width: 100% }.row-cols-md-1 > * {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100% }.row-cols-md-2 > * {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50% }.row-cols-md-3 > * {-ms-flex: 0 0 33.33333%;flex: 0 0 33.33333%;max-width: 33.33333% }.row-cols-md-4 > * {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25% }.row-cols-md-5 > * {-ms-flex: 0 0 20%;flex: 0 0 20%;max-width: 20% }.row-cols-md-6 > * {-ms-flex: 0 0 16.66667%;flex: 0 0 16.66667%;max-width: 16.66667% }.col-md-auto {-ms-flex: 0 0 auto;flex: 0 0 auto;width: auto;max-width: 100% }.col-md-1 {-ms-flex: 0 0 8.33333%;flex: 0 0 8.33333%;max-width: 8.33333% }.col-md-2 {-ms-flex: 0 0 16.66667%;flex: 0 0 16.66667%;max-width: 16.66667% }.col-md-3 {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25% }.col-md-4 {-ms-flex: 0 0 33.33333%;flex: 0 0 33.33333%;max-width: 33.33333% }.col-md-5 {-ms-flex: 0 0 41.66667%;flex: 0 0 41.66667%;max-width: 41.66667% }.col-md-6 {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50% }.col-md-7 {-ms-flex: 0 0 58.33333%;flex: 0 0 58.33333%;max-width: 58.33333% }.col-md-8 {-ms-flex: 0 0 66.66667%;flex: 0 0 66.66667%;max-width: 66.66667% }.col-md-9 {-ms-flex: 0 0 75%;flex: 0 0 75%;max-width: 75% }.col-md-10 {-ms-flex: 0 0 83.33333%;flex: 0 0 83.33333%;max-width: 83.33333% }.col-md-11 {-ms-flex: 0 0 91.66667%;flex: 0 0 91.66667%;max-width: 91.66667% }.col-md-12 {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100% }.order-md-first {-ms-flex-order: -1;order: -1 }.order-md-last {-ms-flex-order: 13;order: 13 }.order-md-0 {-ms-flex-order: 0;order: 0 }.order-md-1 {-ms-flex-order: 1;order: 1 }.order-md-2 {-ms-flex-order: 2;order: 2 }.order-md-3 {-ms-flex-order: 3;order: 3 }.order-md-4 {-ms-flex-order: 4;order: 4 }.order-md-5 {-ms-flex-order: 5;order: 5 }.order-md-6 {-ms-flex-order: 6;order: 6 }.order-md-7 {-ms-flex-order: 7;order: 7 }.order-md-8 {-ms-flex-order: 8;order: 8 }.order-md-9 {-ms-flex-order: 9;order: 9 }.order-md-10 {-ms-flex-order: 10;order: 10 }.order-md-11 {-ms-flex-order: 11;order: 11 }.order-md-12 {-ms-flex-order: 12;order: 12 }.offset-md-0 {margin-left: 0 }.offset-md-1 {margin-left: 8.33333% }.offset-md-2 {margin-left: 16.66667% }.offset-md-3 {margin-left: 25% }.offset-md-4 {margin-left: 33.33333% }.offset-md-5 {margin-left: 41.66667% }.offset-md-6 {margin-left: 50% }.offset-md-7 {margin-left: 58.33333% }.offset-md-8 {margin-left: 66.66667% }.offset-md-9 {margin-left: 75% }.offset-md-10 {margin-left: 83.33333% }.offset-md-11 {margin-left: 91.66667% }}@media (min-width:992px) {.col-lg {-ms-flex-preferred-size: 0;flex-basis: 0;-ms-flex-positive: 1;flex-grow: 1;max-width: 100% }.row-cols-lg-1 > * {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100% }.row-cols-lg-2 > * {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50% }.row-cols-lg-3 > * {-ms-flex: 0 0 33.33333%;flex: 0 0 33.33333%;max-width: 33.33333% }.row-cols-lg-4 > * {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25% }.row-cols-lg-5 > * {-ms-flex: 0 0 20%;flex: 0 0 20%;max-width: 20% }.row-cols-lg-6 > * {-ms-flex: 0 0 16.66667%;flex: 0 0 16.66667%;max-width: 16.66667% }.col-lg-auto {-ms-flex: 0 0 auto;flex: 0 0 auto;width: auto;max-width: 100% }.col-lg-1 {-ms-flex: 0 0 8.33333%;flex: 0 0 8.33333%;max-width: 8.33333% }.col-lg-2 {-ms-flex: 0 0 16.66667%;flex: 0 0 16.66667%;max-width: 16.66667% }.col-lg-3 {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25% }.col-lg-4 {-ms-flex: 0 0 33.33333%;flex: 0 0 33.33333%;max-width: 33.33333% }.col-lg-5 {-ms-flex: 0 0 41.66667%;flex: 0 0 41.66667%;max-width: 41.66667% }.col-lg-6 {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50% }.col-lg-7 {-ms-flex: 0 0 58.33333%;flex: 0 0 58.33333%;max-width: 58.33333% }.col-lg-8 {-ms-flex: 0 0 66.66667%;flex: 0 0 66.66667%;max-width: 66.66667% }.col-lg-9 {-ms-flex: 0 0 75%;flex: 0 0 75%;max-width: 75% }.col-lg-10 {-ms-flex: 0 0 83.33333%;flex: 0 0 83.33333%;max-width: 83.33333% }.col-lg-11 {-ms-flex: 0 0 91.66667%;flex: 0 0 91.66667%;max-width: 91.66667% }.col-lg-12 {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100% }.order-lg-first {-ms-flex-order: -1;order: -1 }.order-lg-last {-ms-flex-order: 13;order: 13 }.order-lg-0 {-ms-flex-order: 0;order: 0 }.order-lg-1 {-ms-flex-order: 1;order: 1 }.order-lg-2 {-ms-flex-order: 2;order: 2 }.order-lg-3 {-ms-flex-order: 3;order: 3 }.order-lg-4 {-ms-flex-order: 4;order: 4 }.order-lg-5 {-ms-flex-order: 5;order: 5 }.order-lg-6 {-ms-flex-order: 6;order: 6 }.order-lg-7 {-ms-flex-order: 7;order: 7 }.order-lg-8 {-ms-flex-order: 8;order: 8 }.order-lg-9 {-ms-flex-order: 9;order: 9 }.order-lg-10 {-ms-flex-order: 10;order: 10 }.order-lg-11 {-ms-flex-order: 11;order: 11 }.order-lg-12 {-ms-flex-order: 12;order: 12 }.offset-lg-0 {margin-left: 0 }.offset-lg-1 {margin-left: 8.33333% }.offset-lg-2 {margin-left: 16.66667% }.offset-lg-3 {margin-left: 25% }.offset-lg-4 {margin-left: 33.33333% }.offset-lg-5 {margin-left: 41.66667% }.offset-lg-6 {margin-left: 50% }.offset-lg-7 {margin-left: 58.33333% }.offset-lg-8 {margin-left: 66.66667% }.offset-lg-9 {margin-left: 75% }.offset-lg-10 {margin-left: 83.33333% }.offset-lg-11 {margin-left: 91.66667% }}@media (min-width:1200px) {.col-xl {-ms-flex-preferred-size: 0;flex-basis: 0;-ms-flex-positive: 1;flex-grow: 1;max-width: 100% }.row-cols-xl-1 > * {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100% }.row-cols-xl-2 > * {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50% }.row-cols-xl-3 > * {-ms-flex: 0 0 33.33333%;flex: 0 0 33.33333%;max-width: 33.33333% }.row-cols-xl-4 > * {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25% }.row-cols-xl-5 > * {-ms-flex: 0 0 20%;flex: 0 0 20%;max-width: 20% }.row-cols-xl-6 > * {-ms-flex: 0 0 16.66667%;flex: 0 0 16.66667%;max-width: 16.66667% }.col-xl-auto {-ms-flex: 0 0 auto;flex: 0 0 auto;width: auto;max-width: 100% }.col-xl-1 {-ms-flex: 0 0 8.33333%;flex: 0 0 8.33333%;max-width: 8.33333% }.col-xl-2 {-ms-flex: 0 0 16.66667%;flex: 0 0 16.66667%;max-width: 16.66667% }.col-xl-3 {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25% }.col-xl-4 {-ms-flex: 0 0 33.33333%;flex: 0 0 33.33333%;max-width: 33.33333% }.col-xl-5 {-ms-flex: 0 0 41.66667%;flex: 0 0 41.66667%;max-width: 41.66667% }.col-xl-6 {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50% }.col-xl-7 {-ms-flex: 0 0 58.33333%;flex: 0 0 58.33333%;max-width: 58.33333% }.col-xl-8 {-ms-flex: 0 0 66.66667%;flex: 0 0 66.66667%;max-width: 66.66667% }.col-xl-9 {-ms-flex: 0 0 75%;flex: 0 0 75%;max-width: 75% }.col-xl-10 {-ms-flex: 0 0 83.33333%;flex: 0 0 83.33333%;max-width: 83.33333% }.col-xl-11 {-ms-flex: 0 0 91.66667%;flex: 0 0 91.66667%;max-width: 91.66667% }.col-xl-12 {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100% }.order-xl-first {-ms-flex-order: -1;order: -1 }.order-xl-last {-ms-flex-order: 13;order: 13 }.order-xl-0 {-ms-flex-order: 0;order: 0 }.order-xl-1 {-ms-flex-order: 1;order: 1 }.order-xl-2 {-ms-flex-order: 2;order: 2 }.order-xl-3 {-ms-flex-order: 3;order: 3 }.order-xl-4 {-ms-flex-order: 4;order: 4 }.order-xl-5 {-ms-flex-order: 5;order: 5 }.order-xl-6 {-ms-flex-order: 6;order: 6 }.order-xl-7 {-ms-flex-order: 7;order: 7 }.order-xl-8 {-ms-flex-order: 8;order: 8 }.order-xl-9 {-ms-flex-order: 9;order: 9 }.order-xl-10 {-ms-flex-order: 10;order: 10 }.order-xl-11 {-ms-flex-order: 11;order: 11 }.order-xl-12 {-ms-flex-order: 12;order: 12 }.offset-xl-0 {margin-left: 0 }.offset-xl-1 {margin-left: 8.33333% }.offset-xl-2 {margin-left: 16.66667% }.offset-xl-3 {margin-left: 25% }.offset-xl-4 {margin-left: 33.33333% }.offset-xl-5 {margin-left: 41.66667% }.offset-xl-6 {margin-left: 50% }.offset-xl-7 {margin-left: 58.33333% }.offset-xl-8 {margin-left: 66.66667% }.offset-xl-9 {margin-left: 75% }.offset-xl-10 {margin-left: 83.33333% }.offset-xl-11 {margin-left: 91.66667% }}.table {width: 100%;margin-bottom: 1rem;color: #212529 }.table td, .table th {padding: .75rem;vertical-align: top;border-top: 1px solid #dee2e6 }.table thead th {vertical-align: bottom;border-bottom: 2px solid #dee2e6 }.table tbody + tbody {border-top: 2px solid #dee2e6 }.table-sm td, .table-sm th {padding: .3rem }.table-bordered {border: 1px solid #dee2e6 }.table-bordered td, .table-bordered th {border: 1px solid #dee2e6 }.table-bordered thead td, .table-bordered thead th {border-bottom-width: 2px }.table-borderless tbody + tbody, .table-borderless td, .table-borderless th, .table-borderless thead th {border: 0 }.table-striped tbody tr:nth-of-type(odd) {background-color: rgba(0, 0, 0, .05) }.table-hover tbody tr:hover {color: #212529;background-color: rgba(0, 0, 0, .075) }.table-primary, .table-primary > td, .table-primary > th {background-color: #b8daff }.table-primary tbody + tbody, .table-primary td, .table-primary th, .table-primary thead th {border-color: #7abaff }.table-hover .table-primary:hover {background-color: #9fcdff }.table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th {background-color: #9fcdff }.table-secondary, .table-secondary > td, .table-secondary > th {background-color: #f6c2c3 }.table-secondary tbody + tbody, .table-secondary td, .table-secondary th, .table-secondary thead th {border-color: #ee8e90 }.table-hover .table-secondary:hover {background-color: #f3acad }.table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th {background-color: #f3acad }.table-success, .table-success > td, .table-success > th {background-color: #bfe9d3 }.table-success tbody + tbody, .table-success td, .table-success th, .table-success thead th {border-color: #88d6ad }.table-hover .table-success:hover {background-color: #ace2c6 }.table-hover .table-success:hover > td, .table-hover .table-success:hover > th {background-color: #ace2c6 }.table-info, .table-info > td, .table-info > th {background-color: #bee5eb }.table-info tbody + tbody, .table-info td, .table-info th, .table-info thead th {border-color: #86cfda }.table-hover .table-info:hover {background-color: #abdde5 }.table-hover .table-info:hover > td, .table-hover .table-info:hover > th {background-color: #abdde5 }.table-warning, .table-warning > td, .table-warning > th {background-color: #ffeeba }.table-warning tbody + tbody, .table-warning td, .table-warning th, .table-warning thead th {border-color: #ffdf7e }.table-hover .table-warning:hover {background-color: #ffe8a1 }.table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th {background-color: #ffe8a1 }.table-danger, .table-danger > td, .table-danger > th {background-color: #f6c2c3 }.table-danger tbody + tbody, .table-danger td, .table-danger th, .table-danger thead th {border-color: #ee8e90 }.table-hover .table-danger:hover {background-color: #f3acad }.table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th {background-color: #f3acad }.table-light, .table-light > td, .table-light > th {background-color: #fdfdfe }.table-light tbody + tbody, .table-light td, .table-light th, .table-light thead th {border-color: #fbfcfc }.table-hover .table-light:hover {background-color: #ececf6 }.table-hover .table-light:hover > td, .table-hover .table-light:hover > th {background-color: #ececf6 }.table-dark, .table-dark > td, .table-dark > th {background-color: #bfbfbf }.table-dark tbody + tbody, .table-dark td, .table-dark th, .table-dark thead th {border-color: #888887 }.table-hover .table-dark:hover {background-color: #b2b2b2 }.table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th {background-color: #b2b2b2 }.table-active, .table-active > td, .table-active > th {background-color: rgba(0, 0, 0, .075) }.table-hover .table-active:hover {background-color: rgba(0, 0, 0, .075) }.table-hover .table-active:hover > td, .table-hover .table-active:hover > th {background-color: rgba(0, 0, 0, .075) }.table .thead-dark th {color: #fff;background-color: #343a40;border-color: #454d55 }.table .thead-light th {color: #495057;background-color: #e9ecef;border-color: #dee2e6 }.table-dark {color: #fff;background-color: #343a40 }.table-dark td, .table-dark th, .table-dark thead th {border-color: #454d55 }.table-dark.table-bordered {border: 0 }.table-dark.table-striped tbody tr:nth-of-type(odd) {background-color: rgba(255, 255, 255, .05) }.table-dark.table-hover tbody tr:hover {color: #fff;background-color: rgba(255, 255, 255, .075) }@media (max-width:575.98px) {.table-responsive-sm {display: block;width: 100%;overflow-x: auto;-webkit-overflow-scrolling: touch }.table-responsive-sm > .table-bordered {border: 0 }}@media (max-width:767.98px) {.table-responsive-md {display: block;width: 100%;overflow-x: auto;-webkit-overflow-scrolling: touch }.table-responsive-md > .table-bordered {border: 0 }}@media (max-width:991.98px) {.table-responsive-lg {display: block;width: 100%;overflow-x: auto;-webkit-overflow-scrolling: touch }.table-responsive-lg > .table-bordered {border: 0 }}@media (max-width:1199.98px) {.table-responsive-xl {display: block;width: 100%;overflow-x: auto;-webkit-overflow-scrolling: touch }.table-responsive-xl > .table-bordered {border: 0 }}.table-responsive {display: block;width: 100%;overflow-x: auto;-webkit-overflow-scrolling: touch }.table-responsive > .table-bordered {border: 0 }.form-control {display: block;width: 100%;height: calc(1.5em + .75rem + 2px);padding: .375rem .75rem;font-size: 1rem;font-weight: 400;line-height: 1.5;color: #495057;background-color: #fff;background-clip: padding-box;border: 1px solid #ced4da;border-radius: .25rem;transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out }@media (prefers-reduced-motion:reduce) {.form-control {transition: none }}.form-control::-ms-expand {background-color: transparent;border: 0 }.form-control:-moz-focusring {color: transparent;text-shadow: 0 0 0 #495057 }.form-control:focus {color: #495057;background-color: #fff;border-color: #80bdff;outline: 0;box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) }.form-control:-ms-input-placeholder {color: #6c757d;opacity: 1 }.form-control::placeholder {color: #6c757d;opacity: 1 }.form-control:disabled, .form-control[readonly] {background-color: #e9ecef;opacity: 1 }input[type=date].form-control, input[type=datetime-local].form-control, input[type=month].form-control, input[type=time].form-control {-webkit-appearance: none;-moz-appearance: none;appearance: none }select.form-control:focus::-ms-value {color: #495057;background-color: #fff }.form-control-file, .form-control-range {display: block;width: 100% }.col-form-label {padding-top: calc(.375rem + 1px);padding-bottom: calc(.375rem + 1px);margin-bottom: 0;font-size: inherit;line-height: 1.5 }.col-form-label-lg {padding-top: calc(.5rem + 1px);padding-bottom: calc(.5rem + 1px);font-size: 1.25rem;line-height: 1.5 }.col-form-label-sm {padding-top: calc(.25rem + 1px);padding-bottom: calc(.25rem + 1px);font-size: .875rem;line-height: 1.5 }.form-control-plaintext {display: block;width: 100%;padding: .375rem 0;margin-bottom: 0;font-size: 1rem;line-height: 1.5;color: #212529;background-color: transparent;border: solid transparent;border-width: 1px 0 }.form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm {padding-right: 0;padding-left: 0 }.form-control-sm {height: calc(1.5em + .5rem + 2px);padding: .25rem .5rem;font-size: .875rem;line-height: 1.5;border-radius: .2rem }.form-control-lg {height: calc(1.5em + 1rem + 2px);padding: .5rem 1rem;font-size: 1.25rem;line-height: 1.5;border-radius: .3rem }select.form-control[multiple], select.form-control[size] {height: auto }textarea.form-control {height: auto }.form-group {margin-bottom: 1rem }.form-text {display: block;margin-top: .25rem }.form-row {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;margin-right: -5px;margin-left: -5px }.form-row > .col, .form-row > [class*=col-] {padding-right: 5px;padding-left: 5px }.form-check {position: relative;display: block;padding-left: 1.25rem }.form-check-input {position: absolute;margin-top: .3rem;margin-left: -1.25rem }.form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {color: #6c757d }.form-check-label {margin-bottom: 0 }.form-check-inline {display: -ms-inline-flexbox;display: inline-flex;-ms-flex-align: center;align-items: center;padding-left: 0;margin-right: .75rem }.form-check-inline .form-check-input {position: static;margin-top: 0;margin-right: .3125rem;margin-left: 0 }.valid-feedback {display: none;width: 100%;margin-top: .25rem;font-size: 80%;color: #1bb161 }.valid-tooltip {position: absolute;top: 100%;left: 0;z-index: 5;display: none;max-width: 100%;padding: .25rem .5rem;margin-top: .1rem;font-size: .875rem;line-height: 1.5;color: #fff;background-color: rgba(27, 177, 97, .9);border-radius: .25rem }.is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip, .was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip {display: block }.form-control.is-valid, .was-validated .form-control:valid {border-color: #1bb161;padding-right: calc(1.5em + .75rem);background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%231BB161' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat: no-repeat;background-position: right calc(.375em + .1875rem) center;background-size: calc(.75em + .375rem) calc(.75em + .375rem) }.form-control.is-valid:focus, .was-validated .form-control:valid:focus {border-color: #1bb161;box-shadow: 0 0 0 .2rem rgba(27, 177, 97, .25) }.was-validated textarea.form-control:valid, textarea.form-control.is-valid {padding-right: calc(1.5em + .75rem);background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem) }.custom-select.is-valid, .was-validated .custom-select:valid {border-color: #1bb161;padding-right: calc(.75em + 2.3125rem);background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%231BB161' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) }.custom-select.is-valid:focus, .was-validated .custom-select:valid:focus {border-color: #1bb161;box-shadow: 0 0 0 .2rem rgba(27, 177, 97, .25) }.form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {color: #1bb161 }.form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip, .was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip {display: block }.custom-control-input.is-valid ~ .custom-control-label, .was-validated .custom-control-input:valid ~ .custom-control-label {color: #1bb161 }.custom-control-input.is-valid ~ .custom-control-label::before, .was-validated .custom-control-input:valid ~ .custom-control-label::before {border-color: #1bb161 }.custom-control-input.is-valid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {border-color: #22dd79;background-color: #22dd79 }.custom-control-input.is-valid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before {box-shadow: 0 0 0 .2rem rgba(27, 177, 97, .25) }.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before, .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before {border-color: #1bb161 }.custom-file-input.is-valid ~ .custom-file-label, .was-validated .custom-file-input:valid ~ .custom-file-label {border-color: #1bb161 }.custom-file-input.is-valid:focus ~ .custom-file-label, .was-validated .custom-file-input:valid:focus ~ .custom-file-label {border-color: #1bb161;box-shadow: 0 0 0 .2rem rgba(27, 177, 97, .25) }.invalid-feedback {display: none;width: 100%;margin-top: .25rem;font-size: 80%;color: #df252a }.invalid-tooltip {position: absolute;top: 100%;left: 0;z-index: 5;display: none;max-width: 100%;padding: .25rem .5rem;margin-top: .1rem;font-size: .875rem;line-height: 1.5;color: #fff;background-color: rgba(223, 37, 42, .9);border-radius: .25rem }.is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip, .was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip {display: block }.form-control.is-invalid, .was-validated .form-control:invalid {border-color: #df252a;padding-right: calc(1.5em + .75rem);background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23DF252A' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23DF252A' stroke='none'/%3e%3c/svg%3e");background-repeat: no-repeat;background-position: right calc(.375em + .1875rem) center;background-size: calc(.75em + .375rem) calc(.75em + .375rem) }.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {border-color: #df252a;box-shadow: 0 0 0 .2rem rgba(223, 37, 42, .25) }.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {padding-right: calc(1.5em + .75rem);background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem) }.custom-select.is-invalid, .was-validated .custom-select:invalid {border-color: #df252a;padding-right: calc(.75em + 2.3125rem);background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23DF252A' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23DF252A' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) }.custom-select.is-invalid:focus, .was-validated .custom-select:invalid:focus {border-color: #df252a;box-shadow: 0 0 0 .2rem rgba(223, 37, 42, .25) }.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {color: #df252a }.form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip, .was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip {display: block }.custom-control-input.is-invalid ~ .custom-control-label, .was-validated .custom-control-input:invalid ~ .custom-control-label {color: #df252a }.custom-control-input.is-invalid ~ .custom-control-label::before, .was-validated .custom-control-input:invalid ~ .custom-control-label::before {border-color: #df252a }.custom-control-input.is-invalid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before {border-color: #e65155;background-color: #e65155 }.custom-control-input.is-invalid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before {box-shadow: 0 0 0 .2rem rgba(223, 37, 42, .25) }.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before {border-color: #df252a }.custom-file-input.is-invalid ~ .custom-file-label, .was-validated .custom-file-input:invalid ~ .custom-file-label {border-color: #df252a }.custom-file-input.is-invalid:focus ~ .custom-file-label, .was-validated .custom-file-input:invalid:focus ~ .custom-file-label {border-color: #df252a;box-shadow: 0 0 0 .2rem rgba(223, 37, 42, .25) }.form-inline {display: -ms-flexbox;display: flex;-ms-flex-flow: row wrap;flex-flow: row wrap;-ms-flex-align: center;align-items: center }.form-inline .form-check {width: 100% }@media (min-width:576px) {.form-inline label {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;margin-bottom: 0 }.form-inline .form-group {display: -ms-flexbox;display: flex;-ms-flex: 0 0 auto;flex: 0 0 auto;-ms-flex-flow: row wrap;flex-flow: row wrap;-ms-flex-align: center;align-items: center;margin-bottom: 0 }.form-inline .form-control {display: inline-block;width: auto;vertical-align: middle }.form-inline .form-control-plaintext {display: inline-block }.form-inline .custom-select, .form-inline .input-group {width: auto }.form-inline .form-check {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;width: auto;padding-left: 0 }.form-inline .form-check-input {position: relative;-ms-flex-negative: 0;flex-shrink: 0;margin-top: 0;margin-right: .25rem;margin-left: 0 }.form-inline .custom-control {-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }.form-inline .custom-control-label {margin-bottom: 0 }}.btn {display: inline-block;font-weight: 400;color: #212529;text-align: center;vertical-align: middle;-webkit-user-select: none;-ms-user-select: none;user-select: none;background-color: transparent;border: 1px solid transparent;padding: .375rem .75rem;font-size: 1rem;line-height: 1.5;border-radius: .25rem;transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out }@media (prefers-reduced-motion:reduce) {.btn {transition: none }}.btn:hover {color: #212529;text-decoration: none }.btn.focus, .btn:focus {outline: 0;box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) }.btn.disabled, .btn:disabled {opacity: .65 }.btn:not(:disabled):not(.disabled) {cursor: pointer }a.btn.disabled, fieldset:disabled a.btn {pointer-events: none }.btn-primary {color: #fff;background-color: #007bff;border-color: #007bff }.btn-primary:hover {color: #fff;background-color: #0069d9;border-color: #0062cc }.btn-primary.focus, .btn-primary:focus {color: #fff;background-color: #0069d9;border-color: #0062cc;box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5) }.btn-primary.disabled, .btn-primary:disabled {color: #fff;background-color: #007bff;border-color: #007bff }.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {color: #fff;background-color: #0062cc;border-color: #005cbf }.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5) }.btn-secondary {color: #fff;background-color: #df252a;border-color: #df252a }.btn-secondary:hover {color: #fff;background-color: #c11c21;border-color: #b61b1f }.btn-secondary.focus, .btn-secondary:focus {color: #fff;background-color: #c11c21;border-color: #b61b1f;box-shadow: 0 0 0 .2rem rgba(228, 70, 74, .5) }.btn-secondary.disabled, .btn-secondary:disabled {color: #fff;background-color: #df252a;border-color: #df252a }.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {color: #fff;background-color: #b61b1f;border-color: #ab191d }.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(228, 70, 74, .5) }.btn-success {color: #fff;background-color: #1bb161;border-color: #1bb161 }.btn-success:hover {color: #fff;background-color: #16904f;border-color: #148549 }.btn-success.focus, .btn-success:focus {color: #fff;background-color: #16904f;border-color: #148549;box-shadow: 0 0 0 .2rem rgba(61, 189, 121, .5) }.btn-success.disabled, .btn-success:disabled {color: #fff;background-color: #1bb161;border-color: #1bb161 }.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show > .btn-success.dropdown-toggle {color: #fff;background-color: #148549;border-color: #137a43 }.btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show > .btn-success.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(61, 189, 121, .5) }.btn-info {color: #fff;background-color: #17a2b8;border-color: #17a2b8 }.btn-info:hover {color: #fff;background-color: #138496;border-color: #117a8b }.btn-info.focus, .btn-info:focus {color: #fff;background-color: #138496;border-color: #117a8b;box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5) }.btn-info.disabled, .btn-info:disabled {color: #fff;background-color: #17a2b8;border-color: #17a2b8 }.btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show > .btn-info.dropdown-toggle {color: #fff;background-color: #117a8b;border-color: #10707f }.btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus, .show > .btn-info.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5) }.btn-warning {color: #212529;background-color: #ffc107;border-color: #ffc107 }.btn-warning:hover {color: #212529;background-color: #e0a800;border-color: #d39e00 }.btn-warning.focus, .btn-warning:focus {color: #212529;background-color: #e0a800;border-color: #d39e00;box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5) }.btn-warning.disabled, .btn-warning:disabled {color: #212529;background-color: #ffc107;border-color: #ffc107 }.btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show > .btn-warning.dropdown-toggle {color: #212529;background-color: #d39e00;border-color: #c69500 }.btn-warning:not(:disabled):not(.disabled).active:focus, .btn-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-warning.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5) }.btn-danger {color: #fff;background-color: #df252a;border-color: #df252a }.btn-danger:hover {color: #fff;background-color: #c11c21;border-color: #b61b1f }.btn-danger.focus, .btn-danger:focus {color: #fff;background-color: #c11c21;border-color: #b61b1f;box-shadow: 0 0 0 .2rem rgba(228, 70, 74, .5) }.btn-danger.disabled, .btn-danger:disabled {color: #fff;background-color: #df252a;border-color: #df252a }.btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show > .btn-danger.dropdown-toggle {color: #fff;background-color: #b61b1f;border-color: #ab191d }.btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-danger.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(228, 70, 74, .5) }.btn-light {color: #212529;background-color: #f8f9fa;border-color: #f8f9fa }.btn-light:hover {color: #212529;background-color: #e2e6ea;border-color: #dae0e5 }.btn-light.focus, .btn-light:focus {color: #212529;background-color: #e2e6ea;border-color: #dae0e5;box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5) }.btn-light.disabled, .btn-light:disabled {color: #212529;background-color: #f8f9fa;border-color: #f8f9fa }.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle {color: #212529;background-color: #dae0e5;border-color: #d3d9df }.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show > .btn-light.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5) }.btn-dark {color: #fff;background-color: #1a1a19;border-color: #1a1a19 }.btn-dark:hover {color: #fff;background-color: #070706;border-color: #000 }.btn-dark.focus, .btn-dark:focus {color: #fff;background-color: #070706;border-color: #000;box-shadow: 0 0 0 .2rem rgba(60, 60, 60, .5) }.btn-dark.disabled, .btn-dark:disabled {color: #fff;background-color: #1a1a19;border-color: #1a1a19 }.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show > .btn-dark.dropdown-toggle {color: #fff;background-color: #000;border-color: #000 }.btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-dark.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(60, 60, 60, .5) }.btn-outline-primary {color: #007bff;border-color: #007bff }.btn-outline-primary:hover {color: #fff;background-color: #007bff;border-color: #007bff }.btn-outline-primary.focus, .btn-outline-primary:focus {box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) }.btn-outline-primary.disabled, .btn-outline-primary:disabled {color: #007bff;background-color: transparent }.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle {color: #fff;background-color: #007bff;border-color: #007bff }.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) }.btn-outline-secondary {color: #df252a;border-color: #df252a }.btn-outline-secondary:hover {color: #fff;background-color: #df252a;border-color: #df252a }.btn-outline-secondary.focus, .btn-outline-secondary:focus {box-shadow: 0 0 0 .2rem rgba(223, 37, 42, .5) }.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {color: #df252a;background-color: transparent }.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show > .btn-outline-secondary.dropdown-toggle {color: #fff;background-color: #df252a;border-color: #df252a }.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(223, 37, 42, .5) }.btn-outline-success {color: #1bb161;border-color: #1bb161 }.btn-outline-success:hover {color: #fff;background-color: #1bb161;border-color: #1bb161 }.btn-outline-success.focus, .btn-outline-success:focus {box-shadow: 0 0 0 .2rem rgba(27, 177, 97, .5) }.btn-outline-success.disabled, .btn-outline-success:disabled {color: #1bb161;background-color: transparent }.btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active, .show > .btn-outline-success.dropdown-toggle {color: #fff;background-color: #1bb161;border-color: #1bb161 }.btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-success.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(27, 177, 97, .5) }.btn-outline-info {color: #17a2b8;border-color: #17a2b8 }.btn-outline-info:hover {color: #fff;background-color: #17a2b8;border-color: #17a2b8 }.btn-outline-info.focus, .btn-outline-info:focus {box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) }.btn-outline-info.disabled, .btn-outline-info:disabled {color: #17a2b8;background-color: transparent }.btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show > .btn-outline-info.dropdown-toggle {color: #fff;background-color: #17a2b8;border-color: #17a2b8 }.btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-info.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) }.btn-outline-warning {color: #ffc107;border-color: #ffc107 }.btn-outline-warning:hover {color: #212529;background-color: #ffc107;border-color: #ffc107 }.btn-outline-warning.focus, .btn-outline-warning:focus {box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) }.btn-outline-warning.disabled, .btn-outline-warning:disabled {color: #ffc107;background-color: transparent }.btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show > .btn-outline-warning.dropdown-toggle {color: #212529;background-color: #ffc107;border-color: #ffc107 }.btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) }.btn-outline-danger {color: #df252a;border-color: #df252a }.btn-outline-danger:hover {color: #fff;background-color: #df252a;border-color: #df252a }.btn-outline-danger.focus, .btn-outline-danger:focus {box-shadow: 0 0 0 .2rem rgba(223, 37, 42, .5) }.btn-outline-danger.disabled, .btn-outline-danger:disabled {color: #df252a;background-color: transparent }.btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active, .show > .btn-outline-danger.dropdown-toggle {color: #fff;background-color: #df252a;border-color: #df252a }.btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(223, 37, 42, .5) }.btn-outline-light {color: #f8f9fa;border-color: #f8f9fa }.btn-outline-light:hover {color: #212529;background-color: #f8f9fa;border-color: #f8f9fa }.btn-outline-light.focus, .btn-outline-light:focus {box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) }.btn-outline-light.disabled, .btn-outline-light:disabled {color: #f8f9fa;background-color: transparent }.btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show > .btn-outline-light.dropdown-toggle {color: #212529;background-color: #f8f9fa;border-color: #f8f9fa }.btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-light.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) }.btn-outline-dark {color: #1a1a19;border-color: #1a1a19 }.btn-outline-dark:hover {color: #fff;background-color: #1a1a19;border-color: #1a1a19 }.btn-outline-dark.focus, .btn-outline-dark:focus {box-shadow: 0 0 0 .2rem rgba(26, 26, 25, .5) }.btn-outline-dark.disabled, .btn-outline-dark:disabled {color: #1a1a19;background-color: transparent }.btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .show > .btn-outline-dark.dropdown-toggle {color: #fff;background-color: #1a1a19;border-color: #1a1a19 }.btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {box-shadow: 0 0 0 .2rem rgba(26, 26, 25, .5) }.btn-link {font-weight: 400;color: #007bff;text-decoration: none }.btn-link:hover {color: #0056b3;text-decoration: underline }.btn-link.focus, .btn-link:focus {text-decoration: underline }.btn-link.disabled, .btn-link:disabled {color: #6c757d;pointer-events: none }.btn-group-lg > .btn, .btn-lg {padding: .5rem 1rem;font-size: 1.25rem;line-height: 1.5;border-radius: .3rem }.btn-group-sm > .btn, .btn-sm {padding: .25rem .5rem;font-size: .875rem;line-height: 1.5;border-radius: .2rem }.btn-block {display: block;width: 100% }.btn-block + .btn-block {margin-top: .5rem }input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {width: 100% }.fade {transition: opacity .15s linear }@media (prefers-reduced-motion:reduce) {.fade {transition: none }}.fade:not(.show) {opacity: 0 }.collapse:not(.show) {display: none }.collapsing {position: relative;height: 0;overflow: hidden;transition: height .35s ease }@media (prefers-reduced-motion:reduce) {.collapsing {transition: none }}.dropdown, .dropleft, .dropright, .dropup {position: relative }.dropdown-toggle {white-space: nowrap }.dropdown-toggle::after {display: inline-block;margin-left: .255em;vertical-align: .255em;content: "";border-top: .3em solid;border-right: .3em solid transparent;border-bottom: 0;border-left: .3em solid transparent }.dropdown-toggle:empty::after {margin-left: 0 }.dropdown-menu {position: absolute;top: 100%;left: 0;z-index: 1000;display: none;float: left;min-width: 10rem;padding: .5rem 0;margin: .125rem 0 0;font-size: 1rem;color: #212529;text-align: left;list-style: none;background-color: #fff;background-clip: padding-box;border: 1px solid rgba(0, 0, 0, .15);border-radius: .25rem }.dropdown-menu-left {right: auto;left: 0 }.dropdown-menu-right {right: 0;left: auto }@media (min-width:576px) {.dropdown-menu-sm-left {right: auto;left: 0 }.dropdown-menu-sm-right {right: 0;left: auto }}@media (min-width:768px) {.dropdown-menu-md-left {right: auto;left: 0 }.dropdown-menu-md-right {right: 0;left: auto }}@media (min-width:992px) {.dropdown-menu-lg-left {right: auto;left: 0 }.dropdown-menu-lg-right {right: 0;left: auto }}@media (min-width:1200px) {.dropdown-menu-xl-left {right: auto;left: 0 }.dropdown-menu-xl-right {right: 0;left: auto }}.dropup .dropdown-menu {top: auto;bottom: 100%;margin-top: 0;margin-bottom: .125rem }.dropup .dropdown-toggle::after {display: inline-block;margin-left: .255em;vertical-align: .255em;content: "";border-top: 0;border-right: .3em solid transparent;border-bottom: .3em solid;border-left: .3em solid transparent }.dropup .dropdown-toggle:empty::after {margin-left: 0 }.dropright .dropdown-menu {top: 0;right: auto;left: 100%;margin-top: 0;margin-left: .125rem }.dropright .dropdown-toggle::after {display: inline-block;margin-left: .255em;vertical-align: .255em;content: "";border-top: .3em solid transparent;border-right: 0;border-bottom: .3em solid transparent;border-left: .3em solid }.dropright .dropdown-toggle:empty::after {margin-left: 0 }.dropright .dropdown-toggle::after {vertical-align: 0 }.dropleft .dropdown-menu {top: 0;right: 100%;left: auto;margin-top: 0;margin-right: .125rem }.dropleft .dropdown-toggle::after {display: inline-block;margin-left: .255em;vertical-align: .255em;content: "" }.dropleft .dropdown-toggle::after {display: none }.dropleft .dropdown-toggle::before {display: inline-block;margin-right: .255em;vertical-align: .255em;content: "";border-top: .3em solid transparent;border-right: .3em solid;border-bottom: .3em solid transparent }.dropleft .dropdown-toggle:empty::after {margin-left: 0 }.dropleft .dropdown-toggle::before {vertical-align: 0 }.dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=top] {right: auto;bottom: auto }.dropdown-divider {height: 0;margin: .5rem 0;overflow: hidden;border-top: 1px solid #e9ecef }.dropdown-item {display: block;width: 100%;padding: .25rem 1.5rem;clear: both;font-weight: 400;color: #212529;text-align: inherit;white-space: nowrap;background-color: transparent;border: 0 }.dropdown-item:focus, .dropdown-item:hover {color: #16181b;text-decoration: none;background-color: #f8f9fa }.dropdown-item.active, .dropdown-item:active {color: #fff;text-decoration: none;background-color: #007bff }.dropdown-item.disabled, .dropdown-item:disabled {color: #6c757d;pointer-events: none;background-color: transparent }.dropdown-menu.show {display: block }.dropdown-header {display: block;padding: .5rem 1.5rem;margin-bottom: 0;font-size: .875rem;color: #6c757d;white-space: nowrap }.dropdown-item-text {display: block;padding: .25rem 1.5rem;color: #212529 }.btn-group, .btn-group-vertical {position: relative;display: -ms-inline-flexbox;display: inline-flex;vertical-align: middle }.btn-group-vertical > .btn, .btn-group > .btn {position: relative;-ms-flex: 1 1 auto;flex: 1 1 auto }.btn-group-vertical > .btn:hover, .btn-group > .btn:hover {z-index: 1 }.btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus {z-index: 1 }.btn-toolbar {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-pack: start;justify-content: flex-start }.btn-toolbar .input-group {width: auto }.btn-group > .btn-group:not(:first-child), .btn-group > .btn:not(:first-child) {margin-left: -1px }.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {border-top-right-radius: 0;border-bottom-right-radius: 0 }.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:not(:first-child) {border-top-left-radius: 0;border-bottom-left-radius: 0 }.dropdown-toggle-split {padding-right: .5625rem;padding-left: .5625rem }.dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after {margin-left: 0 }.dropleft .dropdown-toggle-split::before {margin-right: 0 }.btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {padding-right: .375rem;padding-left: .375rem }.btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {padding-right: .75rem;padding-left: .75rem }.btn-group-vertical {-ms-flex-direction: column;flex-direction: column;-ms-flex-align: start;align-items: flex-start;-ms-flex-pack: center;justify-content: center }.btn-group-vertical > .btn, .btn-group-vertical > .btn-group {width: 100% }.btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child) {margin-top: -1px }.btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {border-bottom-right-radius: 0;border-bottom-left-radius: 0 }.btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn:not(:first-child) {border-top-left-radius: 0;border-top-right-radius: 0 }.btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn {margin-bottom: 0 }.btn-group-toggle > .btn input[type=checkbox], .btn-group-toggle > .btn input[type=radio], .btn-group-toggle > .btn-group > .btn input[type=checkbox], .btn-group-toggle > .btn-group > .btn input[type=radio] {position: absolute;clip: rect(0, 0, 0, 0);pointer-events: none }.input-group {position: relative;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-align: stretch;align-items: stretch;width: 100% }.input-group > .custom-file, .input-group > .custom-select, .input-group > .form-control, .input-group > .form-control-plaintext {position: relative;-ms-flex: 1 1 auto;flex: 1 1 auto;width: 1%;min-width: 0;margin-bottom: 0 }.input-group > .custom-file + .custom-file, .input-group > .custom-file + .custom-select, .input-group > .custom-file + .form-control, .input-group > .custom-select + .custom-file, .input-group > .custom-select + .custom-select, .input-group > .custom-select + .form-control, .input-group > .form-control + .custom-file, .input-group > .form-control + .custom-select, .input-group > .form-control + .form-control, .input-group > .form-control-plaintext + .custom-file, .input-group > .form-control-plaintext + .custom-select, .input-group > .form-control-plaintext + .form-control {margin-left: -1px }.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label, .input-group > .custom-select:focus, .input-group > .form-control:focus {z-index: 3 }.input-group > .custom-file .custom-file-input:focus {z-index: 4 }.input-group > .custom-select:not(:last-child), .input-group > .form-control:not(:last-child) {border-top-right-radius: 0;border-bottom-right-radius: 0 }.input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child) {border-top-left-radius: 0;border-bottom-left-radius: 0 }.input-group > .custom-file {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {border-top-right-radius: 0;border-bottom-right-radius: 0 }.input-group > .custom-file:not(:first-child) .custom-file-label {border-top-left-radius: 0;border-bottom-left-radius: 0 }.input-group-append, .input-group-prepend {display: -ms-flexbox;display: flex }.input-group-append .btn, .input-group-prepend .btn {position: relative;z-index: 2 }.input-group-append .btn:focus, .input-group-prepend .btn:focus {z-index: 3 }.input-group-append .btn + .btn, .input-group-append .btn + .input-group-text, .input-group-append .input-group-text + .btn, .input-group-append .input-group-text + .input-group-text, .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .btn, .input-group-prepend .input-group-text + .input-group-text {margin-left: -1px }.input-group-prepend {margin-right: -1px }.input-group-append {margin-left: -1px }.input-group-text {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding: .375rem .75rem;margin-bottom: 0;font-size: 1rem;font-weight: 400;line-height: 1.5;color: #495057;text-align: center;white-space: nowrap;background-color: #e9ecef;border: 1px solid #ced4da;border-radius: .25rem }.input-group-text input[type=checkbox], .input-group-text input[type=radio] {margin-top: 0 }.input-group-lg > .custom-select, .input-group-lg > .form-control:not(textarea) {height: calc(1.5em + 1rem + 2px) }.input-group-lg > .custom-select, .input-group-lg > .form-control, .input-group-lg > .input-group-append > .btn, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-prepend > .input-group-text {padding: .5rem 1rem;font-size: 1.25rem;line-height: 1.5;border-radius: .3rem }.input-group-sm > .custom-select, .input-group-sm > .form-control:not(textarea) {height: calc(1.5em + .5rem + 2px) }.input-group-sm > .custom-select, .input-group-sm > .form-control, .input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .input-group-text {padding: .25rem .5rem;font-size: .875rem;line-height: 1.5;border-radius: .2rem }.input-group-lg > .custom-select, .input-group-sm > .custom-select {padding-right: 1.75rem }.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child), .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text {border-top-right-radius: 0;border-bottom-right-radius: 0 }.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text {border-top-left-radius: 0;border-bottom-left-radius: 0 }.custom-control {position: relative;z-index: 1;display: block;min-height: 1.5rem;padding-left: 1.5rem;color-adjust: exact }.custom-control-inline {display: -ms-inline-flexbox;display: inline-flex;margin-right: 1rem }.custom-control-input {position: absolute;left: 0;z-index: -1;width: 1rem;height: 1.25rem;opacity: 0 }.custom-control-input:checked ~ .custom-control-label::before {color: #fff;border-color: #007bff;background-color: #007bff }.custom-control-input:focus ~ .custom-control-label::before {box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) }.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {border-color: #80bdff }.custom-control-input:not(:disabled):active ~ .custom-control-label::before {color: #fff;background-color: #b3d7ff;border-color: #b3d7ff }.custom-control-input:disabled ~ .custom-control-label, .custom-control-input[disabled] ~ .custom-control-label {color: #6c757d }.custom-control-input:disabled ~ .custom-control-label::before, .custom-control-input[disabled] ~ .custom-control-label::before {background-color: #e9ecef }.custom-control-label {position: relative;margin-bottom: 0;vertical-align: top }.custom-control-label::before {position: absolute;top: .25rem;left: -1.5rem;display: block;width: 1rem;height: 1rem;pointer-events: none;content: "";background-color: #fff;border: #adb5bd solid 1px }.custom-control-label::after {position: absolute;top: .25rem;left: -1.5rem;display: block;width: 1rem;height: 1rem;content: "";background: no-repeat 50%/50% 50% }.custom-checkbox .custom-control-label::before {border-radius: .25rem }.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e") }.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {border-color: #007bff;background-color: #007bff }.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23ffffff' d='M0 2h4'/%3e%3c/svg%3e") }.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {background-color: rgba(0, 123, 255, .5) }.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {background-color: rgba(0, 123, 255, .5) }.custom-radio .custom-control-label::before {border-radius: 50% }.custom-radio .custom-control-input:checked ~ .custom-control-label::after {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e") }.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {background-color: rgba(0, 123, 255, .5) }.custom-switch {padding-left: 2.25rem }.custom-switch .custom-control-label::before {left: -2.25rem;width: 1.75rem;pointer-events: all;border-radius: .5rem }.custom-switch .custom-control-label::after {top: calc(.25rem + 2px);left: calc(-2.25rem + 2px);width: calc(1rem - 4px);height: calc(1rem - 4px);background-color: #adb5bd;border-radius: .5rem;transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out }@media (prefers-reduced-motion:reduce) {.custom-switch .custom-control-label::after {transition: none }}.custom-switch .custom-control-input:checked ~ .custom-control-label::after {background-color: #fff;transform: translateX(.75rem) }.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {background-color: rgba(0, 123, 255, .5) }.custom-select {display: inline-block;width: 100%;height: calc(1.5em + .75rem + 2px);padding: .375rem 1.75rem .375rem .75rem;font-size: 1rem;font-weight: 400;line-height: 1.5;color: #495057;vertical-align: middle;background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border: 1px solid #ced4da;border-radius: .25rem;-webkit-appearance: none;-moz-appearance: none;appearance: none }.custom-select:focus {border-color: #80bdff;outline: 0;box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) }.custom-select:focus::-ms-value {color: #495057;background-color: #fff }.custom-select[multiple], .custom-select[size]:not([size="1"]) {height: auto;padding-right: .75rem;background-image: none }.custom-select:disabled {color: #6c757d;background-color: #e9ecef }.custom-select::-ms-expand {display: none }.custom-select:-moz-focusring {color: transparent;text-shadow: 0 0 0 #495057 }.custom-select-sm {height: calc(1.5em + .5rem + 2px);padding-top: .25rem;padding-bottom: .25rem;padding-left: .5rem;font-size: .875rem }.custom-select-lg {height: calc(1.5em + 1rem + 2px);padding-top: .5rem;padding-bottom: .5rem;padding-left: 1rem;font-size: 1.25rem }.custom-file {position: relative;display: inline-block;width: 100%;height: calc(1.5em + .75rem + 2px);margin-bottom: 0 }.custom-file-input {position: relative;z-index: 2;width: 100%;height: calc(1.5em + .75rem + 2px);margin: 0;opacity: 0 }.custom-file-input:focus ~ .custom-file-label {border-color: #80bdff;box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) }.custom-file-input:disabled ~ .custom-file-label, .custom-file-input[disabled] ~ .custom-file-label {background-color: #e9ecef }.custom-file-input:lang(en) ~ .custom-file-label::after {content: "Browse" }.custom-file-input ~ .custom-file-label[data-browse]::after {content: attr(data-browse) }.custom-file-label {position: absolute;top: 0;right: 0;left: 0;z-index: 1;height: calc(1.5em + .75rem + 2px);padding: .375rem .75rem;font-weight: 400;line-height: 1.5;color: #495057;background-color: #fff;border: 1px solid #ced4da;border-radius: .25rem }.custom-file-label::after {position: absolute;top: 0;right: 0;bottom: 0;z-index: 3;display: block;height: calc(1.5em + .75rem);padding: .375rem .75rem;line-height: 1.5;color: #495057;content: "Browse";background-color: #e9ecef;border-left: inherit;border-radius: 0 .25rem .25rem 0 }.custom-range {width: 100%;height: 1.4rem;padding: 0;background-color: transparent;-webkit-appearance: none;-moz-appearance: none;appearance: none }.custom-range:focus {outline: 0 }.custom-range:focus::-webkit-slider-thumb {box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) }.custom-range:focus::-moz-range-thumb {box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) }.custom-range:focus::-ms-thumb {box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) }.custom-range::-moz-focus-outer {border: 0 }.custom-range::-webkit-slider-thumb {width: 1rem;height: 1rem;margin-top: -.25rem;background-color: #007bff;border: 0;border-radius: 1rem;transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;-webkit-appearance: none;appearance: none }@media (prefers-reduced-motion:reduce) {.custom-range::-webkit-slider-thumb {transition: none }}.custom-range::-webkit-slider-thumb:active {background-color: #b3d7ff }.custom-range::-webkit-slider-runnable-track {width: 100%;height: .5rem;color: transparent;cursor: pointer;background-color: #dee2e6;border-color: transparent;border-radius: 1rem }.custom-range::-moz-range-thumb {width: 1rem;height: 1rem;background-color: #007bff;border: 0;border-radius: 1rem;transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;-moz-appearance: none;appearance: none }@media (prefers-reduced-motion:reduce) {.custom-range::-moz-range-thumb {transition: none }}.custom-range::-moz-range-thumb:active {background-color: #b3d7ff }.custom-range::-moz-range-track {width: 100%;height: .5rem;color: transparent;cursor: pointer;background-color: #dee2e6;border-color: transparent;border-radius: 1rem }.custom-range::-ms-thumb {width: 1rem;height: 1rem;margin-top: 0;margin-right: .2rem;margin-left: .2rem;background-color: #007bff;border: 0;border-radius: 1rem;transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;appearance: none }@media (prefers-reduced-motion:reduce) {.custom-range::-ms-thumb {transition: none }}.custom-range::-ms-thumb:active {background-color: #b3d7ff }.custom-range::-ms-track {width: 100%;height: .5rem;color: transparent;cursor: pointer;background-color: transparent;border-color: transparent;border-width: .5rem }.custom-range::-ms-fill-lower {background-color: #dee2e6;border-radius: 1rem }.custom-range::-ms-fill-upper {margin-right: 15px;background-color: #dee2e6;border-radius: 1rem }.custom-range:disabled::-webkit-slider-thumb {background-color: #adb5bd }.custom-range:disabled::-webkit-slider-runnable-track {cursor: default }.custom-range:disabled::-moz-range-thumb {background-color: #adb5bd }.custom-range:disabled::-moz-range-track {cursor: default }.custom-range:disabled::-ms-thumb {background-color: #adb5bd }.custom-control-label::before, .custom-file-label, .custom-select {transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out }@media (prefers-reduced-motion:reduce) {.custom-control-label::before, .custom-file-label, .custom-select {transition: none }}.nav {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;padding-left: 0;margin-bottom: 0;list-style: none }.nav-link {display: block;padding: .5rem 1rem }.nav-link:focus, .nav-link:hover {text-decoration: none }.nav-link.disabled {color: #6c757d;pointer-events: none;cursor: default }.nav-tabs {border-bottom: 1px solid #dee2e6 }.nav-tabs .nav-item {margin-bottom: -1px }.nav-tabs .nav-link {border: 1px solid transparent;border-top-left-radius: .25rem;border-top-right-radius: .25rem }.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {border-color: #e9ecef #e9ecef #dee2e6 }.nav-tabs .nav-link.disabled {color: #6c757d;background-color: transparent;border-color: transparent }.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {color: #495057;background-color: #fff;border-color: #dee2e6 #dee2e6 #fff }.nav-tabs .dropdown-menu {margin-top: -1px;border-top-left-radius: 0;border-top-right-radius: 0 }.nav-pills .nav-link {border-radius: .25rem }.nav-pills .nav-link.active, .nav-pills .show > .nav-link {color: #fff;background-color: #007bff }.nav-fill .nav-item, .nav-fill > .nav-link {-ms-flex: 1 1 auto;flex: 1 1 auto;text-align: center }.nav-justified .nav-item, .nav-justified > .nav-link {-ms-flex-preferred-size: 0;flex-basis: 0;-ms-flex-positive: 1;flex-grow: 1;text-align: center }.tab-content > .tab-pane {display: none }.tab-content > .active {display: block }.navbar {position: relative;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;padding: .5rem 1rem }.navbar .container, .navbar .container-fluid, .navbar .container-lg, .navbar .container-md, .navbar .container-sm, .navbar .container-xl {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.navbar-brand {display: inline-block;padding-top: .3125rem;padding-bottom: .3125rem;margin-right: 1rem;font-size: 1.25rem;line-height: inherit;white-space: nowrap }.navbar-brand:focus, .navbar-brand:hover {text-decoration: none }.navbar-nav {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;padding-left: 0;margin-bottom: 0;list-style: none }.navbar-nav .nav-link {padding-right: 0;padding-left: 0 }.navbar-nav .dropdown-menu {position: static;float: none }.navbar-text {display: inline-block;padding-top: .5rem;padding-bottom: .5rem }.navbar-collapse {-ms-flex-preferred-size: 100%;flex-basis: 100%;-ms-flex-positive: 1;flex-grow: 1;-ms-flex-align: center;align-items: center }.navbar-toggler {padding: .25rem .75rem;font-size: 1.25rem;line-height: 1;background-color: transparent;border: 1px solid transparent;border-radius: .25rem }.navbar-toggler:focus, .navbar-toggler:hover {text-decoration: none }.navbar-toggler-icon {display: inline-block;width: 1.5em;height: 1.5em;vertical-align: middle;content: "";background: no-repeat center center;background-size: 100% 100% }@media (max-width:575.98px) {.navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-xl {padding-right: 0;padding-left: 0 }}@media (min-width:576px) {.navbar-expand-sm {-ms-flex-flow: row nowrap;flex-flow: row nowrap;-ms-flex-pack: start;justify-content: flex-start }.navbar-expand-sm .navbar-nav {-ms-flex-direction: row;flex-direction: row }.navbar-expand-sm .navbar-nav .dropdown-menu {position: absolute }.navbar-expand-sm .navbar-nav .nav-link {padding-right: .5rem;padding-left: .5rem }.navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-xl {-ms-flex-wrap: nowrap;flex-wrap: nowrap }.navbar-expand-sm .navbar-collapse {display: -ms-flexbox !important;display: flex !important;-ms-flex-preferred-size: auto;flex-basis: auto }.navbar-expand-sm .navbar-toggler {display: none }}@media (max-width:767.98px) {.navbar-expand-md > .container, .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-md, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-xl {padding-right: 0;padding-left: 0 }}@media (min-width:768px) {.navbar-expand-md {-ms-flex-flow: row nowrap;flex-flow: row nowrap;-ms-flex-pack: start;justify-content: flex-start }.navbar-expand-md .navbar-nav {-ms-flex-direction: row;flex-direction: row }.navbar-expand-md .navbar-nav .dropdown-menu {position: absolute }.navbar-expand-md .navbar-nav .nav-link {padding-right: .5rem;padding-left: .5rem }.navbar-expand-md > .container, .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-md, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-xl {-ms-flex-wrap: nowrap;flex-wrap: nowrap }.navbar-expand-md .navbar-collapse {display: -ms-flexbox !important;display: flex !important;-ms-flex-preferred-size: auto;flex-basis: auto }.navbar-expand-md .navbar-toggler {display: none }}@media (max-width:991.98px) {.navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-xl {padding-right: 0;padding-left: 0 }}@media (min-width:992px) {.navbar-expand-lg {-ms-flex-flow: row nowrap;flex-flow: row nowrap;-ms-flex-pack: start;justify-content: flex-start }.navbar-expand-lg .navbar-nav {-ms-flex-direction: row;flex-direction: row }.navbar-expand-lg .navbar-nav .dropdown-menu {position: absolute }.navbar-expand-lg .navbar-nav .nav-link {padding-right: .5rem;padding-left: .5rem }.navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-xl {-ms-flex-wrap: nowrap;flex-wrap: nowrap }.navbar-expand-lg .navbar-collapse {display: -ms-flexbox !important;display: flex !important;-ms-flex-preferred-size: auto;flex-basis: auto }.navbar-expand-lg .navbar-toggler {display: none }}@media (max-width:1199.98px) {.navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-xl {padding-right: 0;padding-left: 0 }}@media (min-width:1200px) {.navbar-expand-xl {-ms-flex-flow: row nowrap;flex-flow: row nowrap;-ms-flex-pack: start;justify-content: flex-start }.navbar-expand-xl .navbar-nav {-ms-flex-direction: row;flex-direction: row }.navbar-expand-xl .navbar-nav .dropdown-menu {position: absolute }.navbar-expand-xl .navbar-nav .nav-link {padding-right: .5rem;padding-left: .5rem }.navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-xl {-ms-flex-wrap: nowrap;flex-wrap: nowrap }.navbar-expand-xl .navbar-collapse {display: -ms-flexbox !important;display: flex !important;-ms-flex-preferred-size: auto;flex-basis: auto }.navbar-expand-xl .navbar-toggler {display: none }}.navbar-expand {-ms-flex-flow: row nowrap;flex-flow: row nowrap;-ms-flex-pack: start;justify-content: flex-start }.navbar-expand > .container, .navbar-expand > .container-fluid, .navbar-expand > .container-lg, .navbar-expand > .container-md, .navbar-expand > .container-sm, .navbar-expand > .container-xl {padding-right: 0;padding-left: 0 }.navbar-expand .navbar-nav {-ms-flex-direction: row;flex-direction: row }.navbar-expand .navbar-nav .dropdown-menu {position: absolute }.navbar-expand .navbar-nav .nav-link {padding-right: .5rem;padding-left: .5rem }.navbar-expand > .container, .navbar-expand > .container-fluid, .navbar-expand > .container-lg, .navbar-expand > .container-md, .navbar-expand > .container-sm, .navbar-expand > .container-xl {-ms-flex-wrap: nowrap;flex-wrap: nowrap }.navbar-expand .navbar-collapse {display: -ms-flexbox !important;display: flex !important;-ms-flex-preferred-size: auto;flex-basis: auto }.navbar-expand .navbar-toggler {display: none }.navbar-light .navbar-brand {color: rgba(0, 0, 0, .9) }.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {color: rgba(0, 0, 0, .9) }.navbar-light .navbar-nav .nav-link {color: rgba(0, 0, 0, .5) }.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {color: rgba(0, 0, 0, .7) }.navbar-light .navbar-nav .nav-link.disabled {color: rgba(0, 0, 0, .3) }.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {color: rgba(0, 0, 0, .9) }.navbar-light .navbar-toggler {color: rgba(0, 0, 0, .5);border-color: rgba(0, 0, 0, .1) }.navbar-light .navbar-toggler-icon {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") }.navbar-light .navbar-text {color: rgba(0, 0, 0, .5) }.navbar-light .navbar-text a {color: rgba(0, 0, 0, .9) }.navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover {color: rgba(0, 0, 0, .9) }.navbar-dark .navbar-brand {color: #fff }.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {color: #fff }.navbar-dark .navbar-nav .nav-link {color: rgba(255, 255, 255, .5) }.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {color: rgba(255, 255, 255, .75) }.navbar-dark .navbar-nav .nav-link.disabled {color: rgba(255, 255, 255, .25) }.navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {color: #fff }.navbar-dark .navbar-toggler {color: rgba(255, 255, 255, .5);border-color: rgba(255, 255, 255, .1) }.navbar-dark .navbar-toggler-icon {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") }.navbar-dark .navbar-text {color: rgba(255, 255, 255, .5) }.navbar-dark .navbar-text a {color: #fff }.navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover {color: #fff }.card {position: relative;display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;min-width: 0;word-wrap: break-word;background-color: #fff;background-clip: border-box;border: 1px solid rgba(0, 0, 0, .125);border-radius: .25rem }.card > hr {margin-right: 0;margin-left: 0 }.card > .list-group {border-top: inherit;border-bottom: inherit }.card > .list-group:first-child {border-top-width: 0;border-top-left-radius: calc(.25rem - 1px);border-top-right-radius: calc(.25rem - 1px) }.card > .list-group:last-child {border-bottom-width: 0;border-bottom-right-radius: calc(.25rem - 1px);border-bottom-left-radius: calc(.25rem - 1px) }.card > .card-header + .list-group, .card > .list-group + .card-footer {border-top: 0 }.card-body {-ms-flex: 1 1 auto;flex: 1 1 auto;min-height: 1px;padding: 1.25rem }.card-title {margin-bottom: .75rem }.card-subtitle {margin-top: -.375rem;margin-bottom: 0 }.card-text:last-child {margin-bottom: 0 }.card-link:hover {text-decoration: none }.card-link + .card-link {margin-left: 1.25rem }.card-header {padding: .75rem 1.25rem;margin-bottom: 0;background-color: rgba(0, 0, 0, .03);border-bottom: 1px solid rgba(0, 0, 0, .125) }.card-header:first-child {border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0 }.card-footer {padding: .75rem 1.25rem;background-color: rgba(0, 0, 0, .03);border-top: 1px solid rgba(0, 0, 0, .125) }.card-footer:last-child {border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px) }.card-header-tabs {margin-right: -.625rem;margin-bottom: -.75rem;margin-left: -.625rem;border-bottom: 0 }.card-header-pills {margin-right: -.625rem;margin-left: -.625rem }.card-img-overlay {position: absolute;top: 0;right: 0;bottom: 0;left: 0;padding: 1.25rem;border-radius: calc(.25rem - 1px) }.card-img, .card-img-bottom, .card-img-top {-ms-flex-negative: 0;flex-shrink: 0;width: 100% }.card-img, .card-img-top {border-top-left-radius: calc(.25rem - 1px);border-top-right-radius: calc(.25rem - 1px) }.card-img, .card-img-bottom {border-bottom-right-radius: calc(.25rem - 1px);border-bottom-left-radius: calc(.25rem - 1px) }.card-deck .card {margin-bottom: 15px }@media (min-width:576px) {.card-deck {display: -ms-flexbox;display: flex;-ms-flex-flow: row wrap;flex-flow: row wrap;margin-right: -15px;margin-left: -15px }.card-deck .card {-ms-flex: 1 0 0%;flex: 1 0 0%;margin-right: 15px;margin-bottom: 0;margin-left: 15px }}.card-group > .card {margin-bottom: 15px }@media (min-width:576px) {.card-group {display: -ms-flexbox;display: flex;-ms-flex-flow: row wrap;flex-flow: row wrap }.card-group > .card {-ms-flex: 1 0 0%;flex: 1 0 0%;margin-bottom: 0 }.card-group > .card + .card {margin-left: 0;border-left: 0 }.card-group > .card:not(:last-child) {border-top-right-radius: 0;border-bottom-right-radius: 0 }.card-group > .card:not(:last-child) .card-header, .card-group > .card:not(:last-child) .card-img-top {border-top-right-radius: 0 }.card-group > .card:not(:last-child) .card-footer, .card-group > .card:not(:last-child) .card-img-bottom {border-bottom-right-radius: 0 }.card-group > .card:not(:first-child) {border-top-left-radius: 0;border-bottom-left-radius: 0 }.card-group > .card:not(:first-child) .card-header, .card-group > .card:not(:first-child) .card-img-top {border-top-left-radius: 0 }.card-group > .card:not(:first-child) .card-footer, .card-group > .card:not(:first-child) .card-img-bottom {border-bottom-left-radius: 0 }}.card-columns .card {margin-bottom: .75rem }@media (min-width:576px) {.card-columns {column-count: 3;column-gap: 1.25rem;orphans: 1;widows: 1 }.card-columns .card {display: inline-block;width: 100% }}.accordion {overflow-anchor: none }.accordion > .card {overflow: hidden }.accordion > .card:not(:last-of-type) {border-bottom: 0;border-bottom-right-radius: 0;border-bottom-left-radius: 0 }.accordion > .card:not(:first-of-type) {border-top-left-radius: 0;border-top-right-radius: 0 }.accordion > .card > .card-header {border-radius: 0;margin-bottom: -1px }.breadcrumb {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;padding: .75rem 1rem;margin-bottom: 1rem;list-style: none;background-color: #e9ecef;border-radius: .25rem }.breadcrumb-item {display: -ms-flexbox;display: flex }.breadcrumb-item + .breadcrumb-item {padding-left: .5rem }.breadcrumb-item + .breadcrumb-item::before {display: inline-block;padding-right: .5rem;color: #6c757d;content: "/" }.breadcrumb-item + .breadcrumb-item:hover::before {text-decoration: underline }.breadcrumb-item + .breadcrumb-item:hover::before {text-decoration: none }.breadcrumb-item.active {color: #6c757d }.pagination {display: -ms-flexbox;display: flex;padding-left: 0;list-style: none;border-radius: .25rem }.page-link {position: relative;display: block;padding: .5rem .75rem;margin-left: -1px;line-height: 1.25;color: #007bff;background-color: #fff;border: 1px solid #dee2e6 }.page-link:hover {z-index: 2;color: #0056b3;text-decoration: none;background-color: #e9ecef;border-color: #dee2e6 }.page-link:focus {z-index: 3;outline: 0;box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) }.page-item:first-child .page-link {margin-left: 0;border-top-left-radius: .25rem;border-bottom-left-radius: .25rem }.page-item:last-child .page-link {border-top-right-radius: .25rem;border-bottom-right-radius: .25rem }.page-item.active .page-link {z-index: 3;color: #fff;background-color: #007bff;border-color: #007bff }.page-item.disabled .page-link {color: #6c757d;pointer-events: none;cursor: auto;background-color: #fff;border-color: #dee2e6 }.pagination-lg .page-link {padding: .75rem 1.5rem;font-size: 1.25rem;line-height: 1.5 }.pagination-lg .page-item:first-child .page-link {border-top-left-radius: .3rem;border-bottom-left-radius: .3rem }.pagination-lg .page-item:last-child .page-link {border-top-right-radius: .3rem;border-bottom-right-radius: .3rem }.pagination-sm .page-link {padding: .25rem .5rem;font-size: .875rem;line-height: 1.5 }.pagination-sm .page-item:first-child .page-link {border-top-left-radius: .2rem;border-bottom-left-radius: .2rem }.pagination-sm .page-item:last-child .page-link {border-top-right-radius: .2rem;border-bottom-right-radius: .2rem }.badge {display: inline-block;padding: .25em .4em;font-size: 75%;font-weight: 700;line-height: 1;text-align: center;white-space: nowrap;vertical-align: baseline;border-radius: .25rem;transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out }@media (prefers-reduced-motion:reduce) {.badge {transition: none }}a.badge:focus, a.badge:hover {text-decoration: none }.badge:empty {display: none }.btn .badge {position: relative;top: -1px }.badge-pill {padding-right: .6em;padding-left: .6em;border-radius: 10rem }.badge-primary {color: #fff;background-color: #007bff }a.badge-primary:focus, a.badge-primary:hover {color: #fff;background-color: #0062cc }a.badge-primary.focus, a.badge-primary:focus {outline: 0;box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) }.badge-secondary {color: #fff;background-color: #df252a }a.badge-secondary:focus, a.badge-secondary:hover {color: #fff;background-color: #b61b1f }a.badge-secondary.focus, a.badge-secondary:focus {outline: 0;box-shadow: 0 0 0 .2rem rgba(223, 37, 42, .5) }.badge-success {color: #fff;background-color: #1bb161 }a.badge-success:focus, a.badge-success:hover {color: #fff;background-color: #148549 }a.badge-success.focus, a.badge-success:focus {outline: 0;box-shadow: 0 0 0 .2rem rgba(27, 177, 97, .5) }.badge-info {color: #fff;background-color: #17a2b8 }a.badge-info:focus, a.badge-info:hover {color: #fff;background-color: #117a8b }a.badge-info.focus, a.badge-info:focus {outline: 0;box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) }.badge-warning {color: #212529;background-color: #ffc107 }a.badge-warning:focus, a.badge-warning:hover {color: #212529;background-color: #d39e00 }a.badge-warning.focus, a.badge-warning:focus {outline: 0;box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) }.badge-danger {color: #fff;background-color: #df252a }a.badge-danger:focus, a.badge-danger:hover {color: #fff;background-color: #b61b1f }a.badge-danger.focus, a.badge-danger:focus {outline: 0;box-shadow: 0 0 0 .2rem rgba(223, 37, 42, .5) }.badge-light {color: #212529;background-color: #f8f9fa }a.badge-light:focus, a.badge-light:hover {color: #212529;background-color: #dae0e5 }a.badge-light.focus, a.badge-light:focus {outline: 0;box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) }.badge-dark {color: #fff;background-color: #1a1a19 }a.badge-dark:focus, a.badge-dark:hover {color: #fff;background-color: #000 }a.badge-dark.focus, a.badge-dark:focus {outline: 0;box-shadow: 0 0 0 .2rem rgba(26, 26, 25, .5) }.jumbotron {padding: 2rem 1rem;margin-bottom: 2rem;background-color: #e9ecef;border-radius: .3rem }@media (min-width:576px) {.jumbotron {padding: 4rem 2rem }}.jumbotron-fluid {padding-right: 0;padding-left: 0;border-radius: 0 }.alert {position: relative;padding: .75rem 1.25rem;margin-bottom: 1rem;border: 1px solid transparent;border-radius: .25rem }.alert-heading {color: inherit }.alert-link {font-weight: 700 }.alert-dismissible {padding-right: 4rem }.alert-dismissible .close {position: absolute;top: 0;right: 0;z-index: 2;padding: .75rem 1.25rem;color: inherit }.alert-primary {color: #004085;background-color: #cce5ff;border-color: #b8daff }.alert-primary hr {border-top-color: #9fcdff }.alert-primary .alert-link {color: #002752 }.alert-secondary {color: #741316;background-color: #f9d3d4;border-color: #f6c2c3 }.alert-secondary hr {border-top-color: #f3acad }.alert-secondary .alert-link {color: #480c0e }.alert-success {color: #0e5c32;background-color: #d1efdf;border-color: #bfe9d3 }.alert-success hr {border-top-color: #ace2c6 }.alert-success .alert-link {color: #07301a }.alert-info {color: #0c5460;background-color: #d1ecf1;border-color: #bee5eb }.alert-info hr {border-top-color: #abdde5 }.alert-info .alert-link {color: #062c33 }.alert-warning {color: #856404;background-color: #fff3cd;border-color: #ffeeba }.alert-warning hr {border-top-color: #ffe8a1 }.alert-warning .alert-link {color: #533f03 }.alert-danger {color: #741316;background-color: #f9d3d4;border-color: #f6c2c3 }.alert-danger hr {border-top-color: #f3acad }.alert-danger .alert-link {color: #480c0e }.alert-light {color: #818182;background-color: #fefefe;border-color: #fdfdfe }.alert-light hr {border-top-color: #ececf6 }.alert-light .alert-link {color: #686868 }.alert-dark {color: #0e0e0d;background-color: #d1d1d1;border-color: #bfbfbf }.alert-dark hr {border-top-color: #b2b2b2 }.alert-dark .alert-link {color: #000 }@keyframes progress-bar-stripes {from {background-position: 1rem 0 }to {background-position: 0 0 }}.progress {display: -ms-flexbox;display: flex;height: 1rem;overflow: hidden;line-height: 0;font-size: .75rem;background-color: #e9ecef;border-radius: .25rem }.progress-bar {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-pack: center;justify-content: center;overflow: hidden;color: #fff;text-align: center;white-space: nowrap;background-color: #007bff;transition: width .6s ease }@media (prefers-reduced-motion:reduce) {.progress-bar {transition: none }}.progress-bar-striped {background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);background-size: 1rem 1rem }.progress-bar-animated {animation: progress-bar-stripes 1s linear infinite }@media (prefers-reduced-motion:reduce) {.progress-bar-animated {animation: none }}.media {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start }.media-body {-ms-flex: 1;flex: 1 }.list-group {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;padding-left: 0;margin-bottom: 0;border-radius: .25rem }.list-group-item-action {width: 100%;color: #495057;text-align: inherit }.list-group-item-action:focus, .list-group-item-action:hover {z-index: 1;color: #495057;text-decoration: none;background-color: #f8f9fa }.list-group-item-action:active {color: #212529;background-color: #e9ecef }.list-group-item {position: relative;display: block;padding: .75rem 1.25rem;background-color: #fff;border: 1px solid rgba(0, 0, 0, .125) }.list-group-item:first-child {border-top-left-radius: inherit;border-top-right-radius: inherit }.list-group-item:last-child {border-bottom-right-radius: inherit;border-bottom-left-radius: inherit }.list-group-item.disabled, .list-group-item:disabled {color: #6c757d;pointer-events: none;background-color: #fff }.list-group-item.active {z-index: 2;color: #fff;background-color: #007bff;border-color: #007bff }.list-group-item + .list-group-item {border-top-width: 0 }.list-group-item + .list-group-item.active {margin-top: -1px;border-top-width: 1px }.list-group-horizontal {-ms-flex-direction: row;flex-direction: row }.list-group-horizontal > .list-group-item:first-child {border-bottom-left-radius: .25rem;border-top-right-radius: 0 }.list-group-horizontal > .list-group-item:last-child {border-top-right-radius: .25rem;border-bottom-left-radius: 0 }.list-group-horizontal > .list-group-item.active {margin-top: 0 }.list-group-horizontal > .list-group-item + .list-group-item {border-top-width: 1px;border-left-width: 0 }.list-group-horizontal > .list-group-item + .list-group-item.active {margin-left: -1px;border-left-width: 1px }@media (min-width:576px) {.list-group-horizontal-sm {-ms-flex-direction: row;flex-direction: row }.list-group-horizontal-sm > .list-group-item:first-child {border-bottom-left-radius: .25rem;border-top-right-radius: 0 }.list-group-horizontal-sm > .list-group-item:last-child {border-top-right-radius: .25rem;border-bottom-left-radius: 0 }.list-group-horizontal-sm > .list-group-item.active {margin-top: 0 }.list-group-horizontal-sm > .list-group-item + .list-group-item {border-top-width: 1px;border-left-width: 0 }.list-group-horizontal-sm > .list-group-item + .list-group-item.active {margin-left: -1px;border-left-width: 1px }}@media (min-width:768px) {.list-group-horizontal-md {-ms-flex-direction: row;flex-direction: row }.list-group-horizontal-md > .list-group-item:first-child {border-bottom-left-radius: .25rem;border-top-right-radius: 0 }.list-group-horizontal-md > .list-group-item:last-child {border-top-right-radius: .25rem;border-bottom-left-radius: 0 }.list-group-horizontal-md > .list-group-item.active {margin-top: 0 }.list-group-horizontal-md > .list-group-item + .list-group-item {border-top-width: 1px;border-left-width: 0 }.list-group-horizontal-md > .list-group-item + .list-group-item.active {margin-left: -1px;border-left-width: 1px }}@media (min-width:992px) {.list-group-horizontal-lg {-ms-flex-direction: row;flex-direction: row }.list-group-horizontal-lg > .list-group-item:first-child {border-bottom-left-radius: .25rem;border-top-right-radius: 0 }.list-group-horizontal-lg > .list-group-item:last-child {border-top-right-radius: .25rem;border-bottom-left-radius: 0 }.list-group-horizontal-lg > .list-group-item.active {margin-top: 0 }.list-group-horizontal-lg > .list-group-item + .list-group-item {border-top-width: 1px;border-left-width: 0 }.list-group-horizontal-lg > .list-group-item + .list-group-item.active {margin-left: -1px;border-left-width: 1px }}@media (min-width:1200px) {.list-group-horizontal-xl {-ms-flex-direction: row;flex-direction: row }.list-group-horizontal-xl > .list-group-item:first-child {border-bottom-left-radius: .25rem;border-top-right-radius: 0 }.list-group-horizontal-xl > .list-group-item:last-child {border-top-right-radius: .25rem;border-bottom-left-radius: 0 }.list-group-horizontal-xl > .list-group-item.active {margin-top: 0 }.list-group-horizontal-xl > .list-group-item + .list-group-item {border-top-width: 1px;border-left-width: 0 }.list-group-horizontal-xl > .list-group-item + .list-group-item.active {margin-left: -1px;border-left-width: 1px }}.list-group-flush {border-radius: 0 }.list-group-flush > .list-group-item {border-width: 0 0 1px }.list-group-flush > .list-group-item:last-child {border-bottom-width: 0 }.list-group-item-primary {color: #004085;background-color: #b8daff }.list-group-item-primary.list-group-item-action:focus, .list-group-item-primary.list-group-item-action:hover {color: #004085;background-color: #9fcdff }.list-group-item-primary.list-group-item-action.active {color: #fff;background-color: #004085;border-color: #004085 }.list-group-item-secondary {color: #741316;background-color: #f6c2c3 }.list-group-item-secondary.list-group-item-action:focus, .list-group-item-secondary.list-group-item-action:hover {color: #741316;background-color: #f3acad }.list-group-item-secondary.list-group-item-action.active {color: #fff;background-color: #741316;border-color: #741316 }.list-group-item-success {color: #0e5c32;background-color: #bfe9d3 }.list-group-item-success.list-group-item-action:focus, .list-group-item-success.list-group-item-action:hover {color: #0e5c32;background-color: #ace2c6 }.list-group-item-success.list-group-item-action.active {color: #fff;background-color: #0e5c32;border-color: #0e5c32 }.list-group-item-info {color: #0c5460;background-color: #bee5eb }.list-group-item-info.list-group-item-action:focus, .list-group-item-info.list-group-item-action:hover {color: #0c5460;background-color: #abdde5 }.list-group-item-info.list-group-item-action.active {color: #fff;background-color: #0c5460;border-color: #0c5460 }.list-group-item-warning {color: #856404;background-color: #ffeeba }.list-group-item-warning.list-group-item-action:focus, .list-group-item-warning.list-group-item-action:hover {color: #856404;background-color: #ffe8a1 }.list-group-item-warning.list-group-item-action.active {color: #fff;background-color: #856404;border-color: #856404 }.list-group-item-danger {color: #741316;background-color: #f6c2c3 }.list-group-item-danger.list-group-item-action:focus, .list-group-item-danger.list-group-item-action:hover {color: #741316;background-color: #f3acad }.list-group-item-danger.list-group-item-action.active {color: #fff;background-color: #741316;border-color: #741316 }.list-group-item-light {color: #818182;background-color: #fdfdfe }.list-group-item-light.list-group-item-action:focus, .list-group-item-light.list-group-item-action:hover {color: #818182;background-color: #ececf6 }.list-group-item-light.list-group-item-action.active {color: #fff;background-color: #818182;border-color: #818182 }.list-group-item-dark {color: #0e0e0d;background-color: #bfbfbf }.list-group-item-dark.list-group-item-action:focus, .list-group-item-dark.list-group-item-action:hover {color: #0e0e0d;background-color: #b2b2b2 }.list-group-item-dark.list-group-item-action.active {color: #fff;background-color: #0e0e0d;border-color: #0e0e0d }.close {float: right;font-size: 1.5rem;font-weight: 700;line-height: 1;color: #000;text-shadow: 0 1px 0 #fff;opacity: .5 }.close:hover {color: #000;text-decoration: none }.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {opacity: .75 }button.close {padding: 0;background-color: transparent;border: 0 }a.close.disabled {pointer-events: none }.toast {-ms-flex-preferred-size: 350px;flex-basis: 350px;max-width: 350px;font-size: .875rem;background-color: rgba(255, 255, 255, .85);background-clip: padding-box;border: 1px solid rgba(0, 0, 0, .1);box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1);opacity: 0;border-radius: .25rem }.toast:not(:last-child) {margin-bottom: .75rem }.toast.showing {opacity: 1 }.toast.show {display: block;opacity: 1 }.toast.hide {display: none }.toast-header {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding: .25rem .75rem;color: #6c757d;background-color: rgba(255, 255, 255, .85);background-clip: padding-box;border-bottom: 1px solid rgba(0, 0, 0, .05);border-top-left-radius: calc(.25rem - 1px);border-top-right-radius: calc(.25rem - 1px) }.toast-body {padding: .75rem }.modal-open {overflow: hidden }.modal-open .modal {overflow-x: hidden;overflow-y: auto }.modal {position: fixed;top: 0;left: 0;z-index: 1050;display: none;width: 100%;height: 100%;overflow: hidden;outline: 0 }.modal-dialog {position: relative;width: auto;margin: .5rem;pointer-events: none }.modal.fade .modal-dialog {transition: transform .3s ease-out;transform: translate(0, -50px) }@media (prefers-reduced-motion:reduce) {.modal.fade .modal-dialog {transition: none }}.modal.show .modal-dialog {transform: none }.modal.modal-static .modal-dialog {transform: scale(1.02) }.modal-dialog-scrollable {display: -ms-flexbox;display: flex;max-height: calc(100% - 1rem) }.modal-dialog-scrollable .modal-content {max-height: calc(100vh - 1rem);overflow: hidden }.modal-dialog-scrollable .modal-footer, .modal-dialog-scrollable .modal-header {-ms-flex-negative: 0;flex-shrink: 0 }.modal-dialog-scrollable .modal-body {overflow-y: auto }.modal-dialog-centered {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;min-height: calc(100% - 1rem) }.modal-dialog-centered::before {display: block;height: calc(100vh - 1rem);height: -webkit-min-content;height: min-content;content: "" }.modal-dialog-centered.modal-dialog-scrollable {-ms-flex-direction: column;flex-direction: column;-ms-flex-pack: center;justify-content: center;height: 100% }.modal-dialog-centered.modal-dialog-scrollable .modal-content {max-height: none }.modal-dialog-centered.modal-dialog-scrollable::before {content: none }.modal-content {position: relative;display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;width: 100%;pointer-events: auto;background-color: #fff;background-clip: padding-box;border: 1px solid rgba(0, 0, 0, .2);border-radius: .3rem;outline: 0 }.modal-backdrop {position: fixed;top: 0;left: 0;z-index: 1040;width: 100vw;height: 100vh;background-color: #000 }.modal-backdrop.fade {opacity: 0 }.modal-backdrop.show {opacity: .5 }.modal-header {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;-ms-flex-pack: justify;justify-content: space-between;padding: 1rem 1rem;border-bottom: 1px solid #dee2e6;border-top-left-radius: calc(.3rem - 1px);border-top-right-radius: calc(.3rem - 1px) }.modal-header .close {padding: 1rem 1rem;margin: -1rem -1rem -1rem auto }.modal-title {margin-bottom: 0;line-height: 1.5 }.modal-body {position: relative;-ms-flex: 1 1 auto;flex: 1 1 auto;padding: 1rem }.modal-footer {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-align: center;align-items: center;-ms-flex-pack: end;justify-content: flex-end;padding: .75rem;border-top: 1px solid #dee2e6;border-bottom-right-radius: calc(.3rem - 1px);border-bottom-left-radius: calc(.3rem - 1px) }.modal-footer > * {margin: .25rem }.modal-scrollbar-measure {position: absolute;top: -9999px;width: 50px;height: 50px;overflow: scroll }@media (min-width:576px) {.modal-dialog {max-width: 500px;margin: 1.75rem auto }.modal-dialog-scrollable {max-height: calc(100% - 3.5rem) }.modal-dialog-scrollable .modal-content {max-height: calc(100vh - 3.5rem) }.modal-dialog-centered {min-height: calc(100% - 3.5rem) }.modal-dialog-centered::before {height: calc(100vh - 3.5rem);height: -webkit-min-content;height: min-content }.modal-sm {max-width: 300px }}@media (min-width:992px) {.modal-lg, .modal-xl {max-width: 800px }}@media (min-width:1200px) {.modal-xl {max-width: 1140px }}.tooltip {position: absolute;z-index: 1070;display: block;margin: 0;font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style: normal;font-weight: 400;line-height: 1.5;text-align: left;text-align: start;text-decoration: none;text-shadow: none;text-transform: none;letter-spacing: normal;word-break: normal;word-spacing: normal;white-space: normal;line-break: auto;font-size: .875rem;word-wrap: break-word;opacity: 0 }.tooltip.show {opacity: .9 }.tooltip .arrow {position: absolute;display: block;width: .8rem;height: .4rem }.tooltip .arrow::before {position: absolute;content: "";border-color: transparent;border-style: solid }.bs-tooltip-auto[x-placement^=top], .bs-tooltip-top {padding: .4rem 0 }.bs-tooltip-auto[x-placement^=top] .arrow, .bs-tooltip-top .arrow {bottom: 0 }.bs-tooltip-auto[x-placement^=top] .arrow::before, .bs-tooltip-top .arrow::before {top: 0;border-width: .4rem .4rem 0;border-top-color: #000 }.bs-tooltip-auto[x-placement^=right], .bs-tooltip-right {padding: 0 .4rem }.bs-tooltip-auto[x-placement^=right] .arrow, .bs-tooltip-right .arrow {left: 0;width: .4rem;height: .8rem }.bs-tooltip-auto[x-placement^=right] .arrow::before, .bs-tooltip-right .arrow::before {right: 0;border-width: .4rem .4rem .4rem 0;border-right-color: #000 }.bs-tooltip-auto[x-placement^=bottom], .bs-tooltip-bottom {padding: .4rem 0 }.bs-tooltip-auto[x-placement^=bottom] .arrow, .bs-tooltip-bottom .arrow {top: 0 }.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bs-tooltip-bottom .arrow::before {bottom: 0;border-width: 0 .4rem .4rem;border-bottom-color: #000 }.bs-tooltip-auto[x-placement^=left], .bs-tooltip-left {padding: 0 .4rem }.bs-tooltip-auto[x-placement^=left] .arrow, .bs-tooltip-left .arrow {right: 0;width: .4rem;height: .8rem }.bs-tooltip-auto[x-placement^=left] .arrow::before, .bs-tooltip-left .arrow::before {left: 0;border-width: .4rem 0 .4rem .4rem;border-left-color: #000 }.tooltip-inner {max-width: 200px;padding: .25rem .5rem;color: #fff;text-align: center;background-color: #000;border-radius: .25rem }.popover {position: absolute;top: 0;left: 0;z-index: 1060;display: block;max-width: 276px;font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style: normal;font-weight: 400;line-height: 1.5;text-align: left;text-align: start;text-decoration: none;text-shadow: none;text-transform: none;letter-spacing: normal;word-break: normal;word-spacing: normal;white-space: normal;line-break: auto;font-size: .875rem;word-wrap: break-word;background-color: #fff;background-clip: padding-box;border: 1px solid rgba(0, 0, 0, .2);border-radius: .3rem }.popover .arrow {position: absolute;display: block;width: 1rem;height: .5rem;margin: 0 .3rem }.popover .arrow::after, .popover .arrow::before {position: absolute;display: block;content: "";border-color: transparent;border-style: solid }.bs-popover-auto[x-placement^=top], .bs-popover-top {margin-bottom: .5rem }.bs-popover-auto[x-placement^=top] > .arrow, .bs-popover-top > .arrow {bottom: calc(-.5rem - 1px) }.bs-popover-auto[x-placement^=top] > .arrow::before, .bs-popover-top > .arrow::before {bottom: 0;border-width: .5rem .5rem 0;border-top-color: rgba(0, 0, 0, .25) }.bs-popover-auto[x-placement^=top] > .arrow::after, .bs-popover-top > .arrow::after {bottom: 1px;border-width: .5rem .5rem 0;border-top-color: #fff }.bs-popover-auto[x-placement^=right], .bs-popover-right {margin-left: .5rem }.bs-popover-auto[x-placement^=right] > .arrow, .bs-popover-right > .arrow {left: calc(-.5rem - 1px);width: .5rem;height: 1rem;margin: .3rem 0 }.bs-popover-auto[x-placement^=right] > .arrow::before, .bs-popover-right > .arrow::before {left: 0;border-width: .5rem .5rem .5rem 0;border-right-color: rgba(0, 0, 0, .25) }.bs-popover-auto[x-placement^=right] > .arrow::after, .bs-popover-right > .arrow::after {left: 1px;border-width: .5rem .5rem .5rem 0;border-right-color: #fff }.bs-popover-auto[x-placement^=bottom], .bs-popover-bottom {margin-top: .5rem }.bs-popover-auto[x-placement^=bottom] > .arrow, .bs-popover-bottom > .arrow {top: calc(-.5rem - 1px) }.bs-popover-auto[x-placement^=bottom] > .arrow::before, .bs-popover-bottom > .arrow::before {top: 0;border-width: 0 .5rem .5rem .5rem;border-bottom-color: rgba(0, 0, 0, .25) }.bs-popover-auto[x-placement^=bottom] > .arrow::after, .bs-popover-bottom > .arrow::after {top: 1px;border-width: 0 .5rem .5rem .5rem;border-bottom-color: #fff }.bs-popover-auto[x-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before {position: absolute;top: 0;left: 50%;display: block;width: 1rem;margin-left: -.5rem;content: "";border-bottom: 1px solid #f7f7f7 }.bs-popover-auto[x-placement^=left], .bs-popover-left {margin-right: .5rem }.bs-popover-auto[x-placement^=left] > .arrow, .bs-popover-left > .arrow {right: calc(-.5rem - 1px);width: .5rem;height: 1rem;margin: .3rem 0 }.bs-popover-auto[x-placement^=left] > .arrow::before, .bs-popover-left > .arrow::before {right: 0;border-width: .5rem 0 .5rem .5rem;border-left-color: rgba(0, 0, 0, .25) }.bs-popover-auto[x-placement^=left] > .arrow::after, .bs-popover-left > .arrow::after {right: 1px;border-width: .5rem 0 .5rem .5rem;border-left-color: #fff }.popover-header {padding: .5rem .75rem;margin-bottom: 0;font-size: 1rem;background-color: #f7f7f7;border-bottom: 1px solid #ebebeb;border-top-left-radius: calc(.3rem - 1px);border-top-right-radius: calc(.3rem - 1px) }.popover-header:empty {display: none }.popover-body {padding: .5rem .75rem;color: #212529 }.carousel {position: relative }.carousel.pointer-event {-ms-touch-action: pan-y;touch-action: pan-y }.carousel-inner {position: relative;width: 100%;overflow: hidden }.carousel-inner::after {display: block;clear: both;content: "" }.carousel-item {position: relative;display: none;float: left;width: 100%;margin-right: -100%;-webkit-backface-visibility: hidden;backface-visibility: hidden;transition: transform .6s ease-in-out }@media (prefers-reduced-motion:reduce) {.carousel-item {transition: none }}.carousel-item-next, .carousel-item-prev, .carousel-item.active {display: block }.active.carousel-item-right, .carousel-item-next:not(.carousel-item-left) {transform: translateX(100%) }.active.carousel-item-left, .carousel-item-prev:not(.carousel-item-right) {transform: translateX(-100%) }.carousel-fade .carousel-item {opacity: 0;transition-property: opacity;transform: none }.carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right, .carousel-fade .carousel-item.active {z-index: 1;opacity: 1 }.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right {z-index: 0;opacity: 0;transition: opacity 0s .6s }@media (prefers-reduced-motion:reduce) {.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right {transition: none }}.carousel-control-next, .carousel-control-prev {position: absolute;top: 0;bottom: 0;z-index: 1;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;width: 15%;color: #fff;text-align: center;opacity: .5;transition: opacity .15s ease }@media (prefers-reduced-motion:reduce) {.carousel-control-next, .carousel-control-prev {transition: none }}.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {color: #fff;text-decoration: none;outline: 0;opacity: .9 }.carousel-control-prev {left: 0 }.carousel-control-next {right: 0 }.carousel-control-next-icon, .carousel-control-prev-icon {display: inline-block;width: 20px;height: 20px;background: no-repeat 50%/100% 100% }.carousel-control-prev-icon {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e") }.carousel-control-next-icon {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e") }.carousel-indicators {position: absolute;right: 0;bottom: 0;left: 0;z-index: 15;display: -ms-flexbox;display: flex;-ms-flex-pack: center;justify-content: center;padding-left: 0;margin-right: 15%;margin-left: 15%;list-style: none }.carousel-indicators li {box-sizing: content-box;-ms-flex: 0 1 auto;flex: 0 1 auto;width: 30px;height: 3px;margin-right: 3px;margin-left: 3px;text-indent: -999px;cursor: pointer;background-color: #fff;background-clip: padding-box;border-top: 10px solid transparent;border-bottom: 10px solid transparent;opacity: .5;transition: opacity .6s ease }@media (prefers-reduced-motion:reduce) {.carousel-indicators li {transition: none }}.carousel-indicators .active {opacity: 1 }.carousel-caption {position: absolute;right: 15%;bottom: 20px;left: 15%;z-index: 10;padding-top: 20px;padding-bottom: 20px;color: #fff;text-align: center }@keyframes spinner-border {to {transform: rotate(360deg) }}.spinner-border {display: inline-block;width: 2rem;height: 2rem;vertical-align: text-bottom;border: .25em solid currentColor;border-right-color: transparent;border-radius: 50%;animation: spinner-border .75s linear infinite }.spinner-border-sm {width: 1rem;height: 1rem;border-width: .2em }@keyframes spinner-grow {0% {transform: scale(0) }50% {opacity: 1;transform: none }}.spinner-grow {display: inline-block;width: 2rem;height: 2rem;vertical-align: text-bottom;background-color: currentColor;border-radius: 50%;opacity: 0;animation: spinner-grow .75s linear infinite }.spinner-grow-sm {width: 1rem;height: 1rem }.align-baseline {vertical-align: baseline !important }.align-top {vertical-align: top !important }.align-middle {vertical-align: middle !important }.align-bottom {vertical-align: bottom !important }.align-text-bottom {vertical-align: text-bottom !important }.align-text-top {vertical-align: text-top !important }.bg-primary {background-color: #007bff !important }a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {background-color: #0062cc !important }.bg-secondary {background-color: #df252a !important }a.bg-secondary:focus, a.bg-secondary:hover, button.bg-secondary:focus, button.bg-secondary:hover {background-color: #b61b1f !important }.bg-success {background-color: #1bb161 !important }a.bg-success:focus, a.bg-success:hover, button.bg-success:focus, button.bg-success:hover {background-color: #148549 !important }.bg-info {background-color: #17a2b8 !important }a.bg-info:focus, a.bg-info:hover, button.bg-info:focus, button.bg-info:hover {background-color: #117a8b !important }.bg-warning {background-color: #ffc107 !important }a.bg-warning:focus, a.bg-warning:hover, button.bg-warning:focus, button.bg-warning:hover {background-color: #d39e00 !important }.bg-danger {background-color: #df252a !important }a.bg-danger:focus, a.bg-danger:hover, button.bg-danger:focus, button.bg-danger:hover {background-color: #b61b1f !important }.bg-light {background-color: #f8f9fa !important }a.bg-light:focus, a.bg-light:hover, button.bg-light:focus, button.bg-light:hover {background-color: #dae0e5 !important }.bg-dark {background-color: #1a1a19 !important }a.bg-dark:focus, a.bg-dark:hover, button.bg-dark:focus, button.bg-dark:hover {background-color: #000 !important }.bg-white {background-color: #fff !important }.bg-transparent {background-color: transparent !important }.border {border: 1px solid #dee2e6 !important }.border-top {border-top: 1px solid #dee2e6 !important }.border-right {border-right: 1px solid #dee2e6 !important }.border-bottom {border-bottom: 1px solid #dee2e6 !important }.border-left {border-left: 1px solid #dee2e6 !important }.border-0 {border: 0 !important }.border-top-0 {border-top: 0 !important }.border-right-0 {border-right: 0 !important }.border-bottom-0 {border-bottom: 0 !important }.border-left-0 {border-left: 0 !important }.border-primary {border-color: #007bff !important }.border-secondary {border-color: #df252a !important }.border-success {border-color: #1bb161 !important }.border-info {border-color: #17a2b8 !important }.border-warning {border-color: #ffc107 !important }.border-danger {border-color: #df252a !important }.border-light {border-color: #f8f9fa !important }.border-dark {border-color: #1a1a19 !important }.border-white {border-color: #fff !important }.rounded-sm {border-radius: .2rem !important }.rounded {border-radius: .25rem !important }.rounded-top {border-top-left-radius: .25rem !important;border-top-right-radius: .25rem !important }.rounded-right {border-top-right-radius: .25rem !important;border-bottom-right-radius: .25rem !important }.rounded-bottom {border-bottom-right-radius: .25rem !important;border-bottom-left-radius: .25rem !important }.rounded-left {border-top-left-radius: .25rem !important;border-bottom-left-radius: .25rem !important }.rounded-lg {border-radius: .3rem !important }.rounded-circle {border-radius: 50% !important }.rounded-pill {border-radius: 50rem !important }.rounded-0 {border-radius: 0 !important }.clearfix::after {display: block;clear: both;content: "" }.d-none {display: none !important }.d-inline {display: inline !important }.d-inline-block {display: inline-block !important }.d-block {display: block !important }.d-table {display: table !important }.d-table-row {display: table-row !important }.d-table-cell {display: table-cell !important }.d-flex {display: -ms-flexbox !important;display: flex !important }.d-inline-flex {display: -ms-inline-flexbox !important;display: inline-flex !important }@media (min-width:576px) {.d-sm-none {display: none !important }.d-sm-inline {display: inline !important }.d-sm-inline-block {display: inline-block !important }.d-sm-block {display: block !important }.d-sm-table {display: table !important }.d-sm-table-row {display: table-row !important }.d-sm-table-cell {display: table-cell !important }.d-sm-flex {display: -ms-flexbox !important;display: flex !important }.d-sm-inline-flex {display: -ms-inline-flexbox !important;display: inline-flex !important }}@media (min-width:768px) {.d-md-none {display: none !important }.d-md-inline {display: inline !important }.d-md-inline-block {display: inline-block !important }.d-md-block {display: block !important }.d-md-table {display: table !important }.d-md-table-row {display: table-row !important }.d-md-table-cell {display: table-cell !important }.d-md-flex {display: -ms-flexbox !important;display: flex !important }.d-md-inline-flex {display: -ms-inline-flexbox !important;display: inline-flex !important }}@media (min-width:992px) {.d-lg-none {display: none !important }.d-lg-inline {display: inline !important }.d-lg-inline-block {display: inline-block !important }.d-lg-block {display: block !important }.d-lg-table {display: table !important }.d-lg-table-row {display: table-row !important }.d-lg-table-cell {display: table-cell !important }.d-lg-flex {display: -ms-flexbox !important;display: flex !important }.d-lg-inline-flex {display: -ms-inline-flexbox !important;display: inline-flex !important }}@media (min-width:1200px) {.d-xl-none {display: none !important }.d-xl-inline {display: inline !important }.d-xl-inline-block {display: inline-block !important }.d-xl-block {display: block !important }.d-xl-table {display: table !important }.d-xl-table-row {display: table-row !important }.d-xl-table-cell {display: table-cell !important }.d-xl-flex {display: -ms-flexbox !important;display: flex !important }.d-xl-inline-flex {display: -ms-inline-flexbox !important;display: inline-flex !important }}@media print {.d-print-none {display: none !important }.d-print-inline {display: inline !important }.d-print-inline-block {display: inline-block !important }.d-print-block {display: block !important }.d-print-table {display: table !important }.d-print-table-row {display: table-row !important }.d-print-table-cell {display: table-cell !important }.d-print-flex {display: -ms-flexbox !important;display: flex !important }.d-print-inline-flex {display: -ms-inline-flexbox !important;display: inline-flex !important }}.embed-responsive {position: relative;display: block;width: 100%;padding: 0;overflow: hidden }.embed-responsive::before {display: block;content: "" }.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {position: absolute;top: 0;bottom: 0;left: 0;width: 100%;height: 100%;border: 0 }.embed-responsive-21by9::before {padding-top: 42.85714% }.embed-responsive-16by9::before {padding-top: 56.25% }.embed-responsive-4by3::before {padding-top: 75% }.embed-responsive-1by1::before {padding-top: 100% }.flex-row {-ms-flex-direction: row !important;flex-direction: row !important }.flex-column {-ms-flex-direction: column !important;flex-direction: column !important }.flex-row-reverse {-ms-flex-direction: row-reverse !important;flex-direction: row-reverse !important }.flex-column-reverse {-ms-flex-direction: column-reverse !important;flex-direction: column-reverse !important }.flex-wrap {-ms-flex-wrap: wrap !important;flex-wrap: wrap !important }.flex-nowrap {-ms-flex-wrap: nowrap !important;flex-wrap: nowrap !important }.flex-wrap-reverse {-ms-flex-wrap: wrap-reverse !important;flex-wrap: wrap-reverse !important }.flex-fill {-ms-flex: 1 1 auto !important;flex: 1 1 auto !important }.flex-grow-0 {-ms-flex-positive: 0 !important;flex-grow: 0 !important }.flex-grow-1 {-ms-flex-positive: 1 !important;flex-grow: 1 !important }.flex-shrink-0 {-ms-flex-negative: 0 !important;flex-shrink: 0 !important }.flex-shrink-1 {-ms-flex-negative: 1 !important;flex-shrink: 1 !important }.justify-content-start {-ms-flex-pack: start !important;justify-content: flex-start !important }.justify-content-end {-ms-flex-pack: end !important;justify-content: flex-end !important }.justify-content-center {-ms-flex-pack: center !important;justify-content: center !important }.justify-content-between {-ms-flex-pack: justify !important;justify-content: space-between !important }.justify-content-around {-ms-flex-pack: distribute !important;justify-content: space-around !important }.align-items-start {-ms-flex-align: start !important;align-items: flex-start !important }.align-items-end {-ms-flex-align: end !important;align-items: flex-end !important }.align-items-center {-ms-flex-align: center !important;align-items: center !important }.align-items-baseline {-ms-flex-align: baseline !important;align-items: baseline !important }.align-items-stretch {-ms-flex-align: stretch !important;align-items: stretch !important }.align-content-start {-ms-flex-line-pack: start !important;align-content: flex-start !important }.align-content-end {-ms-flex-line-pack: end !important;align-content: flex-end !important }.align-content-center {-ms-flex-line-pack: center !important;align-content: center !important }.align-content-between {-ms-flex-line-pack: justify !important;align-content: space-between !important }.align-content-around {-ms-flex-line-pack: distribute !important;align-content: space-around !important }.align-content-stretch {-ms-flex-line-pack: stretch !important;align-content: stretch !important }.align-self-auto {-ms-flex-item-align: auto !important;-ms-grid-row-align: auto !important;align-self: auto !important }.align-self-start {-ms-flex-item-align: start !important;align-self: flex-start !important }.align-self-end {-ms-flex-item-align: end !important;align-self: flex-end !important }.align-self-center {-ms-flex-item-align: center !important;-ms-grid-row-align: center !important;align-self: center !important }.align-self-baseline {-ms-flex-item-align: baseline !important;align-self: baseline !important }.align-self-stretch {-ms-flex-item-align: stretch !important;-ms-grid-row-align: stretch !important;align-self: stretch !important }@media (min-width:576px) {.flex-sm-row {-ms-flex-direction: row !important;flex-direction: row !important }.flex-sm-column {-ms-flex-direction: column !important;flex-direction: column !important }.flex-sm-row-reverse {-ms-flex-direction: row-reverse !important;flex-direction: row-reverse !important }.flex-sm-column-reverse {-ms-flex-direction: column-reverse !important;flex-direction: column-reverse !important }.flex-sm-wrap {-ms-flex-wrap: wrap !important;flex-wrap: wrap !important }.flex-sm-nowrap {-ms-flex-wrap: nowrap !important;flex-wrap: nowrap !important }.flex-sm-wrap-reverse {-ms-flex-wrap: wrap-reverse !important;flex-wrap: wrap-reverse !important }.flex-sm-fill {-ms-flex: 1 1 auto !important;flex: 1 1 auto !important }.flex-sm-grow-0 {-ms-flex-positive: 0 !important;flex-grow: 0 !important }.flex-sm-grow-1 {-ms-flex-positive: 1 !important;flex-grow: 1 !important }.flex-sm-shrink-0 {-ms-flex-negative: 0 !important;flex-shrink: 0 !important }.flex-sm-shrink-1 {-ms-flex-negative: 1 !important;flex-shrink: 1 !important }.justify-content-sm-start {-ms-flex-pack: start !important;justify-content: flex-start !important }.justify-content-sm-end {-ms-flex-pack: end !important;justify-content: flex-end !important }.justify-content-sm-center {-ms-flex-pack: center !important;justify-content: center !important }.justify-content-sm-between {-ms-flex-pack: justify !important;justify-content: space-between !important }.justify-content-sm-around {-ms-flex-pack: distribute !important;justify-content: space-around !important }.align-items-sm-start {-ms-flex-align: start !important;align-items: flex-start !important }.align-items-sm-end {-ms-flex-align: end !important;align-items: flex-end !important }.align-items-sm-center {-ms-flex-align: center !important;align-items: center !important }.align-items-sm-baseline {-ms-flex-align: baseline !important;align-items: baseline !important }.align-items-sm-stretch {-ms-flex-align: stretch !important;align-items: stretch !important }.align-content-sm-start {-ms-flex-line-pack: start !important;align-content: flex-start !important }.align-content-sm-end {-ms-flex-line-pack: end !important;align-content: flex-end !important }.align-content-sm-center {-ms-flex-line-pack: center !important;align-content: center !important }.align-content-sm-between {-ms-flex-line-pack: justify !important;align-content: space-between !important }.align-content-sm-around {-ms-flex-line-pack: distribute !important;align-content: space-around !important }.align-content-sm-stretch {-ms-flex-line-pack: stretch !important;align-content: stretch !important }.align-self-sm-auto {-ms-flex-item-align: auto !important;-ms-grid-row-align: auto !important;align-self: auto !important }.align-self-sm-start {-ms-flex-item-align: start !important;align-self: flex-start !important }.align-self-sm-end {-ms-flex-item-align: end !important;align-self: flex-end !important }.align-self-sm-center {-ms-flex-item-align: center !important;-ms-grid-row-align: center !important;align-self: center !important }.align-self-sm-baseline {-ms-flex-item-align: baseline !important;align-self: baseline !important }.align-self-sm-stretch {-ms-flex-item-align: stretch !important;-ms-grid-row-align: stretch !important;align-self: stretch !important }}@media (min-width:768px) {.flex-md-row {-ms-flex-direction: row !important;flex-direction: row !important }.flex-md-column {-ms-flex-direction: column !important;flex-direction: column !important }.flex-md-row-reverse {-ms-flex-direction: row-reverse !important;flex-direction: row-reverse !important }.flex-md-column-reverse {-ms-flex-direction: column-reverse !important;flex-direction: column-reverse !important }.flex-md-wrap {-ms-flex-wrap: wrap !important;flex-wrap: wrap !important }.flex-md-nowrap {-ms-flex-wrap: nowrap !important;flex-wrap: nowrap !important }.flex-md-wrap-reverse {-ms-flex-wrap: wrap-reverse !important;flex-wrap: wrap-reverse !important }.flex-md-fill {-ms-flex: 1 1 auto !important;flex: 1 1 auto !important }.flex-md-grow-0 {-ms-flex-positive: 0 !important;flex-grow: 0 !important }.flex-md-grow-1 {-ms-flex-positive: 1 !important;flex-grow: 1 !important }.flex-md-shrink-0 {-ms-flex-negative: 0 !important;flex-shrink: 0 !important }.flex-md-shrink-1 {-ms-flex-negative: 1 !important;flex-shrink: 1 !important }.justify-content-md-start {-ms-flex-pack: start !important;justify-content: flex-start !important }.justify-content-md-end {-ms-flex-pack: end !important;justify-content: flex-end !important }.justify-content-md-center {-ms-flex-pack: center !important;justify-content: center !important }.justify-content-md-between {-ms-flex-pack: justify !important;justify-content: space-between !important }.justify-content-md-around {-ms-flex-pack: distribute !important;justify-content: space-around !important }.align-items-md-start {-ms-flex-align: start !important;align-items: flex-start !important }.align-items-md-end {-ms-flex-align: end !important;align-items: flex-end !important }.align-items-md-center {-ms-flex-align: center !important;align-items: center !important }.align-items-md-baseline {-ms-flex-align: baseline !important;align-items: baseline !important }.align-items-md-stretch {-ms-flex-align: stretch !important;align-items: stretch !important }.align-content-md-start {-ms-flex-line-pack: start !important;align-content: flex-start !important }.align-content-md-end {-ms-flex-line-pack: end !important;align-content: flex-end !important }.align-content-md-center {-ms-flex-line-pack: center !important;align-content: center !important }.align-content-md-between {-ms-flex-line-pack: justify !important;align-content: space-between !important }.align-content-md-around {-ms-flex-line-pack: distribute !important;align-content: space-around !important }.align-content-md-stretch {-ms-flex-line-pack: stretch !important;align-content: stretch !important }.align-self-md-auto {-ms-flex-item-align: auto !important;-ms-grid-row-align: auto !important;align-self: auto !important }.align-self-md-start {-ms-flex-item-align: start !important;align-self: flex-start !important }.align-self-md-end {-ms-flex-item-align: end !important;align-self: flex-end !important }.align-self-md-center {-ms-flex-item-align: center !important;-ms-grid-row-align: center !important;align-self: center !important }.align-self-md-baseline {-ms-flex-item-align: baseline !important;align-self: baseline !important }.align-self-md-stretch {-ms-flex-item-align: stretch !important;-ms-grid-row-align: stretch !important;align-self: stretch !important }}@media (min-width:992px) {.flex-lg-row {-ms-flex-direction: row !important;flex-direction: row !important }.flex-lg-column {-ms-flex-direction: column !important;flex-direction: column !important }.flex-lg-row-reverse {-ms-flex-direction: row-reverse !important;flex-direction: row-reverse !important }.flex-lg-column-reverse {-ms-flex-direction: column-reverse !important;flex-direction: column-reverse !important }.flex-lg-wrap {-ms-flex-wrap: wrap !important;flex-wrap: wrap !important }.flex-lg-nowrap {-ms-flex-wrap: nowrap !important;flex-wrap: nowrap !important }.flex-lg-wrap-reverse {-ms-flex-wrap: wrap-reverse !important;flex-wrap: wrap-reverse !important }.flex-lg-fill {-ms-flex: 1 1 auto !important;flex: 1 1 auto !important }.flex-lg-grow-0 {-ms-flex-positive: 0 !important;flex-grow: 0 !important }.flex-lg-grow-1 {-ms-flex-positive: 1 !important;flex-grow: 1 !important }.flex-lg-shrink-0 {-ms-flex-negative: 0 !important;flex-shrink: 0 !important }.flex-lg-shrink-1 {-ms-flex-negative: 1 !important;flex-shrink: 1 !important }.justify-content-lg-start {-ms-flex-pack: start !important;justify-content: flex-start !important }.justify-content-lg-end {-ms-flex-pack: end !important;justify-content: flex-end !important }.justify-content-lg-center {-ms-flex-pack: center !important;justify-content: center !important }.justify-content-lg-between {-ms-flex-pack: justify !important;justify-content: space-between !important }.justify-content-lg-around {-ms-flex-pack: distribute !important;justify-content: space-around !important }.align-items-lg-start {-ms-flex-align: start !important;align-items: flex-start !important }.align-items-lg-end {-ms-flex-align: end !important;align-items: flex-end !important }.align-items-lg-center {-ms-flex-align: center !important;align-items: center !important }.align-items-lg-baseline {-ms-flex-align: baseline !important;align-items: baseline !important }.align-items-lg-stretch {-ms-flex-align: stretch !important;align-items: stretch !important }.align-content-lg-start {-ms-flex-line-pack: start !important;align-content: flex-start !important }.align-content-lg-end {-ms-flex-line-pack: end !important;align-content: flex-end !important }.align-content-lg-center {-ms-flex-line-pack: center !important;align-content: center !important }.align-content-lg-between {-ms-flex-line-pack: justify !important;align-content: space-between !important }.align-content-lg-around {-ms-flex-line-pack: distribute !important;align-content: space-around !important }.align-content-lg-stretch {-ms-flex-line-pack: stretch !important;align-content: stretch !important }.align-self-lg-auto {-ms-flex-item-align: auto !important;-ms-grid-row-align: auto !important;align-self: auto !important }.align-self-lg-start {-ms-flex-item-align: start !important;align-self: flex-start !important }.align-self-lg-end {-ms-flex-item-align: end !important;align-self: flex-end !important }.align-self-lg-center {-ms-flex-item-align: center !important;-ms-grid-row-align: center !important;align-self: center !important }.align-self-lg-baseline {-ms-flex-item-align: baseline !important;align-self: baseline !important }.align-self-lg-stretch {-ms-flex-item-align: stretch !important;-ms-grid-row-align: stretch !important;align-self: stretch !important }}@media (min-width:1200px) {.flex-xl-row {-ms-flex-direction: row !important;flex-direction: row !important }.flex-xl-column {-ms-flex-direction: column !important;flex-direction: column !important }.flex-xl-row-reverse {-ms-flex-direction: row-reverse !important;flex-direction: row-reverse !important }.flex-xl-column-reverse {-ms-flex-direction: column-reverse !important;flex-direction: column-reverse !important }.flex-xl-wrap {-ms-flex-wrap: wrap !important;flex-wrap: wrap !important }.flex-xl-nowrap {-ms-flex-wrap: nowrap !important;flex-wrap: nowrap !important }.flex-xl-wrap-reverse {-ms-flex-wrap: wrap-reverse !important;flex-wrap: wrap-reverse !important }.flex-xl-fill {-ms-flex: 1 1 auto !important;flex: 1 1 auto !important }.flex-xl-grow-0 {-ms-flex-positive: 0 !important;flex-grow: 0 !important }.flex-xl-grow-1 {-ms-flex-positive: 1 !important;flex-grow: 1 !important }.flex-xl-shrink-0 {-ms-flex-negative: 0 !important;flex-shrink: 0 !important }.flex-xl-shrink-1 {-ms-flex-negative: 1 !important;flex-shrink: 1 !important }.justify-content-xl-start {-ms-flex-pack: start !important;justify-content: flex-start !important }.justify-content-xl-end {-ms-flex-pack: end !important;justify-content: flex-end !important }.justify-content-xl-center {-ms-flex-pack: center !important;justify-content: center !important }.justify-content-xl-between {-ms-flex-pack: justify !important;justify-content: space-between !important }.justify-content-xl-around {-ms-flex-pack: distribute !important;justify-content: space-around !important }.align-items-xl-start {-ms-flex-align: start !important;align-items: flex-start !important }.align-items-xl-end {-ms-flex-align: end !important;align-items: flex-end !important }.align-items-xl-center {-ms-flex-align: center !important;align-items: center !important }.align-items-xl-baseline {-ms-flex-align: baseline !important;align-items: baseline !important }.align-items-xl-stretch {-ms-flex-align: stretch !important;align-items: stretch !important }.align-content-xl-start {-ms-flex-line-pack: start !important;align-content: flex-start !important }.align-content-xl-end {-ms-flex-line-pack: end !important;align-content: flex-end !important }.align-content-xl-center {-ms-flex-line-pack: center !important;align-content: center !important }.align-content-xl-between {-ms-flex-line-pack: justify !important;align-content: space-between !important }.align-content-xl-around {-ms-flex-line-pack: distribute !important;align-content: space-around !important }.align-content-xl-stretch {-ms-flex-line-pack: stretch !important;align-content: stretch !important }.align-self-xl-auto {-ms-flex-item-align: auto !important;-ms-grid-row-align: auto !important;align-self: auto !important }.align-self-xl-start {-ms-flex-item-align: start !important;align-self: flex-start !important }.align-self-xl-end {-ms-flex-item-align: end !important;align-self: flex-end !important }.align-self-xl-center {-ms-flex-item-align: center !important;-ms-grid-row-align: center !important;align-self: center !important }.align-self-xl-baseline {-ms-flex-item-align: baseline !important;align-self: baseline !important }.align-self-xl-stretch {-ms-flex-item-align: stretch !important;-ms-grid-row-align: stretch !important;align-self: stretch !important }}.float-left {float: left !important }.float-right {float: right !important }.float-none {float: none !important }@media (min-width:576px) {.float-sm-left {float: left !important }.float-sm-right {float: right !important }.float-sm-none {float: none !important }}@media (min-width:768px) {.float-md-left {float: left !important }.float-md-right {float: right !important }.float-md-none {float: none !important }}@media (min-width:992px) {.float-lg-left {float: left !important }.float-lg-right {float: right !important }.float-lg-none {float: none !important }}@media (min-width:1200px) {.float-xl-left {float: left !important }.float-xl-right {float: right !important }.float-xl-none {float: none !important }}.user-select-all {-webkit-user-select: all !important;-ms-user-select: all !important;user-select: all !important }.user-select-auto {-webkit-user-select: auto !important;-ms-user-select: auto !important;user-select: auto !important }.user-select-none {-webkit-user-select: none !important;-ms-user-select: none !important;user-select: none !important }.overflow-auto {overflow: auto !important }.overflow-hidden {overflow: hidden !important }.position-static {position: static !important }.position-relative {position: relative !important }.position-absolute {position: absolute !important }.position-fixed {position: fixed !important }.position-sticky {position: -webkit-sticky !important;position: sticky !important }.fixed-top {position: fixed;top: 0;right: 0;left: 0;z-index: 1030 }.fixed-bottom {position: fixed;right: 0;bottom: 0;left: 0;z-index: 1030 }@supports ((position:-webkit-sticky) or (position:sticky)) {.sticky-top {position: -webkit-sticky;position: sticky;top: 0;z-index: 1020 }}.sr-only {position: absolute;width: 1px;height: 1px;padding: 0;margin: -1px;overflow: hidden;clip: rect(0, 0, 0, 0);white-space: nowrap;border: 0 }.sr-only-focusable:active, .sr-only-focusable:focus {position: static;width: auto;height: auto;overflow: visible;clip: auto;white-space: normal }.shadow-sm {box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important }.shadow {box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important }.shadow-lg {box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important }.shadow-none {box-shadow: none !important }.w-25 {width: 25% !important }.w-50 {width: 50% !important }.w-75 {width: 75% !important }.w-100 {width: 100% !important }.w-auto {width: auto !important }.h-25 {height: 25% !important }.h-50 {height: 50% !important }.h-75 {height: 75% !important }.h-100 {height: 100% !important }.h-auto {height: auto !important }.mw-100 {max-width: 100% !important }.mh-100 {max-height: 100% !important }.min-vw-100 {min-width: 100vw !important }.min-vh-100 {min-height: 100vh !important }.vw-100 {width: 100vw !important }.vh-100 {height: 100vh !important }.m-0 {margin: 0 !important }.mt-0, .my-0 {margin-top: 0 !important }.mr-0, .mx-0 {margin-right: 0 !important }.mb-0, .my-0 {margin-bottom: 0 !important }.ml-0, .mx-0 {margin-left: 0 !important }.m-1 {margin: .25rem !important }.mt-1, .my-1 {margin-top: .25rem !important }.mr-1, .mx-1 {margin-right: .25rem !important }.mb-1, .my-1 {margin-bottom: .25rem !important }.ml-1, .mx-1 {margin-left: .25rem !important }.m-2 {margin: .5rem !important }.mt-2, .my-2 {margin-top: .5rem !important }.mr-2, .mx-2 {margin-right: .5rem !important }.mb-2, .my-2 {margin-bottom: .5rem !important }.ml-2, .mx-2 {margin-left: .5rem !important }.m-3 {margin: 1rem !important }.mt-3, .my-3 {margin-top: 1rem !important }.mr-3, .mx-3 {margin-right: 1rem !important }.mb-3, .my-3 {margin-bottom: 1rem !important }.ml-3, .mx-3 {margin-left: 1rem !important }.m-4 {margin: 1.5rem !important }.mt-4, .my-4 {margin-top: 1.5rem !important }.mr-4, .mx-4 {margin-right: 1.5rem !important }.mb-4, .my-4 {margin-bottom: 1.5rem !important }.ml-4, .mx-4 {margin-left: 1.5rem !important }.m-5 {margin: 3rem !important }.mt-5, .my-5 {margin-top: 3rem !important }.mr-5, .mx-5 {margin-right: 3rem !important }.mb-5, .my-5 {margin-bottom: 3rem !important }.ml-5, .mx-5 {margin-left: 3rem !important }.p-0 {padding: 0 !important }.pt-0, .py-0 {padding-top: 0 !important }.pr-0, .px-0 {padding-right: 0 !important }.pb-0, .py-0 {padding-bottom: 0 !important }.pl-0, .px-0 {padding-left: 0 !important }.p-1 {padding: .25rem !important }.pt-1, .py-1 {padding-top: .25rem !important }.pr-1, .px-1 {padding-right: .25rem !important }.pb-1, .py-1 {padding-bottom: .25rem !important }.pl-1, .px-1 {padding-left: .25rem !important }.p-2 {padding: .5rem !important }.pt-2, .py-2 {padding-top: .5rem !important }.pr-2, .px-2 {padding-right: .5rem !important }.pb-2, .py-2 {padding-bottom: .5rem !important }.pl-2, .px-2 {padding-left: .5rem !important }.p-3 {padding: 1rem !important }.pt-3, .py-3 {padding-top: 1rem !important }.pr-3, .px-3 {padding-right: 1rem !important }.pb-3, .py-3 {padding-bottom: 1rem !important }.pl-3, .px-3 {padding-left: 1rem !important }.p-4 {padding: 1.5rem !important }.pt-4, .py-4 {padding-top: 1.5rem !important }.pr-4, .px-4 {padding-right: 1.5rem !important }.pb-4, .py-4 {padding-bottom: 1.5rem !important }.pl-4, .px-4 {padding-left: 1.5rem !important }.p-5 {padding: 3rem !important }.pt-5, .py-5 {padding-top: 3rem !important }.pr-5, .px-5 {padding-right: 3rem !important }.pb-5, .py-5 {padding-bottom: 3rem !important }.pl-5, .px-5 {padding-left: 3rem !important }.m-n1 {margin: -.25rem !important }.mt-n1, .my-n1 {margin-top: -.25rem !important }.mr-n1, .mx-n1 {margin-right: -.25rem !important }.mb-n1, .my-n1 {margin-bottom: -.25rem !important }.ml-n1, .mx-n1 {margin-left: -.25rem !important }.m-n2 {margin: -.5rem !important }.mt-n2, .my-n2 {margin-top: -.5rem !important }.mr-n2, .mx-n2 {margin-right: -.5rem !important }.mb-n2, .my-n2 {margin-bottom: -.5rem !important }.ml-n2, .mx-n2 {margin-left: -.5rem !important }.m-n3 {margin: -1rem !important }.mt-n3, .my-n3 {margin-top: -1rem !important }.mr-n3, .mx-n3 {margin-right: -1rem !important }.mb-n3, .my-n3 {margin-bottom: -1rem !important }.ml-n3, .mx-n3 {margin-left: -1rem !important }.m-n4 {margin: -1.5rem !important }.mt-n4, .my-n4 {margin-top: -1.5rem !important }.mr-n4, .mx-n4 {margin-right: -1.5rem !important }.mb-n4, .my-n4 {margin-bottom: -1.5rem !important }.ml-n4, .mx-n4 {margin-left: -1.5rem !important }.m-n5 {margin: -3rem !important }.mt-n5, .my-n5 {margin-top: -3rem !important }.mr-n5, .mx-n5 {margin-right: -3rem !important }.mb-n5, .my-n5 {margin-bottom: -3rem !important }.ml-n5, .mx-n5 {margin-left: -3rem !important }.m-auto {margin: auto !important }.mt-auto, .my-auto {margin-top: auto !important }.mr-auto, .mx-auto {margin-right: auto !important }.mb-auto, .my-auto {margin-bottom: auto !important }.ml-auto, .mx-auto {margin-left: auto !important }@media (min-width:576px) {.m-sm-0 {margin: 0 !important }.mt-sm-0, .my-sm-0 {margin-top: 0 !important }.mr-sm-0, .mx-sm-0 {margin-right: 0 !important }.mb-sm-0, .my-sm-0 {margin-bottom: 0 !important }.ml-sm-0, .mx-sm-0 {margin-left: 0 !important }.m-sm-1 {margin: .25rem !important }.mt-sm-1, .my-sm-1 {margin-top: .25rem !important }.mr-sm-1, .mx-sm-1 {margin-right: .25rem !important }.mb-sm-1, .my-sm-1 {margin-bottom: .25rem !important }.ml-sm-1, .mx-sm-1 {margin-left: .25rem !important }.m-sm-2 {margin: .5rem !important }.mt-sm-2, .my-sm-2 {margin-top: .5rem !important }.mr-sm-2, .mx-sm-2 {margin-right: .5rem !important }.mb-sm-2, .my-sm-2 {margin-bottom: .5rem !important }.ml-sm-2, .mx-sm-2 {margin-left: .5rem !important }.m-sm-3 {margin: 1rem !important }.mt-sm-3, .my-sm-3 {margin-top: 1rem !important }.mr-sm-3, .mx-sm-3 {margin-right: 1rem !important }.mb-sm-3, .my-sm-3 {margin-bottom: 1rem !important }.ml-sm-3, .mx-sm-3 {margin-left: 1rem !important }.m-sm-4 {margin: 1.5rem !important }.mt-sm-4, .my-sm-4 {margin-top: 1.5rem !important }.mr-sm-4, .mx-sm-4 {margin-right: 1.5rem !important }.mb-sm-4, .my-sm-4 {margin-bottom: 1.5rem !important }.ml-sm-4, .mx-sm-4 {margin-left: 1.5rem !important }.m-sm-5 {margin: 3rem !important }.mt-sm-5, .my-sm-5 {margin-top: 3rem !important }.mr-sm-5, .mx-sm-5 {margin-right: 3rem !important }.mb-sm-5, .my-sm-5 {margin-bottom: 3rem !important }.ml-sm-5, .mx-sm-5 {margin-left: 3rem !important }.p-sm-0 {padding: 0 !important }.pt-sm-0, .py-sm-0 {padding-top: 0 !important }.pr-sm-0, .px-sm-0 {padding-right: 0 !important }.pb-sm-0, .py-sm-0 {padding-bottom: 0 !important }.pl-sm-0, .px-sm-0 {padding-left: 0 !important }.p-sm-1 {padding: .25rem !important }.pt-sm-1, .py-sm-1 {padding-top: .25rem !important }.pr-sm-1, .px-sm-1 {padding-right: .25rem !important }.pb-sm-1, .py-sm-1 {padding-bottom: .25rem !important }.pl-sm-1, .px-sm-1 {padding-left: .25rem !important }.p-sm-2 {padding: .5rem !important }.pt-sm-2, .py-sm-2 {padding-top: .5rem !important }.pr-sm-2, .px-sm-2 {padding-right: .5rem !important }.pb-sm-2, .py-sm-2 {padding-bottom: .5rem !important }.pl-sm-2, .px-sm-2 {padding-left: .5rem !important }.p-sm-3 {padding: 1rem !important }.pt-sm-3, .py-sm-3 {padding-top: 1rem !important }.pr-sm-3, .px-sm-3 {padding-right: 1rem !important }.pb-sm-3, .py-sm-3 {padding-bottom: 1rem !important }.pl-sm-3, .px-sm-3 {padding-left: 1rem !important }.p-sm-4 {padding: 1.5rem !important }.pt-sm-4, .py-sm-4 {padding-top: 1.5rem !important }.pr-sm-4, .px-sm-4 {padding-right: 1.5rem !important }.pb-sm-4, .py-sm-4 {padding-bottom: 1.5rem !important }.pl-sm-4, .px-sm-4 {padding-left: 1.5rem !important }.p-sm-5 {padding: 3rem !important }.pt-sm-5, .py-sm-5 {padding-top: 3rem !important }.pr-sm-5, .px-sm-5 {padding-right: 3rem !important }.pb-sm-5, .py-sm-5 {padding-bottom: 3rem !important }.pl-sm-5, .px-sm-5 {padding-left: 3rem !important }.m-sm-n1 {margin: -.25rem !important }.mt-sm-n1, .my-sm-n1 {margin-top: -.25rem !important }.mr-sm-n1, .mx-sm-n1 {margin-right: -.25rem !important }.mb-sm-n1, .my-sm-n1 {margin-bottom: -.25rem !important }.ml-sm-n1, .mx-sm-n1 {margin-left: -.25rem !important }.m-sm-n2 {margin: -.5rem !important }.mt-sm-n2, .my-sm-n2 {margin-top: -.5rem !important }.mr-sm-n2, .mx-sm-n2 {margin-right: -.5rem !important }.mb-sm-n2, .my-sm-n2 {margin-bottom: -.5rem !important }.ml-sm-n2, .mx-sm-n2 {margin-left: -.5rem !important }.m-sm-n3 {margin: -1rem !important }.mt-sm-n3, .my-sm-n3 {margin-top: -1rem !important }.mr-sm-n3, .mx-sm-n3 {margin-right: -1rem !important }.mb-sm-n3, .my-sm-n3 {margin-bottom: -1rem !important }.ml-sm-n3, .mx-sm-n3 {margin-left: -1rem !important }.m-sm-n4 {margin: -1.5rem !important }.mt-sm-n4, .my-sm-n4 {margin-top: -1.5rem !important }.mr-sm-n4, .mx-sm-n4 {margin-right: -1.5rem !important }.mb-sm-n4, .my-sm-n4 {margin-bottom: -1.5rem !important }.ml-sm-n4, .mx-sm-n4 {margin-left: -1.5rem !important }.m-sm-n5 {margin: -3rem !important }.mt-sm-n5, .my-sm-n5 {margin-top: -3rem !important }.mr-sm-n5, .mx-sm-n5 {margin-right: -3rem !important }.mb-sm-n5, .my-sm-n5 {margin-bottom: -3rem !important }.ml-sm-n5, .mx-sm-n5 {margin-left: -3rem !important }.m-sm-auto {margin: auto !important }.mt-sm-auto, .my-sm-auto {margin-top: auto !important }.mr-sm-auto, .mx-sm-auto {margin-right: auto !important }.mb-sm-auto, .my-sm-auto {margin-bottom: auto !important }.ml-sm-auto, .mx-sm-auto {margin-left: auto !important }}@media (min-width:768px) {.m-md-0 {margin: 0 !important }.mt-md-0, .my-md-0 {margin-top: 0 !important }.mr-md-0, .mx-md-0 {margin-right: 0 !important }.mb-md-0, .my-md-0 {margin-bottom: 0 !important }.ml-md-0, .mx-md-0 {margin-left: 0 !important }.m-md-1 {margin: .25rem !important }.mt-md-1, .my-md-1 {margin-top: .25rem !important }.mr-md-1, .mx-md-1 {margin-right: .25rem !important }.mb-md-1, .my-md-1 {margin-bottom: .25rem !important }.ml-md-1, .mx-md-1 {margin-left: .25rem !important }.m-md-2 {margin: .5rem !important }.mt-md-2, .my-md-2 {margin-top: .5rem !important }.mr-md-2, .mx-md-2 {margin-right: .5rem !important }.mb-md-2, .my-md-2 {margin-bottom: .5rem !important }.ml-md-2, .mx-md-2 {margin-left: .5rem !important }.m-md-3 {margin: 1rem !important }.mt-md-3, .my-md-3 {margin-top: 1rem !important }.mr-md-3, .mx-md-3 {margin-right: 1rem !important }.mb-md-3, .my-md-3 {margin-bottom: 1rem !important }.ml-md-3, .mx-md-3 {margin-left: 1rem !important }.m-md-4 {margin: 1.5rem !important }.mt-md-4, .my-md-4 {margin-top: 1.5rem !important }.mr-md-4, .mx-md-4 {margin-right: 1.5rem !important }.mb-md-4, .my-md-4 {margin-bottom: 1.5rem !important }.ml-md-4, .mx-md-4 {margin-left: 1.5rem !important }.m-md-5 {margin: 3rem !important }.mt-md-5, .my-md-5 {margin-top: 3rem !important }.mr-md-5, .mx-md-5 {margin-right: 3rem !important }.mb-md-5, .my-md-5 {margin-bottom: 3rem !important }.ml-md-5, .mx-md-5 {margin-left: 3rem !important }.p-md-0 {padding: 0 !important }.pt-md-0, .py-md-0 {padding-top: 0 !important }.pr-md-0, .px-md-0 {padding-right: 0 !important }.pb-md-0, .py-md-0 {padding-bottom: 0 !important }.pl-md-0, .px-md-0 {padding-left: 0 !important }.p-md-1 {padding: .25rem !important }.pt-md-1, .py-md-1 {padding-top: .25rem !important }.pr-md-1, .px-md-1 {padding-right: .25rem !important }.pb-md-1, .py-md-1 {padding-bottom: .25rem !important }.pl-md-1, .px-md-1 {padding-left: .25rem !important }.p-md-2 {padding: .5rem !important }.pt-md-2, .py-md-2 {padding-top: .5rem !important }.pr-md-2, .px-md-2 {padding-right: .5rem !important }.pb-md-2, .py-md-2 {padding-bottom: .5rem !important }.pl-md-2, .px-md-2 {padding-left: .5rem !important }.p-md-3 {padding: 1rem !important }.pt-md-3, .py-md-3 {padding-top: 1rem !important }.pr-md-3, .px-md-3 {padding-right: 1rem !important }.pb-md-3, .py-md-3 {padding-bottom: 1rem !important }.pl-md-3, .px-md-3 {padding-left: 1rem !important }.p-md-4 {padding: 1.5rem !important }.pt-md-4, .py-md-4 {padding-top: 1.5rem !important }.pr-md-4, .px-md-4 {padding-right: 1.5rem !important }.pb-md-4, .py-md-4 {padding-bottom: 1.5rem !important }.pl-md-4, .px-md-4 {padding-left: 1.5rem !important }.p-md-5 {padding: 3rem !important }.pt-md-5, .py-md-5 {padding-top: 3rem !important }.pr-md-5, .px-md-5 {padding-right: 3rem !important }.pb-md-5, .py-md-5 {padding-bottom: 3rem !important }.pl-md-5, .px-md-5 {padding-left: 3rem !important }.m-md-n1 {margin: -.25rem !important }.mt-md-n1, .my-md-n1 {margin-top: -.25rem !important }.mr-md-n1, .mx-md-n1 {margin-right: -.25rem !important }.mb-md-n1, .my-md-n1 {margin-bottom: -.25rem !important }.ml-md-n1, .mx-md-n1 {margin-left: -.25rem !important }.m-md-n2 {margin: -.5rem !important }.mt-md-n2, .my-md-n2 {margin-top: -.5rem !important }.mr-md-n2, .mx-md-n2 {margin-right: -.5rem !important }.mb-md-n2, .my-md-n2 {margin-bottom: -.5rem !important }.ml-md-n2, .mx-md-n2 {margin-left: -.5rem !important }.m-md-n3 {margin: -1rem !important }.mt-md-n3, .my-md-n3 {margin-top: -1rem !important }.mr-md-n3, .mx-md-n3 {margin-right: -1rem !important }.mb-md-n3, .my-md-n3 {margin-bottom: -1rem !important }.ml-md-n3, .mx-md-n3 {margin-left: -1rem !important }.m-md-n4 {margin: -1.5rem !important }.mt-md-n4, .my-md-n4 {margin-top: -1.5rem !important }.mr-md-n4, .mx-md-n4 {margin-right: -1.5rem !important }.mb-md-n4, .my-md-n4 {margin-bottom: -1.5rem !important }.ml-md-n4, .mx-md-n4 {margin-left: -1.5rem !important }.m-md-n5 {margin: -3rem !important }.mt-md-n5, .my-md-n5 {margin-top: -3rem !important }.mr-md-n5, .mx-md-n5 {margin-right: -3rem !important }.mb-md-n5, .my-md-n5 {margin-bottom: -3rem !important }.ml-md-n5, .mx-md-n5 {margin-left: -3rem !important }.m-md-auto {margin: auto !important }.mt-md-auto, .my-md-auto {margin-top: auto !important }.mr-md-auto, .mx-md-auto {margin-right: auto !important }.mb-md-auto, .my-md-auto {margin-bottom: auto !important }.ml-md-auto, .mx-md-auto {margin-left: auto !important }}@media (min-width:992px) {.m-lg-0 {margin: 0 !important }.mt-lg-0, .my-lg-0 {margin-top: 0 !important }.mr-lg-0, .mx-lg-0 {margin-right: 0 !important }.mb-lg-0, .my-lg-0 {margin-bottom: 0 !important }.ml-lg-0, .mx-lg-0 {margin-left: 0 !important }.m-lg-1 {margin: .25rem !important }.mt-lg-1, .my-lg-1 {margin-top: .25rem !important }.mr-lg-1, .mx-lg-1 {margin-right: .25rem !important }.mb-lg-1, .my-lg-1 {margin-bottom: .25rem !important }.ml-lg-1, .mx-lg-1 {margin-left: .25rem !important }.m-lg-2 {margin: .5rem !important }.mt-lg-2, .my-lg-2 {margin-top: .5rem !important }.mr-lg-2, .mx-lg-2 {margin-right: .5rem !important }.mb-lg-2, .my-lg-2 {margin-bottom: .5rem !important }.ml-lg-2, .mx-lg-2 {margin-left: .5rem !important }.m-lg-3 {margin: 1rem !important }.mt-lg-3, .my-lg-3 {margin-top: 1rem !important }.mr-lg-3, .mx-lg-3 {margin-right: 1rem !important }.mb-lg-3, .my-lg-3 {margin-bottom: 1rem !important }.ml-lg-3, .mx-lg-3 {margin-left: 1rem !important }.m-lg-4 {margin: 1.5rem !important }.mt-lg-4, .my-lg-4 {margin-top: 1.5rem !important }.mr-lg-4, .mx-lg-4 {margin-right: 1.5rem !important }.mb-lg-4, .my-lg-4 {margin-bottom: 1.5rem !important }.ml-lg-4, .mx-lg-4 {margin-left: 1.5rem !important }.m-lg-5 {margin: 3rem !important }.mt-lg-5, .my-lg-5 {margin-top: 3rem !important }.mr-lg-5, .mx-lg-5 {margin-right: 3rem !important }.mb-lg-5, .my-lg-5 {margin-bottom: 3rem !important }.ml-lg-5, .mx-lg-5 {margin-left: 3rem !important }.p-lg-0 {padding: 0 !important }.pt-lg-0, .py-lg-0 {padding-top: 0 !important }.pr-lg-0, .px-lg-0 {padding-right: 0 !important }.pb-lg-0, .py-lg-0 {padding-bottom: 0 !important }.pl-lg-0, .px-lg-0 {padding-left: 0 !important }.p-lg-1 {padding: .25rem !important }.pt-lg-1, .py-lg-1 {padding-top: .25rem !important }.pr-lg-1, .px-lg-1 {padding-right: .25rem !important }.pb-lg-1, .py-lg-1 {padding-bottom: .25rem !important }.pl-lg-1, .px-lg-1 {padding-left: .25rem !important }.p-lg-2 {padding: .5rem !important }.pt-lg-2, .py-lg-2 {padding-top: .5rem !important }.pr-lg-2, .px-lg-2 {padding-right: .5rem !important }.pb-lg-2, .py-lg-2 {padding-bottom: .5rem !important }.pl-lg-2, .px-lg-2 {padding-left: .5rem !important }.p-lg-3 {padding: 1rem !important }.pt-lg-3, .py-lg-3 {padding-top: 1rem !important }.pr-lg-3, .px-lg-3 {padding-right: 1rem !important }.pb-lg-3, .py-lg-3 {padding-bottom: 1rem !important }.pl-lg-3, .px-lg-3 {padding-left: 1rem !important }.p-lg-4 {padding: 1.5rem !important }.pt-lg-4, .py-lg-4 {padding-top: 1.5rem !important }.pr-lg-4, .px-lg-4 {padding-right: 1.5rem !important }.pb-lg-4, .py-lg-4 {padding-bottom: 1.5rem !important }.pl-lg-4, .px-lg-4 {padding-left: 1.5rem !important }.p-lg-5 {padding: 3rem !important }.pt-lg-5, .py-lg-5 {padding-top: 3rem !important }.pr-lg-5, .px-lg-5 {padding-right: 3rem !important }.pb-lg-5, .py-lg-5 {padding-bottom: 3rem !important }.pl-lg-5, .px-lg-5 {padding-left: 3rem !important }.m-lg-n1 {margin: -.25rem !important }.mt-lg-n1, .my-lg-n1 {margin-top: -.25rem !important }.mr-lg-n1, .mx-lg-n1 {margin-right: -.25rem !important }.mb-lg-n1, .my-lg-n1 {margin-bottom: -.25rem !important }.ml-lg-n1, .mx-lg-n1 {margin-left: -.25rem !important }.m-lg-n2 {margin: -.5rem !important }.mt-lg-n2, .my-lg-n2 {margin-top: -.5rem !important }.mr-lg-n2, .mx-lg-n2 {margin-right: -.5rem !important }.mb-lg-n2, .my-lg-n2 {margin-bottom: -.5rem !important }.ml-lg-n2, .mx-lg-n2 {margin-left: -.5rem !important }.m-lg-n3 {margin: -1rem !important }.mt-lg-n3, .my-lg-n3 {margin-top: -1rem !important }.mr-lg-n3, .mx-lg-n3 {margin-right: -1rem !important }.mb-lg-n3, .my-lg-n3 {margin-bottom: -1rem !important }.ml-lg-n3, .mx-lg-n3 {margin-left: -1rem !important }.m-lg-n4 {margin: -1.5rem !important }.mt-lg-n4, .my-lg-n4 {margin-top: -1.5rem !important }.mr-lg-n4, .mx-lg-n4 {margin-right: -1.5rem !important }.mb-lg-n4, .my-lg-n4 {margin-bottom: -1.5rem !important }.ml-lg-n4, .mx-lg-n4 {margin-left: -1.5rem !important }.m-lg-n5 {margin: -3rem !important }.mt-lg-n5, .my-lg-n5 {margin-top: -3rem !important }.mr-lg-n5, .mx-lg-n5 {margin-right: -3rem !important }.mb-lg-n5, .my-lg-n5 {margin-bottom: -3rem !important }.ml-lg-n5, .mx-lg-n5 {margin-left: -3rem !important }.m-lg-auto {margin: auto !important }.mt-lg-auto, .my-lg-auto {margin-top: auto !important }.mr-lg-auto, .mx-lg-auto {margin-right: auto !important }.mb-lg-auto, .my-lg-auto {margin-bottom: auto !important }.ml-lg-auto, .mx-lg-auto {margin-left: auto !important }}@media (min-width:1200px) {.m-xl-0 {margin: 0 !important }.mt-xl-0, .my-xl-0 {margin-top: 0 !important }.mr-xl-0, .mx-xl-0 {margin-right: 0 !important }.mb-xl-0, .my-xl-0 {margin-bottom: 0 !important }.ml-xl-0, .mx-xl-0 {margin-left: 0 !important }.m-xl-1 {margin: .25rem !important }.mt-xl-1, .my-xl-1 {margin-top: .25rem !important }.mr-xl-1, .mx-xl-1 {margin-right: .25rem !important }.mb-xl-1, .my-xl-1 {margin-bottom: .25rem !important }.ml-xl-1, .mx-xl-1 {margin-left: .25rem !important }.m-xl-2 {margin: .5rem !important }.mt-xl-2, .my-xl-2 {margin-top: .5rem !important }.mr-xl-2, .mx-xl-2 {margin-right: .5rem !important }.mb-xl-2, .my-xl-2 {margin-bottom: .5rem !important }.ml-xl-2, .mx-xl-2 {margin-left: .5rem !important }.m-xl-3 {margin: 1rem !important }.mt-xl-3, .my-xl-3 {margin-top: 1rem !important }.mr-xl-3, .mx-xl-3 {margin-right: 1rem !important }.mb-xl-3, .my-xl-3 {margin-bottom: 1rem !important }.ml-xl-3, .mx-xl-3 {margin-left: 1rem !important }.m-xl-4 {margin: 1.5rem !important }.mt-xl-4, .my-xl-4 {margin-top: 1.5rem !important }.mr-xl-4, .mx-xl-4 {margin-right: 1.5rem !important }.mb-xl-4, .my-xl-4 {margin-bottom: 1.5rem !important }.ml-xl-4, .mx-xl-4 {margin-left: 1.5rem !important }.m-xl-5 {margin: 3rem !important }.mt-xl-5, .my-xl-5 {margin-top: 3rem !important }.mr-xl-5, .mx-xl-5 {margin-right: 3rem !important }.mb-xl-5, .my-xl-5 {margin-bottom: 3rem !important }.ml-xl-5, .mx-xl-5 {margin-left: 3rem !important }.p-xl-0 {padding: 0 !important }.pt-xl-0, .py-xl-0 {padding-top: 0 !important }.pr-xl-0, .px-xl-0 {padding-right: 0 !important }.pb-xl-0, .py-xl-0 {padding-bottom: 0 !important }.pl-xl-0, .px-xl-0 {padding-left: 0 !important }.p-xl-1 {padding: .25rem !important }.pt-xl-1, .py-xl-1 {padding-top: .25rem !important }.pr-xl-1, .px-xl-1 {padding-right: .25rem !important }.pb-xl-1, .py-xl-1 {padding-bottom: .25rem !important }.pl-xl-1, .px-xl-1 {padding-left: .25rem !important }.p-xl-2 {padding: .5rem !important }.pt-xl-2, .py-xl-2 {padding-top: .5rem !important }.pr-xl-2, .px-xl-2 {padding-right: .5rem !important }.pb-xl-2, .py-xl-2 {padding-bottom: .5rem !important }.pl-xl-2, .px-xl-2 {padding-left: .5rem !important }.p-xl-3 {padding: 1rem !important }.pt-xl-3, .py-xl-3 {padding-top: 1rem !important }.pr-xl-3, .px-xl-3 {padding-right: 1rem !important }.pb-xl-3, .py-xl-3 {padding-bottom: 1rem !important }.pl-xl-3, .px-xl-3 {padding-left: 1rem !important }.p-xl-4 {padding: 1.5rem !important }.pt-xl-4, .py-xl-4 {padding-top: 1.5rem !important }.pr-xl-4, .px-xl-4 {padding-right: 1.5rem !important }.pb-xl-4, .py-xl-4 {padding-bottom: 1.5rem !important }.pl-xl-4, .px-xl-4 {padding-left: 1.5rem !important }.p-xl-5 {padding: 3rem !important }.pt-xl-5, .py-xl-5 {padding-top: 3rem !important }.pr-xl-5, .px-xl-5 {padding-right: 3rem !important }.pb-xl-5, .py-xl-5 {padding-bottom: 3rem !important }.pl-xl-5, .px-xl-5 {padding-left: 3rem !important }.m-xl-n1 {margin: -.25rem !important }.mt-xl-n1, .my-xl-n1 {margin-top: -.25rem !important }.mr-xl-n1, .mx-xl-n1 {margin-right: -.25rem !important }.mb-xl-n1, .my-xl-n1 {margin-bottom: -.25rem !important }.ml-xl-n1, .mx-xl-n1 {margin-left: -.25rem !important }.m-xl-n2 {margin: -.5rem !important }.mt-xl-n2, .my-xl-n2 {margin-top: -.5rem !important }.mr-xl-n2, .mx-xl-n2 {margin-right: -.5rem !important }.mb-xl-n2, .my-xl-n2 {margin-bottom: -.5rem !important }.ml-xl-n2, .mx-xl-n2 {margin-left: -.5rem !important }.m-xl-n3 {margin: -1rem !important }.mt-xl-n3, .my-xl-n3 {margin-top: -1rem !important }.mr-xl-n3, .mx-xl-n3 {margin-right: -1rem !important }.mb-xl-n3, .my-xl-n3 {margin-bottom: -1rem !important }.ml-xl-n3, .mx-xl-n3 {margin-left: -1rem !important }.m-xl-n4 {margin: -1.5rem !important }.mt-xl-n4, .my-xl-n4 {margin-top: -1.5rem !important }.mr-xl-n4, .mx-xl-n4 {margin-right: -1.5rem !important }.mb-xl-n4, .my-xl-n4 {margin-bottom: -1.5rem !important }.ml-xl-n4, .mx-xl-n4 {margin-left: -1.5rem !important }.m-xl-n5 {margin: -3rem !important }.mt-xl-n5, .my-xl-n5 {margin-top: -3rem !important }.mr-xl-n5, .mx-xl-n5 {margin-right: -3rem !important }.mb-xl-n5, .my-xl-n5 {margin-bottom: -3rem !important }.ml-xl-n5, .mx-xl-n5 {margin-left: -3rem !important }.m-xl-auto {margin: auto !important }.mt-xl-auto, .my-xl-auto {margin-top: auto !important }.mr-xl-auto, .mx-xl-auto {margin-right: auto !important }.mb-xl-auto, .my-xl-auto {margin-bottom: auto !important }.ml-xl-auto, .mx-xl-auto {margin-left: auto !important }}.stretched-link::after {position: absolute;top: 0;right: 0;bottom: 0;left: 0;z-index: 1;pointer-events: auto;content: "";background-color: rgba(0, 0, 0, 0) }.text-monospace {font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important }.text-justify {text-align: justify !important }.text-wrap {white-space: normal !important }.text-nowrap {white-space: nowrap !important }.text-truncate {overflow: hidden;text-overflow: ellipsis;white-space: nowrap }.text-left {text-align: left !important }.text-right {text-align: right !important }.text-center {text-align: center !important }@media (min-width:576px) {.text-sm-left {text-align: left !important }.text-sm-right {text-align: right !important }.text-sm-center {text-align: center !important }}@media (min-width:768px) {.text-md-left {text-align: left !important }.text-md-right {text-align: right !important }.text-md-center {text-align: center !important }}@media (min-width:992px) {.text-lg-left {text-align: left !important }.text-lg-right {text-align: right !important }.text-lg-center {text-align: center !important }}@media (min-width:1200px) {.text-xl-left {text-align: left !important }.text-xl-right {text-align: right !important }.text-xl-center {text-align: center !important }}.text-lowercase {text-transform: lowercase !important }.text-uppercase {text-transform: uppercase !important }.text-capitalize {text-transform: capitalize !important }.font-weight-light {font-weight: 300 !important }.font-weight-lighter {font-weight: lighter !important }.font-weight-normal {font-weight: 400 !important }.font-weight-bold {font-weight: 700 !important }.font-weight-bolder {font-weight: bolder !important }.font-italic {font-style: italic !important }.text-white {color: #fff !important }.text-primary {color: #007bff !important }a.text-primary:focus, a.text-primary:hover {color: #0056b3 !important }.text-secondary {color: #df252a !important }a.text-secondary:focus, a.text-secondary:hover {color: #a0171b !important }.text-success {color: #1bb161 !important }a.text-success:focus, a.text-success:hover {color: #116f3d !important }.text-info {color: #17a2b8 !important }a.text-info:focus, a.text-info:hover {color: #0f6674 !important }.text-warning {color: #ffc107 !important }a.text-warning:focus, a.text-warning:hover {color: #ba8b00 !important }.text-danger {color: #df252a !important }a.text-danger:focus, a.text-danger:hover {color: #a0171b !important }.text-light {color: #f8f9fa !important }a.text-light:focus, a.text-light:hover {color: #cbd3da !important }.text-dark {color: #1a1a19 !important }a.text-dark:focus, a.text-dark:hover {color: #000 !important }.text-body {color: #212529 !important }.text-muted {color: #6c757d !important }.text-black-50 {color: rgba(0, 0, 0, .5) !important }.text-white-50 {color: rgba(255, 255, 255, .5) !important }.text-hide {font: 0/0 a;color: transparent;text-shadow: none;background-color: transparent;border: 0 }.text-decoration-none {text-decoration: none !important }.text-break {word-break: break-word !important;word-wrap: break-word !important }.text-reset {color: inherit !important }.visible {visibility: visible !important }.invisible {visibility: hidden !important }@media print {*, ::after, ::before {text-shadow: none !important;box-shadow: none !important }a:not(.btn) {text-decoration: underline }abbr[title]::after {content: " ("attr(title) ")" }pre {white-space: pre-wrap !important }blockquote, pre {border: 1px solid #adb5bd;page-break-inside: avoid }thead {display: table-header-group }img, tr {page-break-inside: avoid }h2, h3, p {orphans: 3;widows: 3 }h2, h3 {page-break-after: avoid }@page {size: a3 }body {min-width: 992px !important }.container {min-width: 992px !important }.navbar {display: none }.badge {border: 1px solid #000 }.table {border-collapse: collapse !important }.table td, .table th {background-color: #fff !important }.table-bordered td, .table-bordered th {border: 1px solid #dee2e6 !important }.table-dark {color: inherit }.table-dark tbody + tbody, .table-dark td, .table-dark th, .table-dark thead th {border-color: #dee2e6 }.table .thead-dark th {color: inherit;border-color: #dee2e6 }}.selectric-wrapper {position: relative;cursor: pointer }.selectric-responsive {width: 100% }.selectric {border: 1px solid #ddd;border-radius: 0;background: #f8f8f8;position: relative;overflow: hidden }.selectric .label {display: block;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;margin: 0 38px 0 10px;font-size: 12px;line-height: 38px;color: #444;height: 38px;-webkit-user-select: none;-ms-user-select: none;user-select: none }.selectric .button {display: block;position: absolute;right: 0;top: 0;width: 38px;height: 38px;line-height: 38px;background-color: #f8f8f8;color: #bbb;text-align: center;font: 0/0 a }.selectric .button:after {content: " ";position: absolute;top: 0;right: 0;bottom: 0;left: 0;margin: auto;width: 0;height: 0;border: 4px solid transparent;border-top-color: #bbb;border-bottom: none }.selectric-focus .selectric {border-color: #aaa }.selectric-hover .selectric {border-color: #c4c4c4 }.selectric-hover .selectric .button {color: #a2a2a2 }.selectric-hover .selectric .button:after {border-top-color: #a2a2a2 }.selectric-open {z-index: 9999 }.selectric-open .selectric {border-color: #c4c4c4 }.selectric-open .selectric-items {display: block }.selectric-disabled {opacity: .5;cursor: default;-webkit-user-select: none;-ms-user-select: none;user-select: none }.selectric-hide-select {position: relative;overflow: hidden;width: 0;height: 0 }.selectric-hide-select select {position: absolute;left: -100% }.selectric-hide-select.selectric-is-native {position: absolute;width: 100%;height: 100%;z-index: 10 }.selectric-hide-select.selectric-is-native select {position: absolute;top: 0;left: 0;right: 0;height: 100%;width: 100%;border: none;z-index: 1;box-sizing: border-box;opacity: 0 }.selectric-input {position: absolute !important;top: 0 !important;left: 0 !important;overflow: hidden !important;clip: rect(0, 0, 0, 0) !important;margin: 0 !important;padding: 0 !important;width: 1px !important;height: 1px !important;outline: 0 !important;border: none !important;background: 0 0 !important }.selectric-temp-show {position: absolute !important;visibility: hidden !important;display: block !important }.selectric-items {display: none;position: absolute;top: 100%;left: 0;background: #f8f8f8;border: 1px solid #c4c4c4;z-index: -1;box-shadow: 0 0 10px -6px }.selectric-items .selectric-scroll {height: 100%;overflow: auto }.selectric-above .selectric-items {top: auto;bottom: 100% }.selectric-items li, .selectric-items ul {list-style: none;padding: 0;margin: 0;font-size: 12px;line-height: 20px;min-height: 20px }.selectric-items li {display: block;padding: 10px;color: #666;cursor: pointer }.selectric-items li.selected {background: #e0e0e0;color: #444 }.selectric-items li.highlighted {background: #d0d0d0;color: #444 }.selectric-items li:hover {background: #d5d5d5;color: #444 }.selectric-items .disabled {opacity: .5;cursor: default !important;background: 0 0 !important;color: #666 !important;-webkit-user-select: none;-ms-user-select: none;user-select: none }.selectric-items .selectric-group .selectric-group-label {font-weight: 700;padding-left: 10px;cursor: default;-webkit-user-select: none;-ms-user-select: none;user-select: none;background: 0 0;color: #444 }.selectric-items .selectric-group.disabled li {opacity: 1 }.selectric-items .selectric-group li {padding-left: 25px }@keyframes bs-notify-fadeOut {0% {opacity: .9 }100% {opacity: 0 }}.bootstrap-select > select.bs-select-hidden, select.bs-select-hidden, select.selectpicker {display: none !important }.bootstrap-select {vertical-align: middle }.bootstrap-select > .dropdown-toggle {position: relative;width: 100%;text-align: right;white-space: nowrap;display: -ms-inline-flexbox;display: inline-flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.bootstrap-select > .dropdown-toggle:after {margin-top: -1px }.bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {color: #999 }.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover {color: rgba(255, 255, 255, .5) }.bootstrap-select > select {position: absolute !important;bottom: 0;left: 50%;display: block !important;width: .5px !important;height: 100% !important;padding: 0 !important;opacity: 0 !important;border: none;z-index: 0 !important }.bootstrap-select > select.mobile-device {top: 0;left: 0;display: block !important;width: 100% !important;z-index: 2 !important }.bootstrap-select.is-invalid .dropdown-toggle, .error .bootstrap-select .dropdown-toggle, .has-error .bootstrap-select .dropdown-toggle, .was-validated .bootstrap-select select:invalid + .dropdown-toggle {border-color: #b94a48 }.bootstrap-select.is-valid .dropdown-toggle, .was-validated .bootstrap-select select:valid + .dropdown-toggle {border-color: #28a745 }.bootstrap-select.fit-width {width: auto !important }.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {width: 220px }.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {outline: thin dotted #333 !important;outline: 5px auto -webkit-focus-ring-color !important;outline-offset: -2px }.bootstrap-select.form-control {margin-bottom: 0;padding: 0;border: none;height: auto }:not(.input-group) > .bootstrap-select.form-control:not([class*=col-]) {width: 100% }.bootstrap-select.form-control.input-group-btn {float: none;z-index: auto }.form-inline .bootstrap-select, .form-inline .bootstrap-select.form-control:not([class*=col-]) {width: auto }.bootstrap-select:not(.input-group-btn), .bootstrap-select[class*=col-] {float: none;display: inline-block;margin-left: 0 }.bootstrap-select.dropdown-menu-right, .bootstrap-select[class*=col-].dropdown-menu-right, .row .bootstrap-select[class*=col-].dropdown-menu-right {float: right }.form-group .bootstrap-select, .form-horizontal .bootstrap-select, .form-inline .bootstrap-select {margin-bottom: 0 }.form-group-lg .bootstrap-select.form-control, .form-group-sm .bootstrap-select.form-control {padding: 0 }.form-group-lg .bootstrap-select.form-control .dropdown-toggle, .form-group-sm .bootstrap-select.form-control .dropdown-toggle {height: 100%;font-size: inherit;line-height: inherit;border-radius: inherit }.bootstrap-select.form-control-lg .dropdown-toggle, .bootstrap-select.form-control-sm .dropdown-toggle {font-size: inherit;line-height: inherit;border-radius: inherit }.bootstrap-select.form-control-sm .dropdown-toggle {padding: .25rem .5rem }.bootstrap-select.form-control-lg .dropdown-toggle {padding: .5rem 1rem }.form-inline .bootstrap-select .form-control {width: 100% }.bootstrap-select.disabled, .bootstrap-select > .disabled {cursor: not-allowed }.bootstrap-select.disabled:focus, .bootstrap-select > .disabled:focus {outline: 0 !important }.bootstrap-select.bs-container {position: absolute;top: 0;left: 0;height: 0 !important;padding: 0 !important }.bootstrap-select.bs-container .dropdown-menu {z-index: 1060 }.bootstrap-select .dropdown-toggle .filter-option {position: static;top: 0;left: 0;float: left;height: 100%;width: 100%;text-align: left;overflow: hidden;-ms-flex: 0 1 auto;flex: 0 1 auto }.bs3.bootstrap-select .dropdown-toggle .filter-option {padding-right: inherit }.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {position: absolute;padding-top: inherit;padding-bottom: inherit;padding-left: inherit;float: none }.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {padding-right: inherit }.bootstrap-select .dropdown-toggle .filter-option-inner-inner {overflow: hidden }.bootstrap-select .dropdown-toggle .filter-expand {width: 0 !important;float: left;opacity: 0 !important;overflow: hidden }.bootstrap-select .dropdown-toggle .caret {position: absolute;top: 50%;right: 12px;margin-top: -2px;vertical-align: middle }.input-group .bootstrap-select.form-control .dropdown-toggle {border-radius: inherit }.bootstrap-select[class*=col-] .dropdown-toggle {width: 100% }.bootstrap-select .dropdown-menu {min-width: 100%;box-sizing: border-box }.bootstrap-select .dropdown-menu > .inner:focus {outline: 0 !important }.bootstrap-select .dropdown-menu.inner {position: static;float: none;border: 0;padding: 0;margin: 0;border-radius: 0;box-shadow: none }.bootstrap-select .dropdown-menu li {position: relative }.bootstrap-select .dropdown-menu li.active small {color: rgba(255, 255, 255, .5) !important }.bootstrap-select .dropdown-menu li.disabled a {cursor: not-allowed }.bootstrap-select .dropdown-menu li a {cursor: pointer;-webkit-user-select: none;-ms-user-select: none;user-select: none }.bootstrap-select .dropdown-menu li a.opt {position: relative;padding-left: 2.25em }.bootstrap-select .dropdown-menu li a span.check-mark {display: none }.bootstrap-select .dropdown-menu li a span.text {display: inline-block }.bootstrap-select .dropdown-menu li small {padding-left: .5em }.bootstrap-select .dropdown-menu .notify {position: absolute;bottom: 5px;width: 96%;margin: 0 2%;min-height: 26px;padding: 3px 5px;background: #f5f5f5;border: 1px solid #e3e3e3;box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);pointer-events: none;opacity: .9;box-sizing: border-box }.bootstrap-select .dropdown-menu .notify.fadeOut {animation: .3s linear 750ms forwards bs-notify-fadeOut }.bootstrap-select .no-results {padding: 3px;background: #f5f5f5;margin: 0 5px;white-space: nowrap }.bootstrap-select.fit-width .dropdown-toggle .filter-option {position: static;display: inline;padding: 0 }.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner, .bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {display: inline }.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {content: '\00a0' }.bootstrap-select.fit-width .dropdown-toggle .caret {position: static;top: auto;margin-top: -1px }.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {position: absolute;display: inline-block;right: 15px;top: 5px }.bootstrap-select.show-tick .dropdown-menu li a span.text {margin-right: 34px }.bootstrap-select .bs-ok-default:after {content: '';display: block;width: .5em;height: 1em;border-style: solid;border-width: 0 .26em .26em 0;transform-style: preserve-3d;transform: rotate(45deg) }.bootstrap-select.show-menu-arrow.open > .dropdown-toggle, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle {z-index: 1061 }.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {content: '';border-left: 7px solid transparent;border-right: 7px solid transparent;border-bottom: 7px solid rgba(204, 204, 204, .2);position: absolute;bottom: -4px;left: 9px;display: none }.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {content: '';border-left: 6px solid transparent;border-right: 6px solid transparent;border-bottom: 6px solid #fff;position: absolute;bottom: -4px;left: 10px;display: none }.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {bottom: auto;top: -4px;border-top: 7px solid rgba(204, 204, 204, .2);border-bottom: 0 }.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {bottom: auto;top: -4px;border-top: 6px solid #fff;border-bottom: 0 }.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {right: 12px;left: auto }.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {right: 13px;left: auto }.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:before {display: block }.bs-actionsbox, .bs-donebutton, .bs-searchbox {padding: 4px 8px }.bs-actionsbox {width: 100%;box-sizing: border-box }.bs-actionsbox .btn-group button {width: 50% }.bs-donebutton {float: left;width: 100%;box-sizing: border-box }.bs-donebutton .btn-group button {width: 100% }.bs-searchbox + .bs-actionsbox {padding: 0 8px 4px }.bs-searchbox .form-control {margin-bottom: 0;width: 100%;float: none }a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, main, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline }article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {display: block }[hidden] {display: none }body {line-height: 1 }menu, ol, ul {list-style: none }blockquote, q {quotes: none }blockquote:after, blockquote:before, q:after, q:before {content: '';content: none }table {border-collapse: collapse;border-spacing: 0 }.text--primary {color: #2b2a29 }.text--light {color: #727271 }.text--lighter {color: #b3b3b2 }.text--white {color: #fff }.text--red {color: #df252a }.text--green {color: #1bb161 }.text--dark {color: #1a1a19 }.text--regular {font-weight: 400 }.text--medium {font-weight: 500 }.text--semi {font-weight: 600 }.text--italic {font-style: italic }a.text--red:hover {color: #2b2a29 }:root {font-size: 62.5% }html {scroll-behavior: smooth }body {overflow-x: hidden;font-size: 16px;line-height: 26px;font-weight: 500;letter-spacing: .1px;font-family: Poppins;color: #000;-webkit-font-smoothing: antialiased }body.overflow {overflow: hidden }@media (max-width:767px) {body {font-size: 12px;line-height: 19px }}b {font-weight: 700 }.custom-container {padding-right: 20px;padding-left: 20px;margin-right: auto;margin-left: auto;width: 100% }.custom-container-sm {margin: 0 auto;max-width: 808px }@media (max-width:991px) {.custom-container-sm {padding-right: 20px;padding-left: 20px }}@media screen and (min-width:1400px) {.custom-container {max-width: 1232px }}@media (max-width:991px) {.custom-container {padding-right: 20px;padding-left: 20px }}.custom-container .row {margin-right: -20px;margin-left: -20px }.custom-container .col, .custom-container .col-1, .custom-container .col-10, .custom-container .col-11, .custom-container .col-12, .custom-container .col-2, .custom-container .col-3, .custom-container .col-4, .custom-container .col-5, .custom-container .col-6, .custom-container .col-7, .custom-container .col-8, .custom-container .col-9, .custom-container .col-auto, .custom-container .col-lg, .custom-container .col-lg-1, .custom-container .col-lg-10, .custom-container .col-lg-11, .custom-container .col-lg-12, .custom-container .col-lg-2, .custom-container .col-lg-3, .custom-container .col-lg-4, .custom-container .col-lg-5, .custom-container .col-lg-6, .custom-container .col-lg-7, .custom-container .col-lg-8, .custom-container .col-lg-9, .custom-container .col-lg-auto, .custom-container .col-md, .custom-container .col-md-1, .custom-container .col-md-10, .custom-container .col-md-11, .custom-container .col-md-12, .custom-container .col-md-2, .custom-container .col-md-3, .custom-container .col-md-4, .custom-container .col-md-5, .custom-container .col-md-6, .custom-container .col-md-7, .custom-container .col-md-8, .custom-container .col-md-9, .custom-container .col-md-auto, .custom-container .col-sm, .custom-container .col-sm-1, .custom-container .col-sm-10, .custom-container .col-sm-11, .custom-container .col-sm-12, .custom-container .col-sm-2, .custom-container .col-sm-3, .custom-container .col-sm-4, .custom-container .col-sm-5, .custom-container .col-sm-6, .custom-container .col-sm-7, .custom-container .col-sm-8, .custom-container .col-sm-9, .custom-container .col-sm-auto, .custom-container .col-xl, .custom-container .col-xl-1, .custom-container .col-xl-10, .custom-container .col-xl-11, .custom-container .col-xl-12, .custom-container .col-xl-2, .custom-container .col-xl-3, .custom-container .col-xl-4, .custom-container .col-xl-5, .custom-container .col-xl-6, .custom-container .col-xl-7, .custom-container .col-xl-8, .custom-container .col-xl-9, .custom-container .col-xl-auto {padding-right: 20px;padding-left: 20px }@media (min-width:576px) {.custom-container {max-width: 540px }}@media (min-width:768px) {.custom-container {max-width: 720px }.custom-container-sm {max-width: 648px }}@media (min-width:992px) {.custom-container {max-width: 960px }.custom-container-sm {max-width: 808px }}@media (min-width:1200px) {.custom-container {max-width: 1140px }.custom-container__program {max-width: 1180px }}@media (min-width:1280px) {.custom-container__program {max-width: 1240px }}@media (min-width:1400px) {.custom-container {max-width: 1232px }.custom-container__program {max-width: 1360px }}a {text-decoration: none }a:hover {text-decoration: none }.datepicker {border-radius: 12px !important;padding: 24px !important }.datepicker.dropdown-menu {border: 1px solid rgba(43, 42, 41, .1) }.datepicker .datepicker-switch {font-weight: 600 }.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled] {background-color: #2b2a29 !important;color: #fff !important;background-image: none !important }.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover {background-color: #2b2a29 !important;color: #fff !important;background-image: none !important }.text--primary {color: #2b2a29 }.text--light {color: #727271 }.text--lighter {color: #b3b3b2 }.text--white {color: #fff }.text--red {color: #df252a }.text--green {color: #1bb161 }.text--dark {color: #1a1a19 }.text--regular {font-weight: 400 }.text--medium {font-weight: 500 }.text--semi {font-weight: 600 }.text--italic {font-style: italic }a.text--red:hover {color: #2b2a29 }@media (max-width:991px) {.sidebar {display: none;visibility: hidden }}.filter {padding: 48px 0 0;overflow-y: auto;max-height: calc(100vh - 48px) }.filter--sticky {position: -webkit-sticky;position: sticky;top: 75px;left: 0 }.filter--heading {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;padding-bottom: 16px;border-bottom: 1px solid rgba(43, 42, 41, .1) }.filter--heading h2 {font-size: 16px;line-height: 24px }.filter--heading a {font-size: 14px;line-height: 21px }.filter--heading a:hover {color: #df252a }.filter::-webkit-scrollbar {width: 0 }.filter .white-form .custom--checkbox.custom--checkbox {margin-top: 5px }.filter .white-form .custom--checkbox__label {font-size: 14px;line-height: 22px }.filter .white-form .more p {font-size: 12px;line-height: 18px }.filter--accordion {padding-top: 16px;padding-bottom: 16px;border-bottom: 1px solid rgba(43, 42, 41, .1) }.filter--accordion__header {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.filter--accordion__header .wCheckbox label {width: 16px;height: 16px;margin-top: 0 !important;margin-right: 12px }.filter--accordion__header p {font-size: 12px;line-height: 19px;letter-spacing: 1px;text-transform: uppercase }.filter--accordion__header--right {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.filter--accordion__header--right .custom--checkbox {width: 28px;height: 28px;border-radius: 50%;background-color: rgba(179, 179, 178, .2);margin-top: 0 !important;margin-right: 8px;-ms-flex-pack: center;justify-content: center }.filter--accordion__header--right .custom--checkbox__checkmark {position: static !important;width: 12px !important;height: 12px !important;border: 1.25px solid #727271 !important }.filter--accordion__header--right .searchbar-btn {background-color: rgba(179, 179, 178, .2);width: 28px;height: 28px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;position: relative }.filter--accordion__header--right .searchbar-btn::before {width: 16px;height: 16px;position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M21.0004 21L16.6504 16.65" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>');background-position: center;background-size: cover;background-repeat: no-repeat }.filter--accordion__header--right .accordion-arrow {width: 32px;height: 20px;margin-left: 12px;padding-left: 12px;border-left: 1px solid rgba(43, 42, 41, .1);display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;position: relative;cursor: pointer }.filter--accordion__header--right .accordion-arrow::after {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%23727271"/></svg>');background-position: center;background-size: cover;width: 20px;height: 20px;transform: rotate(0);transition: all .3s ease-in-out }.filter--accordion__header--right .accordion-arrow.collapsed::after {transform: rotate(180deg) }.filter--accordion__answer label:first-child {margin-top: 16px !important }.filter--accordion.country label p {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.filter--accordion.country label p img {width: 18px;height: 18px;margin-right: 8px }.filter--mobile {display: none;visibility: hidden;position: fixed;background: #fff;top: 70px;left: 0;right: 100%;bottom: 0;z-index: 999;opacity: 0 }.filter--mobile.show {opacity: 1;right: 0;transition: all .1s ease-in-out }@media (max-width:991px) {.filter--mobile {display: block;visibility: visible }}.filter--mobile .header {padding: 24px 20px;border-bottom: 1px solid rgba(43, 42, 41, .1) }.filter--mobile .header h2 {font-size: 16px;line-height: 24px }.filter--mobile .header .mega--close {position: static;transform: inherit;border: none;width: 24px;height: 24px }.filter--mobile--row {display: -ms-flexbox;display: flex;-ms-flex-pack: justify;justify-content: space-between;margin: 0 auto }@media (max-width:991px) {.filter--mobile--row {max-width: 720px }}.filter--mobile--sticky {max-width: 140px;width: 100%;position: -webkit-sticky;position: sticky;top: 0;left: 0;bottom: 0;height: 100%;padding-bottom: 65px }.filter--mobile--content {-ms-flex: 1;flex: 1;padding: 20px 20px 200px;border-left: 1px solid rgba(43, 42, 41, .1);max-height: calc(100vh - 144px);min-height: calc(100vh - 144px);overflow-y: auto }.filter--mobile .tabs {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column }.filter--mobile .tabs--link {color: #727271;font-size: 12px;line-height: 18px;text-transform: uppercase;padding: 16px 0 16px 20px;border-bottom: 1px solid rgba(43, 42, 41, .1);display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.filter--mobile .tabs--link.active {color: #2b2a29;background-color: #e4e7e9 }.filter--mobile .tab-pane .custom--checkbox + .custom--checkbox {margin-top: 16px }.filter--mobile--footer {position: absolute;bottom: 0;left: 0;right: 0;background-color: #fff;box-shadow: -4px 4px 16px rgba(43, 42, 41, .04);border-top: 1px solid rgba(43, 42, 41, .1);padding: 16px 20px }.filter--mobile--footer a {-ms-flex: 1;flex: 1 }.filter--mobile--footer a + a {margin-left: 16px }.section {padding: 60px 0 }@media (max-width:767px) {.section {padding: 40px 0 }}.section--tag {font-size: 18px;letter-spacing: .1px;margin-bottom: 20px;padding-left: 62px;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.section--tag {font-size: 12px;line-height: 19px;margin-bottom: 16px;padding-left: 40px }}.section--tag::before {content: '';position: absolute;width: 50px;height: 2px;background-color: #727271;left: 0 }@media (max-width:767px) {.section--tag::before {width: 28px }}.section--title {font-size: 40px;max-width: 636px;line-height: 51px;margin-bottom: 80px }@media (max-width:767px) {.section--title {font-size: 26px;line-height: 33px;margin-bottom: 40px }}.section--hero__desc + .section--hero__desc {margin-top: 32px }@media (max-width:767px) {.section--hero__desc + .section--hero__desc {margin-top: 16px }}.section.hero {margin-top: 87px }.section.hero--secondary {margin-top: 87px }.section.hero--secondary .section--hero {font-size: 48px;line-height: 60px;margin-bottom: 16px }@media (max-width:767px) {.section.hero--secondary .section--hero {font-size: 28px;line-height: 34px;margin-bottom: 16px }}.section__gray {background-color: rgba(228, 231, 233, .2);padding: 120px 0;margin: 60px 0 }@media (max-width:767px) {.section__gray {padding: 80px 0;margin: 40px 0 }}.section__gray__bg {background-image: url(../assets/images/gray-bg.svg);background-repeat: no-repeat;background-position: top right }@media (max-width:767px) {.section__gray__bg {background-size: 107px }}.section__gray__bg.reach {background-image: url(../assets/images/reach-bg.svg);background-position: bottom left }.section__black {background-color: #1a1a19;padding: 120px 0;margin: 60px 0 }@media (max-width:767px) {.section__black {padding: 80px 0;margin: 40px 0 }}.section__black .text--light {color: #fff }.section__black a.text--red:hover {color: #fff }.section__black a.text--white:hover {color: #df252a }.section__black .section--title {font-size: 36px;max-width: 490px;line-height: 46px;margin-bottom: 80px }@media (max-width:767px) {.section__black .section--title {font-size: 26px;line-height: 33px;margin-bottom: 40px }}.section__black .section--tag::before {background-color: #fff }.section .custom-container.border-top {padding-top: 120px }@media (max-width:767px) {.section .custom-container.border-top {padding-top: 80px }}.arrow {position: relative;display: -ms-inline-flexbox;display: inline-flex;-ms-flex-align: center;align-items: center }.arrow:hover {text-decoration: none }.arrow:hover span::before {right: -10px }.arrow span {position: relative;font-size: 16px;line-height: 26px;font-weight: 500;padding-right: 26px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.arrow span {font-size: 12px;line-height: 19px }}.arrow span::before {content: '';position: absolute;background-position: center;background-size: cover;background-repeat: no-repeat;width: 24px;height: 24px;right: 0;transition: all .1s ease-in }@media (max-width:767px) {.arrow span::before {width: 20px;height: 20px }}.arrow--link__white {color: #fff }.arrow--link__white:hover {color: #fff }.arrow--link__white span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--link__red {color: #df252a }.arrow--link__red:hover {color: #df252a }.arrow--link__red span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--link__red__down {color: #df252a }.arrow--link__red__down span {padding-right: 26px;padding-left: 0 }.arrow--link__red__down span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%23DF252A"/></svg>');transform: rotate(180deg);left: inherit;right: 0 }.arrow--link__red__down:hover span {color: #df252a }.arrow--link__red__down:hover span::before {right: 0 }.arrow--link__black {color: #2b2a29 }.arrow--link__black:hover {color: #2b2a29 }.arrow--link__black span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--link__gray {color: #727271 }.arrow--link__gray:hover {color: #727271 }.arrow--link__gray span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--link__back span {padding-right: 0;padding-left: 26px }.arrow--link__back span::before {transform: rotate(180deg);right: inherit;left: 0 }.arrow--link__back:hover span::before {left: -10px }.arrow--button {padding: 12px 28px;border-radius: 50px }@media (max-width:767px) {.arrow--button {padding: 10px 16px }}.arrow--button__left span {padding-left: 26px;padding-right: 0 }.arrow--button__left span::before {left: 0;right: inherit;transform: rotate(180deg) }.arrow--button__left:hover span::before {left: -10px }.arrow--button__white {background-color: #fff;color: #2b2a29 }.arrow--button__white span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--button__white:hover {color: #2b2a29 }.arrow--button__red {background-color: #fff;color: #df252a;border: 1px solid rgba(43, 42, 41, .1) }.arrow--button__red span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--button__red:hover {background-color: #df252a;color: #fff }.arrow--button__red:hover span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--button__redBg {background-color: #df252a;color: #fff }.arrow--button__redBg span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--button__redBg:hover {color: #fff }.arrow--button__whiteBg {background-color: #fff;color: #df252a }.arrow--button__whiteBg span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--button__whiteBg:hover {color: #2b2a29 }.arrow--button__whiteBg:hover span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--button__black {background-color: #2b2a29;color: #fff }.arrow--button__black span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--button__black:hover {color: #fff }.arrow--button__down span::before {transform: rotate(90deg);top: 0 }.arrow--button__down:hover span::before {top: 10px;right: 0 }.arrow--button__blackText {color: #1a1a19;background-color: #fff;border: 1px solid #1a1a19 }.arrow--button__blackText:hover {background-color: #1a1a19;color: #fff }.arrow--button__blackText:hover span:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--button__blackText span::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%231a1a19" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%231a1a19" stroke-width="1.5" stroke-linecap="square"/></svg>') }.arrow--button__crossUp span::before {transform: rotate(-45deg);top: 0 }.arrow--button__crossUp:hover span::before {top: 0;right: 0 }.black-form .form--row {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin: 0 -20px;-ms-flex-wrap: wrap;flex-wrap: wrap }@media (max-width:767px) {.black-form .form--row {margin: 0 }}.black-form .form--row + .form--row {margin-top: 40px }@media (max-width:991px) {.black-form .form--row + .form--row {margin-top: 16px }}.black-form .form__group {padding: 0 20px;width: 100% }@media (max-width:767px) {.black-form .form__group {padding: 0 }}@media (max-width:991px) {.black-form .form__group + .form__group {margin-top: 16px }}.black-form .form__button--right {text-align: right }@media screen and (min-width:768px) {.black-form .form--md__6 {max-width: 50%;width: 100%;-ms-flex: 0 0 50%;flex: 0 0 50% }}@media screen and (min-width:992px) {.black-form .form--lg__6 {max-width: 50%;width: 100%;-ms-flex: 0 0 50%;flex: 0 0 50% }}.black-form .custom--input {position: relative;font-size: 14px;font-weight: 400;line-height: 20px;padding: 14px 20px;border: 1px solid rgba(255, 255, 255, .1);background-color: rgba(255, 255, 255, .1);border-radius: 8px;width: 100%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.black-form .custom--input {font-size: 12px;line-height: 19px }}.black-form .custom--input:active, .black-form .custom--input:focus, .black-form .custom--input:focus-within, .black-form .custom--input:hover {border-color: #fff }.black-form .custom--input:active.custom__name::after, .black-form .custom--input:focus-within.custom__name::after, .black-form .custom--input:focus.custom__name::after, .black-form .custom--input:hover.custom__name::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6663 17.5V15.8333C16.6663 14.9493 16.3151 14.1014 15.69 13.4763C15.0649 12.8512 14.2171 12.5 13.333 12.5H6.66634C5.78229 12.5 4.93444 12.8512 4.30932 13.4763C3.6842 14.1014 3.33301 14.9493 3.33301 15.8333V17.5" stroke="%23ffffff" stroke-width="1.25" stroke-linejoin="round"/><path d="M10.0003 9.16667C11.8413 9.16667 13.3337 7.67428 13.3337 5.83333C13.3337 3.99238 11.8413 2.5 10.0003 2.5C8.15938 2.5 6.66699 3.99238 6.66699 5.83333C6.66699 7.67428 8.15938 9.16667 10.0003 9.16667Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.black-form .custom--input:active.custom__mobile::after, .black-form .custom--input:focus-within.custom__mobile::after, .black-form .custom--input:focus.custom__mobile::after, .black-form .custom--input:hover.custom__mobile::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.167 1.66669H5.83366C4.91318 1.66669 4.16699 2.41288 4.16699 3.33335V16.6667C4.16699 17.5872 4.91318 18.3334 5.83366 18.3334H14.167C15.0875 18.3334 15.8337 17.5872 15.8337 16.6667V3.33335C15.8337 2.41288 15.0875 1.66669 14.167 1.66669Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M10 15H10.0088" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.black-form .custom--input:active.custom__email::after, .black-form .custom--input:focus-within.custom__email::after, .black-form .custom--input:focus.custom__email::after, .black-form .custom--input:hover.custom__email::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.33366 3.33331H16.667C17.5837 3.33331 18.3337 4.08331 18.3337 4.99998V15C18.3337 15.9166 17.5837 16.6666 16.667 16.6666H3.33366C2.41699 16.6666 1.66699 15.9166 1.66699 15V4.99998C1.66699 4.08331 2.41699 3.33331 3.33366 3.33331Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.3337 5L10.0003 10.8333L1.66699 5" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.black-form .custom--input:active.custom__message, .black-form .custom--input:focus-within.custom__message, .black-form .custom--input:focus.custom__message, .black-form .custom--input:hover.custom__message {-ms-flex-align: start;align-items: flex-start }.black-form .custom--input:active.custom__message::after, .black-form .custom--input:focus-within.custom__message::after, .black-form .custom--input:focus.custom__message::after, .black-form .custom--input:hover.custom__message::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 16.6667H17.5" stroke="%23ffffff" stroke-width="1.25" stroke-linejoin="round"/><path d="M13.75 2.91669C14.0815 2.58517 14.5312 2.39893 15 2.39893C15.2321 2.39893 15.462 2.44465 15.6765 2.53349C15.891 2.62233 16.0858 2.75254 16.25 2.91669C16.4142 3.08085 16.5444 3.27572 16.6332 3.4902C16.722 3.70467 16.7678 3.93455 16.7678 4.16669C16.7678 4.39884 16.722 4.62871 16.6332 4.84319C16.5444 5.05766 16.4142 5.25254 16.25 5.41669L5.83333 15.8334L2.5 16.6667L3.33333 13.3334L13.75 2.91669Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.black-form .custom--input:after {content: '';position: absolute;width: 20px;height: 20px;right: 14px;background-position: center;background-repeat: no-repeat;background-size: cover }.black-form .custom--input input, .black-form .custom--input textarea {background-color: transparent;border: none;padding: 0 20px 0 0;caret-color: #fff;width: 100%;color: #fff }.black-form .custom--input input:active, .black-form .custom--input input:focus, .black-form .custom--input input:focus-within, .black-form .custom--input input:hover, .black-form .custom--input textarea:active, .black-form .custom--input textarea:focus, .black-form .custom--input textarea:focus-within, .black-form .custom--input textarea:hover {box-shadow: none;outline: 0 }.black-form .custom--input :-ms-input-placeholder {color: #b3b3b2;font-size: 14px;font-weight: 400;line-height: 20px }.black-form .custom--input ::placeholder {color: #b3b3b2;font-size: 14px;font-weight: 400;line-height: 20px }@media (max-width:767px) {.black-form .custom--input :-ms-input-placeholder {font-size: 12px;line-height: 19px }.black-form .custom--input ::placeholder {font-size: 12px;line-height: 19px }}.black-form .custom__name::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6663 17.5V15.8333C16.6663 14.9493 16.3151 14.1014 15.69 13.4763C15.0649 12.8512 14.2171 12.5 13.333 12.5H6.66634C5.78229 12.5 4.93444 12.8512 4.30932 13.4763C3.6842 14.1014 3.33301 14.9493 3.33301 15.8333V17.5" stroke="%23B3B3B2" stroke-width="1.25" stroke-linejoin="round"/><path d="M10.0003 9.16667C11.8413 9.16667 13.3337 7.67428 13.3337 5.83333C13.3337 3.99238 11.8413 2.5 10.0003 2.5C8.15938 2.5 6.66699 3.99238 6.66699 5.83333C6.66699 7.67428 8.15938 9.16667 10.0003 9.16667Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.black-form .custom__mobile::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.167 1.66669H5.83366C4.91318 1.66669 4.16699 2.41288 4.16699 3.33335V16.6667C4.16699 17.5872 4.91318 18.3334 5.83366 18.3334H14.167C15.0875 18.3334 15.8337 17.5872 15.8337 16.6667V3.33335C15.8337 2.41288 15.0875 1.66669 14.167 1.66669Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M10 15H10.0088" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.black-form .custom__email::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.33366 3.33331H16.667C17.5837 3.33331 18.3337 4.08331 18.3337 4.99998V15C18.3337 15.9166 17.5837 16.6666 16.667 16.6666H3.33366C2.41699 16.6666 1.66699 15.9166 1.66699 15V4.99998C1.66699 4.08331 2.41699 3.33331 3.33366 3.33331Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.3337 5L10.0003 10.8333L1.66699 5" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.black-form .custom__message {-ms-flex-align: start;align-items: flex-start }.black-form .custom__message::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 16.6667H17.5" stroke="%23B3B3B2" stroke-width="1.25" stroke-linejoin="round"/><path d="M13.75 2.91669C14.0815 2.58517 14.5312 2.39893 15 2.39893C15.2321 2.39893 15.462 2.44465 15.6765 2.53349C15.891 2.62233 16.0858 2.75254 16.25 2.91669C16.4142 3.08085 16.5444 3.27572 16.6332 3.4902C16.722 3.70467 16.7678 3.93455 16.7678 4.16669C16.7678 4.39884 16.722 4.62871 16.6332 4.84319C16.5444 5.05766 16.4142 5.25254 16.25 5.41669L5.83333 15.8334L2.5 16.6667L3.33333 13.3334L13.75 2.91669Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.black-form .filter-option-inner-inner {color: #b3b3b2 }.white-form .form--row {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin: 0 -20px;-ms-flex-wrap: wrap;flex-wrap: wrap }@media (max-width:767px) {.white-form .form--row {margin: 0 }}.white-form .form--row + .form--row {margin-top: 40px }@media (max-width:767px) {.white-form .form--row + .form--row {margin-top: 16px }}.white-form .form__group {padding: 0 20px;width: 100% }@media (max-width:767px) {.white-form .form__group {padding: 0 }}@media (max-width:767px) {.white-form .form__group + .form__group {margin-top: 16px }}.white-form .form__button--right {text-align: right }@media screen and (min-width:768px) {.white-form .form--md__6 {max-width: 50%;width: 100%;-ms-flex: 0 0 50%;flex: 0 0 50% }}@media screen and (min-width:768px) {.white-form .form--md__4 {max-width: 33.33%;width: 100%;-ms-flex: 0 0 33.33%;flex: 0 0 33.33% }}.white-form .custom--input {position: relative;font-size: 14px;font-weight: 400;line-height: 20px;padding: 14px 20px;border: 1px solid rgba(255, 255, 255, .1);background-color: rgba(228, 231, 233, .4);border-radius: 8px;width: 100%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.white-form .custom--input:active, .white-form .custom--input:focus, .white-form .custom--input:focus-within, .white-form .custom--input:hover {border-color: #2b2a29 }.white-form .custom--input:active.custom__institute::after, .white-form .custom--input:focus-within.custom__institute::after, .white-form .custom--input:focus.custom__institute::after, .white-form .custom--input:hover.custom__institute::after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 14.625C13.4497 14.625 14.625 13.4497 14.625 12C14.625 10.5503 13.4497 9.375 12 9.375C10.5503 9.375 9.375 10.5503 9.375 12C9.375 13.4497 10.5503 14.625 12 14.625Z" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.7839 9.67335C10.0971 8.22923 9.375 6.43013 9.375 5.25C9.375 4.55381 9.65156 3.88613 10.1438 3.39384C10.6361 2.90156 11.3038 2.625 12 2.625C12.6962 2.625 13.3639 2.90156 13.8562 3.39384C14.3484 3.88613 14.625 4.55381 14.625 5.25C14.625 6.43013 13.9029 8.22923 13.2161 9.67336" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.37829 11.8897C7.78427 11.7624 5.86513 11.4883 4.84311 10.8982C4.2404 10.55 3.80066 9.97666 3.6206 9.30429C3.44055 8.63192 3.53491 7.91556 3.88294 7.31275C4.23097 6.70994 4.80418 6.27004 5.4765 6.08979C6.14882 5.90954 6.8652 6.0037 7.46811 6.35156C8.49013 6.94162 9.68713 8.46657 10.5944 9.78337" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.5944 14.2165C9.68713 15.5333 8.49013 17.0582 7.46811 17.6483C6.8652 17.9961 6.14882 18.0903 5.4765 17.91C4.80418 17.7298 4.23097 17.2899 3.88294 16.6871C3.53491 16.0843 3.44055 15.3679 3.6206 14.6955C3.80066 14.0232 4.2404 13.4498 4.84311 13.1016C5.86513 12.5116 7.78427 12.2374 9.3783 12.1101" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.2161 14.3267C13.9029 15.7708 14.625 17.5699 14.625 18.75C14.625 19.4462 14.3484 20.1139 13.8562 20.6062C13.3639 21.0985 12.6962 21.375 12 21.375C11.3038 21.375 10.6361 21.0985 10.1438 20.6062C9.65156 20.1139 9.375 19.4462 9.375 18.75C9.375 17.5699 10.0971 15.7708 10.7839 14.3267" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.6224 12.1101C16.2164 12.2374 18.1355 12.5116 19.1575 13.1016C19.7603 13.4498 20.2 14.0232 20.38 14.6955C20.5601 15.3679 20.4657 16.0843 20.1177 16.6871C19.7697 17.2899 19.1965 17.7298 18.5242 17.91C17.8518 18.0903 17.1354 17.9961 16.5325 17.6483C15.5105 17.0582 14.3135 15.5333 13.4062 14.2165" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.4062 9.78362C14.3135 8.46681 15.5105 6.94187 16.5325 6.35181C17.1354 6.00394 17.8518 5.90979 18.5242 6.09004C19.1965 6.27029 19.7697 6.71019 20.1177 7.31299C20.4657 7.9158 20.5601 8.63216 20.38 9.30453C20.2 9.97691 19.7602 10.5502 19.1575 10.8984C18.1355 11.4885 16.2164 11.7627 14.6224 11.89" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom--input:active.custom__name::after, .white-form .custom--input:focus-within.custom__name::after, .white-form .custom--input:focus.custom__name::after, .white-form .custom--input:hover.custom__name::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6663 17.5V15.8333C16.6663 14.9493 16.3151 14.1014 15.69 13.4763C15.0649 12.8512 14.2171 12.5 13.333 12.5H6.66634C5.78229 12.5 4.93444 12.8512 4.30932 13.4763C3.6842 14.1014 3.33301 14.9493 3.33301 15.8333V17.5" stroke="%232B2A29" stroke-width="1.25" stroke-linejoin="round"/><path d="M10.0003 9.16667C11.8413 9.16667 13.3337 7.67428 13.3337 5.83333C13.3337 3.99238 11.8413 2.5 10.0003 2.5C8.15938 2.5 6.66699 3.99238 6.66699 5.83333C6.66699 7.67428 8.15938 9.16667 10.0003 9.16667Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom--input:active.custom__mobile::after, .white-form .custom--input:focus-within.custom__mobile::after, .white-form .custom--input:focus.custom__mobile::after, .white-form .custom--input:hover.custom__mobile::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.167 1.66669H5.83366C4.91318 1.66669 4.16699 2.41288 4.16699 3.33335V16.6667C4.16699 17.5872 4.91318 18.3334 5.83366 18.3334H14.167C15.0875 18.3334 15.8337 17.5872 15.8337 16.6667V3.33335C15.8337 2.41288 15.0875 1.66669 14.167 1.66669Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M10 15H10.0088" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom--input:active.custom__calendar::after, .white-form .custom--input:focus-within.custom__calendar::after, .white-form .custom--input:focus.custom__calendar::after, .white-form .custom--input:hover.custom__calendar::after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/></svg>') }.white-form .custom--input:active.custom__password::after, .white-form .custom--input:focus-within.custom__password::after, .white-form .custom--input:focus.custom__password::after, .white-form .custom--input:hover.custom__password::after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.5516 2.95211L4.03869 2.40491L2.94429 3.43071L3.45719 3.97792L6.59031 7.32056C4.70593 8.3285 3.15063 9.85353 2.08573 11.6881C1.95132 11.9197 1.95054 12.2053 2.08369 12.4376C4.05302 15.8732 7.76699 18.1746 12.0044 18.1746C13.4301 18.1746 14.8009 17.9161 16.0701 17.4343L19.4572 21.0479L19.9701 21.5951L21.0645 20.5693L20.5516 20.0221L4.5516 2.95211ZM14.9461 16.2352L7.65999 8.46177C7.56191 8.50944 7.46142 8.55963 7.35659 8.61204C5.82744 9.41653 4.53944 10.616 3.6113 12.0667C5.37076 14.8423 8.47827 16.6746 12.0044 16.6746C13.0277 16.6746 14.0153 16.5221 14.9461 16.2352Z" fill="%232B2A29"/><path d="M11.0039 6.76497C11.3239 6.73497 11.6639 6.71497 11.9939 6.71497C15.9539 6.71497 19.4239 8.86497 21.2639 12.075C20.6039 13.225 19.7239 14.245 18.6939 15.075" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.white-form .custom--input:active.custom__email::after, .white-form .custom--input:focus-within.custom__email::after, .white-form .custom--input:focus.custom__email::after, .white-form .custom--input:hover.custom__email::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.33366 3.33331H16.667C17.5837 3.33331 18.3337 4.08331 18.3337 4.99998V15C18.3337 15.9166 17.5837 16.6666 16.667 16.6666H3.33366C2.41699 16.6666 1.66699 15.9166 1.66699 15V4.99998C1.66699 4.08331 2.41699 3.33331 3.33366 3.33331Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.3337 5L10.0003 10.8333L1.66699 5" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom--input:active.custom__message, .white-form .custom--input:focus-within.custom__message, .white-form .custom--input:focus.custom__message, .white-form .custom--input:hover.custom__message {-ms-flex-align: start;align-items: flex-start }.white-form .custom--input:active.custom__message::after, .white-form .custom--input:focus-within.custom__message::after, .white-form .custom--input:focus.custom__message::after, .white-form .custom--input:hover.custom__message::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 16.6667H17.5" stroke="%232B2A29" stroke-width="1.25" stroke-linejoin="round"/><path d="M13.75 2.91669C14.0815 2.58517 14.5312 2.39893 15 2.39893C15.2321 2.39893 15.462 2.44465 15.6765 2.53349C15.891 2.62233 16.0858 2.75254 16.25 2.91669C16.4142 3.08085 16.5444 3.27572 16.6332 3.4902C16.722 3.70467 16.7678 3.93455 16.7678 4.16669C16.7678 4.39884 16.722 4.62871 16.6332 4.84319C16.5444 5.05766 16.4142 5.25254 16.25 5.41669L5.83333 15.8334L2.5 16.6667L3.33333 13.3334L13.75 2.91669Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom--input:active.custom__linked, .white-form .custom--input:focus-within.custom__linked, .white-form .custom--input:focus.custom__linked, .white-form .custom--input:hover.custom__linked {-ms-flex-align: start;align-items: flex-start }.white-form .custom--input:active.custom__linked::after, .white-form .custom--input:focus-within.custom__linked::after, .white-form .custom--input:focus.custom__linked::after, .white-form .custom--input:hover.custom__linked::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.333 6.66699C14.6591 6.66699 15.9309 7.19378 16.8685 8.13146C17.8062 9.06914 18.333 10.3409 18.333 11.667V17.5003H14.9997V11.667C14.9997 11.225 14.8241 10.801 14.5115 10.4885C14.199 10.1759 13.775 10.0003 13.333 10.0003C12.891 10.0003 12.4671 10.1759 12.1545 10.4885C11.8419 10.801 11.6663 11.225 11.6663 11.667V17.5003H8.33301V11.667C8.33301 10.3409 8.85979 9.06914 9.79747 8.13146C10.7352 7.19378 12.0069 6.66699 13.333 6.66699V6.66699Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round"/><path d="M5.00033 7.5H1.66699V17.5H5.00033V7.5Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round"/><path d="M3.33366 5.00033C4.25413 5.00033 5.00033 4.25413 5.00033 3.33366C5.00033 2.41318 4.25413 1.66699 3.33366 1.66699C2.41318 1.66699 1.66699 2.41318 1.66699 3.33366C1.66699 4.25413 2.41318 5.00033 3.33366 5.00033Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round"/></svg>') }.white-form .custom--input:active.custom__location, .white-form .custom--input:focus-within.custom__location, .white-form .custom--input:focus.custom__location, .white-form .custom--input:hover.custom__location {-ms-flex-align: start;align-items: flex-start }.white-form .custom--input:active.custom__location::after, .white-form .custom--input:focus-within.custom__location::after, .white-form .custom--input:focus.custom__location::after, .white-form .custom--input:hover.custom__location::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.0846 8.48487C17.0846 12.9835 11.9871 16.937 10.4408 18.0328C10.1749 18.2212 9.82771 18.2212 9.56185 18.0328C8.01547 16.937 2.91797 12.9835 2.91797 8.48487C2.91797 6.67657 3.66425 4.94234 4.99263 3.66369C6.32101 2.38503 8.12269 1.66669 10.0013 1.66669C11.8799 1.66669 13.6816 2.38503 15.01 3.66369C16.3384 4.94234 17.0846 6.67657 17.0846 8.48487Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="square"/><path d="M10 10.8333C11.3807 10.8333 12.5 9.71402 12.5 8.33331C12.5 6.9526 11.3807 5.83331 10 5.83331C8.61929 5.83331 7.5 6.9526 7.5 8.33331C7.5 9.71402 8.61929 10.8333 10 10.8333Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="square"/></svg>') }.white-form .custom--input:active.custom__book, .white-form .custom--input:focus-within.custom__book, .white-form .custom--input:focus.custom__book, .white-form .custom--input:hover.custom__book {-ms-flex-align: start;align-items: flex-start }.white-form .custom--input:active.custom__book::after, .white-form .custom--input:focus-within.custom__book::after, .white-form .custom--input:focus.custom__book::after, .white-form .custom--input:hover.custom__book::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 3.33333H7C7.79565 3.33333 8.55871 3.66501 9.12132 4.2554C9.68393 4.84579 10 5.64654 10 6.48148V17.5C10 16.8738 9.76295 16.2732 9.34099 15.8304C8.91903 15.3876 8.34674 15.1389 7.75 15.1389H2.5V3.33333Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="square"/><path d="M17.5 3.33331H13C12.2044 3.33331 11.4413 3.66499 10.8787 4.25538C10.3161 4.84578 10 5.64652 10 6.48146V17.5C10 16.8738 10.2371 16.2732 10.659 15.8304C11.081 15.3876 11.6533 15.1389 12.25 15.1389H17.5V3.33331Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="square"/></svg>') }@media (max-width:767px) {.white-form .custom--input {font-size: 12px;line-height: 19px }}.white-form .custom--input.is-invalid.custom__name::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6663 17.5V15.8333C16.6663 14.9493 16.3151 14.1014 15.69 13.4763C15.0649 12.8512 14.2171 12.5 13.333 12.5H6.66634C5.78229 12.5 4.93444 12.8512 4.30932 13.4763C3.6842 14.1014 3.33301 14.9493 3.33301 15.8333V17.5" stroke="%23DF252A" stroke-width="1.25" stroke-linejoin="round"/><path d="M10.0003 9.16667C11.8413 9.16667 13.3337 7.67428 13.3337 5.83333C13.3337 3.99238 11.8413 2.5 10.0003 2.5C8.15938 2.5 6.66699 3.99238 6.66699 5.83333C6.66699 7.67428 8.15938 9.16667 10.0003 9.16667Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom--input.is-invalid.custom__mobile::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.167 1.66669H5.83366C4.91318 1.66669 4.16699 2.41288 4.16699 3.33335V16.6667C4.16699 17.5872 4.91318 18.3334 5.83366 18.3334H14.167C15.0875 18.3334 15.8337 17.5872 15.8337 16.6667V3.33335C15.8337 2.41288 15.0875 1.66669 14.167 1.66669Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M10 15H10.0088" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom--input.is-invalid.custom__calendar::after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>') }.white-form .custom--input.is-invalid.custom__password::after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.5516 2.95211L4.03869 2.40491L2.94429 3.43071L3.45719 3.97792L6.59031 7.32056C4.70593 8.3285 3.15063 9.85353 2.08573 11.6881C1.95132 11.9197 1.95054 12.2053 2.08369 12.4376C4.05302 15.8732 7.76699 18.1746 12.0044 18.1746C13.4301 18.1746 14.8009 17.9161 16.0701 17.4343L19.4572 21.0479L19.9701 21.5951L21.0645 20.5693L20.5516 20.0221L4.5516 2.95211ZM14.9461 16.2352L7.65999 8.46177C7.56191 8.50944 7.46142 8.55963 7.35659 8.61204C5.82744 9.41653 4.53944 10.616 3.6113 12.0667C5.37076 14.8423 8.47827 16.6746 12.0044 16.6746C13.0277 16.6746 14.0153 16.5221 14.9461 16.2352Z" fill="%23DF252A"/><path d="M11.0039 6.76497C11.3239 6.73497 11.6639 6.71497 11.9939 6.71497C15.9539 6.71497 19.4239 8.86497 21.2639 12.075C20.6039 13.225 19.7239 14.245 18.6939 15.075" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.white-form .custom--input.is-invalid.custom__email::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.33366 3.33331H16.667C17.5837 3.33331 18.3337 4.08331 18.3337 4.99998V15C18.3337 15.9166 17.5837 16.6666 16.667 16.6666H3.33366C2.41699 16.6666 1.66699 15.9166 1.66699 15V4.99998C1.66699 4.08331 2.41699 3.33331 3.33366 3.33331Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.3337 5L10.0003 10.8333L1.66699 5" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom--input.is-invalid.custom__message {-ms-flex-align: start;align-items: flex-start }.white-form .custom--input.is-invalid.custom__message::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 16.6667H17.5" stroke="%23DF252A" stroke-width="1.25" stroke-linejoin="round"/><path d="M13.75 2.91669C14.0815 2.58517 14.5312 2.39893 15 2.39893C15.2321 2.39893 15.462 2.44465 15.6765 2.53349C15.891 2.62233 16.0858 2.75254 16.25 2.91669C16.4142 3.08085 16.5444 3.27572 16.6332 3.4902C16.722 3.70467 16.7678 3.93455 16.7678 4.16669C16.7678 4.39884 16.722 4.62871 16.6332 4.84319C16.5444 5.05766 16.4142 5.25254 16.25 5.41669L5.83333 15.8334L2.5 16.6667L3.33333 13.3334L13.75 2.91669Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom--input.is-invalid.custom__linked {-ms-flex-align: start;align-items: flex-start }.white-form .custom--input.is-invalid.custom__linked::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.333 6.66699C14.6591 6.66699 15.9309 7.19378 16.8685 8.13146C17.8062 9.06914 18.333 10.3409 18.333 11.667V17.5003H14.9997V11.667C14.9997 11.225 14.8241 10.801 14.5115 10.4885C14.199 10.1759 13.775 10.0003 13.333 10.0003C12.891 10.0003 12.4671 10.1759 12.1545 10.4885C11.8419 10.801 11.6663 11.225 11.6663 11.667V17.5003H8.33301V11.667C8.33301 10.3409 8.85979 9.06914 9.79747 8.13146C10.7352 7.19378 12.0069 6.66699 13.333 6.66699V6.66699Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round"/><path d="M5.00033 7.5H1.66699V17.5H5.00033V7.5Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round"/><path d="M3.33366 5.00033C4.25413 5.00033 5.00033 4.25413 5.00033 3.33366C5.00033 2.41318 4.25413 1.66699 3.33366 1.66699C2.41318 1.66699 1.66699 2.41318 1.66699 3.33366C1.66699 4.25413 2.41318 5.00033 3.33366 5.00033Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round"/></svg>') }.white-form .custom--input.is-invalid.custom__location {-ms-flex-align: start;align-items: flex-start }.white-form .custom--input.is-invalid.custom__location::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.0846 8.48487C17.0846 12.9835 11.9871 16.937 10.4408 18.0328C10.1749 18.2212 9.82771 18.2212 9.56185 18.0328C8.01547 16.937 2.91797 12.9835 2.91797 8.48487C2.91797 6.67657 3.66425 4.94234 4.99263 3.66369C6.32101 2.38503 8.12269 1.66669 10.0013 1.66669C11.8799 1.66669 13.6816 2.38503 15.01 3.66369C16.3384 4.94234 17.0846 6.67657 17.0846 8.48487Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square"/><path d="M10 10.8333C11.3807 10.8333 12.5 9.71402 12.5 8.33331C12.5 6.9526 11.3807 5.83331 10 5.83331C8.61929 5.83331 7.5 6.9526 7.5 8.33331C7.5 9.71402 8.61929 10.8333 10 10.8333Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square"/></svg>') }.white-form .custom--input.is-invalid.custom__book {-ms-flex-align: start;align-items: flex-start }.white-form .custom--input.is-invalid.custom__book::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 3.33333H7C7.79565 3.33333 8.55871 3.66501 9.12132 4.2554C9.68393 4.84579 10 5.64654 10 6.48148V17.5C10 16.8738 9.76295 16.2732 9.34099 15.8304C8.91903 15.3876 8.34674 15.1389 7.75 15.1389H2.5V3.33333Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square"/><path d="M17.5 3.33331H13C12.2044 3.33331 11.4413 3.66499 10.8787 4.25538C10.3161 4.84578 10 5.64652 10 6.48146V17.5C10 16.8738 10.2371 16.2732 10.659 15.8304C11.081 15.3876 11.6533 15.1389 12.25 15.1389H17.5V3.33331Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square"/></svg>') }.white-form .custom--input:after {content: '';position: absolute;width: 20px;height: 20px;right: 14px;background-position: center;background-repeat: no-repeat;background-size: cover }.white-form .custom--input input, .white-form .custom--input textarea {background-color: transparent;border: none;padding: 0 20px 0 0;caret-color: #2b2a29;width: 100%;color: #2b2a29 }.white-form .custom--input input:focus, .white-form .custom--input textarea:focus {box-shadow: none;outline: 0 }.white-form .custom--input :-ms-input-placeholder {color: #727271;font-size: 14px;font-weight: 400;line-height: 20px }.white-form .custom--input ::placeholder {color: #727271;font-size: 14px;font-weight: 400;line-height: 20px }@media (max-width:767px) {.white-form .custom--input :-ms-input-placeholder {font-size: 12px;line-height: 19px }.white-form .custom--input ::placeholder {font-size: 12px;line-height: 19px }}.white-form .custom__name::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6663 17.5V15.8333C16.6663 14.9493 16.3151 14.1014 15.69 13.4763C15.0649 12.8512 14.2171 12.5 13.333 12.5H6.66634C5.78229 12.5 4.93444 12.8512 4.30932 13.4763C3.6842 14.1014 3.33301 14.9493 3.33301 15.8333V17.5" stroke="%23B3B3B2" stroke-width="1.25" stroke-linejoin="round"/><path d="M10.0003 9.16667C11.8413 9.16667 13.3337 7.67428 13.3337 5.83333C13.3337 3.99238 11.8413 2.5 10.0003 2.5C8.15938 2.5 6.66699 3.99238 6.66699 5.83333C6.66699 7.67428 8.15938 9.16667 10.0003 9.16667Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom__institute::after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 14.625C13.4497 14.625 14.625 13.4497 14.625 12C14.625 10.5503 13.4497 9.375 12 9.375C10.5503 9.375 9.375 10.5503 9.375 12C9.375 13.4497 10.5503 14.625 12 14.625Z" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.7839 9.67335C10.0971 8.22923 9.375 6.43013 9.375 5.25C9.375 4.55381 9.65156 3.88613 10.1438 3.39384C10.6361 2.90156 11.3038 2.625 12 2.625C12.6962 2.625 13.3639 2.90156 13.8562 3.39384C14.3484 3.88613 14.625 4.55381 14.625 5.25C14.625 6.43013 13.9029 8.22923 13.2161 9.67336" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.37829 11.8897C7.78427 11.7624 5.86513 11.4883 4.84311 10.8982C4.2404 10.55 3.80066 9.97666 3.6206 9.30429C3.44055 8.63192 3.53491 7.91556 3.88294 7.31275C4.23097 6.70994 4.80418 6.27004 5.4765 6.08979C6.14882 5.90954 6.8652 6.0037 7.46811 6.35156C8.49013 6.94162 9.68713 8.46657 10.5944 9.78337" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.5944 14.2165C9.68713 15.5333 8.49013 17.0582 7.46811 17.6483C6.8652 17.9961 6.14882 18.0903 5.4765 17.91C4.80418 17.7298 4.23097 17.2899 3.88294 16.6871C3.53491 16.0843 3.44055 15.3679 3.6206 14.6955C3.80066 14.0232 4.2404 13.4498 4.84311 13.1016C5.86513 12.5116 7.78427 12.2374 9.3783 12.1101" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.2161 14.3267C13.9029 15.7708 14.625 17.5699 14.625 18.75C14.625 19.4462 14.3484 20.1139 13.8562 20.6062C13.3639 21.0985 12.6962 21.375 12 21.375C11.3038 21.375 10.6361 21.0985 10.1438 20.6062C9.65156 20.1139 9.375 19.4462 9.375 18.75C9.375 17.5699 10.0971 15.7708 10.7839 14.3267" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.6224 12.1101C16.2164 12.2374 18.1355 12.5116 19.1575 13.1016C19.7603 13.4498 20.2 14.0232 20.38 14.6955C20.5601 15.3679 20.4657 16.0843 20.1177 16.6871C19.7697 17.2899 19.1965 17.7298 18.5242 17.91C17.8518 18.0903 17.1354 17.9961 16.5325 17.6483C15.5105 17.0582 14.3135 15.5333 13.4062 14.2165" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.4062 9.78362C14.3135 8.46681 15.5105 6.94187 16.5325 6.35181C17.1354 6.00394 17.8518 5.90979 18.5242 6.09004C19.1965 6.27029 19.7697 6.71019 20.1177 7.31299C20.4657 7.9158 20.5601 8.63216 20.38 9.30453C20.2 9.97691 19.7602 10.5502 19.1575 10.8984C18.1355 11.4885 16.2164 11.7627 14.6224 11.89" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom__mobile::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.167 1.66669H5.83366C4.91318 1.66669 4.16699 2.41288 4.16699 3.33335V16.6667C4.16699 17.5872 4.91318 18.3334 5.83366 18.3334H14.167C15.0875 18.3334 15.8337 17.5872 15.8337 16.6667V3.33335C15.8337 2.41288 15.0875 1.66669 14.167 1.66669Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M10 15H10.0088" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom__calendar::after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="square"/></svg>') }.white-form .custom__password::after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.5516 2.95211L4.03869 2.40491L2.94429 3.43071L3.45719 3.97792L6.59031 7.32056C4.70593 8.3285 3.15063 9.85353 2.08573 11.6881C1.95132 11.9197 1.95054 12.2053 2.08369 12.4376C4.05302 15.8732 7.76699 18.1746 12.0044 18.1746C13.4301 18.1746 14.8009 17.9161 16.0701 17.4343L19.4572 21.0479L19.9701 21.5951L21.0645 20.5693L20.5516 20.0221L4.5516 2.95211ZM14.9461 16.2352L7.65999 8.46177C7.56191 8.50944 7.46142 8.55963 7.35659 8.61204C5.82744 9.41653 4.53944 10.616 3.6113 12.0667C5.37076 14.8423 8.47827 16.6746 12.0044 16.6746C13.0277 16.6746 14.0153 16.5221 14.9461 16.2352Z" fill="%23B3B3B2"/><path d="M11.0039 6.76497C11.3239 6.73497 11.6639 6.71497 11.9939 6.71497C15.9539 6.71497 19.4239 8.86497 21.2639 12.075C20.6039 13.225 19.7239 14.245 18.6939 15.075" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.white-form .custom__email::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.33366 3.33331H16.667C17.5837 3.33331 18.3337 4.08331 18.3337 4.99998V15C18.3337 15.9166 17.5837 16.6666 16.667 16.6666H3.33366C2.41699 16.6666 1.66699 15.9166 1.66699 15V4.99998C1.66699 4.08331 2.41699 3.33331 3.33366 3.33331Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.3337 5L10.0003 10.8333L1.66699 5" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom__message {-ms-flex-align: start;align-items: flex-start }.white-form .custom__message::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 16.6667H17.5" stroke="%23B3B3B2" stroke-width="1.25" stroke-linejoin="round"/><path d="M13.75 2.91669C14.0815 2.58517 14.5312 2.39893 15 2.39893C15.2321 2.39893 15.462 2.44465 15.6765 2.53349C15.891 2.62233 16.0858 2.75254 16.25 2.91669C16.4142 3.08085 16.5444 3.27572 16.6332 3.4902C16.722 3.70467 16.7678 3.93455 16.7678 4.16669C16.7678 4.39884 16.722 4.62871 16.6332 4.84319C16.5444 5.05766 16.4142 5.25254 16.25 5.41669L5.83333 15.8334L2.5 16.6667L3.33333 13.3334L13.75 2.91669Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.white-form .custom__linked {-ms-flex-align: start;align-items: flex-start }.white-form .custom__linked::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.333 6.66699C14.6591 6.66699 15.9309 7.19378 16.8685 8.13146C17.8062 9.06914 18.333 10.3409 18.333 11.667V17.5003H14.9997V11.667C14.9997 11.225 14.8241 10.801 14.5115 10.4885C14.199 10.1759 13.775 10.0003 13.333 10.0003C12.891 10.0003 12.4671 10.1759 12.1545 10.4885C11.8419 10.801 11.6663 11.225 11.6663 11.667V17.5003H8.33301V11.667C8.33301 10.3409 8.85979 9.06914 9.79747 8.13146C10.7352 7.19378 12.0069 6.66699 13.333 6.66699V6.66699Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round"/><path d="M5.00033 7.5H1.66699V17.5H5.00033V7.5Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round"/><path d="M3.33366 5.00033C4.25413 5.00033 5.00033 4.25413 5.00033 3.33366C5.00033 2.41318 4.25413 1.66699 3.33366 1.66699C2.41318 1.66699 1.66699 2.41318 1.66699 3.33366C1.66699 4.25413 2.41318 5.00033 3.33366 5.00033Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="round"/></svg>') }.white-form .custom__location {-ms-flex-align: start;align-items: flex-start }.white-form .custom__location::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.0846 8.48487C17.0846 12.9835 11.9871 16.937 10.4408 18.0328C10.1749 18.2212 9.82771 18.2212 9.56185 18.0328C8.01547 16.937 2.91797 12.9835 2.91797 8.48487C2.91797 6.67657 3.66425 4.94234 4.99263 3.66369C6.32101 2.38503 8.12269 1.66669 10.0013 1.66669C11.8799 1.66669 13.6816 2.38503 15.01 3.66369C16.3384 4.94234 17.0846 6.67657 17.0846 8.48487Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="square"/><path d="M10 10.8333C11.3807 10.8333 12.5 9.71402 12.5 8.33331C12.5 6.9526 11.3807 5.83331 10 5.83331C8.61929 5.83331 7.5 6.9526 7.5 8.33331C7.5 9.71402 8.61929 10.8333 10 10.8333Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="square"/></svg>') }.white-form .custom__book {-ms-flex-align: start;align-items: flex-start }.white-form .custom__book::after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 3.33333H7C7.79565 3.33333 8.55871 3.66501 9.12132 4.2554C9.68393 4.84579 10 5.64654 10 6.48148V17.5C10 16.8738 9.76295 16.2732 9.34099 15.8304C8.91903 15.3876 8.34674 15.1389 7.75 15.1389H2.5V3.33333Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="square"/><path d="M17.5 3.33331H13C12.2044 3.33331 11.4413 3.66499 10.8787 4.25538C10.3161 4.84578 10 5.64652 10 6.48146V17.5C10 16.8738 10.2371 16.2732 10.659 15.8304C11.081 15.3876 11.6533 15.1389 12.25 15.1389H17.5V3.33331Z" stroke="%23B3B3B2" stroke-width="1.25" stroke-linecap="square"/></svg>') }.white-form .custom--checkbox {position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;cursor: pointer }.white-form .custom--checkbox input {display: none }.white-form .custom--checkbox input:checked ~ .custom--checkbox__checkmark {background-color: #2b2a29;border-color: #2b2a29 }.white-form .custom--checkbox input:checked ~ .custom--checkbox__checkmark::after {display: block }.white-form .custom--checkbox input:checked ~ .custom--checkbox__bookmark {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="%23DF252A" xmlns="http://www.w3.org/2000/svg"><path d="M15.8327 17.5L9.99935 13.3333L4.16602 17.5V4.16667C4.16602 3.72464 4.34161 3.30072 4.65417 2.98816C4.96673 2.67559 5.39065 2.5 5.83268 2.5H14.166C14.608 2.5 15.032 2.67559 15.3445 2.98816C15.6571 3.30072 15.8327 3.72464 15.8327 4.16667V17.5Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.white-form .custom--checkbox__checkmark {position: absolute;width: 16px;height: 16px;left: 0;border-radius: 1px;border: 1.25px solid #b3b3b2 }@media (max-width:767px) {.white-form .custom--checkbox__checkmark {width: 13px;height: 13px }}.white-form .custom--checkbox__checkmark:after {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="9" height="7" viewBox="0 0 9 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 3.373L3.374 5.746L8.12 1" stroke="%23ffffff" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat;width: 8px;height: 8px;top: 50%;left: 50%;transform: translate(-50%, -50%);display: none }@media (max-width:767px) {.white-form .custom--checkbox__checkmark:after {width: 6px;height: 6px }}.white-form .custom--checkbox__bookmark {width: 20px;height: 20px;background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.8327 17.5L9.99935 13.3333L4.16602 17.5V4.16667C4.16602 3.72464 4.34161 3.30072 4.65417 2.98816C4.96673 2.67559 5.39065 2.5 5.83268 2.5H14.166C14.608 2.5 15.032 2.67559 15.3445 2.98816C15.6571 3.30072 15.8327 3.72464 15.8327 4.16667V17.5Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>');background-repeat: no-repeat;background-size: cover;background-position: center }.white-form .custom--checkbox__label {padding-left: 28px;font-size: 16px;line-height: 26px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 1;overflow: hidden;text-overflow: ellipsis;white-space: normal }@media (max-width:767px) {.white-form .custom--checkbox__label {font-size: 12px;line-height: 19px;padding-left: 23px }}.white-form .custom--radio {position: relative;display: -ms-flexbox;display: flex;cursor: pointer }.white-form .custom--radio input {display: none }.white-form .custom--radio input:checked ~ .custom--radio__checkmark {background-color: #2b2a29;border-color: #2b2a29 }.white-form .custom--radio input:checked ~ .custom--radio__checkmark::after {display: block }.white-form .custom--radio input:checked ~ .custom--radio__label {border-color: #2b2a29 }.white-form .custom--radio input:disabled ~ .custom--radio__checkmark {border-color: rgba(179, 179, 178, .5);cursor: not-allowed }.white-form .custom--radio input:disabled ~ .custom--radio__label {background: rgba(228, 231, 233, .4);color: #b3b3b2;cursor: not-allowed }.white-form .custom--radio__checkmark {position: absolute;width: 18px;height: 18px;left: 12px;border-radius: 50%;border: 1.5px solid #b3b3b2;top: 14px }@media (max-width:767px) {.white-form .custom--radio__checkmark {width: 13px;height: 13px }}.white-form .custom--radio__checkmark:after {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="9" height="7" viewBox="0 0 9 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 3.373L3.374 5.746L8.12 1" stroke="%23ffffff" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat;width: 8px;height: 8px;top: 50%;left: 50%;transform: translate(-50%, -50%);display: none }@media (max-width:767px) {.white-form .custom--radio__checkmark:after {width: 6px;height: 6px }}.white-form .custom--radio__label {font-size: 14px;line-height: 20px;background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .05);border-radius: 8px;padding: 12px 12px 12px 42px;width: 100% }@media (max-width:767px) {.white-form .custom--radio__label {font-size: 12px;line-height: 19px;padding: 10px 10px 10px 30px }}.white-form .custom__resume {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.white-form .custom__resume span {font-size: 16px;line-height: 26px }@media (max-width:767px) {.white-form .custom__resume span {font-size: 12px;line-height: 19px }}.white-form .custom__resume span + span {margin-left: 34px;cursor: pointer }@media (max-width:767px) {.white-form .custom__resume span + span {margin-left: 14px }}.cta {padding: 44px 108px 44px 40px;border-radius: 24px }@media (max-width:991px) {.cta {padding: 24px 20px 20px }}.cta--dark {background-color: #1a1a19;background-image: url(../assets/images/cta-bg.svg);background-repeat: no-repeat;background-position: bottom right }.cta--dark .text--light {color: #fff }.cta--content {-ms-flex: 1;flex: 1 }@media (max-width:991px) {.cta--content {-ms-flex: auto;flex: auto }}.cta--flex {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;-ms-flex-wrap: wrap;flex-wrap: wrap }@media (max-width:991px) {.cta--flex {-ms-flex-pack: end;justify-content: flex-end }}.cta--flex h2 {font-size: 36px;line-height: 46px;margin-bottom: 20px;max-width: 545px }@media (max-width:991px) {.cta--flex h2 {max-width: 100% }}@media (max-width:767px) {.cta--flex h2 {font-size: 26px;line-height: 33px;margin-bottom: 16px }}.cta--flex p {max-width: 450px }@media (max-width:767px) {.cta--flex p {font-size: 12px;line-height: 19px }}@media (max-width:991px) {.cta--flex a {margin-top: 40px }}.cta--mt {margin-top: 120px }@media (max-width:991px) {.cta--mt {margin-top: 80px }}.cta--form .cta--content {max-width: 450px;-ms-flex: 0 0 450px;flex: 0 0 450px }@media (max-width:991px) {.cta--form .cta--content {-ms-flex: auto;flex: auto;max-width: 100% }}.cta--form form {width: 450px }@media (max-width:991px) {.cta--form form {-ms-flex: auto;flex: auto;max-width: 100%;margin-top: 30px }}@media (max-width:991px) {.cta--form form a {margin-top: 0 }}@media (max-width:767px) {.web {display: none }}@media (max-width:991px) {.web--lg {display: none }}.mobile {display: none }@media (max-width:767px) {.mobile {display: block }}.mobile--lg {display: none }@media (max-width:991px) {.mobile--lg {display: block }}.slider-controls {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.slider-controls > a {width: 48px;height: 48px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 50%;cursor: pointer;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }@media (max-width:767px) {.slider-controls > a {width: 40px;height: 40px }}.slider-controls > a + a {margin-left: 16px }@media (max-width:767px) {.slider-controls > a + a {margin-left: 8px }}.slider-controls > a:hover {background-color: #df252a }.slider-controls > a:hover::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.slider-controls > a::before {content: '';position: absolute;width: 24px;height: 24px;background-size: cover;background-repeat: no-repeat;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>') }@media (max-width:767px) {.slider-controls > a::before {width: 20px;height: 20px }}.slider-controls .btn-prev::before {transform: rotate(-180deg) }.slider-controls p {margin: 0 16px }.card--shadow, .student--card {border: 1px solid rgba(43, 42, 41, .1);border-radius: 12px;box-shadow: 0 4px 24px rgba(0, 0, 0, .04) }.button-rounded {padding: 10px 28px;font-size: 14px;line-height: 20px;border-radius: 100px;text-align: center;display: inline-block;text-decoration: none;white-space: nowrap;box-sizing: border-box }@media (max-width:767px) {.button-rounded {font-size: 12px;line-height: 19px;padding: 6px 20px }}.button-rounded.disabled {opacity: .5;cursor: not-allowed }.button-rounded__dark {background-color: #1a1a19;color: #fff }.button-rounded__dark:hover {color: #fff !important }.button-rounded__white {background-color: #fff;color: #df252a;border: 1px solid rgba(43, 42, 41, .1) }.button-rounded__white:hover {background-color: #df252a;color: #fff }.tick--list {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;position: relative;padding-left: 40px;font-size: 20px;line-height: 33px }@media (max-width:767px) {.tick--list {font-size: 16px;line-height: 25px;padding-left: 36px }}.tick--list:before {position: absolute;content: '';left: 0;width: 24px;height: 24px;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21 5L8.625 18L3 12.0909" stroke="%23DF252A" stroke-width="2" stroke-linecap="square"/></svg>');background-repeat: no-repeat;background-position: center }.tick--list + .tick--list {margin-top: 32px }@media (max-width:767px) {.tick--list + .tick--list {margin-top: 18px }}.file-hidden {display: none }@media (max-width:767px) {.pagination {-ms-flex-pack: justify;justify-content: space-between }}.pagination--list {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 16px;line-height: 24px;margin: 0 24px }@media (max-width:767px) {.pagination--list {font-size: 14px;line-height: 19px }}.pagination--list li + li {margin-left: 12px }.pagination--list li a.active, .pagination--list li a:hover {color: #df252a }.close {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M6 6L18 18" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat;display: inline-block;width: 24px;height: 24px }.badge {background-color: #fc5a5a;border: 1px solid #fff;color: #fff;margin-left: 4px;line-height: 1.2 }.custom--badge {border: 1px solid #fff;border-radius: 100%;background-color: #fc5a5a;color: #fff;font-size: 10px;line-height: 12px;min-width: 16px;min-height: 16px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;margin-left: 4px }.custom--switch {position: relative;display: inline-block;width: 39px;height: 22px }@media (max-width:767px) {.custom--switch {width: 30px;height: 16px }}.custom--switch.disabled {opacity: .5 }.custom--switch.disabled span {cursor: not-allowed }.custom--switch--label {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.custom--switch--label p {font-size: 16px;line-height: 25px;padding-right: 5px }@media (max-width:767px) {.custom--switch--label p {font-size: 12px;line-height: 19px }}.custom--switch input {opacity: 0;width: 0;height: 0 }.custom--switch input:checked + .round {background-color: #1a1a19 }.custom--switch input:checked + .round:before {transform: translateX(16px);background-color: #fff }@media (max-width:767px) {.custom--switch input:checked + .round:before {transform: translateX(13px) }}.custom--switch .round {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;position: absolute;cursor: pointer;top: 0;left: 0;right: 0;bottom: 0;border: 1px solid #1a1a19;background-color: #fff;transition: .4s;border-radius: 20px }.custom--switch .round::before {position: absolute;content: "";height: 16px;width: 16px;left: 3px;background-color: #1a1a19;transition: .4s;border-radius: 50% }@media (max-width:767px) {.custom--switch .round::before {width: 12px;height: 12px;left: 2px }}.edit__link {font-size: 16px;line-height: 24px;padding-left: 24px;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.edit__link:hover {color: #df252a }@media (max-width:767px) {.edit__link {font-size: 12px;line-height: 19px;padding-left: 20px }}.edit__link::before {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.4291 6.67523L11.9888 12.1155L8.89062 13.4041L10.1791 10.3057L15.6193 4.86545C16.1208 4.36394 16.9276 4.36394 17.4291 4.86545C17.9197 5.35605 17.9197 6.17372 17.4291 6.67523Z" stroke="%23DF252A" stroke-width="1.25" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.417 13.1579L14.417 16.5526C14.417 17.0737 13.9907 17.5 13.4696 17.5L4.31173 17.5C3.79068 17.5 3.36436 17.0737 3.36436 16.5526L3.36436 3.44737C3.36436 2.92632 3.79068 2.5 4.31173 2.5L13.4696 2.5" stroke="%23DF252A" stroke-width="1.25" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/></svg>');background-repeat: no-repeat;background-size: cover;background-position: center;width: 20px;height: 20px;left: 0 }@media (max-width:767px) {.edit__link::before {width: 16px;height: 16px }}.chips {padding: 2px 8px 2px 20px;border-radius: 4px;font-size: 10px;line-height: 18px;text-transform: uppercase;position: relative;display: -ms-inline-flexbox;display: inline-flex;-ms-flex-align: center;align-items: center;white-space: nowrap }.chips::before {position: absolute;content: '';width: 6px;height: 6px;left: 8px;border-radius: 50% }.chips--notAssigned {background-color: #b3b3b2;color: #fff;padding: 2px 8px }.chips--notAssigned::before {display: none }.chips--yellow {background-color: rgba(247, 179, 64, .15);color: #f59a00 }.chips--yellow::before {background-color: #f59a00 }.chips--green {background-color: rgba(27, 177, 97, .15);color: #1bb161 }.chips--green::before {background-color: #1bb161 }.chips--red {background-color: rgba(223, 37, 42, .15);color: #df252a }.chips--red::before {background-color: #df252a }.bootstrap-table .fixed-table-pagination > .pagination, .bootstrap-table .fixed-table-pagination > .pagination-detail {margin-top: 18px !important;margin-bottom: 0 !important }.bootstrap-table .fixed-table-container .table thead th .both {background-image: url(../assets/images/sort.svg) !important }.bootstrap-table .fixed-table-container .table thead th .both.desc {background-image: url(../assets/images/desc.svg) !important }.bootstrap-table .fixed-table-container .table thead th .both.asc {background-image: url(../assets/images/asc.svg) !important }.bootstrap-table th {font-size: 12px;line-height: 18px;font-weight: 600;color: #727271;text-transform: uppercase }.bootstrap-table td {font-size: 14px;line-height: 20px;color: #2b2a29;font-weight: 400 }.bootstrap-table .table-bordered td, .bootstrap-table .table-bordered th {border: none }.bootstrap-table .table td, .bootstrap-table .table th .th-inner {padding: .75em 18px !important;white-space: nowrap }.bootstrap-table .fixed-columns {border-right: 1px solid rgba(43, 42, 41, .1) }.bootstrap-table .fixed-table-header {background-color: rgba(228, 231, 233, .4) }.bootstrap-table .fixed-table-container.fixed-height .fixed-table-border, .bootstrap-table .fixed-table-container.fixed-height .table thead th, .bootstrap-table .fixed-table-container.fixed-height:not(.has-footer), .bootstrap-table .table-bordered {border: none;border-left: none !important;border-right: none !important;border-bottom: none !important;border-top: none !important }.bootstrap-table .table-striped tbody tr:nth-of-type(even) {background-color: rgba(231, 231, 231, .2) }.bootstrap-table .table-striped tbody tr:nth-of-type(odd) {background-color: transparent }.bootstrap-table .searchbar--secondary input {font-size: 14px;line-height: 20px }.bootstrap-table .pagination {-ms-flex-align: center;align-items: center }.bootstrap-table .fixed-table-pagination {border-top: 1px solid rgba(43, 42, 41, .1) }.bootstrap-table .pagination-detail {font-size: 16px;line-height: 24px;font-weight: 400;color: #727271 }.bootstrap-table .pagination-detail .btn-secondary {border: 1px solid rgba(43, 42, 41, .1);border-radius: 6px;background-color: transparent;color: #2b2a29;box-shadow: none;font-size: 14px;line-height: 20px }.bootstrap-table .pagination-detail .btn-secondary:not(:disabled):not(.disabled).active:focus, .bootstrap-table .pagination-detail .btn-secondary:not(:disabled):not(.disabled):active:focus, .bootstrap-table .pagination-detail .show > .btn-secondary.dropdown-toggle:focus {box-shadow: none }.bootstrap-table .pagination-detail .dropdown-item.active, .bootstrap-table .pagination-detail .dropdown-item:hover {background-color: #df252a;color: #fff }.bootstrap-table .page-item.active .page-link {background-color: transparent;color: #df252a }.bootstrap-table .page-item.page-next .page-link, .bootstrap-table .page-item.page-pre .page-link {border: 1px solid rgba(43, 42, 41, .1);border-radius: 6px }.bootstrap-table .page-item.page-next .page-link:hover, .bootstrap-table .page-item.page-pre .page-link:hover {background-color: #df252a;border-color: #df252a;color: #fff }.bootstrap-table .page-link {border: none;color: #727271;font-size: 14px;line-height: 20px;padding: 2px 10px }.bootstrap-table .page-link:hover {background-color: transparent;color: #df252a }.floating-icons {position: fixed;bottom: 10px;right: 10px;z-index: 9;display: -ms-flexbox;display: flex;-ms-flex-align: end;align-items: flex-end;-ms-flex-direction: column;flex-direction: column }.floating-icons__img {width: 64px;height: 64px }@media (max-width:767px) {.floating-icons__img {width: 32px;height: 32px }}.floating-icons__link {width: 64px;height: 64px }@media (max-width:767px) {.floating-icons__link {width: 32px;height: 32px }}.floating-icons .bottom {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;margin-top: 16px }@media (max-width:767px) {.floating-icons .bottom {margin-top: 6px }}.floating-icons .bottom > a:last-child {margin-left: 16px }@media (max-width:767px) {.floating-icons .bottom > a:last-child {margin-left: 6px }}.social-modal .form--row + .form--row {margin-top: 29px }.social-modal .zoom-action {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding: 18px 24px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 8px }.social-modal .zoom-action img {width: 40px !important;height: 40px !important;margin: 0 26px 0 0 !important }.social-modal .zoom-action p {max-width: 236px;text-align: left !important }.gaugeChart .cutout {background-color: #fff;position: absolute;pointer-events: none }.gaugeChart .ecircle {top: 0;left: 0;background: linear-gradient(90deg, #df252a 0, #df252a 18%, #faae2d 20%, #faae2d 80%, #1bb161 62%, #1bb161 100%);position: absolute;transition: background-color .2s ease-in-out;opacity: .9 }.gaugeChart .CircularPoint {position: absolute;height: 5px;width: 5px;border-radius: 100%;z-index: 20;cursor: pointer }.gaugeChart .point-red {background: #df252a;box-shadow: 0 1px 6px #fff;box-shadow: 0 0 0 3px #fff, inset 0 2px 0 rgba(0, 0, 0, .08), 0 0 0 6px rgba(0, 0, 0, .05) }.gaugeChart .point-green {background: #1bb161;box-shadow: 0 1px 6px #fff;box-shadow: 0 0 0 4px #fff, 0 0 0 5px #50b663, inset 0 0 0 rgba(0, 0, 0, .08), 0 0 0 7px rgba(0, 0, 0, .05) }.gaugeChart .point-grass {background: #7bd118;box-shadow: 0 1px 6px #fff;box-shadow: 0 0 0 4px #fff, inset 0 0 0 rgba(0, 0, 0, .08), 0 0 0 7px rgba(0, 0, 0, .05) }.gaugeChart .CircleBad, .gaugeChart .CircleData, .gaugeChart .CircleGood, .gaugeChart .CircleLine {position: absolute }.gaugeChart .CircleData {left: 50%;top: 50%;transform: translate(-50%, -50%);font-size: 25px;color: grey;font-weight: 700 }.gaugeChart .CircleGood {bottom: 0;right: 0;font-size: 15px;color: grey }.gaugeChart .CircleBad {bottom: 0;left: 0;font-size: 15px;color: grey }.gaugeChart .CircleLine {position: absolute;height: 1px;background: 0 0;width: 100%;left: 0;z-index: 10 }.redLink-withIcon {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 12px;line-height: 19px }.redLink-withIcon img {width: 16px;height: 16px;margin-left: 4px }.redLink-withIcon + .redLink-withIcon {padding-left: 12px;border-left: 1px solid rgba(43, 42, 41, .1) }.pop {background-color: #1a1a19;min-height: 100vh;padding-bottom: 30px }.pop--menu {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;padding: 20px 0;margin-bottom: 80px }@media (max-width:991px) {.pop--menu {margin-bottom: 48px }}.pop--menu .mega--close {position: static;top: initial;left: initial;transform: inherit;border: 1px solid rgba(255, 255, 255, .2) }.pop--menu .mega--close:after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="square"/><path d="M6 6L18 18" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="square"/></svg>') }.pop--logo {width: 110px }.pop--header {font-size: 40px;line-height: 60px;margin-bottom: 20px }@media (max-width:767px) {.pop--header {font-size: 28px;line-height: 34px;margin-bottom: 16px }}.pop--desc {font-size: 16px;line-height: 26px;margin-bottom: 40px }@media (max-width:767px) {.pop--desc {font-size: 12px;line-height: 19px;margin-bottom: 25px }}.pop--duration {font-size: 18px;line-height: 26px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.pop--duration {font-size: 14px;line-height: 22px;-ms-flex-pack: justify;justify-content: space-between }}.pop--duration img {margin-right: 12px }.pop--duration + .pop--duration {margin-left: 40px }@media (max-width:991px) {.pop .stepper {margin-top: 80px }}.pop .stepper--content {display: none }.pop .stepper--content.active {display: block }.pop .form--heading {font-size: 24px;line-height: 34px;margin-bottom: 24px }@media (max-width:767px) {.pop .form--heading {font-size: 20px;line-height: 27px;margin-bottom: 20px }}.pop .form--heading--sub {font-size: 16px;line-height: 24px;margin-bottom: 16px }@media (max-width:767px) {.pop .form--heading--sub {font-size: 16px;line-height: 20px;margin-bottom: 16px }}.pop .form--heading--info {margin-top: 12px;font-size: 14px;line-height: 20px;font-style: italic }@media (max-width:767px) {.pop .form--heading--info {font-size: 10px;line-height: 16px }}.pop .form--inputBody + .form--inputBody {margin-top: 28px }@media (max-width:767px) {.pop .form--inputBody + .form--inputBody {margin-top: 20px }}.pop .form--group + .form--group {margin-top: 40px }.pop .form--group .slider-controls {margin-right: 16px }.pop .form--group .slider-controls a {border-color: rgba(255, 255, 255, .2) }.pop .form--group .slider-controls a:hover {border-color: #df252a }.pop .form--group .slider-controls a::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.pop .form--input {background: rgba(255, 255, 255, .1);border: 1px solid rgba(255, 255, 255, .1);color: #b3b3b2;padding: 14px 20px;border-radius: 8px;font-size: 14px;line-height: 19px;outline: 0;width: 100% }@media (max-width:767px) {.pop .form--input {font-size: 12px;line-height: 19px }}.pop .form--input:-ms-input-placeholder {color: #b3b3b2 }.pop .form--input::placeholder {color: #b3b3b2 }.pop .form .radio-input {margin-top: 12px;padding-left: 40px;display: none }@media (max-width:767px) {.pop .form .radio-input {padding-left: 36px }}.pop--select .dropdown-toggle[aria-expanded=true]:after {transform: rotate(0) }.pop--select .dropdown-toggle:after {border: none;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="rgba(255, 255, 255, 0.6)"/></svg>');width: 24px;height: 24px;transform: rotate(180deg);background-size: cover;background-position: center;transition: all .3s ease-in }@media (max-width:991px) {.pop--select .dropdown-toggle:after {width: 20px;height: 20px }}.pop--select .btn-light:not(:disabled):not(.disabled).active, .pop--select .btn-light:not(:disabled):not(.disabled):active, .pop--select .dropdown-toggle, .pop--select .show > .btn-light.dropdown-toggle {background: rgba(255, 255, 255, .1);border: 1px solid rgba(255, 255, 255, .1);color: #b3b3b2;padding: 14px 20px;border-radius: 8px;font-size: 14px;line-height: 19px;outline: 0 }@media (max-width:767px) {.pop--select .btn-light:not(:disabled):not(.disabled).active, .pop--select .btn-light:not(:disabled):not(.disabled):active, .pop--select .dropdown-toggle, .pop--select .show > .btn-light.dropdown-toggle {font-size: 12px;line-height: 19px }}.pop--select .dropdown-toggle:focus, .pop--select .mobile-device:focus + .dropdown-toggle {outline: 0 !important }.pop--select .dropdown-menu {background-color: #313030;color: #fff;border-radius: 8px;font-size: 14px;line-height: 19px;padding: 0 }@media (max-width:767px) {.pop--select .dropdown-menu {font-size: 12px;line-height: 19px }}.pop--select .dropdown-menu .inner {background-color: rgba(255, 255, 255, .1) }.pop--select .dropdown-menu .dropdown-item {color: #fff;padding: 10px 20px }.pop--select .dropdown-menu .dropdown-item.active, .pop--select .dropdown-menu .dropdown-item:active, .pop--select .dropdown-menu .dropdown-item:hover {background-color: #df252a;color: #fff }.pop .custom--radio {position: relative;display: -ms-flexbox;display: flex;cursor: pointer }.pop .custom--radio input {display: none }.pop .custom--radio input:checked ~ .custom--radio__checkmark {background-color: #df252a;border-color: #df252a }.pop .custom--radio input:checked ~ .custom--radio__checkmark::after {display: block }.pop .custom--radio__checkmark {position: absolute;width: 24px;height: 24px;border-radius: 50%;border: 1.5px solid #727271 }@media (max-width:767px) {.pop .custom--radio__checkmark {width: 20px;height: 20px }}.pop .custom--radio__checkmark:after {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="9" height="7" viewBox="0 0 9 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 3.373L3.374 5.746L8.12 1" stroke="%23ffffff" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat;width: 8px;height: 6px;top: 50%;left: 50%;transform: translate(-50%, -50%);display: none }@media (max-width:767px) {.pop .custom--radio__checkmark:after {width: 6px;height: 6px }}.pop .custom--radio__label {font-size: 16px;line-height: 26px;width: 100%;color: #fff;padding-left: 40px }@media (max-width:767px) {.pop .custom--radio__label {font-size: 12px;line-height: 19px;padding-left: 36px }}.pop .custom--radio__label--info {font-size: 14px;line-height: 20px }@media (max-width:767px) {.pop .custom--radio__label--info {font-size: 10px;line-height: 14px }}.pop .custom--checkbox {position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;cursor: pointer }.pop .custom--checkbox input {display: none }.pop .custom--checkbox input:checked ~ .custom--checkbox__checkmark {background-color: #df252a;border-color: #df252a }.pop .custom--checkbox input:checked ~ .custom--checkbox__checkmark::after {display: block }.pop .custom--checkbox input:checked ~ .custom--checkbox__bookmark {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="%23ffffff" xmlns="http://www.w3.org/2000/svg"><path d="M15.8327 17.5L9.99935 13.3333L4.16602 17.5V4.16667C4.16602 3.72464 4.34161 3.30072 4.65417 2.98816C4.96673 2.67559 5.39065 2.5 5.83268 2.5H14.166C14.608 2.5 15.032 2.67559 15.3445 2.98816C15.6571 3.30072 15.8327 3.72464 15.8327 4.16667V17.5Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.pop .custom--checkbox__checkmark {position: absolute;width: 24px;height: 24px;left: 0;border-radius: 1px;border: 1.25px solid #727271 }@media (max-width:767px) {.pop .custom--checkbox__checkmark {width: 20px;height: 20px }}.pop .custom--checkbox__checkmark:after {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="9" height="7" viewBox="0 0 9 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 3.373L3.374 5.746L8.12 1" stroke="%23ffffff" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat;width: 10px;height: 8px;top: 50%;left: 50%;transform: translate(-50%, -50%);display: none }@media (max-width:767px) {.pop .custom--checkbox__checkmark:after {width: 6px;height: 6px }}.pop .custom--checkbox__label {padding-left: 44px;font-size: 16px;line-height: 26px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 1;overflow: hidden;text-overflow: ellipsis;white-space: normal }@media (max-width:767px) {.pop .custom--checkbox__label {font-size: 12px;line-height: 19px;padding-left: 36px }}.pop .custom__calendar {display: none }.pop .custom__calendar:after {content: '';position: absolute;width: 20px;height: 20px;right: 14px;background-position: center;background-repeat: no-repeat;background-size: cover;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>') }.pop .stepper {margin-bottom: 40px }.pop .stepper.two .wizard li {max-width: inherit;width: inherit }.pop .stepper.two .wizard li:nth-child(1):after {width: 255% }@media (max-width:991px) {.pop .stepper.two .wizard li:nth-child(1):after {width: 312% }}@media (max-width:767px) {.pop .stepper.two .wizard li:nth-child(1):after {width: 187% }}.pop .stepper.two .wizard li:nth-child(2)::after {display: none }.pop .stepper .wizard {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;-ms-flex-pack: justify;justify-content: space-between }.pop .stepper .wizard li {position: relative;max-width: 50%;width: 100% }.pop .stepper .wizard li.completed .number {background-color: #df252a;border-color: #df252a }.pop .stepper .wizard li.completed:after {background-color: #df252a }.pop .stepper .wizard li.active .number {border-color: #df252a;background: #1a1a19 }.pop .stepper .wizard li.active .wizard--title {color: #fff }.pop .stepper .wizard li .number {font-size: 16px;width: 40px;height: 40px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background: rgba(255, 255, 255, .1);border: 1.25px solid rgba(255, 255, 255, .1) }@media (max-width:767px) {.pop .stepper .wizard li .number {width: 28px;height: 28px;font-size: 12px }}.pop .stepper .wizard li:nth-child(1)::after {left: calc(0% + 41px) }@media (max-width:767px) {.pop .stepper .wizard li:nth-child(1)::after {left: calc(0% + 29px) }}.pop .stepper .wizard li:nth-child(2) .number {margin: 0 auto }.pop .stepper .wizard li:nth-child(2) .wizard--title {text-align: center }.pop .stepper .wizard li:nth-child(2):after {left: calc(100% - 50% + 21px) }@media (max-width:767px) {.pop .stepper .wizard li:nth-child(2):after {left: calc(100% - 50% + 15px) }}.pop .stepper .wizard li:nth-child(3) .number {margin: 0 0 0 auto }.pop .stepper .wizard li:nth-child(3) .wizard--title {text-align: right }.pop .stepper .wizard li:nth-child(3):after {display: none }.pop .stepper .wizard li:after {position: absolute;content: '';width: 118%;height: 2px;top: 20px;left: 80%;background-color: rgba(255, 255, 255, .2) }@media (max-width:991px) {.pop .stepper .wizard li:after {width: 123% }}@media (max-width:767px) {.pop .stepper .wizard li:after {top: 14px;width: 110% }}.pop .stepper .wizard--title {font-size: 16px;line-height: 26px;margin-top: 20px;display: block }@media (max-width:767px) {.pop .stepper .wizard--title {font-size: 12px;line-height: 19px;margin-top: 12px }}.pop .cInput {background: rgba(255, 255, 255, .1);border: 1px solid rgba(255, 255, 255, .1);color: #b3b3b2;padding: 14px 20px;border-radius: 8px;font-size: 14px;line-height: 19px;outline: 0;width: 100%;margin-top: 20px }@media (max-width:767px) {.pop .cInput {font-size: 12px;line-height: 19px }}.pop .cInput input {color: #b3b3b2;background-color: transparent;border: none;box-shadow: none;outline: 0;caret-color: #727271;width: 100% }.sign {background-color: #fff;min-height: 100vh;padding-bottom: 30px }.sign--menu {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;padding: 20px 0;margin-bottom: 30px }@media (max-width:767px) {.sign--menu {margin-bottom: 0 }}.sign--menu .mega--close {position: static;top: initial;left: initial;transform: inherit;border: 1px solid rgba(43, 42, 41, .1) }.sign--menu .mega--close:after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="square"/><path d="M6 6L18 18" stroke="%23B3B3B2" stroke-width="1.5" stroke-linecap="square"/></svg>') }.sign--logo {width: 110px }.sign--heading {font-size: 24px;line-height: 33px;margin: 44px 0 20px }@media (max-width:767px) {.sign--heading {font-size: 18px;line-height: 24px;margin: 24px 0 12px }}.sign .tick--list {font-size: 16px;line-height: 24px }@media (max-width:767px) {.sign .tick--list {font-size: 12px;line-height: 19px;padding-left: 22px }}.sign .tick--list:before {background-size: cover }@media (max-width:767px) {.sign .tick--list:before {width: 12px;height: 12px }}.sign .tick--list + .tick--list {margin-top: 20px }@media (max-width:767px) {.sign .tick--list + .tick--list {margin-top: 12px }}@media (max-width:991px) {.sign .form {margin-top: 50px }}.sign .form--header {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-bottom: 32px }@media (max-width:767px) {.sign .form--header {margin-bottom: 20px }}.sign .form--header h1 {font-size: 32px;line-height: 44px }@media (max-width:767px) {.sign .form--header h1 {font-size: 18px;line-height: 28px }}.sign .form--header p {font-size: 18px;line-height: 27px }@media (max-width:767px) {.sign .form--header p {font-size: 13px;line-height: 19px }}.sign .form--group + .form--group {margin-top: 24px }.sign .form--group .info {margin-top: 12px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 12px;line-height: 19px }@media (max-width:767px) {.sign .form--group .info {-ms-flex-align: start;align-items: flex-start }}.sign .form--group .info img {width: 20px;height: 20px;margin-right: 8px }.sign .form--group .invalid-message {font-size: 12px;line-height: 19px;margin-top: 6px }.sign .form .custom--input {position: relative;background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .05);color: #b3b3b2;padding: 14px 20px;border-radius: 8px;font-size: 14px;line-height: 19px;outline: 0;width: 100% }@media (max-width:767px) {.sign .form .custom--input {font-size: 12px;line-height: 19px }}.sign .form .custom--input:active, .sign .form .custom--input:focus, .sign .form .custom--input:focus-visible, .sign .form .custom--input:focus-within {border-color: #1a1a19 }.sign .form .custom--input:-ms-input-placeholder {color: #b3b3b2;opacity: 0 }.sign .form .custom--input::placeholder {color: #b3b3b2;opacity: 0 }.sign .form .custom--input input:-ms-input-placeholder {opacity: 0 }.sign .form .custom--input input::placeholder {opacity: 0 }.sign .form .custom--input input:focus + .custom--label, .sign .form .custom--input input:not(:placeholder-shown) + .custom--label {left: 16px;transform: translateY(-25px);font-size: 10px;line-height: 14px;background-color: #fff;border-radius: 12px;padding: 0 4px }.sign .form .custom--input.is-invalid {border-color: #df252a;background-color: rgba(223, 37, 42, .05) }.sign .form .custom--label {position: absolute;left: 20px;font-size: 14px;line-height: 20px;transition: all .2s ease-in-out }@media (max-width:767px) {.sign .form .custom--label {font-size: 12px;line-height: 19px }}.sign .form .submit {margin-top: 40px }@media (max-width:767px) {.sign .form .submit {margin-top: 20px }}.sign .form .submit a {width: 100%;font-size: 16px;line-height: 24px }@media (max-width:767px) {.sign .form .submit a {font-size: 14px;line-height: 22px }}.sign .form .or-divider {margin: 24px 0;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }.sign .form .or-divider:after {position: absolute;content: '';width: 100%;height: 1px;background-color: rgba(43, 42, 41, .1) }.sign .form .or-divider span {font-size: 14px;line-height: 21px;background-color: #fff;padding: 0 10px;z-index: 1 }.sign .form .google {margin-bottom: 32px }@media (max-width:767px) {.sign .form .google {margin-top: 20px }}.sign .form .google a {width: 100%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }.sign .form .google a:hover {background-color: transparent;border-color: #df252a }.sign .form .google a:hover span {color: #df252a }.sign .form .google a img {width: 24px;height: 24px;margin-right: 8px }.sign .form .already {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;font-size: 14px;line-height: 22px;margin-top: 32px }@media (max-width:767px) {.sign .form .already {margin-top: 20px;font-size: 12px;line-height: 19px }}.sign .form .already a {margin-left: 3px }.sign .form .already.resend {margin-top: 24px;-ms-flex-pack: start;justify-content: flex-start }.sign .form .otp .form--header {margin-bottom: 12px }.sign .form .otp--header {font-size: 14px;line-height: 21px;margin-bottom: 32px }@media (max-width:767px) {.sign .form .otp--header {font-size: 12px;line-height: 19px;margin-bottom: 20px }}.sign .form .login-google {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-bottom: 32px }@media (max-width:767px) {.sign .form .login-google {margin-top: 20px }}.sign .form .login-google .google {margin-bottom: 0;-ms-flex: 1;flex: 1 }@media (max-width:767px) {.sign .form .login-google .google {margin-top: 0 }}.sign .form .login-google .google + .google {margin-left: 15px }.sign .form .forgot {font-size: 14px;line-height: 22px }@media (max-width:767px) {.sign .form .forgot {font-size: 12px;line-height: 19px }}.sign .form .custom--checkbox__label {font-size: 14px;line-height: 21px }.sign .stepper {margin-bottom: 40px }.sign .stepper--content {display: none }.sign .stepper--content.active {display: block }.sign .stepper--content .arrow--link__back {margin-bottom: 24px }.otp-wrapper {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.otp-wrapper .otp-input {background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .05);border-radius: 8px;width: 25%;font-size: 14px;padding: 14px 20px;text-align: center }.otp-wrapper .otp-input:focus-visible {outline-color: #2b2a29 }.otp-wrapper .otp-input:not(:last-child) {margin-right: 20px }.otp-wrapper.invalid .otp-input {border-color: #df252a;background: rgba(223, 37, 42, .05) }.instituteDetail {padding-top: 95px }.instituteDetail .udHero img {border-radius: 12px }.instituteDetail .program--image {width: 86px;height: 86px }@media (max-width:767px) {.instituteDetail .program--image {width: 62px;height: 62px }}.instituteDetail .program--image + .program--heading--right {padding-left: 24px }@media (max-width:767px) {.instituteDetail .program--image + .program--heading--right {padding-left: 16px }}.instituteDetail .program--heading {-ms-flex-align: start;align-items: flex-start }.instituteDetail .program--heading--right__sub {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;margin-top: 8px }.instituteDetail .program--heading--right__sub p {font-size: 14px;line-height: 22px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.instituteDetail .program--heading--right__sub p:nth-child(2) {border-right: none !important }@media (max-width:767px) {.instituteDetail .program--heading--right__sub p:last-child {width: 100%;margin-top: 4px }}@media (max-width:767px) {.instituteDetail .program--heading--right__sub p {font-size: 12px;line-height: 19px }}.instituteDetail .program--heading--right__sub p span {margin-left: 8px;white-space: nowrap }@media (max-width:767px) {.instituteDetail .program--heading--right__sub p span {margin-left: 4px }}.instituteDetail .program--heading--right__sub p img {width: 24px;height: 24px }@media (max-width:767px) {.instituteDetail .program--heading--right__sub p img {width: 20px;height: 20px }}.instituteDetail .program--heading--right__sub p:not(:last-child) {padding-right: 16px;margin-right: 16px;border-right: 1px solid rgba(43, 42, 41, .1) }@media (max-width:767px) {.instituteDetail .program--heading--right__sub p:not(:last-child) {padding-right: 8px;margin-right: 8px }}.instituteDetail .program--heading--right .bread {font-size: 12px;line-height: 19px }@media (max-width:767px) {.instituteDetail .program--heading--right .bread {font-size: 10px;line-height: 15px }}.instituteDetail .program--heading--right h2 {font-size: 28px;line-height: 42px }@media (max-width:767px) {.instituteDetail .program--heading--right h2 {font-size: 20px;line-height: 25px }}.instituteDetail .program--heading--right .location {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.instituteDetail .program--heading--right .location img {width: 20px;height: 20px;border-radius: 50%;margin-right: 8px }.instituteDetail .program--heading--right p {font-size: 14px;line-height: 22px }@media (max-width:767px) {.instituteDetail .program--heading--right p {font-size: 12px;line-height: 19px }}.instituteDetail .program--row {margin-top: 24px;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.instituteDetail .program--row {margin-top: 40px }}@media (max-width:991px) {.instituteDetail .program--card--header {display: none }}.instituteDetail .program--card--header .bookmark {min-width: 40px;height: 40px;margin-right: 12px }.instituteDetail .program--card--header .button-rounded__white {color: #1a1a19;margin-right: 12px }.instituteDetail .program--card--header .button-rounded__white:hover {color: #fff }.instituteDetail .program--card.list .program--card--detail {width: 100%;-ms-flex-pack: justify;justify-content: space-between }@media (max-width:991px) {.instituteDetail .program--card.list .program--card--detail {-ms-flex-wrap: wrap;flex-wrap: wrap }}@media (max-width:991px) {.instituteDetail .program--card.list .program--card--detail__item {max-width: 33.33%;width: 100%;margin-bottom: 16px;-ms-flex-align: start;align-items: flex-start }}@media (max-width:767px) {.instituteDetail .program--card.list .program--card--detail__item {max-width: 50% }}@media (max-width:991px) {.instituteDetail .program--card.list .program--card--detail__item + .program--card--detail__item {margin-left: 0 }}@media (max-width:991px) {.instituteDetail .program--card.list .program--card--detail__item .circle {background-color: transparent;width: auto;height: auto;border: none;box-shadow: none;min-width: inherit }}@media (max-width:991px) {.instituteDetail .program--card.list .program--card--detail__item .circle img {width: 16px;height: 16px }}.instituteDetail--container {max-width: 1020px;margin: 0 auto }.instituteDetail .explore {margin-top: 50px }@media (max-width:991px) {.instituteDetail .explore .tabs.nav {display: none }}.instituteDetail .explore .tabs--item + .tabs--item {margin-left: 35px }.instituteDetail .explore .tabs--link {font-size: 14px;line-height: 22px;color: #727271 }.instituteDetail .explore .tabs--content {margin-top: 40px }@media (max-width:991px) {.instituteDetail .explore .tabs--content .tab-pane {display: block;opacity: 1 }}@media (max-width:991px) {.instituteDetail .explore .tabs--content .tab-pane + .tab-pane {margin-top: 40px;padding-top: 40px;border-top: 1px solid rgba(43, 42, 41, .1) }}.instituteDetail .explore .tabs--content .about--body {padding-top: 20px }.instituteDetail .explore .tabs--content .about--body h2 {font-size: 24px;line-height: 30px;margin-bottom: 20px }.instituteDetail .explore .tabs--content .about--body .hero--counter {margin: 40px 0 }@media (max-width:1199px) {.instituteDetail .explore .tabs--content .about--body .hero--counter {margin: 28px 0 }}.instituteDetail .explore .tabs--content .about--body .hero--counter__number {font-size: 24px;line-height: 30px }@media (max-width:1199px) {.instituteDetail .explore .tabs--content .about--body .hero--counter__number {font-size: 18px;line-height: 24px }}.instituteDetail .explore .tabs--content .about--body .hero--counter__number sub {font-size: 14px;line-height: 20px;font-weight: 500 }.instituteDetail .explore .tabs--content .about--body .hero--counter__text {font-size: 14px;line-height: 22px;margin-top: 8px }@media (max-width:1199px) {.instituteDetail .explore .tabs--content .about--body .hero--counter__text {font-size: 12px;line-height: 19px;margin-top: 4px }}.instituteDetail .explore .tabs--content .about--body .hero--counter__text span {font-size: 12px;line-height: 19px;margin-top: 4px }.instituteDetail .explore .tabs--content .about--body .hero--counter__item {margin-bottom: 0 }@media (max-width:991px) {.instituteDetail .explore .tabs--content .about--body .hero--counter__item {max-width: inherit }}.instituteDetail .explore .tabs--content .about--body .info {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;margin-bottom: 40px }@media (max-width:767px) {.instituteDetail .explore .tabs--content .about--body .info {margin-bottom: 28px }}.instituteDetail .explore .tabs--content .about--body .info img {width: 16px;height: 16px;margin-right: 8px }@media (max-width:767px) {.instituteDetail .explore .tabs--content .about--body .info img {font-size: 10px;line-height: 16px }}.instituteDetail .explore .tabs--content .about--body .info p {font-size: 12px;line-height: 18px }.instituteDetail .explore .tabs--content .about--desc {font-size: 14px;line-height: 21px;max-width: 490px }.instituteDetail .explore .tabs--content .about--card {padding: 24px;border-radius: 12px;background-color: rgba(228, 231, 233, .2) }.instituteDetail .explore .tabs--content .about--card + .about--card {margin-top: 24px }.instituteDetail .explore .tabs--content .about--card--container + .about--card--container {margin-top: 40px;padding-top: 40px;border-top: 1px solid rgba(43, 42, 41, .1) }@media (max-width:767px) {.instituteDetail .explore .tabs--content .about--card--container + .about--card--container {margin-top: 20px;padding-top: 20px }}.instituteDetail .explore .tabs--content .about--card--title {font-size: 16px;line-height: 24px;padding-bottom: 10px;position: relative }@media (max-width:767px) {.instituteDetail .explore .tabs--content .about--card--title {font-size: 14px;line-height: 22px }}.instituteDetail .explore .tabs--content .about--card--title:after {position: absolute;content: '';background-color: #df252a;width: 42px;height: 2px;left: 0;bottom: 0 }.instituteDetail .explore .tabs--content .about--card--detail {margin-top: 20px }@media (max-width:767px) {.instituteDetail .explore .tabs--content .about--card--detail {margin-top: 16px }}.instituteDetail .explore .tabs--content .about--card--list {font-size: 14px;line-height: 22px;display: -ms-flexbox;display: flex }@media (max-width:767px) {.instituteDetail .explore .tabs--content .about--card--list {font-size: 12px;line-height: 19px }}.instituteDetail .explore .tabs--content .about--card--list + .about--card--list {margin-top: 12px }@media (max-width:767px) {.instituteDetail .explore .tabs--content .about--card--list + .about--card--list {margin-top: 8px }}.instituteDetail .explore .tabs--content .about--card--list span:nth-child(1) {min-width: 130px;max-width: 130px;margin-right: 20px }@media (max-width:767px) {.instituteDetail .explore .tabs--content .about--card--list span:nth-child(1) {max-width: 110px;margin-right: 15px }}.instituteDetail .explore .tabs--content .about--card .hero--counter {margin: 0 }.instituteDetail .explore .tabs--content .about--list {font-size: 14px;line-height: 22px;list-style-type: disc;margin-top: 40px;padding-left: 14px }@media (max-width:767px) {.instituteDetail .explore .tabs--content .about--list {margin-top: 24px;margin-bottom: 24px;font-size: 12px;line-height: 19px }}.instituteDetail .explore .tabs--content .about--list li + li {margin-top: 24px }@media (max-width:767px) {.instituteDetail .explore .tabs--content .about--list li + li {margin-top: 12px }}@media (max-width:991px) {.instituteDetail .all-programs .program--card--header {display: -ms-flexbox;display: flex }}.instituteDetail .career .position--heading {border-bottom: 1px solid rgba(43, 42, 41, .1);padding-bottom: 26px;margin-bottom: 40px }@media (max-width:767px) {.instituteDetail .career .position--heading {padding-bottom: 0;margin-bottom: 20px;border-bottom: 0 }}@media (max-width:991px) {.instituteDetail .career .position--heading__right {margin-bottom: 0 }}@media (max-width:767px) {.instituteDetail .career .position--heading__right {margin-top: 24px }}.instituteDetail .student--slider {margin-top: 90px }@media (max-width:767px) {.instituteDetail .student--slider {margin-top: 25px }}.instituteDetail .scholarship .arrow {margin-top: 20px }@media (max-width:767px) {.instituteDetail .scholarship .arrow {margin-top: 12px }}.instituteDetail .map {margin-bottom: 40px;margin-top: 40px;border-radius: 12px;overflow: hidden }@media (max-width:767px) {.instituteDetail .map {margin-top: 24px;margin-bottom: 24px }}.instituteDetail .vision--flex {margin-top: 40px;-ms-flex-pack: justify;justify-content: space-between }@media (max-width:991px) {.instituteDetail .vision--flex {margin-top: 24px;overflow-x: auto;overflow-y: hidden }}.instituteDetail .vision--flex .tick--list {font-size: 14px;line-height: 21px;font-weight: 500;padding-left: 28px;-ms-flex-align: start;align-items: flex-start }@media (max-width:991px) {.instituteDetail .vision--flex .tick--list {white-space: nowrap;font-size: 12px;line-height: 19px;padding-left: 24px }}.instituteDetail .vision--flex .tick--list + .tick--list {margin-top: 24px }@media (max-width:767px) {.instituteDetail .vision--flex .tick--list + .tick--list {margin-top: 12px }}.instituteDetail .vision--flex .tick--list::before {width: 20px;height: 20px;background-size: contain }@media (max-width:767px) {.instituteDetail .vision--flex .tick--list::before {width: 16px;height: 16px }}.instituteDetail .average {margin-top: 40px }@media (max-width:991px) {.instituteDetail .average {margin-top: 24px }}.instituteDetail .average--title {font-size: 16px;line-height: 24px;margin-bottom: 24px }.instituteDetail .average--chart {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;-ms-flex-pack: justify;justify-content: space-between }@media (max-width:991px) {.instituteDetail .average--chart {-ms-flex-wrap: wrap;flex-wrap: wrap }}.instituteDetail .average--chart__left .info {margin-top: 40px }.instituteDetail .average--chart__left .info p {max-width: 466px }.instituteDetail .average--chart .hero--counter {margin: 0 !important }@media (max-width:991px) {.instituteDetail .average--chart .hero--counter {width: 100%;margin-bottom: 24px !important }}@media (max-width:767px) {.instituteDetail .average--chart .hero--counter {-ms-flex-wrap: wrap;flex-wrap: wrap }}@media (max-width:767px) {.instituteDetail .average--chart .hero--counter > div {margin-bottom: 20px !important }}.instituteDetail .average .custom-chart p {position: relative;padding-left: 100px }@media (max-width:767px) {.instituteDetail .average .custom-chart p {padding-left: 54px }}.instituteDetail .average .custom-chart p:before {position: absolute;content: '';left: 2px;top: 14px;height: 1px;width: 90px;background-color: rgba(43, 42, 41, .1) }@media (max-width:767px) {.instituteDetail .average .custom-chart p:before {width: 38px }}.instituteDetail .average .custom-chart p span {display: block;max-width: 230px }.instituteDetail .average .custom-chart p span:nth-child(1) {font-size: 18px;line-height: 28px }.instituteDetail .average .custom-chart p span:nth-child(2) {font-size: 14px;line-height: 22px }.instituteDetail .average .custom-chart.program .chart-top--block {height: 145px }.instituteDetail .average .custom-chart.program .chart-bottom--block {height: 102px }.instituteDetail .average .chart-top {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.instituteDetail .average .chart-top--block {min-width: 66px;height: 72px;border-radius: 12px 12px 0 0;border-bottom: 4px solid #fff;background: rgba(223, 37, 42, .8) }@media (max-width:767px) {.instituteDetail .average .chart-top--block {min-width: 48px }}.instituteDetail .average .chart-bottom {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.instituteDetail .average .chart-bottom--block {min-width: 66px;height: 120px;background: rgba(223, 37, 42, .2) }@media (max-width:767px) {.instituteDetail .average .chart-bottom--block {min-width: 48px }}.instituteDetail .chartJs {margin-top: 80px }@media (max-width:767px) {.instituteDetail .chartJs {margin-top: 40px }}.instituteDetail .admission-requirement {margin-top: 40px;border-radius: 12px;padding: 24px;background-color: rgba(228, 231, 233, .2);display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-pack: justify;justify-content: space-between }@media (max-width:991px) {.instituteDetail .admission-requirement {margin-top: 24px;margin-left: -10px;margin-right: -10px }}@media (max-width:767px) {.instituteDetail .admission-requirement {padding: 0;background-color: transparent }}.instituteDetail .admission-requirement .ar--item {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column }@media (max-width:991px) {.instituteDetail .admission-requirement .ar--item {max-width: 50%;width: 100%;margin-bottom: 24px;padding: 0 10px }}.instituteDetail .admission-requirement .ar--number {font-size: 24px;line-height: 30px;margin-bottom: 8px }.instituteDetail .admission-requirement .ar--name {font-size: 14px;line-height: 22px;margin-bottom: 4px }.instituteDetail .admission-requirement .ar--desc {font-size: 12px;line-height: 19px }@media (max-width:991px) {.instituteDetail .sticky-footer .program--card--header {display: -ms-flexbox;display: flex }}.instituteDetail .position--list__heading {margin-top: 40px }.instituteDetail .position--list__team {font-size: 18px !important;line-height: 20px !important }.instituteDetail .position--list__desc {font-size: 14px;line-height: 21px;margin-top: 8px;font-weight: 400 }@media (max-width:991px) {.instituteDetail .position--list__desc {margin-bottom: 16px;margin-top: 0 }}@media (max-width:767px) {.instituteDetail .position--list__desc {font-size: 12px;line-height: 19px }}.instituteDetail .position--list__desc + a {margin-top: 20px }@media (max-width:991px) {.instituteDetail .position--list__desc + a {margin-bottom: 16px }}@media (max-width:767px) {.instituteDetail .position--list__desc + a {margin-top: 12px }}.instituteDetail .position--list .faq--accordion {border: none;box-shadow: none;background-color: rgba(228, 231, 233, .2);margin-bottom: 24px }@media (max-width:767px) {.instituteDetail .position--list .faq--accordion {margin-bottom: 8px }}.instituteDetail .position--list .faq--accordion__header {font-size: 16px;line-height: 24px }@media (max-width:767px) {.instituteDetail .position--list .faq--accordion__header {font-size: 14px;line-height: 21px }}.instituteDetail .position--list .faq--accordion__answer a, .instituteDetail .position--list .faq--accordion__answer p {margin-top: 8px;font-size: 14px;line-height: 21px }@media (max-width:767px) {.instituteDetail .position--list .faq--accordion__answer a, .instituteDetail .position--list .faq--accordion__answer p {font-size: 12px;line-height: 19px }}.instituteDetail .position--list .faq--accordion__answer a > span, .instituteDetail .position--list .faq--accordion__answer p > span {font-size: 14px;line-height: 21px }@media (max-width:767px) {.instituteDetail .position--list .faq--accordion__answer a > span, .instituteDetail .position--list .faq--accordion__answer p > span {font-size: 12px;line-height: 19px }}.program .modal-content {border: 1px solid rgba(43, 42, 41, .05);box-shadow: -4px 4px 16px rgba(43, 42, 41, .04) }@media (max-width:991px) {.program .modal-content {margin-top: 90px }}.program .modal-header {-ms-flex-pack: end;justify-content: flex-end;border-bottom: none }.program .modal-header .mega--close {position: static;top: inherit;left: inherit;transform: inherit }.program .modal-body {padding: 40px }@media (max-width:991px) {.program .modal-body {padding: 20px }}.program .pop--heading {font-size: 40px;line-height: 51px;margin-bottom: 20px }@media (max-width:991px) {.program .pop--heading {font-size: 28px;line-height: 34px;margin-bottom: 16px;margin-top: 40px }}.program .pop--subHeading {font-size: 16px;line-height: 25px;margin-bottom: 48px }@media (max-width:991px) {.program .pop--subHeading {font-size: 12px;line-height: 19px;margin-bottom: 32px }}.program .white-form .form--row + .form--row {margin-top: 24px }@media (max-width:991px) {.program .white-form .form--row + .form--row {margin-top: 16px }}.program .white-form .form--row .arrow {width: 100%;-ms-flex-pack: center;justify-content: center }.program .w-icon {padding-left: 24px;font-size: 14px;line-height: 20px;margin-top: 28px;text-decoration: none;position: relative;display: -ms-inline-flexbox;display: inline-flex;-ms-flex-align: center;align-items: center }.program .w-icon:after {position: absolute;content: '';left: 0;width: 16px;height: 16px;background-position: center;background-repeat: no-repeat;background-size: cover }.program .w-icon.active, .program .w-icon:hover {color: #df252a }.program .w-icon.active.profile:after, .program .w-icon:hover.profile:after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6663 17.5V15.8333C16.6663 14.9493 16.3151 14.1014 15.69 13.4763C15.0649 12.8512 14.2171 12.5 13.333 12.5H6.66634C5.78229 12.5 4.93444 12.8512 4.30932 13.4763C3.6842 14.1014 3.33301 14.9493 3.33301 15.8333V17.5" stroke="%23DF252A" stroke-width="1.25" stroke-linejoin="round"/><path d="M10.0003 9.16667C11.8413 9.16667 13.3337 7.67428 13.3337 5.83333C13.3337 3.99238 11.8413 2.5 10.0003 2.5C8.15938 2.5 6.66699 3.99238 6.66699 5.83333C6.66699 7.67428 8.15938 9.16667 10.0003 9.16667Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.program .w-icon.profile:after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6663 17.5V15.8333C16.6663 14.9493 16.3151 14.1014 15.69 13.4763C15.0649 12.8512 14.2171 12.5 13.333 12.5H6.66634C5.78229 12.5 4.93444 12.8512 4.30932 13.4763C3.6842 14.1014 3.33301 14.9493 3.33301 15.8333V17.5" stroke="%232B2A29" stroke-width="1.25" stroke-linejoin="round"/><path d="M10.0003 9.16667C11.8413 9.16667 13.3337 7.67428 13.3337 5.83333C13.3337 3.99238 11.8413 2.5 10.0003 2.5C8.15938 2.5 6.66699 3.99238 6.66699 5.83333C6.66699 7.67428 8.15938 9.16667 10.0003 9.16667Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }@media (max-width:991px) {.hamburger {margin-left: 20px;float: right;padding: 0;display: inline-block;cursor: pointer;transition-property: opacity, filter;transition-duration: .15s;transition-timing-function: linear;font: inherit;color: inherit;text-transform: none;background-color: transparent;border: 0;overflow: visible;line-height: 0 }.hamburger .hamburger-box {width: 25px;height: 19px;display: inline-block;position: relative }.hamburger .hamburger-box .hamburger-inner {display: block;top: 50%;margin-top: -2px }.hamburger .hamburger-box .hamburger-inner:after {width: 7px !important }.hamburger .hamburger-box .hamburger-inner, .hamburger .hamburger-box .hamburger-inner:after, .hamburger .hamburger-box .hamburger-inner:before {width: 16px;height: 1.5px;background-color: #2b2a29;border-radius: 3px;position: absolute;transition-property: transform;transition-duration: .15s;transition-timing-function: ease;right: 0 }.hamburger .hamburger-box .hamburger-inner:after, .hamburger .hamburger-box .hamburger-inner:before {content: "";display: block }.hamburger .hamburger-box .hamburger-inner:before {top: -8px }.hamburger .hamburger-box .hamburger-inner:after {bottom: -8px }.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {background-color: #2b2a29 }.hamburger.hamburger--squeeze .hamburger-inner {transition-duration: 75ms;transition-timing-function: cubic-bezier(.55, .055, .675, .19) }.hamburger.hamburger--squeeze .hamburger-inner:before {transition: top 75ms .12s ease, opacity 75ms ease }.hamburger.hamburger--squeeze .hamburger-inner :after {transition: bottom 75ms .12s ease, transform 75ms cubic-bezier(.55, .055, .675, .19) }.hamburger.hamburger--squeeze.is-active .hamburger-inner {transform: rotate(45deg);transition-delay: .12s;transition-timing-function: cubic-bezier(.215, .61, .355, 1) }.hamburger.hamburger--squeeze.is-active .hamburger-inner::before {top: 0;opacity: 0;transition: top 75ms ease, opacity 75ms .12s ease }.hamburger.hamburger--squeeze.is-active .hamburger-inner::after {bottom: 0;transform: rotate(-90deg);transition: bottom 75ms ease, transform 75ms .12s cubic-bezier(.215, .61, .355, 1);width: 16px !important }}.navbar {z-index: 99999;padding: 14px 0;background-color: #fff;border-bottom: 1px solid rgba(43, 42, 41, .1) }@media (max-width:991px) {.navbar {padding: 12px 0 }}.navbar::after {background: #fff;border-radius: 0 0 12px 12px;box-shadow: 0 8px 20px rgba(0, 0, 0, .04);content: "";height: 100%;left: 50%;opacity: 0;position: absolute;top: 0;transform: translateX(-50%);transition: transform 375ms ease;width: 1232px;z-index: -1 }.navbar.bg-transparent {background-color: #fff !important }.navbar.bground-white {border-bottom: none;background-color: transparent }.navbar.bground-white:after {opacity: 1 }.navbar.bground-white .custom-container {padding-left: 30px;padding-right: 30px }@media (max-width:991px) {.navbar.bground-white .custom-container {padding-left: 20px;padding-right: 20px }}.navbar .custom-container {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;-ms-flex-wrap: wrap;flex-wrap: wrap;transition: all 375ms ease }.navbar .custom-container .nav-right {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.navbar .custom-container .nav-right .mobile {display: none }@media (max-width:991px) {.navbar .custom-container .nav-right .mobile {display: block }}.navbar .navbar--brand {width: 180px;padding: 0;height: 47px;display: inline-block }.navbar .navbar-collapse .navbar-nav {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;margin-left: auto }@media (max-width:991px) {.navbar .navbar-collapse .navbar-nav {-ms-flex-align: start;align-items: flex-start;padding-top: 10px;margin-top: 10px;border-top: 1px solid rgba(43, 42, 41, .1);height: 100vh }}.navbar .navbar-collapse .navbar-nav .nav-item {position: relative }.navbar .navbar-collapse .navbar-nav .nav-item a {font-size: 14px;line-height: 20px;text-decoration: none;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.navbar .navbar-collapse .navbar-nav .nav-item a.active, .navbar .navbar-collapse .navbar-nav .nav-item a:hover {color: #df252a }.navbar .navbar-collapse .navbar-nav .nav-item a.active.search:after, .navbar .navbar-collapse .navbar-nav .nav-item a:hover.search:after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M21.0004 21L16.6504 16.65" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>') }.navbar .navbar-collapse .navbar-nav .nav-item a.active.profile:after, .navbar .navbar-collapse .navbar-nav .nav-item a:hover.profile:after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6663 17.5V15.8333C16.6663 14.9493 16.3151 14.1014 15.69 13.4763C15.0649 12.8512 14.2171 12.5 13.333 12.5H6.66634C5.78229 12.5 4.93444 12.8512 4.30932 13.4763C3.6842 14.1014 3.33301 14.9493 3.33301 15.8333V17.5" stroke="%23DF252A" stroke-width="1.25" stroke-linejoin="round"/><path d="M10.0003 9.16667C11.8413 9.16667 13.3337 7.67428 13.3337 5.83333C13.3337 3.99238 11.8413 2.5 10.0003 2.5C8.15938 2.5 6.66699 3.99238 6.66699 5.83333C6.66699 7.67428 8.15938 9.16667 10.0003 9.16667Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.navbar .navbar-collapse .navbar-nav .nav-item a.w-icon {padding-left: 24px }.navbar .navbar-collapse .navbar-nav .nav-item a.w-icon:after {position: absolute;content: '';left: 0;width: 16px;height: 16px;background-position: center;background-repeat: no-repeat;background-size: cover }.navbar .navbar-collapse .navbar-nav .nav-item a.search:after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/><path d="M21.0004 21L16.6504 16.65" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/></svg>') }.navbar .navbar-collapse .navbar-nav .nav-item a.profile:after {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6663 17.5V15.8333C16.6663 14.9493 16.3151 14.1014 15.69 13.4763C15.0649 12.8512 14.2171 12.5 13.333 12.5H6.66634C5.78229 12.5 4.93444 12.8512 4.30932 13.4763C3.6842 14.1014 3.33301 14.9493 3.33301 15.8333V17.5" stroke="%232B2A29" stroke-width="1.25" stroke-linejoin="round"/><path d="M10.0003 9.16667C11.8413 9.16667 13.3337 7.67428 13.3337 5.83333C13.3337 3.99238 11.8413 2.5 10.0003 2.5C8.15938 2.5 6.66699 3.99238 6.66699 5.83333C6.66699 7.67428 8.15938 9.16667 10.0003 9.16667Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.navbar .navbar-collapse .navbar-nav .nav-item + .nav-item {margin-left: 28px }@media (max-width:991px) {.navbar .navbar-collapse .navbar-nav .nav-item + .nav-item {margin-left: 0;margin-top: 20px }}@media (max-width:991px) {.navbar .navbar-collapse .navbar-nav .nav-item.web {display: none }}.navbar .navbar-collapse .navbar-nav .nav-item .country-picker .dropdown-toggle {font-size: 14px;color: #2b2a29;background-color: transparent;border-color: transparent;padding: 0;margin: 0 }@media (max-width:991px) {.navbar .navbar-collapse .navbar-nav .nav-item .country-picker .dropdown-toggle {font-size: 12px;line-height: 18px }}.navbar .navbar-collapse .navbar-nav .nav-item .country-picker .dropdown-toggle:active, .navbar .navbar-collapse .navbar-nav .nav-item .country-picker .dropdown-toggle:focus {box-shadow: none;outline: 0 !important }.navbar .navbar-collapse .navbar-nav .nav-item .country-picker .dropdown-toggle[aria-expanded=true]:after {transform: rotate(0) }.navbar .navbar-collapse .navbar-nav .nav-item .country-picker .dropdown-toggle:after {border: none;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%232B2A29"/></svg>');width: 24px;height: 24px;transform: rotate(180deg);background-size: cover;background-position: center;transition: all .3s ease-in }@media (max-width:991px) {.navbar .navbar-collapse .navbar-nav .nav-item .country-picker .dropdown-toggle:after {width: 20px;height: 20px }}.navbar .navbar-collapse .navbar-nav .nav-item .country-picker .dropdown-toggle .filter-option {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;width: auto }.navbar .navbar-collapse .navbar-nav .nav-item .country-picker .dropdown-toggle .filter-option .filter-option-inner-inner {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.navbar .navbar-collapse .navbar-nav .nav-item .country-picker .dropdown-toggle .filter-option img {width: 24px;height: 24px }.navbar .navbar-collapse .navbar-nav .nav-item .country-picker > .dropdown-menu {font-size: 14px;position: absolute;overflow: visible !important }@media (max-width:991px) {.navbar .navbar-collapse .navbar-nav .nav-item .country-picker > .dropdown-menu {font-size: 12px;line-height: 18px }}.navbar .navbar-collapse .navbar-nav .nav-item .country-picker > .dropdown-menu .dropdown-item {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.navbar .navbar-collapse .navbar-nav .nav-item .country-picker > .dropdown-menu .dropdown-item:hover {background-color: transparent;color: #df252a }.navbar .navbar-collapse .navbar-nav .nav-item .country-picker > .dropdown-menu .dropdown-item img {width: 18px;height: 18px;margin-right: 8px }@media (max-width:767px) {.navbar .navbar-collapse .navbar-nav .nav-item .country-picker > .dropdown-menu .dropdown-item img {width: 20px;height: 20px }.navbar--brand svg {width: 169px !important;}}.navbar .navbar-collapse .navbar-nav .nav-item .country-picker > .dropdown-menu .dropdown-item.active, .navbar .navbar-collapse .navbar-nav .nav-item .country-picker > .dropdown-menu .dropdown-item:active {background-color: transparent;color: #df252a }.mega {position: fixed;top: -100%;left: 0;bottom: 0;right: 0;z-index: 9999;opacity: 0;visibility: hidden;transition: all .3s ease-in }.mega .backdrop {position: fixed;content: '';background-color: rgba(43, 42, 41, .1);left: 0;right: 0;bottom: 0;top: 75px;z-index: -1 }@media (max-width:991px) {.mega .backdrop {top: 71px }}.mega .hero--searchbar {margin: 0 auto }.mega.show {opacity: 1;visibility: visible;transition: all .3s ease-in;top: 75px }@media (max-width:991px) {.mega.show {top: 71px }}.mega--header {position: relative }@media (max-width:991px) {.mega--header {padding-top: 70px }}@media (max-width:767px) {.mega--header {padding-top: 50px }}.mega--close {position: absolute;right: 0;top: 50%;transform: translateY(-50%);width: 48px;height: 48px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }@media (max-width:991px) {.mega--close {top: 0;transform: inherit }}@media (max-width:767px) {.mega--close {width: 30px;height: 30px }}.mega--close:hover {background-color: #df252a }.mega--close:hover:after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M6 6L18 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.mega--close:after {content: '';position: absolute;width: 24px;height: 24px;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M6 6L18 18" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>');background-repeat: no-repeat;background-size: cover;background-position: center }@media (max-width:767px) {.mega--close:after {width: 16px;height: 16px }}.mega--body {background-color: #fff;box-shadow: 0 4px 24px rgba(0, 0, 0, .04);border-bottom: 1px solid rgba(43, 42, 41, .1);padding: 24px 0 40px 0 }@media (max-width:991px) {.mega--body {max-height: calc(100vh - 71px);overflow-y: auto;height: 100% }}.mega--card {position: relative;border: 1px solid rgba(43, 42, 41, .1);border-radius: 12px;padding: 16px 0 16px 16px;height: calc(100% - 50px);overflow-y: hidden }@media (max-width:991px) {.mega--card {margin-bottom: 12px;height: auto }}.mega--card__row {margin-top: 56px }@media (max-width:991px) {.mega--card__row {margin-top: 30px }}.mega--card.study .level--card--cList {margin-bottom: 0 }.mega--card.study .level--card--cList + .level--card--cList {margin-top: 12px }.mega--card--header {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-bottom: 16px;padding-bottom: 16px;border-bottom: 1px solid rgba(43, 42, 41, .1) }@media (max-width:991px) {.mega--card--header {width: 100%;margin-bottom: 0;padding-bottom: 0;border-bottom: 0 }}.mega--card--header.active ~ .mega--character {display: block }.mega--card--header .searchbar-btn {background-color: rgba(179, 179, 178, .2);min-width: 36px;height: 36px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;position: relative;margin-right: 16px;cursor: pointer }@media (max-width:991px) {.mega--card--header .searchbar-btn {display: none !important }}.mega--card--header .searchbar-btn::before {width: 20px;height: 20px;position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M21.0004 21L16.6504 16.65" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>');background-position: center;background-size: cover;background-repeat: no-repeat }.mega--card--header .mega--title {margin-bottom: 0;padding-bottom: 0;border-bottom: none;position: relative;width: 100% }.mega--title {font-size: 16px;line-height: 26px;margin-bottom: 16px;padding-bottom: 16px;border-bottom: 1px solid rgba(43, 42, 41, .1);position: relative }@media (max-width:991px) {.mega--title {margin-bottom: 0;padding-bottom: 0;border-bottom: 0;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;cursor: pointer }}@media (max-width:767px) {.mega--title {font-size: 14px;line-height: 22px }}.mega--title::after {display: none;position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%23727271"/></svg>');background-position: center;background-size: cover;width: 24px;height: 24px;right: 16px;transform: rotate(180deg);transition: all .3s ease-in-out }@media (max-width:991px) {.mega--title::after {display: block }}@media (max-width:767px) {.mega--title::after {width: 20px;height: 20px }}.mega--list {height: 100%;max-height: 337px;overflow-y: auto;scroll-behavior: smooth }@media (max-width:991px) {.mega--list {margin-top: 16px;padding-top: 16px;border-top: 1px solid rgba(43, 42, 41, .1) }}.mega--list::-webkit-scrollbar {width: 0 }.mega--list--body + .mega--list--body {margin-top: 12px }.mega--link {font-size: 16px;line-height: 24px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.mega--link {font-size: 12px;line-height: 19px }}.mega--link span {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 1;overflow: hidden;text-overflow: ellipsis;white-space: normal;max-width: calc(100% - 74px) }.mega--link:hover {color: #df252a }.mega--link + .mega--link {margin-top: 12px }@media (max-width:767px) {.mega--link + .mega--link {margin-top: 8px }}.mega--link img {width: 24px;height: 24px;margin-right: 12px;border-radius: 50% }.mega--character {position: absolute;right: 0;top: 68px;padding: 4px 12px;border-left: 1px solid rgba(43, 42, 41, .1);overflow-y: auto;text-align: center;height: 100%;max-height: calc(100% - 68px);overflow-y: auto;scroll-behavior: smooth }@media (max-width:991px) {.mega--character {display: none }}.mega--character::-webkit-scrollbar {width: 0 }.mega--character a {font-size: 12px;line-height: 19px;display: block;text-transform: uppercase }.mega--character a.active, .mega--character a:hover {color: #df252a }.dashboardHeader {padding: 15px 52px 15px 15px;background-color: #fff;border-bottom: 1px solid rgba(43, 42, 41, .1);z-index: 99999;position: fixed;top: 0;right: 0;left: 0;filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .04));display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }@media (max-width:991px) {.dashboardHeader {padding: 15px 20px }}.dashboardHeader .navbar--brand {width: 114px;display: block }.dashboardHeader .navbar--menu {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboardHeader .navbar--item {position: relative }.dashboardHeader .navbar--item:not(:last-child) {margin-right: 24px }@media (max-width:767px) {.dashboardHeader .navbar--item:not(:last-child) {margin-right: 15px }}.dashboardHeader .navbar--link {position: relative;display: block;width: 24px;height: 24px;background-position: center;background-size: cover;background-repeat: no-repeat }.dashboardHeader .navbar--link.search {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%231a1a19" stroke-width="1.5" stroke-linecap="square"/><path d="M20.9999 21L16.6499 16.65" stroke="%231a1a19" stroke-width="1.5" stroke-linecap="square"/></svg>') }.dashboardHeader .navbar--link.message {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 16C19.68 14.82 20 13.46 20 12C20 7.58 16.42 4 12 4C7.58 4 4 7.58 4 12C4 16.42 7.58 20 12 20C13.46 20 14.82 19.61 15.99 18.93L20 20L19 16Z" stroke="%231a1a19" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboardHeader .navbar--link.notification {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.5957 12.803V9.78298C18.5957 6.22298 15.8557 3.11298 12.2957 3.00298C8.6157 2.89298 5.5957 5.84298 5.5957 9.50298V12.793C5.5957 13.363 5.3257 14.873 4.9557 15.303C4.7257 15.563 4.5957 15.903 4.5957 16.273C4.5957 17.103 5.2657 17.773 6.0957 17.773H18.0957C18.9257 17.773 19.5957 17.103 19.5957 16.273C19.5957 15.903 19.4557 15.563 19.2357 15.303C18.8657 14.883 18.5957 13.373 18.5957 12.803Z" stroke="%231a1a19" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.5957 20.793H14.5957" stroke="%231a1a19" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/></svg>') }.dashboardHeader .navbar--link:hover.search {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M20.9999 21L16.6499 16.65" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>') }.dashboardHeader .navbar--link:hover.message {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 16C19.68 14.82 20 13.46 20 12C20 7.58 16.42 4 12 4C7.58 4 4 7.58 4 12C4 16.42 7.58 20 12 20C13.46 20 14.82 19.61 15.99 18.93L20 20L19 16Z" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboardHeader .navbar--link:hover.notification {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.5957 12.803V9.78298C18.5957 6.22298 15.8557 3.11298 12.2957 3.00298C8.6157 2.89298 5.5957 5.84298 5.5957 9.50298V12.793C5.5957 13.363 5.3257 14.873 4.9557 15.303C4.7257 15.563 4.5957 15.903 4.5957 16.273C4.5957 17.103 5.2657 17.773 6.0957 17.773H18.0957C18.9257 17.773 19.5957 17.103 19.5957 16.273C19.5957 15.903 19.4557 15.563 19.2357 15.303C18.8657 14.883 18.5957 13.373 18.5957 12.803Z" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.5957 20.793H14.5957" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/></svg>') }.dashboardHeader .navbar--link .badge {position: absolute;top: -3px;right: -3px;font-size: 8px;margin-left: 0;padding: 2px;min-width: 16px;min-height: 16px }.dashboardHeader .navbar--profile {width: 40px;height: 40px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: rgba(223, 37, 42, .15);position: relative }@media (max-width:767px) {.dashboardHeader .navbar--profile {width: 30px;height: 30px }}.dashboardHeader .navbar--profile img {width: 100%;height: 100%;border-radius: 50%;object-fit: cover }.dashboardHeader .navbar--profile__name {font-size: 14px;line-height: 22px;color: #df252a }@media (max-width:767px) {.dashboardHeader .navbar--profile__name {font-size: 12px;line-height: 19px }}.dashboardHeader .navbar--profile.drop:after {position: absolute;content: '';width: 24px;height: 24px;right: -30px;transform: rotate(180deg);transition: all .3s ease;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%232B2A29"/></svg>') }.dashboardHeader .navbar--profile.drop.rotate:after {transform: rotate(0) }.dashboardHeader .navbar--drop {display: none;opacity: 0;position: absolute;padding: 20px 24px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 12px;background-color: #fff;z-index: 999;box-shadow: 0 4px 4px rgba(0, 0, 0, .02);width: 458px;filter: drop-shadow(0 2px 24px rgba(0, 0, 0, .08));top: calc(100% + 5px);right: calc(100% - 30px) }@media (max-width:767px) {.dashboardHeader .navbar--drop {position: fixed;right: 0;left: 0;width: 100%;top: 100%;border-radius: 0 }}.dashboardHeader .navbar--drop.profileDrop {width: 300px }.dashboardHeader .navbar--drop::after {position: absolute;content: '';width: 0;height: 0;border-left: 5px solid transparent;border-right: 5px solid transparent;border-bottom: 5px solid #fff;filter: drop-shadow(0 2px 24px rgba(0, 0, 0, .08));right: 12px;top: -4px }@media (max-width:767px) {.dashboardHeader .navbar--drop::after {display: none }}.dashboardHeader .navbar--drop.toggle {display: block;opacity: 1 }@media screen and (min-width:992px) {.dashboardHeader .navbar--drop.searchDrop {width: 800px }}@media screen and (min-width:1200px) {.dashboardHeader .navbar--drop.searchDrop {width: 1140px }}.dashboardHeader .navbar--drop.searchDrop {right: calc(100% - 110px) }.dashboardHeader .navbar--drop.searchDrop::after {right: 90px }@media (max-width:991px) {.dashboardHeader .navbar--drop.searchDrop {width: 458px }}.dashboardHeader .navbar--drop.searchDrop .hero--searchbar {max-width: 100% }.dashboardHeader .navbar--drop.searchDrop .heading {font-size: 20px;line-height: 28px;margin: 24px 0 16px }@media (max-width:767px) {.dashboardHeader .navbar--drop.searchDrop .heading {font-size: 18px;line-height: 24px;margin: 15px 0 }}.dashboardHeader .navbar--drop--header {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-bottom: 22px }.dashboardHeader .navbar--drop--header p {font-size: 20px;line-height: 28px }.dashboardHeader .navbar--drop--header a {font-size: 14px;line-height: 20px }.dashboardHeader .navbar--drop .profileDrop-name {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding-bottom: 16px;margin-bottom: 16px;border-bottom: 1px solid rgba(43, 42, 41, .1) }.dashboardHeader .navbar--drop .profileDrop-name:hover .name {color: #df252a }.dashboardHeader .navbar--drop .profileDrop-name .navbar--profile {width: 40px;height: 40px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: rgba(223, 37, 42, .15) }@media (max-width:767px) {.dashboardHeader .navbar--drop .profileDrop-name .navbar--profile {width: 30px;height: 30px }}.dashboardHeader .navbar--drop .profileDrop-name .navbar--profile img {width: 100%;height: 100%;border-radius: 50%;object-fit: cover }.dashboardHeader .navbar--drop .profileDrop-name .navbar--profile__name {font-size: 14px;line-height: 22px;color: #df252a }@media (max-width:767px) {.dashboardHeader .navbar--drop .profileDrop-name .navbar--profile__name {font-size: 12px;line-height: 19px }}.dashboardHeader .navbar--drop .profileDrop-name .right {padding-left: 12px }.dashboardHeader .navbar--drop .profileDrop-name .right .name {font-size: 14px;line-height: 20px;margin-bottom: 4px }.dashboardHeader .navbar--drop .profileDrop-name .right .id {font-size: 14px;line-height: 20px }.dashboardHeader .navbar--drop .profileDrop-link li:not(:last-child) {margin-bottom: 16px }.dashboardHeader .navbar--drop .profileDrop-link li a {font-size: 14px;line-height: 20px;padding-left: 32px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;position: relative }.dashboardHeader .navbar--drop .profileDrop-link li a:hover {color: #df252a }.dashboardHeader .navbar--drop .profileDrop-link li a:hover.password::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.0171 17.3494H3.98372C3.52539 17.3494 3.15039 16.9744 3.15039 16.5161V8.7994C3.15039 8.34106 3.52539 7.96606 3.98372 7.96606H16.0171C16.4754 7.96606 16.8504 8.34106 16.8504 8.7994V16.5161C16.8504 16.9744 16.4754 17.3494 16.0171 17.3494Z" stroke="%23DF252A" stroke-width="1.25" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.19141 7.79206V6.45039C6.19141 4.35039 7.89141 2.65039 9.99141 2.65039C12.0914 2.65039 13.7914 4.35039 13.7914 6.45039V7.79206" stroke="%23DF252A" stroke-width="1.25" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboardHeader .navbar--drop .profileDrop-link li a:hover.help::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.35547 11.1289V7.90391C4.35547 4.78724 6.88047 2.25391 10.0055 2.25391C13.1221 2.25391 15.6555 4.77891 15.6555 7.90391V11.8039V13.3872C15.6555 15.1622 14.2221 16.5956 12.4471 16.5956H8.62214" stroke="%23DF252A" stroke-width="1.25" stroke-miterlimit="10"/><path d="M2.98776 12.7543C2.23776 12.7543 1.62109 12.146 1.62109 11.3877V8.88766C1.62109 8.13766 2.22943 7.521 2.98776 7.521C3.73776 7.521 4.35443 8.12933 4.35443 8.88766V11.3877C4.35443 12.146 3.73776 12.7543 2.98776 12.7543Z" stroke="%23DF252A" stroke-width="1.25" stroke-miterlimit="10"/><path d="M17.0132 12.7543C16.2632 12.7543 15.6465 12.146 15.6465 11.3877V8.88766C15.6465 8.13766 16.2548 7.521 17.0132 7.521C17.7632 7.521 18.3798 8.12933 18.3798 8.88766V11.3877C18.3798 12.146 17.7632 12.7543 17.0132 12.7543Z" stroke="%23DF252A" stroke-width="1.25" stroke-miterlimit="10"/><path d="M9.60443 17.7456H8.52109C7.88776 17.7456 7.37109 17.2289 7.37109 16.5956C7.37109 15.9622 7.88776 15.4456 8.52109 15.4456H9.60443C10.2378 15.4456 10.7544 15.9622 10.7544 16.5956C10.7544 17.2289 10.2378 17.7456 9.60443 17.7456Z" fill="%23DF252A"/></svg>') }.dashboardHeader .navbar--drop .profileDrop-link li a:hover.logout::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.5 17.5H4.16667C3.72464 17.5 3.30072 17.3244 2.98816 17.0118C2.67559 16.6993 2.5 16.2754 2.5 15.8333V4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H7.5" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.334 14.1666L17.5007 9.99992L13.334 5.83325" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.5 10H7.5" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboardHeader .navbar--drop .profileDrop-link li a::before {position: absolute;content: '';left: 0;width: 20px;height: 20px;background-position: center;background-size: cover;background-repeat: no-repeat }.dashboardHeader .navbar--drop .profileDrop-link li a.password::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.0171 17.3494H3.98372C3.52539 17.3494 3.15039 16.9744 3.15039 16.5161V8.7994C3.15039 8.34106 3.52539 7.96606 3.98372 7.96606H16.0171C16.4754 7.96606 16.8504 8.34106 16.8504 8.7994V16.5161C16.8504 16.9744 16.4754 17.3494 16.0171 17.3494Z" stroke="%232B2A29" stroke-width="1.25" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.19141 7.79206V6.45039C6.19141 4.35039 7.89141 2.65039 9.99141 2.65039C12.0914 2.65039 13.7914 4.35039 13.7914 6.45039V7.79206" stroke="%232B2A29" stroke-width="1.25" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboardHeader .navbar--drop .profileDrop-link li a.help::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.35547 11.1289V7.90391C4.35547 4.78724 6.88047 2.25391 10.0055 2.25391C13.1221 2.25391 15.6555 4.77891 15.6555 7.90391V11.8039V13.3872C15.6555 15.1622 14.2221 16.5956 12.4471 16.5956H8.62214" stroke="%232B2A29" stroke-width="1.25" stroke-miterlimit="10"/><path d="M2.98776 12.7543C2.23776 12.7543 1.62109 12.146 1.62109 11.3877V8.88766C1.62109 8.13766 2.22943 7.521 2.98776 7.521C3.73776 7.521 4.35443 8.12933 4.35443 8.88766V11.3877C4.35443 12.146 3.73776 12.7543 2.98776 12.7543Z" stroke="%232B2A29" stroke-width="1.25" stroke-miterlimit="10"/><path d="M17.0132 12.7543C16.2632 12.7543 15.6465 12.146 15.6465 11.3877V8.88766C15.6465 8.13766 16.2548 7.521 17.0132 7.521C17.7632 7.521 18.3798 8.12933 18.3798 8.88766V11.3877C18.3798 12.146 17.7632 12.7543 17.0132 12.7543Z" stroke="%232B2A29" stroke-width="1.25" stroke-miterlimit="10"/><path d="M9.60443 17.7456H8.52109C7.88776 17.7456 7.37109 17.2289 7.37109 16.5956C7.37109 15.9622 7.88776 15.4456 8.52109 15.4456H9.60443C10.2378 15.4456 10.7544 15.9622 10.7544 16.5956C10.7544 17.2289 10.2378 17.7456 9.60443 17.7456Z" fill="%232B2A29"/></svg>') }.dashboardHeader .navbar--drop .profileDrop-link li a.logout::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.5 17.5H4.16667C3.72464 17.5 3.30072 17.3244 2.98816 17.0118C2.67559 16.6993 2.5 16.2754 2.5 15.8333V4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H7.5" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.334 14.1666L17.5007 9.99992L13.334 5.83325" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.5 10H7.5" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboardHeader .tabs {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;position: relative;overflow-y: auto;-ms-flex-wrap: nowrap;flex-wrap: nowrap;white-space: nowrap;border-bottom: 1px solid rgba(43, 42, 41, .1) }.dashboardHeader .tabs--item + .tabs--item {margin-left: 40px }.dashboardHeader .tabs--link {font-weight: 500;padding-bottom: 12px;text-decoration: none;position: relative;font-size: 14px;line-height: 20px;color: #727271;display: -ms-flexbox;display: flex }@media (max-width:767px) {.dashboardHeader .tabs--link {font-size: 12px;line-height: 19px }}.dashboardHeader .tabs--link.active {color: #2b2a29 }.dashboardHeader .tabs--link.active::before {content: '';position: absolute;height: 4px;background-color: #df252a;left: 0;right: 0;bottom: 0 }@media (max-width:767px) {.dashboardHeader .tabs--link.active::before {height: 2px }}.dashboardHeader .tabs--info {position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding-right: 20px }.dashboardHeader .tabs--info:before {width: calc(100% - 20px) }.dashboardHeader .tabs--info::after {background-image: url(../assets/images/info-yellow.svg);background-size: cover;background-position: center;background-repeat: no-repeat;position: absolute;content: '';width: 16px;height: 16px;right: 0 }.dashboardHeader .tabs--content {margin-top: 25px }.dashboardHeader .tabs--content .notification--content {padding-left: 16px }@media (max-width:767px) {.dashboardHeader .tabs--content .notification--content {padding-left: 8px }}.dashboardHeader .tabs--content .notification--lists {max-height: 400px;overflow-y: auto }.dashboardHeader .tabs--content .notification--lists__icon {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;position: relative;min-width: 40px;height: 40px;border-radius: 50%;background-color: rgba(179, 179, 178, .15) }@media (max-width:767px) {.dashboardHeader .tabs--content .notification--lists__icon {min-width: 32px;height: 32px }}.dashboardHeader .tabs--content .notification--lists__icon::before {content: '';position: absolute;width: 20px;height: 20px;background-size: cover;background-position: center;background-repeat: no-repeat }@media (max-width:767px) {.dashboardHeader .tabs--content .notification--lists__icon::before {width: 14px;height: 14px }}.dashboardHeader .tabs--content .notification--lists__icon.application:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 3.33333H7C7.79565 3.33333 8.55871 3.66501 9.12132 4.2554C9.68393 4.84579 10 5.64654 10 6.48148V17.5C10 16.8738 9.76295 16.2732 9.34099 15.8304C8.91903 15.3876 8.34674 15.1389 7.75 15.1389H2.5V3.33333Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="square"/><path d="M17.5 3.33331H13C12.2044 3.33331 11.4413 3.66499 10.8787 4.25538C10.3161 4.84578 10 5.64652 10 6.48146V17.5C10 16.8738 10.2371 16.2732 10.659 15.8304C11.081 15.3876 11.6533 15.1389 12.25 15.1389H17.5V3.33331Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="square"/></svg>') }.dashboardHeader .tabs--content .notification--lists__icon.upcoming:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>') }.dashboardHeader .tabs--content .notification--lists__icon.offer:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.75391 7.05927C4.75391 4.13513 7.08427 1.78174 9.93801 1.78174C12.7917 1.78174 15.1221 4.13513 15.1221 7.05927C15.1221 9.69479 13.2291 11.8667 10.766 12.2697C10.4786 12.3029 10.1631 12.3228 9.81739 12.3228C9.6527 12.3228 9.46973 12.313 9.27636 12.2941C6.73269 11.9637 4.75391 9.75382 4.75391 7.05927ZM5.96729 12.1961C4.46595 10.9995 3.50391 9.14056 3.50391 7.05927C3.50391 3.46365 6.37519 0.531738 9.93801 0.531738C13.5008 0.531738 16.3721 3.46365 16.3721 7.05927C16.3721 9.14027 15.4103 10.9989 13.9094 12.1956V18.5219C13.9094 18.7344 13.8014 18.9324 13.6226 19.0474C13.4439 19.1625 13.219 19.1788 13.0255 19.0908L9.82703 17.6353L6.86691 19.0833C6.6732 19.1781 6.44433 19.1663 6.26139 19.0521C6.07845 18.9379 5.96729 18.7375 5.96729 18.5219V12.1961ZM9.12433 13.5352C8.74741 13.497 8.35065 13.4309 7.96948 13.3425C7.71768 13.284 7.46244 13.2135 7.21729 13.1306V17.5204L9.54276 16.3829C9.71054 16.3008 9.90624 16.2981 10.0762 16.3754L12.6594 17.5508V13.1148C12.2398 13.2601 11.6783 13.4148 10.9783 13.5021C10.6398 13.5578 10.2923 13.5868 9.93801 13.5868C9.6623 13.5868 9.39074 13.5692 9.12433 13.5352Z" fill="%23727271"/><path d="M9.93748 9.81372C11.4347 9.81372 12.6484 8.58048 12.6484 7.0592C12.6484 5.53793 11.4347 4.30469 9.93748 4.30469C8.44028 4.30469 7.22656 5.53793 7.22656 7.0592C7.22656 8.58048 8.44028 9.81372 9.93748 9.81372Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboardHeader .tabs--content .notification--lists__icon.shortlist:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.8327 17.5L9.99935 13.3333L4.16602 17.5V4.16667C4.16602 3.72464 4.34161 3.30072 4.65417 2.98816C4.96673 2.67559 5.39065 2.5 5.83268 2.5H14.166C14.608 2.5 15.032 2.67559 15.3445 2.98816C15.6571 3.30072 15.8327 3.72464 15.8327 4.16667V17.5Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.dashboardHeader .tabs--content .notification--lists li {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.dashboardHeader .tabs--content .notification--lists li + li {margin-top: 16px;padding-top: 16px;border-top: 1px solid rgba(43, 42, 41, .1) }@media (max-width:767px) {.dashboardHeader .tabs--content .notification--lists li + li {margin-top: 10px;padding-top: 10px }}@media (max-width:767px) {.dashboardHeader .tabs--content .notification--lists li {-ms-flex-wrap: wrap;flex-wrap: wrap }}.dashboardHeader .tabs--content .notification--lists li .left {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start }.dashboardHeader .tabs--content .notification--lists li .left .button-rounded {margin-bottom: 12px }@media (max-width:767px) {.dashboardHeader .tabs--content .notification--lists li .left .button-rounded {margin-bottom: 8px }}.dashboardHeader .tabs--content .notification--lists li .title {font-size: 14px;line-height: 20px;margin-bottom: 12px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal }@media (max-width:767px) {.dashboardHeader .tabs--content .notification--lists li .title {font-size: 12px;line-height: 19px;margin-bottom: 5px }}.dashboardHeader .tabs--content .notification--lists li .time {font-size: 12px;line-height: 18px }@media (max-width:767px) {.dashboardHeader .tabs--content .notification--lists li .time {font-size: 10px }}.dashboardHeader .notification--footer {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;margin-top: 20px }.dashboardHeader .notification--footer a {font-size: 14px;line-height: 22px }@media (max-width:767px) {.dashboardHeader .notification--footer a {font-size: 12px;line-height: 19px }}.dashboardHeader .message-View {max-height: 400px;overflow-y: auto }.dashboardHeader .message-View .message-list {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;padding: 16px 0 }.dashboardHeader .message-View .message-list:not(:last-child) {border-bottom: 1px solid rgba(43, 42, 41, .1) }.dashboardHeader .message-View .message-list .user-icon {width: 32px;height: 32px;border-radius: 50%;object-fit: cover }.dashboardHeader .message-View .message-list .navbar--profile__name {width: 32px;height: 32px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: rgba(223, 37, 42, .15);font-size: 14px;line-height: 20px;color: #df252a }@media (max-width:767px) {.dashboardHeader .message-View .message-list .navbar--profile__name {width: 30px;height: 30px;font-size: 12px;line-height: 19px }}.dashboardHeader .message-View .message-list .right {padding-left: 16px }.dashboardHeader .message-View .message-list .right .user-detail {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboardHeader .message-View .message-list .right .user-detail .user-name {font-size: 14px }.dashboardHeader .message-View .message-list .right .user-detail .user-designation {font-size: 12px;padding-left: 8px }.dashboardHeader .message-View .message-list .right .message {font-size: 12px;line-height: 19px;margin-bottom: 12px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal }.dashboardHeader .message-View .message-list .right .time {font-size: 12px }.detect {background-color: #fbf32d;color: #1a1a19 !important;padding: 1px 2px }.searchListing {max-height: 350px;overflow-y: auto }.searchListing li {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;border: 1px solid rgba(43, 42, 41, .1);border-radius: 12px;padding: 20px }@media (max-width:1199px) {.searchListing li {-ms-flex-wrap: wrap;flex-wrap: wrap }}.searchListing li:not(:last-child) {margin-bottom: 12px }.searchListing li > .left {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start }.searchListing li > .left .profile {width: 40px;height: 40px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: rgba(223, 37, 42, .15) }@media (max-width:767px) {.searchListing li > .left .profile {width: 30px;height: 30px }}.searchListing li > .left .profile span {font-size: 14px;line-height: 22px;color: #df252a }@media (max-width:767px) {.searchListing li > .left .profile span {font-size: 12px;line-height: 19px }}.searchListing li > .left > .item {padding-left: 8px }.searchListing li > .left > .item .name {font-size: 14px;line-height: 20px }.searchListing li > .left > .item .name .id {font-size: 12px;line-height: 19px;color: #727271;margin-left: 8px }.searchListing li > .left > .item .contact-info {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;margin-top: 8px }.searchListing li > .left > .item .contact-info > a {color: #727271;font-size: 12px;line-height: 18px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.searchListing li > .left > .item .contact-info > a + a {margin-left: 8px;padding-left: 8px;border-left: 1px solid rgba(43, 42, 41, .1) }.searchListing li > .left > .item .contact-info > a img {width: 16px;height: 16px;margin-right: 4px }.searchListing li > .left > .item .chips {margin-top: 8px }.searchListing li > .right {padding-left: 40px }@media (max-width:1199px) {.searchListing li > .right {padding-left: 48px;padding-top: 20px;width: 100% }}.searchListing li > .right > .status {display: -ms-flexbox;display: flex;-ms-flex: 1;flex: 1 }.searchListing li > .right > .status > .item {max-width: 25%;width: 100% }.searchListing li > .right > .status > .item + .item {margin-left: 30px;padding-left: 12px;border-left: 1px solid rgba(43, 42, 41, .1) }.searchListing li > .right > .status > .item .item-title {font-size: 12px;line-height: 18px;margin-bottom: 4px;white-space: nowrap }.searchListing li > .right > .status > .item .top {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 14px;line-height: 20px;white-space: nowrap }.searchListing li > .right > .status > .item .top img {margin-left: 8px;width: 16px;height: 16px }.searchListing li > .right > .status > .item .black_arrow {margin-left: 25px }.searchListing li > .right > .status > .item .item-name {font-size: 14px;line-height: 20px;white-space: nowrap }.footer {background-color: rgba(228, 231, 233, .2);padding: 37px 0 28px }@media (max-width:767px) {.footer {padding: 20px 0 }}.footer--logo {width: 185px;display: block }@media (max-width:767px) {.footer--logo {width: 88px }}.footer--desc {max-width: 384px;font-size: 14px;line-height: 22px;margin: 24px 0 }@media (max-width:767px) {.footer--desc {font-size: 12px;line-height: 20px;margin: 16px 0 }}.footer--social-body {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:991px) {.footer--social-body {margin-bottom: 40px }}.footer--social-body a {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;border: 1px solid rgba(43, 42, 41, .1);border-radius: 50%;width: 44px;height: 44px;position: relative }@media (max-width:767px) {.footer--social-body a {width: 32px;height: 32px }}.footer--social-body a + a {margin-left: 12px }@media (max-width:767px) {.footer--social-body a + a {margin-left: 8px }}.footer--social-body a:before {position: absolute;content: '';background-size: contain;background-position: center;background-repeat: no-repeat;width: 20px;height: 20px }@media (max-width:767px) {.footer--social-body a:before {width: 16px;height: 16px }}.footer--social-body a:hover {background-color: #df252a }.footer--social-body a:hover.facebook::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.9997 1.66699H12.4997C11.3946 1.66699 10.3348 2.10598 9.5534 2.88738C8.77199 3.66878 8.33301 4.72859 8.33301 5.83366V8.33366H5.83301V11.667H8.33301V18.3337H11.6663V11.667H14.1663L14.9997 8.33366H11.6663V5.83366C11.6663 5.61265 11.7541 5.40068 11.9104 5.2444C12.0667 5.08812 12.2787 5.00033 12.4997 5.00033H14.9997V1.66699Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round"/></svg>') }.footer--social-body a:hover.youtube::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.7835 5.34967C18.6845 4.95418 18.4829 4.59182 18.199 4.29918C17.9152 4.00654 17.5591 3.794 17.1668 3.68301C15.7335 3.33301 10.0002 3.33301 10.0002 3.33301C10.0002 3.33301 4.26682 3.33301 2.83348 3.71634C2.44119 3.82733 2.08513 4.03987 1.80127 4.33251C1.51741 4.62515 1.31581 4.98752 1.21682 5.38301C0.954496 6.83764 0.826181 8.31327 0.833484 9.79134C0.824134 11.2805 0.952457 12.7674 1.21682 14.233C1.32595 14.6162 1.53207 14.9648 1.81527 15.2451C2.09847 15.5254 2.44917 15.7279 2.83348 15.833C4.26682 16.2163 10.0002 16.2163 10.0002 16.2163C10.0002 16.2163 15.7335 16.2163 17.1668 15.833C17.5591 15.722 17.9152 15.5095 18.199 15.2168C18.4829 14.9242 18.6845 14.5618 18.7835 14.1663C19.0438 12.7227 19.1721 11.2583 19.1668 9.79134C19.1762 8.30214 19.0478 6.81526 18.7835 5.34967V5.34967Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.125 12.5164L12.9167 9.79141L8.125 7.06641V12.5164Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.footer--social-body a:hover.instagram::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.167 1.66699H5.83366C3.53247 1.66699 1.66699 3.53247 1.66699 5.83366V14.167C1.66699 16.4682 3.53247 18.3337 5.83366 18.3337H14.167C16.4682 18.3337 18.3337 16.4682 18.3337 14.167V5.83366C18.3337 3.53247 16.4682 1.66699 14.167 1.66699Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.3337 9.47525C13.4366 10.1688 13.3181 10.8771 12.9952 11.4994C12.6723 12.1218 12.1614 12.6264 11.5351 12.9416C10.9088 13.2569 10.1991 13.3666 9.5069 13.2552C8.81468 13.1438 8.17521 12.817 7.67944 12.3212C7.18367 11.8255 6.85685 11.186 6.74546 10.4938C6.63408 9.80155 6.74379 9.09183 7.05901 8.46556C7.37423 7.8393 7.8789 7.32837 8.50123 7.00545C9.12356 6.68254 9.83187 6.56407 10.5254 6.66692C11.2328 6.77182 11.8878 7.10147 12.3935 7.60717C12.8992 8.11288 13.2288 8.76782 13.3337 9.47525Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.583 5.41699H14.593" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.footer--social-body a:hover.linked::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.333 6.66699C14.6591 6.66699 15.9309 7.19378 16.8685 8.13146C17.8062 9.06914 18.333 10.3409 18.333 11.667V17.5003H14.9997V11.667C14.9997 11.225 14.8241 10.801 14.5115 10.4885C14.199 10.1759 13.775 10.0003 13.333 10.0003C12.891 10.0003 12.4671 10.1759 12.1545 10.4885C11.8419 10.801 11.6663 11.225 11.6663 11.667V17.5003H8.33301V11.667C8.33301 10.3409 8.85979 9.06914 9.79747 8.13146C10.7352 7.19378 12.0069 6.66699 13.333 6.66699V6.66699Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round"/><path d="M5.00033 7.5H1.66699V17.5H5.00033V7.5Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round"/><path d="M3.33366 5.00033C4.25413 5.00033 5.00033 4.25413 5.00033 3.33366C5.00033 2.41318 4.25413 1.66699 3.33366 1.66699C2.41318 1.66699 1.66699 2.41318 1.66699 3.33366C1.66699 4.25413 2.41318 5.00033 3.33366 5.00033Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round"/></svg>') }.footer--social-body a:hover.twitter::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.25 3.39608C17.51 3.89382 16.6907 4.27452 15.8236 4.5235C15.3583 4.01322 14.7398 3.65155 14.0518 3.4874C13.3638 3.32325 12.6396 3.36454 11.9771 3.60569C11.3145 3.84684 10.7456 4.2762 10.3473 4.83572C9.94899 5.39524 9.74049 6.05792 9.75 6.73412V7.47099C8.39204 7.50457 7.04644 7.21737 5.83305 6.63497C4.61967 6.05257 3.57615 5.19305 2.79545 4.13296C2.79545 4.13296 -0.295454 10.7648 6.65909 13.7123C5.06768 14.7424 3.17189 15.259 1.25 15.1861C8.20455 18.8704 16.7045 15.1861 16.7045 6.71201C16.7038 6.50676 16.6831 6.30201 16.6427 6.10041C17.4314 5.35874 17.9879 4.42233 18.25 3.39608Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round"/></svg>') }.footer--social-body a:hover.copy::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6667 7.5H9.16667C8.24619 7.5 7.5 8.24619 7.5 9.16667V16.6667C7.5 17.5871 8.24619 18.3333 9.16667 18.3333H16.6667C17.5871 18.3333 18.3333 17.5871 18.3333 16.6667V9.16667C18.3333 8.24619 17.5871 7.5 16.6667 7.5Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square"/><path d="M4.16797 12.5H3.33464C2.89261 12.5 2.46868 12.3244 2.15612 12.0118C1.84356 11.6992 1.66797 11.2753 1.66797 10.8333V3.33329C1.66797 2.89127 1.84356 2.46734 2.15612 2.15478C2.46868 1.84222 2.89261 1.66663 3.33464 1.66663H10.8346C11.2767 1.66663 11.7006 1.84222 12.0131 2.15478C12.3257 2.46734 12.5013 2.89127 12.5013 3.33329V4.16663" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square"/></svg>') }.footer--social-body a.facebook::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.9997 1.66699H12.4997C11.3946 1.66699 10.3348 2.10598 9.5534 2.88738C8.77199 3.66878 8.33301 4.72859 8.33301 5.83366V8.33366H5.83301V11.667H8.33301V18.3337H11.6663V11.667H14.1663L14.9997 8.33366H11.6663V5.83366C11.6663 5.61265 11.7541 5.40068 11.9104 5.2444C12.0667 5.08812 12.2787 5.00033 12.4997 5.00033H14.9997V1.66699Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round"/></svg>') }.footer--social-body a.youtube::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.7835 5.34967C18.6845 4.95418 18.4829 4.59182 18.199 4.29918C17.9152 4.00654 17.5591 3.794 17.1668 3.68301C15.7335 3.33301 10.0002 3.33301 10.0002 3.33301C10.0002 3.33301 4.26682 3.33301 2.83348 3.71634C2.44119 3.82733 2.08513 4.03987 1.80127 4.33251C1.51741 4.62515 1.31581 4.98752 1.21682 5.38301C0.954496 6.83764 0.826181 8.31327 0.833484 9.79134C0.824134 11.2805 0.952457 12.7674 1.21682 14.233C1.32595 14.6162 1.53207 14.9648 1.81527 15.2451C2.09847 15.5254 2.44917 15.7279 2.83348 15.833C4.26682 16.2163 10.0002 16.2163 10.0002 16.2163C10.0002 16.2163 15.7335 16.2163 17.1668 15.833C17.5591 15.722 17.9152 15.5095 18.199 15.2168C18.4829 14.9242 18.6845 14.5618 18.7835 14.1663C19.0438 12.7227 19.1721 11.2583 19.1668 9.79134C19.1762 8.30214 19.0478 6.81526 18.7835 5.34967V5.34967Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.125 12.5164L12.9167 9.79141L8.125 7.06641V12.5164Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.footer--social-body a.instagram::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.167 1.66699H5.83366C3.53247 1.66699 1.66699 3.53247 1.66699 5.83366V14.167C1.66699 16.4682 3.53247 18.3337 5.83366 18.3337H14.167C16.4682 18.3337 18.3337 16.4682 18.3337 14.167V5.83366C18.3337 3.53247 16.4682 1.66699 14.167 1.66699Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.3337 9.47525C13.4366 10.1688 13.3181 10.8771 12.9952 11.4994C12.6723 12.1218 12.1614 12.6264 11.5351 12.9416C10.9088 13.2569 10.1991 13.3666 9.5069 13.2552C8.81468 13.1438 8.17521 12.817 7.67944 12.3212C7.18367 11.8255 6.85685 11.186 6.74546 10.4938C6.63408 9.80155 6.74379 9.09183 7.05901 8.46556C7.37423 7.8393 7.8789 7.32837 8.50123 7.00545C9.12356 6.68254 9.83187 6.56407 10.5254 6.66692C11.2328 6.77182 11.8878 7.10147 12.3935 7.60717C12.8992 8.11288 13.2288 8.76782 13.3337 9.47525Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.583 5.41699H14.593" stroke="%23727271" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.footer--social-body a.linked::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.333 6.66699C14.6591 6.66699 15.9309 7.19378 16.8685 8.13146C17.8062 9.06914 18.333 10.3409 18.333 11.667V17.5003H14.9997V11.667C14.9997 11.225 14.8241 10.801 14.5115 10.4885C14.199 10.1759 13.775 10.0003 13.333 10.0003C12.891 10.0003 12.4671 10.1759 12.1545 10.4885C11.8419 10.801 11.6663 11.225 11.6663 11.667V17.5003H8.33301V11.667C8.33301 10.3409 8.85979 9.06914 9.79747 8.13146C10.7352 7.19378 12.0069 6.66699 13.333 6.66699V6.66699Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round"/><path d="M5.00033 7.5H1.66699V17.5H5.00033V7.5Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round"/><path d="M3.33366 5.00033C4.25413 5.00033 5.00033 4.25413 5.00033 3.33366C5.00033 2.41318 4.25413 1.66699 3.33366 1.66699C2.41318 1.66699 1.66699 2.41318 1.66699 3.33366C1.66699 4.25413 2.41318 5.00033 3.33366 5.00033Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round"/></svg>') }.footer--social-body a.twitter::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.25 3.39608C17.51 3.89382 16.6907 4.27452 15.8236 4.5235C15.3583 4.01322 14.7398 3.65155 14.0518 3.4874C13.3638 3.32325 12.6396 3.36454 11.9771 3.60569C11.3145 3.84684 10.7456 4.2762 10.3473 4.83572C9.94899 5.39524 9.74049 6.05792 9.75 6.73412V7.47099C8.39204 7.50457 7.04644 7.21737 5.83305 6.63497C4.61967 6.05257 3.57615 5.19305 2.79545 4.13296C2.79545 4.13296 -0.295454 10.7648 6.65909 13.7123C5.06768 14.7424 3.17189 15.259 1.25 15.1861C8.20455 18.8704 16.7045 15.1861 16.7045 6.71201C16.7038 6.50676 16.6831 6.30201 16.6427 6.10041C17.4314 5.35874 17.9879 4.42233 18.25 3.39608Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round"/></svg>') }.footer--social-body a.copy::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6667 7.5H9.16667C8.24619 7.5 7.5 8.24619 7.5 9.16667V16.6667C7.5 17.5871 8.24619 18.3333 9.16667 18.3333H16.6667C17.5871 18.3333 18.3333 17.5871 18.3333 16.6667V9.16667C18.3333 8.24619 17.5871 7.5 16.6667 7.5Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="square"/><path d="M4.16797 12.5H3.33464C2.89261 12.5 2.46868 12.3244 2.15612 12.0118C1.84356 11.6992 1.66797 11.2753 1.66797 10.8333V3.33329C1.66797 2.89127 1.84356 2.46734 2.15612 2.15478C2.46868 1.84222 2.89261 1.66663 3.33464 1.66663H10.8346C11.2767 1.66663 11.7006 1.84222 12.0131 2.15478C12.3257 2.46734 12.5013 2.89127 12.5013 3.33329V4.16663" stroke="%23727271" stroke-width="1.25" stroke-linecap="square"/></svg>') }@media (max-width:767px) {.footer--menu-body {margin-bottom: 28px }}.footer--menu-body + .footer--menu-body {margin-top: 40px }@media (max-width:767px) {.footer--menu-body + .footer--menu-body {margin-top: 28px }}.footer--menu-body__title {font-size: 20px;line-height: 30px;margin-bottom: 24px }@media (max-width:767px) {.footer--menu-body__title {font-size: 16px;line-height: 22px;margin-bottom: 12px }}.footer--menu-body ul li + li {margin-top: 8px }.footer--menu-body ul li a {display: inline-block;text-decoration: none;font-size: 14px;line-height: 21px }@media (max-width:767px) {.footer--menu-body ul li a {font-size: 12px;line-height: 19px }}.footer--menu-body ul li a:hover {color: #df252a }.footer--bottom {-ms-flex-align: start;align-items: flex-start;-ms-flex-pack: justify;justify-content: space-between;margin-top: 40px }@media (max-width:767px) {.footer--bottom {margin-top: 12px }}.footer--bottom__left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-wrap: wrap;flex-wrap: wrap;border-top: 1px solid rgba(43, 42, 41, .1) }@media (max-width:991px) {.footer--bottom__left {border-top: none }}.footer--bottom__left--one {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 14px;line-height: 21px;padding-top: 28px }@media (max-width:991px) {.footer--bottom__left--one {border-top: 1px solid rgba(43, 42, 41, .1) }}@media (max-width:767px) {.footer--bottom__left--one {border-bottom: 1px solid rgba(43, 42, 41, .1);padding-bottom: 16px !important;padding-top: 16px;font-size: 12px;line-height: 19px;width: 100% }}@media (max-width:991px) {.footer--bottom__left--one {padding-bottom: 28px }}.footer--bottom__left--one a {text-decoration: none }.footer--bottom__left--one a:hover {color: #df252a }.footer--bottom__left--one span {margin: 0 16px }@media (max-width:767px) {.footer--bottom__left--one span {margin: 0 8px }}.footer--bottom__left--two {padding-top: 28px }@media (max-width:991px) {.footer--bottom__left--two {padding-bottom: 28px;border-top: 1px solid rgba(43, 42, 41, .1);-ms-flex: 1;flex: 1 }}@media (max-width:767px) {.footer--bottom__left--two {border-top: none;padding: 16px 0;width: 100% }}.footer--bottom__left--two .country-picker .dropdown-toggle {font-size: 14px;color: #2b2a29;background-color: transparent;border-color: transparent;padding: 0;margin: 0 }@media (max-width:991px) {.footer--bottom__left--two .country-picker .dropdown-toggle {font-size: 12px;line-height: 18px }}.footer--bottom__left--two .country-picker .dropdown-toggle:active, .footer--bottom__left--two .country-picker .dropdown-toggle:focus {box-shadow: none;outline: 0 !important }.footer--bottom__left--two .country-picker .dropdown-toggle[aria-expanded=true]:after {transform: rotate(0) }.footer--bottom__left--two .country-picker .dropdown-toggle:after {border: none;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%232B2A29"/></svg>');width: 24px;height: 24px;transform: rotate(180deg);background-size: cover;background-position: center;transition: all .3s ease-in }@media (max-width:991px) {.footer--bottom__left--two .country-picker .dropdown-toggle:after {width: 20px;height: 20px }}.footer--bottom__left--two .country-picker .dropdown-toggle .filter-option p {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.footer--bottom__left--two .country-picker .dropdown-toggle .filter-option p img {width: 24px;height: 24px;margin-right: 8px }.footer--bottom__left--two .country-picker .dropdown-menu {font-size: 14px }@media (max-width:991px) {.footer--bottom__left--two .country-picker .dropdown-menu {font-size: 12px;line-height: 18px }}.footer--bottom__left--two .country-picker .dropdown-menu .dropdown-item {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.footer--bottom__left--two .country-picker .dropdown-menu .dropdown-item:hover {background-color: transparent;color: #df252a }.footer--bottom__left--two .country-picker .dropdown-menu .dropdown-item p {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.footer--bottom__left--two .country-picker .dropdown-menu .dropdown-item p img {width: 18px;height: 18px;margin-right: 8px }@media (max-width:767px) {.footer--bottom__left--two .country-picker .dropdown-menu .dropdown-item p img {width: 20px;height: 20px }}.footer--bottom__left--two .country-picker .dropdown-menu .dropdown-item.active, .footer--bottom__left--two .country-picker .dropdown-menu .dropdown-item:active {background-color: transparent;color: #df252a }.footer--bottom__right {border-top: 1px solid rgba(43, 42, 41, .1) }@media (max-width:991px) {.footer--bottom__right {border-top: none }}.footer--bottom__right .possible {text-decoration: none;font-size: 14px;line-height: 21px;display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center;padding-top: 28px }@media (max-width:991px) {.footer--bottom__right .possible {border-top: 1px solid rgba(43, 42, 41, .1);-ms-flex-align: start;align-items: flex-start }}@media (max-width:767px) {.footer--bottom__right .possible {font-size: 12px;line-height: 19px;padding-top: 16px;border-top: none }}.footer--bottom__right .possible:hover {color: #2b2a29 }.footer--bottom__right .possible img {width: 152px;margin-top: 12px }@media (max-width:767px) {.footer--bottom__right .possible img {width: 130px;margin-top: 6px }}.footer--bottom .copy {font-size: 14px;line-height: 21px }@media (max-width:991px) {.footer--bottom .copy {margin-top: 40px }}@media (max-width:767px) {.footer--bottom .copy {font-size: 12px;line-height: 19px }}.dashboard--sidebar {background-color: #2b2a29;position: fixed;left: 0;top: 71px;height: 100%;max-width: 105px;z-index: 9999;overflow-y: auto;max-height: calc(100vh - 87px);}@media (max-width:1024px) {.dashboard--sidebar {top: inherit;bottom: 0;right: 0;width: 100%;max-width: 100%;display: -ms-flexbox;display: flex;-ms-flex-pack: justify;justify-content: space-between;height: inherit;padding: 0;overflow-x: auto;}}.dashboard--sidebar .icon--dashboard:before {background-image: url('data:image/svg+xml;utf-8,<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g><mask id="mask0_880_30870" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="25" height="24"><rect x="0.5" width="24" height="24" rx="1" fill="%23C4C4C4"/></mask><g mask="url(%23mask0_880_30870)"><path d="M10.5399 12.9601H3.8999C3.34762 12.9601 2.8999 13.4078 2.8999 13.9601V20.6001C2.8999 21.1524 3.34762 21.6001 3.8999 21.6001H10.5399C11.0922 21.6001 11.5399 21.1524 11.5399 20.6001V13.9601C11.5399 13.4078 11.0922 12.9601 10.5399 12.9601Z" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M21.0999 15.8401H15.4199C14.8676 15.8401 14.4199 16.2878 14.4199 16.8401V20.6001C14.4199 21.1524 14.8676 21.6001 15.4199 21.6001H21.0999C21.6522 21.6001 22.0999 21.1524 22.0999 20.6001V16.8401C22.0999 16.2878 21.6522 15.8401 21.0999 15.8401Z" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.5399 2.40002H3.8999C3.34762 2.40002 2.8999 2.84774 2.8999 3.40002V9.08002C2.8999 9.63231 3.34762 10.08 3.8999 10.08H10.5399C11.0922 10.08 11.5399 9.63231 11.5399 9.08003V3.40002C11.5399 2.84774 11.0922 2.40002 10.5399 2.40002Z" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M21.0999 2.40002H15.4199C14.8676 2.40002 14.4199 2.84774 14.4199 3.40002V11.96C14.4199 12.5123 14.8676 12.96 15.4199 12.96H21.0999C21.6522 12.96 22.0999 12.5123 22.0999 11.96V3.40002C22.0999 2.84774 21.6522 2.40002 21.0999 2.40002Z" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></g></g></svg>') }.dashboard--sidebar .icon--program:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 3.33333H7C7.79565 3.33333 8.55871 3.66501 9.12132 4.2554C9.68393 4.84579 10 5.64654 10 6.48148V17.5C10 16.8738 9.76295 16.2732 9.34099 15.8304C8.91903 15.3876 8.34674 15.1389 7.75 15.1389H2.5V3.33333Z" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.25" stroke-linecap="square"/><path d="M17.5 3.33331H13C12.2044 3.33331 11.4413 3.66499 10.8787 4.25538C10.3161 4.84578 10 5.64652 10 6.48146V17.5C10 16.8738 10.2371 16.2732 10.659 15.8304C11.081 15.3876 11.6533 15.1389 12.25 15.1389H17.5V3.33331Z" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.25" stroke-linecap="square"/></svg>') }.dashboard--sidebar .icon--live:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAA+klEQVRIS2NkoDFgpLH5DKMWEAxheBD9//9fAag6CoiVCOpCVXAPyF3NyMh4G5s+ZAuygQoMSTQcpvwy0IKJhCyYA1IAVJhCiiVAn6PoA/KZgPqjgeYsBpsHMwxdIbIlxMoB1bED9WUCsQ7MoVSzAGhoORAXArEEckhQ04KPQIP5YT4n6ANYsOCKD5gBuNRR04JZQEeAIhYFELSA1EgGqv8JxKBIBgNaWFADNDcPiMVoYgHIxcD44AEang7EmiT5AFdEg8RJyWi5QPX6+AzDI3cF6OIJ2OSR84EqUEE4ECuQaMkDoPq1QAuu47WAREOJVj5aoxEMKpoHEQDfaZoZNv/QsAAAAABJRU5ErkJggg==') }.dashboard--sidebar .icon--listening:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABeklEQVRIS92Vv0vDQBiGe4PgLIiTDi6OouAgiKB/gYsOgmNBBAeh2M3JQZ0KIogguCj+DUWhSysUhxZcBCmIgpujuEh8vnCpV3u5S0gzaOCl+fG+33N33yVVhZwPlXP9ghcQBMEIg1hC42gMDaFn9IjulVLvrkHGAigshZZ18YmYIq/crwK5iYO4ANuE5nWwyW8DvaEvNIlmjOe3QM5tECuA0S9i3kSf6JSwAPoOfDKAIhpGFZuvD0BoFPOhDh0TunOtsYbIbKUXu/g/TL8NsIJhDTUxV1zFo2dAypxPowsyVR8gWvsTzPWEgAV8W6hG5swHOMAgu6aM+SUhQJq+j57I7PkAV2LAuJ6kuLFM1pytB/kAaJRMc1U3K5wB95ww83l0LsuELsnLm/7zqcCww/VcNOUMACnRIn/0GxCOdkCAbg+7PTCmGDIyzuCfAkqszOyAetBmieV71rOLprjeQLJds/SgQ/wawEMPIM1bm8br/ctMU8zm/fuAbxsJ4Bn+vVrPAAAAAElFTkSuQmCC') }.dashboard--sidebar .icon--reading:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABhklEQVRIS+2Vz0eEQRjHd3SPRJclRerSpUSXiOgeiVhdO1bX6C/YUzp2TV0S3WNtdInUZbVK6QddIkvsKXn7fDOT17zvvjv0vodo+Bjv+7zz/T4z7zwzplRwMwXrl4IMoijqIZFlmLMJ1ekPjDGf3RIMNaggtOSJHWKwn5fBNkJDntgjBht5GewgNOiJPWGwnpfBCkKLntgRBnt5Gfz+J7NTNslmCt7gFZ7hAe7IVH2iMWaYlyOgXks4AP3QZMyWBvzsIj4+zpiuTE+gZr/Rdp23YqnDMFjoZLBKoNdmNUo/bZ/ThNq8vIBruId32P0W7mTgAk7NFtk4zzM2a4U0mzNo+MXmViLYIJ62PzhtSrGlrmDSTvwDfwb/Bn93ibLqQP+1BS/QhEu41Xb0dxHPqpNJ0DYuQ5/bFGkGawRnQeeO31RAVzau2ClMgArSb7qEzjGoKpC4cGxh6TxRRspMjKUI6dUNNCyacQvhj/i3oTeaDjF3/mh8HWqISTSzBRl0E8mKF27wBXE5xBk4gwT6AAAAAElFTkSuQmCC') }.dashboard--sidebar .icon--writing:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABVElEQVRIS7WVTU4CQRCFaTck3gDBlfEC/B1D7sANZOcB3HAID2BICCwIV2CPCjO6Zm1ijK7G90xBmqZnpquBSSoDNT3fq65XnTGVM1/mzPxKtECWZRcorom4RCyMMb++YqMEAK8B1kN0BbrCfQyR1BVRCwBeBWSAuEVsEN+IG/n9CBH+310qAQ98CNKPJfgMgXmUgAMng9W7AiMIzNQCJW35stqlb1FAW3a7QfWfKpMBb8i0tHB/Q0wASZwpYn6K/Fo1pg78VeAp8lci2rFFfXDmvFMEyDWe3SFY+YtUSHhd8oRTlJUneXCvgMB5iHhKCWdb3gXOfFvgzB8crFIPAHqwpmJI43xG+wwN8gCwJ1l4fyw8r0X/AoD3j6l8u5sDk60d2DteihcfRYZqW7RdHw3PHVNtlaoxPSW80ORYIQ6H/W6oycF6pQLBpMCFqi9aIHNv2R/QApsZ2kEgogAAAABJRU5ErkJggg==') }.dashboard--sidebar .icon--speaking:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAB/0lEQVRIS+2VTUSEURSG52sTGRKZFBGJpEQSrROJFiUl7VolKbWJNPpXbYaKRLSNpIw20TYiMWIWjQyRfiTajGjT9Jxx77jzNXNnhpldw+vcc8577nu++zeOp8g/p8jzewomEI/HvY7jxNwNF0SAybuZWLCEyJcpklaAggpIw6BJke+xxxR/pFtS+NPEW8E1nAOrgJp8GZLXNdk3vt8UgVuH/4itJLcKSkGAWFjX/vkCyOMkO4CQThVxUH3NDcX7ElPLIl+5QSyK38+4D1zgH9sE1kjWmJ1Q3Iw/C54p9iuBXqwIh4jtwmljPKn9fAVaKJgBL0y2oASqpHstikA143XwBmfeJjBBsj3DEiW6VQI+7KYWlWPKeAfE4EzZBMwN0zyxsskrFL8qgS7sKLgjto2AnCI5TWH8QEYBVSwiQ6BRER+wJ3pyxZF8D9giHkFANlg2+hL/yCpgtm0by+bLkcSWw5P1LwO7xEK2JWogKSekHui7IE9AFMgRjLhFEdD7dkt+z8yn3APjbJdk6PyHeJBJzs08dSP4cnfkIqa8R0kBSNL5nCoMYq8gf6r1lqejEwwAEU+su0vER+zd3ZgpoN+TM3eHusjYyMTJyWWvTAF9gxcpfkpXjEAtcXmnkhcum4gpcChkJh+zFSGSEy/jKcrWUb75gvzh2ET/BbJuyS+fodgZPxfdSgAAAABJRU5ErkJggg==') }.dashboard--sidebar .icon--rate:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACP0lEQVRIS7WVwWtTQRDG+xTsQa20CKIgBHspCP4FxXoRhYIoQmioIPTSEhEEIdSSS4sQiBR6aTEIioiKRQjYSw814MVC8SQIguhFPAgBMQheGl5/X5hXXkz2uSHJwsf0bb+Zb3Z2ZhMM9HkFfY4/0JFAGIY5EjoECkEQ1H2S8xYg+AUCzlvQFQQ2ey2wQMDzFnQHu4TI7v9EvE5A9mcItAb+WMAj2BwCH3slcI9AE2AdqPYZ8AGBfNcCZH+KII8s0E0TeGqXnUXkW5LIfokIlII4DobAMTBs0N/ae0ewgoLBvYO5DGpWtir2l/0t+z4Sjgsoy9OObH6yn8fpuwnoVIsJ/CrcG+LGBa7wnTWBT1iVQRn+hqysWhYnOcymLvwEUPnOAt1RCZ83TQKW2XXsNBgELwSIoeNUjW1ERjBTQAmqVK/w2Yh8WtoUh6smchT7Ejx39Tvckxb8EvaH+HC34gm1nQMcddlqzYPAObXwovZVCe8TXKVtWs5Bw3kW5jVQxrHUrkxwHrPfuHA42+04SQLR0/AA57cOATWFaq8yPutU4DUO6pCMusiei1sWZFV9bqXUNH/mW7PRslx3kIL5EKj/ZyRi0J1oqRXVAGWg50P7aUTU1k3LJTAJ6zb4Ag6AUfNq9DZLZdH6CjTpx0ERgYqvwF2IF2NknWQ5ej0pzTm+xdGARavC/4u+ApriyFlZP8H5b9wZEf2yaXo1NypRDU7aV0CZ6BnQyCe++QiN2WnqcOe8BP4ldfPt9YvWjcAe3gXFGQ3Se94AAAAASUVORK5CYII=') }.dashboard--sidebar .icon--leave:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAsUlEQVRIS2NkoDFgpLH5DHgt+P//fzDQAUlAzIzDIX+B4rMZGRk34HIoigVAA1WBCrOBWINMn92AWngVph/dgnqghCWZhsO0nQL6qA6XBTtAEkAFHiAa6CMwnxBAVw/jg81C1gwzkG4WEHI5ujy6Awn6YNSC0SDCSAOjqYhgthgNIqoEUQPQFAuCJuFXcAZYGtfgqg+0gRIZQAyq2cgBt4Ga5gEtOI/VAnJMJKSH5q0KAP9onBnmx34qAAAAAElFTkSuQmCC') }.dashboard--sidebar .icon--offers:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.75391 7.05927C4.75391 4.13513 7.08427 1.78174 9.93801 1.78174C12.7917 1.78174 15.1221 4.13513 15.1221 7.05927C15.1221 9.69479 13.2291 11.8667 10.766 12.2697C10.4786 12.3029 10.1631 12.3228 9.81739 12.3228C9.6527 12.3228 9.46973 12.313 9.27636 12.2941C6.73269 11.9637 4.75391 9.75382 4.75391 7.05927ZM5.96729 12.1961C4.46595 10.9995 3.50391 9.14056 3.50391 7.05927C3.50391 3.46365 6.37519 0.531738 9.93801 0.531738C13.5008 0.531738 16.3721 3.46365 16.3721 7.05927C16.3721 9.14027 15.4103 10.9989 13.9094 12.1956V18.5219C13.9094 18.7344 13.8014 18.9324 13.6226 19.0474C13.4439 19.1625 13.219 19.1788 13.0255 19.0908L9.82703 17.6353L6.86691 19.0833C6.6732 19.1781 6.44433 19.1663 6.26139 19.0521C6.07845 18.9379 5.96729 18.7375 5.96729 18.5219V12.1961ZM9.12433 13.5352C8.74741 13.497 8.35065 13.4309 7.96948 13.3425C7.71768 13.284 7.46244 13.2135 7.21729 13.1306V17.5204L9.54276 16.3829C9.71054 16.3008 9.90624 16.2981 10.0762 16.3754L12.6594 17.5508V13.1148C12.2398 13.2601 11.6783 13.4148 10.9783 13.5021C10.6398 13.5578 10.2923 13.5868 9.93801 13.5868C9.6623 13.5868 9.39074 13.5692 9.12433 13.5352Z" fill="rgba(255, 255, 255, 0.6)"/><path d="M9.93748 9.81372C11.4347 9.81372 12.6484 8.58048 12.6484 7.0592C12.6484 5.53793 11.4347 4.30469 9.93748 4.30469C8.44028 4.30469 7.22656 5.53793 7.22656 7.0592C7.22656 8.58048 8.44028 9.81372 9.93748 9.81372Z" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboard--sidebar .icon--drafts:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g><path d="M10.175 19.15H5C4.44772 19.15 4 18.7023 4 18.15V4C4 3.44772 4.44772 3 5 3H10.5405C10.7826 3 11.0164 3.0878 11.1987 3.2471L16.0081 7.45116C16.2254 7.64106 16.35 7.91553 16.35 8.20407V13.45" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5"/><path d="M20.2461 13.6231L13.7178 20.1514L10 21.6978L11.5461 17.9796L18.0744 11.4514C18.6762 10.8495 19.6443 10.8495 20.2461 11.4514C20.8349 12.0401 20.8349 13.0213 20.2461 13.6231Z" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.6504 3V7.75H15.4004" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></g></svg>') }.dashboard--sidebar .icon--visa:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.2716 14.3079C14.8207 14.3079 16.887 12.2415 16.887 9.69248C16.887 7.14347 14.8207 5.07709 12.2716 5.07709C9.72263 5.07709 7.65625 7.14347 7.65625 9.69248C7.65625 12.2415 9.72263 14.3079 12.2716 14.3079Z" stroke="rgba(255, 255, 255, 0.6)" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.65625 9.69202H16.887" stroke="rgba(255, 255, 255, 0.6)" stroke-linecap="round" stroke-linejoin="round"/><path d="Mnan nanL12.268 5.07709C13.4225 6.34094 14.0785 7.98111 14.1142 9.69248C14.0862 11.0368 13.6754 12.3371 12.9409 13.4456C12.6162 13.9358 11.9199 13.9358 11.5951 13.4456C10.8607 12.3371 10.4499 11.0368 10.4219 9.69248C10.4575 7.98111 11.1136 6.34094 12.268 5.07709Lnan nanLnan nanZ" stroke="rgba(255, 255, 255, 0.6)" stroke-linecap="round" stroke-linejoin="round"/><rect x="3.80469" y="2" width="16.9231" height="20" rx="1" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5"/><path d="M7.64844 18.1542H16.8792" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5"/></svg>') }.dashboard--sidebar .icon--application:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g><path fill-rule="evenodd" clip-rule="evenodd" d="M4.92969 4.06459C4.92969 3.78054 5.15179 3.573 5.39741 3.573H16.7275C16.9709 3.573 17.1952 3.77832 17.1952 4.06459V6.06195V6.81195H18.6952V6.06195V4.06459C18.6952 2.96892 17.8183 2.073 16.7275 2.073H5.39741C4.28765 2.073 3.42969 2.98829 3.42969 4.06459V19.9354C3.42969 21.0311 4.30664 21.927 5.39741 21.927H16.7275C17.8373 21.927 18.6952 21.0117 18.6952 19.9354V15.212V15.0771L21.7618 12.0105C22.5671 11.2052 22.5671 9.90611 21.7618 9.10084C20.9565 8.29557 19.6574 8.29557 18.8521 9.10084L16.5464 11.4065L13.2939 14.659C13.1896 14.7634 13.1183 14.8962 13.0891 15.0409L12.6213 17.3578C12.5716 17.604 12.6484 17.8589 12.8261 18.0365C13.0038 18.2142 13.2586 18.2911 13.5049 18.2414L15.8217 17.7735C15.9664 17.7443 16.0993 17.6731 16.2036 17.5687L17.1952 16.5771V19.9354C17.1952 20.2195 16.9731 20.427 16.7275 20.427H5.39741C5.15397 20.427 4.92969 20.2217 4.92969 19.9354V4.06459ZM19.9128 10.1615C20.1323 9.94202 20.4817 9.94202 20.7011 10.1615C20.9206 10.381 20.9206 10.7304 20.7011 10.9499L15.303 16.348L14.3152 16.5475L14.5146 15.5597L17.6071 12.4672L19.9128 10.1615Z" fill="rgba(255, 255, 255, 0.6)"/><path d="M7.85107 6.49377H14.8949" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M7.85107 11.0823H13.8886" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M7.85107 15.6709H10.8699" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/></g></svg>') }.dashboard--sidebar .icon--shortlist:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g><path d="M5.53604 6.83337H3.91699C3.36471 6.83337 2.91699 7.28109 2.91699 7.83337V20C2.91699 20.5523 3.36471 21 3.91699 21H20.2503C20.8026 21 21.2503 20.5523 21.2503 20V7.83337C21.2503 7.28109 20.8026 6.83337 20.2503 6.83337H19.0678" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5"/><path d="M16.8062 15.5L11.9451 12.0278L7.08398 15.5V4.38889C7.08398 4.02053 7.23031 3.66726 7.49078 3.4068C7.75125 3.14633 8.10452 3 8.47287 3H15.4173C15.7857 3 16.1389 3.14633 16.3994 3.4068C16.6599 3.66726 16.8062 4.02053 16.8062 4.38889V15.5Z" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="round"/></g></svg>') }.dashboard--sidebar .icon--session:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5" stroke-linecap="square"/></svg>') }.dashboard--sidebar .icon--document:before {background-image: url('data:image/svg+xml;utf-8,<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g><path d="M6.4 6.7998H5.5C4.94771 6.7998 4.5 7.24752 4.5 7.7998V20.9998C4.5 21.5521 4.94772 21.9998 5.5 21.9998H15.9" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5"/><path d="M8.2998 18.1498V3.99976C8.2998 3.44747 8.74752 2.99976 9.2998 2.99976H14.8404C15.0824 2.99976 15.3162 3.08755 15.4985 3.24685L20.3079 7.45092C20.5252 7.64081 20.6498 7.91529 20.6498 8.20382V18.1498C20.6498 18.702 20.2021 19.1498 19.6498 19.1498H9.2998C8.74752 19.1498 8.2998 18.702 8.2998 18.1498Z" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.5"/><path d="M14.9502 2.99976V7.74976H19.7002" stroke="rgba(255, 255, 255, 0.6)" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></g></svg>') }.dashboard--sidebar::-webkit-scrollbar {display: none }.dashboard--link {padding: 45px 15px 16px;display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;text-align: center;font-size: 12px;line-height: 16px;color: rgba(255, 255, 255, .6);position: relative }@media (max-width:991px) {.dashboard--link {font-size: 10px;line-height: 15px;padding: 32px 9px 9px;white-space: nowrap }}.dashboard--link:before {content: '';position: absolute;width: 20px;height: 20px;top: 16px;background-size: cover;background-position: center;background-repeat: no-repeat }@media (max-width:991px) {.dashboard--link:before {top: 9px }}.dashboard--link.active, .dashboard--link:hover {color: #fff;background-color: rgba(255, 255, 255, .1) }.dashboard--link.active.icon--dashboard:before, .dashboard--link:hover.icon--dashboard:before {background-image: url('data:image/svg+xml;utf-8,<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g><mask id="mask0_880_30870" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="25" height="24"><rect x="0.5" width="24" height="24" rx="1" fill="%23C4C4C4"/></mask><g mask="url(%23mask0_880_30870)"><path d="M10.5399 12.9601H3.8999C3.34762 12.9601 2.8999 13.4078 2.8999 13.9601V20.6001C2.8999 21.1524 3.34762 21.6001 3.8999 21.6001H10.5399C11.0922 21.6001 11.5399 21.1524 11.5399 20.6001V13.9601C11.5399 13.4078 11.0922 12.9601 10.5399 12.9601Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M21.0999 15.8401H15.4199C14.8676 15.8401 14.4199 16.2878 14.4199 16.8401V20.6001C14.4199 21.1524 14.8676 21.6001 15.4199 21.6001H21.0999C21.6522 21.6001 22.0999 21.1524 22.0999 20.6001V16.8401C22.0999 16.2878 21.6522 15.8401 21.0999 15.8401Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.5399 2.40002H3.8999C3.34762 2.40002 2.8999 2.84774 2.8999 3.40002V9.08002C2.8999 9.63231 3.34762 10.08 3.8999 10.08H10.5399C11.0922 10.08 11.5399 9.63231 11.5399 9.08003V3.40002C11.5399 2.84774 11.0922 2.40002 10.5399 2.40002Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M21.0999 2.40002H15.4199C14.8676 2.40002 14.4199 2.84774 14.4199 3.40002V11.96C14.4199 12.5123 14.8676 12.96 15.4199 12.96H21.0999C21.6522 12.96 22.0999 12.5123 22.0999 11.96V3.40002C22.0999 2.84774 21.6522 2.40002 21.0999 2.40002Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></g></g></svg>') }.dashboard--link.active.icon--program:before, .dashboard--link:hover.icon--program:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 3.33333H7C7.79565 3.33333 8.55871 3.66501 9.12132 4.2554C9.68393 4.84579 10 5.64654 10 6.48148V17.5C10 16.8738 9.76295 16.2732 9.34099 15.8304C8.91903 15.3876 8.34674 15.1389 7.75 15.1389H2.5V3.33333Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square"/><path d="M17.5 3.33331H13C12.2044 3.33331 11.4413 3.66499 10.8787 4.25538C10.3161 4.84578 10 5.64652 10 6.48146V17.5C10 16.8738 10.2371 16.2732 10.659 15.8304C11.081 15.3876 11.6533 15.1389 12.25 15.1389H17.5V3.33331Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square"/></svg>') }.dashboard--link.active.icon--live:before, .dashboard--link:hover.icon--live:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABMUlEQVRIS2NkoDFgpLH5DKMWEAxheBCd3L/fhIGFZTLD//8WBHUhK2BkPPH/z59SC0fHI9j0ISw4dGg9UEEASYZDFf9nYNhmYWfnTcgCoDoGBnM7O5Ii/uShQyj69u/fz8LFzDwZaE4myDxkH+C0AN0QZJciywEN5wEavhoo7wFzKNUs+Pf3ryIzC8v2////ayCHBNUsABr6AoglYL4j6AOY13FFOswAXOqoZsGJgwf/MDIyMqM7hKAFuCIS3SAkH3wByvEQHUSkWvD3719NZmbmzUB9KjSJZFCQnNm/X+QfM/NyYHp3ISmI8OVu4jPawYObGBgZfckpKoB6dgBd7Im3qDixf78NIwtLP7CwMyHJEkbGM//+/Km0dHTcg9cCkgwlQTFJBRsJ5sKVjlpAMNQA9tmwGfHHXB0AAAAASUVORK5CYII=') }.dashboard--link.active.icon--listening:before, .dashboard--link:hover.icon--listening:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABeUlEQVRIS+2UsUrDUBSGezeHPkIHB0fbqYvgA1TERSgodKhoBwdHB8HNB3DpUBB0EKlCC6WDOjgqFNpBKoIP4AN06Cik3wlJuG1ucmubDIIXfpom/znfOffcRGVSXirl/BkrwHGcHEUconW0hlbQO3pDHaXUd1yRkQASS6IaOkKFiCSf3K8DaURB4gBNgva8wBa/D+gL/aAi2taeN4AcmyBGANVXMd+gMTogWAChhU8KuEJZVDb5QgCCVjF/eEH7BN3H7bEHkW5lFnn8I91vApxjuEAtzOW45P4zIE9cl9AJMXUbwN/7Cua7OQEVfLfomhg5ccEydTCUVlEBs2yVddGBDL2PesRs2ACOGDBa3xE9ERBjnKmDdABemzJcGZbbQVRV2nCDYnyvbBM6JfzVzaOZ21zv+v+XAEiKR+LlRZwCuNUkBAhmqHfwDwjtwOwMutzYSWgGzwx5axawyY1LJG/lMsd0QPgZgJcpgH6Ckrz+1edgEfDfB0wA353gGbfTObEAAAAASUVORK5CYII=') }.dashboard--link.active.icon--reading:before, .dashboard--link:hover.icon--reading:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABiElEQVRIS+2VL0sEQRjGb8AvIBgMhrMZRA2CNjVpMFjEImjwQyh4GBT0QwhyYDFpMGg74YQLBo8z2DQYLhguGoT19xwzssyOewPuBsGBH8vuu/M87zt/TaXkZkrWr0QZJEkyRCIHsG0TOudZM8Z8Dkow1uAQoX1P7AiDWlEGjwhNe2JtDGaKMuggNOmJdTCYKsrgGKFdT+wEg72iDH4/yayUS7JZhTd4hSdowwOZag4yjT6ag1k7PxrCKoxBkz5L6vC9ivg5ySlXpqdQt/9s8dyxYsFuGPS1QwbjfB8BZTcHa/Y9JNTj4zXcq1J4h5e+8E8GLuDU7CZb5H3DZq2QqrmAhr/Z3EhEG6TT9juHSkoN9TAmvcwQ+RX8G/zdIcrbB5rXLjxDE26hpeXoryLe54ktg5bxBIy6RREyOCO4CTp3/KYNdGPjiunCWQFtSL/pErrCYF2BzIVjN5bOE2W0YLNTpqHW4mMD7kAVdxH+SP8Ye6NV6eTOH1dBHTGJ5rYog0EiefHSDb4AMSDEGUgJEi0AAAAASUVORK5CYII=') }.dashboard--link.active.icon--writing:before, .dashboard--link:hover.icon--writing:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABTUlEQVRIS7WVTU4CQRBG6bhh4RUU3BlPoIBegBsAp3A1e5eewcTEyIaEHQfgAPhDEDgAexICwd34lamZlG23dvUwJJUhnea96v6KjKmU/DEl8yvRgjRNj9DcJeoYNTbGfLqajRIAfgJYB3XD0CmeT5DMbYlaAHgVkDvUBWqF2qLO+fstJDspUQkc8ASwvRA+QDCMElhwYlD3tuARgoFa8M+1bMR16a8o4Fry06D7tSpkwOs8LU0831F9QGbWFNEEPdO6akwZ3sWPGqg3hn9g/ZSl11LqgtOac4oAOWMIwV8ZPmc4SVtS6oM7BQwnyBXqheELrNdYGgz3Ce7FVCQUnCtoV6BBGQA24o29onDfCb4FgLeLdJ6d5lfI4gTyxHkWfwWqvaJs/4SDXmrh3jGNAan+B6UKPBkEO2k45ObQkA8nCCYFblS90QKZP7Z9AfnSmxnFQMSBAAAAAElFTkSuQmCC') }.dashboard--link.active.icon--speaking:before, .dashboard--link:hover.icon--speaking:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACEElEQVRIS+2VzyuEYRDHveXo4LDKwWEL5bcU5UBRDrYoK4riP1AoG4qDKAdE+QccFIVaUdbJHhz2oITWIgcHN3twcFTrM9vzbM++u/ustHuzNc07M9+Z7zzPPM+zTkmRf06R65cUjCCRSHgcx4m7Gy4IAcVnKDyNtEHyaZJkJSChCtAG0qfAYXSA5LdsWwr+DP8Asg9m0kqgit8C8riKfWE3myRg27Fv0F5iD0gZ4sMX0rkZKwB8QHAMEdCyAq6r1RySPC4+tS2yym58EexVvpeQTeyAjSBKsMHshOR+7AskSnKTIlhAC3EQnx/MMN8nyCn2kI3gkWA90g/wUhXTBDF8Qi4rqEW9aFJsyZHcZzB1NoIjgiM5tijZrSKoRr9KUXyNckz5/kDi2BU2Ai9BPTCNEy1D7iD5SRFMoXeRc3yDEMgpktMUwvblJFDJQiID7FHAa/SiLq4wEp9DevGHIZABy6B3sGetBGbbtm8ZvhxJdCW4GFKO+PEFbVvURXAe6UT0XZAnIIJsSbduUgj03I6Jj5rxtHtgnO3SHJ1/41+hyJoZJ28bW+6OXMS09yhFAEg6v1KJK+g9wO9qv+XpmFB7LOTJfXeR1OCTU5X2Mwn0e7Ls7lBnGINMnhzbfDJmQLK+YK0k32dLBtOC/w5JXbh8JOYKEgKmuPUJh+RXuIwV5Ovkr/GC/OHYyP8J8o7mB0Kc2BmxHLneAAAAAElFTkSuQmCC') }.dashboard--link.active.icon--rate:before, .dashboard--link:hover.icon--rate:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACQklEQVRIS7WVT0hUURTG54GLoE1IQgMJExq0MKidggtbzjIqcRYTKQYuihpcqaXQRLirKHShIdLQH9woEbhzFi1cBAUtilw4ixGEBnThqgam3zecF2/+vPE+0gMfd9573znfueeec8eLHbN5xxw/FkmgUqm8JqETIOV5XtklOWcBgqcI+MaCjiLw6qgF3hNw0IJ+ZL2KyJ/DRJx2QPaXCPQF7FvAU6xXEMgflcBbAg2BWaDaPwDrCCT/W4Dsuwny3QKdM4FtO+zLiHxtJfKvRATqgXgNnDacYRX853cE00HH4C6wjIKSla3Iumu/ta75wkEBZXkhJJsC75M4/TAB7epDC34Rbqe4QYE7PL8wgU+sDy3DEmRl1WDsRIctJEAW9AOdUQaflzUCltm4BT5pDlmIlZBdVV8jEmeZBEpwBzzBZ873aWhTHO7xcRq0g8cSwuF3yA66LPgI608LvhzkNp0DRK5DUmu2gdsILIYI+O2rEt6Ap9LWWOigIfIU5n3wDMdMiMAW73XgmurVZpxWAv7VcBNnXXINRhJqCtX+EZyZqAJ7OKhD4uoiuy78LrurPrdSrsDZ5LnPWcCG7hsOBXAeTAFdDzoTmVpRDfAc/LL3HYho8Gos7JDHYM2Dz+asy05W7W1MZZHpmtCknwVpBHKuAksQbwXIBX4P+7cnOxzgWZxEgJPje9pVQJeZ76ysJ3A+CDojon82Ta86TaXTxHe4CmxA1AFr5PP1TnVCvbabMtyLTgKtAkb95vSPFjVokP8XbDjFGQqbHCoAAAAASUVORK5CYII=') }.dashboard--link.active.icon--rate:before, .dashboard--link:hover.icon--rate:before {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAsUlEQVRIS2NkoDFgpLH5DHgt+P//fwnQAe1AzILDIX+A4qWMjIwTcDkUxQKggSZAhZOB2IJMn52AWngEph/dgvVAiQAyDYdp2wb0kTcuC/6DJIAKwBYDfQTmEwLo6mF8sFnImmEG0s0CQi5Hl0d3IEEfjFowGkQYaWA0FRHMFqNBRJUg2gQ0xZegSfgV7ACWxp646gMboEQ/EINqNnLAGaCmSqAFe7BaQI6JhPTQvFUBAKxLnBkymW/0AAAAAElFTkSuQmCC') }.dashboard--link.active.icon--application:before, .dashboard--link:hover.icon--application:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g><path fill-rule="evenodd" clip-rule="evenodd" d="M4.92969 4.06459C4.92969 3.78054 5.15179 3.573 5.39741 3.573H16.7275C16.9709 3.573 17.1952 3.77832 17.1952 4.06459V6.06195V6.81195H18.6952V6.06195V4.06459C18.6952 2.96892 17.8183 2.073 16.7275 2.073H5.39741C4.28765 2.073 3.42969 2.98829 3.42969 4.06459V19.9354C3.42969 21.0311 4.30664 21.927 5.39741 21.927H16.7275C17.8373 21.927 18.6952 21.0117 18.6952 19.9354V15.212V15.0771L21.7618 12.0105C22.5671 11.2052 22.5671 9.90611 21.7618 9.10084C20.9565 8.29557 19.6574 8.29557 18.8521 9.10084L16.5464 11.4065L13.2939 14.659C13.1896 14.7634 13.1183 14.8962 13.0891 15.0409L12.6213 17.3578C12.5716 17.604 12.6484 17.8589 12.8261 18.0365C13.0038 18.2142 13.2586 18.2911 13.5049 18.2414L15.8217 17.7735C15.9664 17.7443 16.0993 17.6731 16.2036 17.5687L17.1952 16.5771V19.9354C17.1952 20.2195 16.9731 20.427 16.7275 20.427H5.39741C5.15397 20.427 4.92969 20.2217 4.92969 19.9354V4.06459ZM19.9128 10.1615C20.1323 9.94202 20.4817 9.94202 20.7011 10.1615C20.9206 10.381 20.9206 10.7304 20.7011 10.9499L15.303 16.348L14.3152 16.5475L14.5146 15.5597L17.6071 12.4672L19.9128 10.1615Z" fill="%23ffffff"/><path d="M7.85107 6.49377H14.8949" stroke="%23ffffff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M7.85107 11.0823H13.8886" stroke="%23ffffff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M7.85107 15.6709H10.8699" stroke="%23ffffff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/></g></svg>') }.dashboard--link.active.icon--shortlist:before, .dashboard--link:hover.icon--shortlist:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g><path d="M5.53604 6.83337H3.91699C3.36471 6.83337 2.91699 7.28109 2.91699 7.83337V20C2.91699 20.5523 3.36471 21 3.91699 21H20.2503C20.8026 21 21.2503 20.5523 21.2503 20V7.83337C21.2503 7.28109 20.8026 6.83337 20.2503 6.83337H19.0678" stroke="%23ffffff" stroke-width="1.5"/><path d="M16.8062 15.5L11.9451 12.0278L7.08398 15.5V4.38889C7.08398 4.02053 7.23031 3.66726 7.49078 3.4068C7.75125 3.14633 8.10452 3 8.47287 3H15.4173C15.7857 3 16.1389 3.14633 16.3994 3.4068C16.6599 3.66726 16.8062 4.02053 16.8062 4.38889V15.5Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="round"/></g></svg>') }.dashboard--link.active.icon--session:before, .dashboard--link:hover.icon--session:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.dashboard--link.active.icon--drafts:before, .dashboard--link:hover.icon--drafts:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g><path d="M10.175 19.15H5C4.44772 19.15 4 18.7023 4 18.15V4C4 3.44772 4.44772 3 5 3H10.5405C10.7826 3 11.0164 3.0878 11.1987 3.2471L16.0081 7.45116C16.2254 7.64106 16.35 7.91553 16.35 8.20407V13.45" stroke="%23ffffff" stroke-width="1.5"/><path d="M20.2461 13.6231L13.7178 20.1514L10 21.6978L11.5461 17.9796L18.0744 11.4514C18.6762 10.8495 19.6443 10.8495 20.2461 11.4514C20.8349 12.0401 20.8349 13.0213 20.2461 13.6231Z" stroke="%23ffffff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.6504 3V7.75H15.4004" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></g></svg>') }.dashboard--link.active.icon--visa:before, .dashboard--link:hover.icon--visa:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.2716 14.3079C14.8207 14.3079 16.887 12.2415 16.887 9.69248C16.887 7.14347 14.8207 5.07709 12.2716 5.07709C9.72263 5.07709 7.65625 7.14347 7.65625 9.69248C7.65625 12.2415 9.72263 14.3079 12.2716 14.3079Z" stroke="%23ffffff" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.65625 9.69202H16.887" stroke="%23ffffff" stroke-linecap="round" stroke-linejoin="round"/><path d="Mnan nanL12.268 5.07709C13.4225 6.34094 14.0785 7.98111 14.1142 9.69248C14.0862 11.0368 13.6754 12.3371 12.9409 13.4456C12.6162 13.9358 11.9199 13.9358 11.5951 13.4456C10.8607 12.3371 10.4499 11.0368 10.4219 9.69248C10.4575 7.98111 11.1136 6.34094 12.268 5.07709Lnan nanLnan nanZ" stroke="%23ffffff" stroke-linecap="round" stroke-linejoin="round"/><rect x="3.80469" y="2" width="16.9231" height="20" rx="1" stroke="%23ffffff" stroke-width="1.5"/><path d="M7.64844 18.1542H16.8792" stroke="%23ffffff" stroke-width="1.5"/></svg>') }.dashboard--link.active.icon--document:before, .dashboard--link:hover.icon--document:before {background-image: url('data:image/svg+xml;utf-8,<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g><path d="M6.4 6.7998H5.5C4.94771 6.7998 4.5 7.24752 4.5 7.7998V20.9998C4.5 21.5521 4.94772 21.9998 5.5 21.9998H15.9" stroke="%23ffffff" stroke-width="1.5"/><path d="M8.2998 18.1498V3.99976C8.2998 3.44747 8.74752 2.99976 9.2998 2.99976H14.8404C15.0824 2.99976 15.3162 3.08755 15.4985 3.24685L20.3079 7.45092C20.5252 7.64081 20.6498 7.91529 20.6498 8.20382V18.1498C20.6498 18.702 20.2021 19.1498 19.6498 19.1498H9.2998C8.74752 19.1498 8.2998 18.702 8.2998 18.1498Z" stroke="%23ffffff" stroke-width="1.5"/><path d="M14.9502 2.99976V7.74976H19.7002" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></g></svg>') }.dashboardRightBar {position: -webkit-sticky;position: sticky;top: 112px;right: 0;max-height: calc(100vh - 112px);overflow-y: auto }.dashboardRightBar li {padding: 24px;background-color: #fff }@media (max-width:767px) {.dashboardRightBar li {padding: 16px }}.dashboardRightBar li:nth-child(1) {border-radius: 12px 12px 0 0 }.dashboardRightBar li:last-child {border-radius: 0 0 12px 12px }.dashboardRightBar li + li {margin-top: 8px }.dashboardRightBar .arrow span {font-size: 14px;line-height: 20px;padding-right: 20px }.dashboardRightBar .arrow span::before {width: 16px;height: 16px }.dashboardRightBar--title {font-size: 18px;line-height: 28px }@media (max-width:767px) {.dashboardRightBar--title {font-size: 14px;line-height: 20px }}.dashboardRightBar--desc {font-size: 12px;line-height: 19px;margin: 12px 0 16px }.dashboardRightBar--footer {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap }@media (max-width:767px) {.dashboardRightBar--footer {-ms-flex-direction: column;flex-direction: column }}.dashboardRightBar--footer a {font-size: 16px;line-height: 24px;margin-bottom: 16px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.dashboardRightBar--footer a {font-size: 12px;line-height: 19px;margin-bottom: 8px }}.dashboardRightBar--footer a:hover {color: #df252a }.dashboardRightBar--footer a:last-child {margin-bottom: 0 }.dashboardRightBar--footer a:nth-child(2) {margin-left: 25px }@media (max-width:767px) {.dashboardRightBar--footer a:nth-child(2) {margin-left: 0 }}.dashboardRightBar--footer a img {width: 20px;height: 20px;margin-right: 8px }.dashboardRightBar .uProfile {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.dashboardRightBar .uProfile__left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboardRightBar .uProfile__left img {width: 52px;height: 52px;border-radius: 50%;object-fit: cover }.dashboardRightBar .uProfile__right .circular-chart {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;position: relative }.dashboardRightBar .uProfile__right .circular-chart .circular--label {position: absolute;top: 50%;transform: translateY(-50%);font-size: 14px;line-height: 20px }.dashboardRightBar .uProfile__detail {margin-left: 16px }.dashboardRightBar .uProfile__detail .user-name {font-size: 16px;line-height: 22px;margin-bottom: 4px }@media (max-width:767px) {.dashboardRightBar .uProfile__detail .user-name {font-size: 14px;line-height: 19px }}.dashboardRightBar .advisor--heading {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.dashboardRightBar .advisor--details {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-top: 20px;padding-top: 20px;border-top: 1px solid rgba(43, 42, 41, .1) }.dashboardRightBar .advisor--details .left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboardRightBar .advisor--details .left .profile {width: 52px;height: 52px;border-radius: 50% }.dashboardRightBar .advisor--details .left .uProfile__detail {margin-left: 16px }.dashboardRightBar .advisor--details .left .uProfile__detail .user-name {color: #1a1a19 }.dashboardRightBar .advisor--details .left .uProfile__detail .user-name:hover {color: #df252a }.dashboardRightBar .advisor--details .right {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboardRightBar .advisor--details .right .action {width: 40px;height: 40px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: #fff;border: 1px solid rgba(43, 42, 41, .1);border-radius: 50%;position: relative }@media (max-width:1024px) {.dashboardRightBar .advisor--details .right .action {width: 32px;height: 32px }}.dashboardRightBar .advisor--details .right .action:hover {background-color: #df252a }.dashboardRightBar .advisor--details .right .action:hover.calendar::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.dashboardRightBar .advisor--details .right .action:hover.message::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.4375 16.25C20.16 14.9963 20.5 13.5513 20.5 12C20.5 7.30375 16.6963 3.5 12 3.5C7.30375 3.5 3.5 7.30375 3.5 12C3.5 16.6963 7.30375 20.5 12 20.5C13.5513 20.5 14.9963 20.0856 16.2394 19.3631L20.5 20.5L19.4375 16.25Z" stroke="%23ffffff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboardRightBar .advisor--details .right .action::before {position: absolute;content: '';width: 24px;height: 24px;background-repeat: no-repeat;background-position: center;background-size: cover }@media (max-width:1024px) {.dashboardRightBar .advisor--details .right .action::before {width: 18px;height: 18px }}.dashboardRightBar .advisor--details .right .action.calendar::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>') }.dashboardRightBar .advisor--details .right .action.message::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.4375 16.25C20.16 14.9963 20.5 13.5513 20.5 12C20.5 7.30375 16.6963 3.5 12 3.5C7.30375 3.5 3.5 7.30375 3.5 12C3.5 16.6963 7.30375 20.5 12 20.5C13.5513 20.5 14.9963 20.0856 16.2394 19.3631L20.5 20.5L19.4375 16.25Z" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboardRightBar .advisor--details .right .action + .action {margin-left: 12px }@media (max-width:767px) {.dashboardRightBar .advisor--details .right .action + .action {margin-left: 8px }}.dashboardRightBar .advisor--phone {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;color: #1a1a19;font-size: 14px;line-height: 20px }@media (max-width:767px) {.dashboardRightBar .advisor--phone {font-size: 12px;line-height: 19px }}.dashboardRightBar .advisor--phone img {width: 16px;height: 16px;margin-right: 4px }@media (max-width:767px) {.dashboardRightBar .advisor--phone img {width: 12px;height: 12px }}.dashboardRightBar .advisor--phone:hover {color: #df252a }.dashboardRightBar .advisor--upcoming {display: -ms-flexbox;display: flex;-ms-flex-pack: justify;justify-content: space-between;margin-top: 20px;padding-top: 20px;border-top: 1px solid rgba(43, 42, 41, .1) }.dashboardRightBar .advisor--upcoming .left {display: -ms-flexbox;display: flex }.dashboardRightBar .advisor--upcoming .action {width: 36px;height: 36px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: rgba(228, 231, 233, .4);border-radius: 50%;position: relative }@media (max-width:1024px) {.dashboardRightBar .advisor--upcoming .action {width: 32px;height: 32px }}.dashboardRightBar .advisor--upcoming .action::before {position: absolute;content: '';width: 24px;height: 24px;background-repeat: no-repeat;background-position: center;background-size: cover }@media (max-width:1024px) {.dashboardRightBar .advisor--upcoming .action::before {width: 18px;height: 18px }}.dashboardRightBar .advisor--upcoming .action.calendar::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>') }.dashboardRightBar .advisor--upcoming__desc {font-size: 14px;line-height: 22px;padding-left: 12px }@media (max-width:767px) {.dashboardRightBar .advisor--upcoming__desc {font-size: 12px;line-height: 19px }}.dashboardRightBar .advisor--upcoming__desc span {display: block }.dashboardRightBar .upcoming .advisor--heading {margin-bottom: 24px }@media (max-width:767px) {.dashboardRightBar .upcoming .advisor--heading {margin-bottom: 18px }}.dashboardRightBar .upcoming--item {display: -ms-flexbox;display: flex;-ms-flex-pack: justify;justify-content: space-between }.dashboardRightBar .upcoming--item + .upcoming--item {margin-top: 20px;padding-top: 20px;border-top: 1px solid rgba(43, 42, 41, .1) }.dashboardRightBar .upcoming--detail {display: -ms-flexbox;display: flex }.dashboardRightBar .upcoming--detail img {width: 40px;height: 40px;border-radius: 50%;object-fit: contain }@media (max-width:767px) {.dashboardRightBar .upcoming--detail img {width: 32px;height: 32px }}.dashboardRightBar .upcoming--detail--right {margin-left: 12px }.dashboardRightBar .upcoming--name {font-size: 16px;line-height: 24px;margin-bottom: 6px }@media (max-width:767px) {.dashboardRightBar .upcoming--name {font-size: 12px;line-height: 19px;margin-bottom: 4px }}.dashboardRightBar .upcoming--desc {font-size: 12px;line-height: 19px;display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column }.dashboardRightBar .alerts .advisor--heading {margin-bottom: 24px }@media (max-width:767px) {.dashboardRightBar .alerts .advisor--heading {margin-bottom: 18px }}.dashboardRightBar .alerts--item {display: -ms-flexbox;display: flex;-ms-flex-pack: justify;justify-content: space-between }.dashboardRightBar .alerts--item + .alerts--item {margin-top: 20px;padding-top: 20px;border-top: 1px solid rgba(43, 42, 41, .1) }.dashboardRightBar .alerts--item .left {max-width: 252px }.dashboardRightBar .alerts--name {font-size: 14px;line-height: 20px;margin-bottom: 6px }@media (max-width:767px) {.dashboardRightBar .alerts--name {font-size: 12px;line-height: 19px;margin-bottom: 4px }}.dashboardRightBar .alerts--desc {font-size: 12px;line-height: 19px }@media (max-width:767px) {.dashboardRightBar .alerts--desc {font-size: 10px;line-height: 18px }}.dashboardRightBar .alerts--time {font-size: 12px;line-height: 19px }@media (max-width:767px) {.dashboardRightBar .alerts--time {font-size: 10px;line-height: 18px }}.black_arrow {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;position: relative;width: 24px;height: 24px;border-radius: 50%;background-color: #1a1a19;border: 1px solid #1a1a19 }@media (max-width:767px) {.black_arrow {width: 20px;height: 20px }}.black_arrow:hover {background-color: #fff }.black_arrow:hover:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%231a1a19" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%231a1a19" stroke-width="1.5" stroke-linecap="square"/></svg>') }.black_arrow::before {content: '';position: absolute;width: 15px;height: 15px;background-size: cover;background-repeat: no-repeat;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.upload {margin-bottom: 32px }@media (max-width:767px) {.upload {margin-bottom: 20px }}.upload .retry-btn {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;margin-top: 0 !important;background-color: transparent;border-color: #df252a;color: #df252a;padding: 8px 0 !important;width: 107px;-ms-flex-pack: center;justify-content: center }.upload .retry-btn:hover .refresh {background-image: url('data:image/svg+xml;utf-8,<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.40918 5.08333C5.31976 3.82161 6.80559 3 8.48393 3C11.2543 3 13.5001 5.23858 13.5001 8C13.5001 10.7614 11.2543 13 8.48393 13C6.99831 13 5.66354 12.3562 4.74504 11.3333" stroke="%23ffffff" stroke-linecap="square"/><path d="M3.5 3V5.72727H6.22727" stroke="%23ffffff" stroke-linejoin="round"/></svg>') }.upload .retry-btn .refresh {background-image: url('data:image/svg+xml;utf-8,<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.40918 5.08333C5.31976 3.82161 6.80559 3 8.48393 3C11.2543 3 13.5001 5.23858 13.5001 8C13.5001 10.7614 11.2543 13 8.48393 13C6.99831 13 5.66354 12.3562 4.74504 11.3333" stroke="%23DF252A" stroke-linecap="square"/><path d="M3.5 3V5.72727H6.22727" stroke="%23DF252A" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat;width: 16px;height: 16px;margin-right: 4px }.upload .message {width: 20px;height: 20px;margin-left: 8px }.upload--form {position: relative;padding: 35px 32px;border: 1px dashed rgba(43, 42, 41, .1);border-radius: 12px;cursor: pointer;min-height: 240px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }.upload--title {font-size: 16px;line-height: 24px;margin-top: 12px;text-align: center }@media (max-width:767px) {.upload--title {font-size: 14px;line-height: 22px;margin-top: 8px }}.upload--file {position: absolute;opacity: 0;width: 1px }.upload--image {width: 90px;height: 90px;margin-bottom: 15px }@media (max-width:767px) {.upload--image {width: 32px;height: 32px;margin-bottom: 8px }}.upload--label {font-size: 14px;line-height: 20px;max-width: 152px;text-align: center;margin-bottom: 4px;cursor: pointer }@media (max-width:767px) {.upload--label {font-size: 12px;line-height: 19px }}.upload--info {font-size: 12px;line-height: 19px }@media (max-width:767px) {.upload--info {font-size: 10px;line-height: 16px }}.upload--detail {padding: 14px 8px 20px 8px }.upload.list {margin-bottom: 16px }.upload.list .close-btn {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;margin-top: 0 !important;padding: 8px 0 !important;width: 107px;-ms-flex-pack: center;justify-content: center }.upload.list .close-btn:hover .close {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M6 6L18 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.upload.list .close-btn .close {width: 16px;height: 16px;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18" stroke="%231a1a19" stroke-width="1.5" stroke-linecap="square"/><path d="M6 6L18 18" stroke="%231a1a19" stroke-width="1.5" stroke-linecap="square"/></svg>');margin-right: 4px;opacity: 1 }.upload.list .delete-btn {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;margin-top: 0 !important;padding: 8px 0 !important;width: 107px;border-color: rgba(43, 42, 41, .1);-ms-flex-pack: center;justify-content: center }.upload.list .delete-btn:hover .delete {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.1032 7.88965C16.1032 7.88965 15.6507 14.1353 15.3882 16.4995C15.2632 17.6287 14.5657 17.6571 13.4232 17.678C11.249 17.7171 9.07234 17.7196 6.89901 17.6738C5.79984 17.6513 5.11401 17.6087 4.99151 16.4995C4.72734 14.1145 4.27734 7.88965 4.27734 7.88965" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/><path d="M14.5335 5.19949C13.8793 5.19949 13.316 4.73699 13.1877 4.09616L12.9852 3.08283C12.8602 2.61533 12.4368 2.29199 11.9543 2.29199H8.42682C7.94432 2.29199 7.52099 2.61533 7.39599 3.08283L7.19349 4.09616C7.06516 4.73699 6.50182 5.19949 5.84766 5.19949" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/><path d="M17.2567 5.19938H3.125" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.upload.list .delete-btn.disabled:hover .delete {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.1032 7.88965C16.1032 7.88965 15.6507 14.1353 15.3882 16.4995C15.2632 17.6287 14.5657 17.6571 13.4232 17.678C11.249 17.7171 9.07234 17.7196 6.89901 17.6738C5.79984 17.6513 5.11401 17.6087 4.99151 16.4995C4.72734 14.1145 4.27734 7.88965 4.27734 7.88965" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/><path d="M14.5335 5.19949C13.8793 5.19949 13.316 4.73699 13.1877 4.09616L12.9852 3.08283C12.8602 2.61533 12.4368 2.29199 11.9543 2.29199H8.42682C7.94432 2.29199 7.52099 2.61533 7.39599 3.08283L7.19349 4.09616C7.06516 4.73699 6.50182 5.19949 5.84766 5.19949" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/><path d="M17.2567 5.19938H3.125" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.upload.list .delete-btn .delete {width: 16px;height: 16px;background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.1032 7.88965C16.1032 7.88965 15.6507 14.1353 15.3882 16.4995C15.2632 17.6287 14.5657 17.6571 13.4232 17.678C11.249 17.7171 9.07234 17.7196 6.89901 17.6738C5.79984 17.6513 5.11401 17.6087 4.99151 16.4995C4.72734 14.1145 4.27734 7.88965 4.27734 7.88965" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/><path d="M14.5335 5.19949C13.8793 5.19949 13.316 4.73699 13.1877 4.09616L12.9852 3.08283C12.8602 2.61533 12.4368 2.29199 11.9543 2.29199H8.42682C7.94432 2.29199 7.52099 2.61533 7.39599 3.08283L7.19349 4.09616C7.06516 4.73699 6.50182 5.19949 5.84766 5.19949" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/><path d="M17.2567 5.19938H3.125" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat;margin-right: 4px;opacity: 1 }.upload.list .box__input {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;-ms-flex-direction: row;flex-direction: row;width: 100% }@media (max-width:767px) {.upload.list .box__input {-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-pack: center;justify-content: center }}.upload.list .box__input .left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.upload.list .box__input .left {-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-pack: center;justify-content: center }}@media (max-width:767px) {.upload.list .box__input .left img {margin-right: 0;margin-bottom: 10px }}.upload.list .box.is-uploading {background-color: #fff;padding: 15px 20px;border: 1px solid rgba(43, 42, 41, .1) }.upload.list .box.is-uploading .box__uploading {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-direction: row !important;flex-direction: row !important;-ms-flex-pack: justify;justify-content: space-between;-ms-flex: 1;flex: 1 }@media (max-width:767px) {.upload.list .box.is-uploading .box__uploading {-ms-flex-wrap: wrap;flex-wrap: wrap }}.upload.list .box.is-uploading .box__uploading .left {width: 100%;margin-right: 25px }@media (max-width:767px) {.upload.list .box.is-uploading .box__uploading .left {margin-right: 0;margin-bottom: 10px }}.upload.list .box.is-uploading .box__uploading .left .top {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-bottom: 10px }@media (max-width:767px) {.upload.list .box.is-uploading .box__uploading .left .top {-ms-flex-wrap: wrap;flex-wrap: wrap }}.upload.list .box.is-uploading .box__uploading .left .top--left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.upload.list .box.is-uploading .box__uploading .left .top--left {margin-bottom: 5px }}.upload.list .box.is-error {background-color: rgba(223, 37, 42, .05);border: 1px solid rgba(223, 37, 42, .1);padding: 15px 20px }.upload.list .box.is-error .box__error {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-direction: row !important;flex-direction: row !important;-ms-flex-pack: justify;justify-content: space-between;-ms-flex: 1;flex: 1 }@media (max-width:767px) {.upload.list .box.is-error .box__error {-ms-flex-wrap: wrap;flex-wrap: wrap }}.upload.list .box.is-error .box__error .left {width: 100%;margin-right: 25px }@media (max-width:767px) {.upload.list .box.is-error .box__error .left {margin-right: 0;margin-bottom: 10px }}.upload.list .box.is-error .box__error .left .top {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-bottom: 10px }.upload.list .box.is-error .box__error .left .top--left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.upload.list .box.is-success {background-color: #fff;border: 1px solid rgba(43, 42, 41, .1);padding: 15px 20px }@media (max-width:991px) {.upload.list .box.is-success .box__success .chips {margin-bottom: 8px }}.upload.list .box.is-success .box__success .message {width: 20px;height: 20px;margin-left: 8px }@media (max-width:767px) {.upload.list .box.is-success .box__success .message {margin-bottom: 8px }}.upload.list .box.is-success .box__success .file--title {font-size: 14px;line-height: 20px }@media (max-width:991px) {.upload.list .box.is-success .box__success .file--title {margin-bottom: 8px }}.upload.list .box.is-success .box__success .file--detail {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:991px) {.upload.list .box.is-success .box__success .file--detail {margin-bottom: 8px }}.upload.list .box.is-success .box__success .file--detail:hover .file--name {color: #df252a }.upload.list .box.is-success .box__success .file--name, .upload.list .box.is-success .box__success .file--size {font-size: 14px;line-height: 20px }.upload.list .box.is-success .box__success .file--name {margin: 0 12px }.upload.list .box.is-success .box__success .file--date {font-size: 14px;line-height: 20px }.upload.list .upload--image {width: 20px;height: 20px;margin-bottom: 0;margin-right: 8px }.upload.list .upload--label {font-size: 14px;line-height: 20px;max-width: inherit;margin-bottom: 0 }.upload.list .upload--form {padding: 24px 20px;background-color: rgba(228, 231, 233, .4);border-radius: 8px;min-height: inherit;-ms-flex-pack: start;justify-content: flex-start }.upload.list .upload--text {font-size: 12px;line-height: 19px }.upload .box__input {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center }.upload .box__error, .upload .box__success, .upload .box__uploading {display: none }.upload .box__success .image-preview {height: 130px;overflow: hidden;position: relative }.upload .box__success .image-preview img {object-fit: fill;width: 100%;height: 100%;border-radius: 12px 12px 0 0 }.upload .box__success .image-preview .close-btn {position: absolute;top: 10px;right: 10px;width: 25px;height: 25px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: #fff;cursor: pointer;box-shadow: -4px 4px 16px rgba(43, 42, 41, .04) }.upload .box__success .image-preview .close-btn:hover {background-color: #df252a }.upload .box__success .image-preview .close-btn:hover .close {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M6 6L18 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.upload .box__success .image-preview .close-btn .close {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M6 6L18 18" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>');width: 15px;height: 15px;opacity: 1 }.upload .box__success .upload--detail {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start }.upload .box__success .upload--detail .file-icon {width: 32px;height: 32px }@media (max-width:767px) {.upload .box__success .upload--detail .file-icon {width: 26px;height: 26px }}.upload .box__success .upload--detail .right {padding-left: 8px }.upload .box__success .upload--detail .right .file-name {font-size: 14px;line-height: 22px;margin-bottom: 2px }@media (max-width:767px) {.upload .box__success .upload--detail .right .file-name {font-size: 12px;line-height: 19px }}.upload .box__success .upload--detail .right .file-name:hover {color: #df252a }.upload .box__success .upload--detail .right .file-size {font-size: 12px;line-height: 19px;margin-bottom: 8px }@media (max-width:767px) {.upload .box__success .upload--detail .right .file-size {font-size: 10px;line-height: 18px }}.upload .box__success.rejected .retry-btn {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);background-color: #fff;z-index: 2 }.upload .box__success.rejected .image-preview:after {position: absolute;content: '';top: 0;left: 0;right: 0;bottom: 0;background-color: rgba(0, 0, 0, .2);z-index: 1;border-radius: 12px 12px 0 0 }.upload .box__success.rejected .file-icon, .upload .box__success.rejected .file-name, .upload .box__success.rejected .file-size {opacity: .4 }.upload .box .button-rounded__white {margin-top: 10px;color: #df252a;font-size: 12px;line-height: 19px;padding: 8px 32px }@media (max-width:767px) {.upload .box .button-rounded__white {padding: 8px 22px }}.upload .box .button-rounded__white:hover {background-color: #df252a;color: #fff }.upload .box .button-rounded__black {margin-top: 10px;color: #1a1a19;font-size: 12px;line-height: 19px;padding: 8px 32px;border: 1px solid rgba(43, 42, 41, .1) }@media (max-width:767px) {.upload .box .button-rounded__black {padding: 8px 22px }}.upload .box .button-rounded__black:hover {background-color: #1a1a19;color: #fff }.upload .box .button-rounded.disabled.button-rounded__white {background-color: #fff;color: #df252a }.upload .box.is-uploading {cursor: default }.upload .box.is-error {cursor: default }.upload .box.is-error .upload-label {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.upload .box.is-error .upload-label img {width: 20px;height: 20px;margin-right: 4px }.upload .box.is-success {display: block;border: 1px solid rgba(43, 42, 41, .1);padding: 0 }.upload .box.is-error .box__input, .upload .box.is-success .box__input, .upload .box.is-uploading .box__input {visibility: hidden;display: none }.upload .box.is-dragover {border-color: #df252a;background-color: rgba(43, 42, 41, .1) }.upload .circular-chart {position: relative;display: inline-block }.upload .circular-chart .circular--label {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);font-size: 14px;line-height: 22px }.upload .box.is-uploading .box__uploading {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center }.upload .box.is-error .box__error {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center }.upload .box.box.is-success .box__success {display: block }.upload .upload-label {font-size: 14px;line-height: 22px;margin-top: 8px;text-align: center }.upload .progress {border-radius: 7px;height: 6px }.upload .progress > div {border-radius: 7px }.upload .progress.success {background-color: rgba(27, 177, 97, .1) }.upload .progress.success > div {background-color: #1bb161 }.upload .progress.failed {background-color: rgba(223, 37, 42, .1) }.upload .progress.failed > div {background-color: #df252a }.tooltip {z-index: 99999 }.tooltip-inner {font-size: 12px;line-height: 16px;color: #b3b3b2;font-weight: 400 }.tooltip-inner span {font-weight: 600;color: #fff }.dashboard {background-color: #f1f2f3;padding: 112px 52px 24px 157px;position: relative;min-height: 100vh }@media (max-width:1024px) {.dashboard {padding: 100px 20px 76px }}.dashboard .notFound {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center;margin-top: 100px }@media (max-width:767px) {.dashboard .notFound {margin-top: 40px }}.dashboard .notFound img {margin-bottom: 25px }.dashboard .notFound .title {font-size: 24px;line-height: 33px }@media (max-width:767px) {.dashboard .notFound .title {font-size: 18px;line-height: 24px }}.dashboard .notFound .subTitle {font-size: 16px;line-height: 24px;margin: 5px 0 22px }@media (max-width:767px) {.dashboard .notFound .subTitle {font-size: 14px;line-height: 20px }}.dashboard--title {margin-bottom: 20px }.dashboard--card {border-radius: 12px;background-color: #fff;padding: 24px;margin-bottom: 24px }@media (max-width:767px) {.dashboard--card {padding: 16px;margin-bottom: 16px }}.dashboard.DglobalSearch .searchListing {max-height: inherit;overflow-y: none;background-color: #fff;padding: 24px;border-radius: 12px }.dashboard .user--heading .info {max-width: 875px;margin-top: 24px }.dashboard .user--name {font-size: 32px;line-height: 44px;margin-bottom: 8px }@media (max-width:767px) {.dashboard .user--name {font-size: 24px;line-height: 28px }}.dashboard .user--instruction {font-size: 16px;line-height: 24px }@media (max-width:767px) {.dashboard .user--instruction {font-size: 12px;line-height: 19px }}.dashboard .form-row {margin-left: -24px;margin-right: -24px }.dashboard .form-row > .col, .dashboard .form-row > [class*=col-] {padding-left: 24px;padding-right: 24px }.dashboard .white-form {margin-top: 40px }.dashboard .white-form.form .form--header {margin-bottom: 22px }.dashboard .white-form.form .form--header__sub {margin-bottom: 16px;font-size: 16px;line-height: 24px }@media (max-width:767px) {.dashboard .white-form.form .form--header__sub {font-size: 14px;line-height: 22px }}.dashboard .white-form.form .form--header h2 {font-size: 20px;line-height: 28px }@media (max-width:767px) {.dashboard .white-form.form .form--header h2 {font-size: 16px;line-height: 22px }}.dashboard .white-form.form .form--header h2 span {font-size: 16px;line-height: 24px }@media (max-width:767px) {.dashboard .white-form.form .form--header h2 span {font-size: 12px;line-height: 19px }}.dashboard .white-form.form .form--section + .form--section {margin-top: 40px }.dashboard .white-form.form .custom--input {position: relative;background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .05);color: #b3b3b2;padding: 14px 20px;border-radius: 8px;font-size: 14px;line-height: 19px;outline: 0;width: 100%;margin-bottom: 24px }@media (max-width:767px) {.dashboard .white-form.form .custom--input {font-size: 12px;line-height: 19px }}.dashboard .white-form.form .custom--input.textarea .custom--label {top: 14px }.dashboard .white-form.form .custom--input:active, .dashboard .white-form.form .custom--input:focus, .dashboard .white-form.form .custom--input:focus-visible, .dashboard .white-form.form .custom--input:focus-within {border-color: #1a1a19 }.dashboard .white-form.form .custom--input:-ms-input-placeholder {color: #b3b3b2;opacity: 0 }.dashboard .white-form.form .custom--input::placeholder {color: #b3b3b2;opacity: 0 }.dashboard .white-form.form .custom--input input:-ms-input-placeholder, .dashboard .white-form.form .custom--input textarea:-ms-input-placeholder {opacity: 0 }.dashboard .white-form.form .custom--input input::placeholder, .dashboard .white-form.form .custom--input textarea::placeholder {opacity: 0 }.dashboard .white-form.form .custom--input input:focus + .custom--label, .dashboard .white-form.form .custom--input input:not(:placeholder-shown) + .custom--label, .dashboard .white-form.form .custom--input textarea:focus + .custom--label, .dashboard .white-form.form .custom--input textarea:not(:placeholder-shown) + .custom--label {left: 16px;transform: translateY(-25px);font-size: 10px;line-height: 14px;background-color: #fff;border-radius: 12px;padding: 0 4px }.dashboard .white-form.form .custom--input.is-invalid {border-color: #df252a;background-color: rgba(223, 37, 42, .05) }.dashboard .white-form.form .custom--switch--label {margin-bottom: 24px }.dashboard .white-form.form .custom--label {position: absolute;left: 20px;font-size: 14px;line-height: 20px;transition: all .3s ease-in }@media (max-width:767px) {.dashboard .white-form.form .custom--label {font-size: 12px;line-height: 19px }}.dashboard .white-form.form .custom--radio {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboard .white-form.form .custom--radio + .custom--radio {margin-left: 24px }.dashboard .white-form.form .custom--radio__label {background-color: transparent;border: none;padding: 0;padding-left: 26px;border-radius: none;width: auto;font-size: 16px;line-height: 24px }@media (max-width:767px) {.dashboard .white-form.form .custom--radio__label {font-size: 12px;line-height: 19px;padding-left: 20px }}.dashboard .white-form.form .custom--radio__checkmark {left: 0;top: inherit }.dashboard .white-form.form .custom--mobile label {-ms-flex: 1;flex: 1;padding-left: 8px;margin-left: 8px;border-left: 1px solid rgba(43, 42, 41, .1);position: relative;display: -ms-flexbox;display: flex }.dashboard .white-form.form .custom--mobile .dropdown-toggle {padding: 0;background-color: transparent;border: none;font-size: 14px;line-height: 20px;color: #1a1a19 }.dashboard .white-form.form .custom--mobile .dropdown-toggle .filter-option-inner-inner {color: #1a1a19 }.dashboard .white-form.form .custom--mobile .dropdown-toggle:after {width: 20px;height: 20px }.dashboard .white-form.form .dropdown-toggle {background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .1) }.dashboard .white-form.form .dropdown-toggle .filter-option-inner-inner {color: #727271 }.dashboard .white-form.form .dropdown-toggle:active, .dashboard .white-form.form .dropdown-toggle:focus {box-shadow: none;outline: 0 !important }.dashboard .white-form.form .dropdown-toggle[aria-expanded=true]:after {transform: rotate(0) }.dashboard .white-form.form .dropdown-toggle:after {border: none;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%232B2A29"/></svg>');width: 24px;height: 24px;transform: rotate(180deg);background-size: cover;background-position: center;transition: all .3s ease-in }@media (max-width:991px) {.dashboard .white-form.form .dropdown-toggle:after {width: 20px;height: 20px }}.dashboard .white-form.form .dropdown-menu {font-size: 16px }@media (max-width:991px) {.dashboard .white-form.form .dropdown-menu {font-size: 12px;line-height: 18px }}.dashboard .white-form.form .dropdown-menu .dropdown-item.active, .dashboard .white-form.form .dropdown-menu .dropdown-item:active {background-color: #df252a }.dashboard .white-form.form .radio-label {font-size: 14px;line-height: 20px;margin-bottom: 12px }@media (max-width:767px) {.dashboard .white-form.form .radio-label {font-size: 12px;line-height: 19px }}.dashboard .white-form .submit {margin-top: 20px }.dashboard .white-form .submit p {font-size: 12px;line-height: 18px;margin-right: 24px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboard .white-form .submit p img {width: 20px;height: 20px;margin-left: 8px }@media (max-width:991px) {.dashboard .white-form .radio--body {margin-bottom: 30px }}.dashboard .stepper--content {display: none }.dashboard .stepper--content.active {display: block }.dashboard .stepper--content .add-more {color: #df252a }.dashboard .stepper--content .add-more:hover {background-color: #df252a;color: #fff }.dashboard .stepper--content .header-check {margin-bottom: 16px }.dashboard .stepper--heading {font-size: 24px;line-height: 34px;margin-bottom: 20px }@media (max-width:767px) {.dashboard .stepper--heading {font-size: 18px;line-height: 24px;margin-bottom: 15px }}.dashboard .stepper--body {background-color: #fff;border-radius: 12px;padding: 40px }@media (max-width:991px) {.dashboard .stepper--body {padding: 20px }}.dashboard .form--footer {margin-top: 40px;padding-top: 24px;border-top: 1px solid rgba(43, 42, 41, .1) }.dashboard .form--footer--title {font-size: 20px;line-height: 28px;margin-bottom: 8px }@media (max-width:767px) {.dashboard .form--footer--title {font-size: 16px;line-height: 22px;margin-bottom: 5px }}.dashboard .form--footer--desc {font-size: 14px;line-height: 20px;margin-bottom: 25px }@media (max-width:767px) {.dashboard .form--footer--desc {font-size: 12px;line-height: 19px;margin-bottom: 15px }}.dashboard .form--footer--link a {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 16px;line-height: 24px }@media (max-width:767px) {.dashboard .form--footer--link a {font-size: 12px;line-height: 19px }}.dashboard .form--footer--link a:hover {color: #df252a }.dashboard .form--footer--link a img {width: 20px;height: 20px;margin-right: 8px }@media (max-width:767px) {.dashboard .form--footer--link a img {width: 16px;height: 16px;margin-right: 5px }}.dashboard .form--footer--link a + a {margin-left: 60px }@media (max-width:767px) {.dashboard .form--footer--link a + a {margin-left: 15px }}.dashboard .info {font-size: 14px;line-height: 22px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:991px) {.dashboard .info {-ms-flex-align: start;align-items: flex-start }}@media (max-width:767px) {.dashboard .info {font-size: 12px;line-height: 19px }}.dashboard .info img {width: 24px;height: 24px;margin-right: 8px }@media (max-width:767px) {.dashboard .info img {width: 18px;height: 18px;margin-right: 5px }}.dashboard .stepper--wizard {margin-top: 26px;background-color: #fff;border-radius: 12px;padding: 24px 40px;display: -ms-flexbox;display: flex;-ms-flex-pack: justify;justify-content: space-between;-ms-flex-wrap: nowrap;flex-wrap: nowrap;overflow-x: auto }@media (max-width:991px) {.dashboard .stepper--wizard {padding: 20px }}.dashboard .stepper--wizard--item {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboard .stepper--wizard--item.active .stepper--wizard--details p {color: #1a1a19 }@media (max-width:991px) {.dashboard .stepper--wizard--item + .stepper--wizard--item {margin-left: 30px }}.dashboard .stepper--wizard--item .circular-chart {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;position: relative }.dashboard .stepper--wizard--item .circular-chart.completed .rotate-only span {background-color: #1dbd68 }.dashboard .stepper--wizard--item .circular-chart.completed .circular--label {color: #fff }.dashboard .stepper--wizard--item .circular-chart .circular--label {position: absolute;color: #cfd4d8;font-size: 18px;line-height: 27px }.dashboard .stepper--wizard--details {padding-left: 16px }.dashboard .stepper--wizard--details p {white-space: nowrap }.dashboard .stepper--wizard--details p:nth-child(1) {font-size: 16px;line-height: 24px;margin-bottom: 4px }@media (max-width:767px) {.dashboard .stepper--wizard--details p:nth-child(1) {font-size: 14px;line-height: 22px;margin-bottom: 2px }}.dashboard .stepper--wizard--details p:nth-child(2) {font-size: 14px;line-height: 22px }@media (max-width:767px) {.dashboard .stepper--wizard--details p:nth-child(2) {font-size: 12px;line-height: 19px }}.dashboard.profileReview .stepper--content + .stepper--content {margin-top: 50px }.dashboard.profileReview .white-form .form--section + .form--section {margin-top: 32px;padding-top: 32px;border-top: 1px solid rgba(43, 42, 41, .1) }@media (max-width:991px) {.dashboard.profileReview .review--list {margin-bottom: 12px }}.dashboard.profileReview .review--list li {font-size: 14px;line-height: 20px;display: -ms-flexbox;display: flex }@media (max-width:767px) {.dashboard.profileReview .review--list li {font-size: 12px;line-height: 19px }}.dashboard.profileReview .review--list li + li {margin-top: 12px }.dashboard.profileReview .review--list li span:nth-child(1) {min-width: 120px;margin-right: 90px }@media (max-width:767px) {.dashboard.profileReview .review--list li span:nth-child(1) {margin-right: 20px }}.dashboard--accordion {border-radius: 12px;background-color: #fff;padding: 24px }@media (max-width:767px) {.dashboard--accordion {padding: 16px }}.dashboard--accordion + .dashboard--accordion {margin-top: 24px }@media (max-width:767px) {.dashboard--accordion + .dashboard--accordion {margin-top: 16px }}.dashboard--accordion + .dashboard--card {margin-top: 24px }@media (max-width:767px) {.dashboard--accordion + .dashboard--card {margin-top: 16px }}.dashboard--accordion + .row {margin-top: 24px;margin-bottom: 24px }@media (max-width:767px) {.dashboard--accordion + .row {margin-top: 16px }}.dashboard--accordion__empty {height: 250px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;-ms-flex-direction: column;flex-direction: column }.dashboard--accordion__empty img {width: 90px;height: 90px;margin-bottom: 20px }@media (max-width:767px) {.dashboard--accordion__empty img {width: 54px;height: 54px;margin-bottom: 10px }}.dashboard--accordion__empty p {font-size: 14px;line-height: 20px;text-align: center }@media (max-width:767px) {.dashboard--accordion__empty p {font-size: 12px;line-height: 19px }}.dashboard--accordion__header {font-size: 20px;line-height: 30px;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;cursor: pointer }@media (max-width:767px) {.dashboard--accordion__header {font-size: 16px;line-height: 22px;padding-right: 25px }}.dashboard--accordion__header.big {font-size: 24px;line-height: 33px }@media (max-width:767px) {.dashboard--accordion__header.big {font-size: 18px;line-height: 22px }}.dashboard--accordion__header::after {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%232B2A29"/></svg>');background-position: center;background-size: cover;width: 24px;height: 24px;right: 0;transform: rotate(0);transition: all .3s ease-in-out }@media (max-width:767px) {.dashboard--accordion__header::after {width: 20px;height: 20px }}.dashboard--accordion__header .with-button {width: 100%;padding-right: 48px }.dashboard--accordion__header.collapsed::after {transform: rotate(180deg) }.dashboard--accordion__answer {padding-top: 24px }.dashboard--accordion__answer .accordion-item + .accordion-item {margin-top: 40px }.dashboard--accordion .uslider--card {background-color: #fff;border: 1px solid rgba(43, 42, 41, .1);border-radius: 12px;padding: 16px;box-shadow: 0 4px 20px rgba(0, 0, 0, .04);display: block }.dashboard--accordion .uslider--header {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;margin-bottom: 8px }.dashboard--accordion .uslider--header--detail {margin-left: 12px }.dashboard--accordion .uslider--header--detail .u-name {font-size: 14px;line-height: 22px;margin-bottom: 2px }.dashboard--accordion .uslider--header--detail .u-location {font-size: 12px;line-height: 18px }.dashboard--accordion .uslider--footer {padding-top: 16px;margin-top: 16px;border-top: 1px solid rgba(43, 42, 41, .1);display: -ms-flexbox;display: flex }.dashboard--accordion .uslider--footer--text {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column }.dashboard--accordion .uslider--footer--text + .uslider--footer--text {margin-left: 16px;padding-left: 16px;border-left: 1px solid rgba(43, 42, 41, .1) }.dashboard--accordion .uslider--footer--text span:nth-child(1) {font-size: 14px;line-height: 20px }.dashboard--accordion .uslider--footer--text span:nth-child(2) {font-size: 12px;line-height: 19px;margin-top: 3px }.dashboard--accordion .uslider--logo {width: 44px;height: 44px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;border-radius: 50%;border: 1px solid rgba(43, 42, 41, .1) }.dashboard--accordion .uslider--logo img {max-width: 30px;width: 100% }.dashboard--accordion .uslider--chip {display: inline-block;margin-left: 56px;font-size: 10px;line-height: 14px;padding: 4px 9px;background-color: rgba(43, 42, 41, .05);border-radius: 28px }@media (max-width:767px) {.dashboard .tabs {-ms-flex-wrap: nowrap;flex-wrap: nowrap;overflow-x: auto }}@media (max-width:767px) {.dashboard .tabs--link {white-space: nowrap }}.dashboard .filter-btn {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding: 10px 16px 10px 40px;border: 1px solid rgba(43, 42, 41, .1);font-size: 14px;line-height: 20px;border-radius: 28px;position: relative }.dashboard .filter-btn:hover {background-color: #df252a;color: #fff }.dashboard .filter-btn:hover::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 4.80029H2.40002L10.08 13.6296V19.7336L13.92 21.6003V13.6296L21.6 4.80029Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboard .filter-btn::before {position: absolute;content: '';width: 20px;height: 20px;left: 16px;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 4.80029H2.40002L10.08 13.6296V19.7336L13.92 21.6003V13.6296L21.6 4.80029Z" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat }.dashboard .snapshot-btn {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding: 10px 16px 10px 46px;border: 1px solid rgba(43, 42, 41, .1);font-size: 14px;line-height: 20px;border-radius: 28px;position: relative;background-color: #fff }.dashboard .snapshot-btn:hover {background-color: #df252a;color: #fff }.dashboard .snapshot-btn:hover::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.1668 15.8333C19.1668 16.2754 18.9912 16.6993 18.6787 17.0118C18.3661 17.3244 17.9422 17.5 17.5002 17.5H2.50016C2.05814 17.5 1.63421 17.3244 1.32165 17.0118C1.00909 16.6993 0.833496 16.2754 0.833496 15.8333V6.66667C0.833496 6.22464 1.00909 5.80072 1.32165 5.48816C1.63421 5.17559 2.05814 5 2.50016 5H5.8335L7.50016 2.5H12.5002L14.1668 5H17.5002C17.9422 5 18.3661 5.17559 18.6787 5.48816C18.9912 5.80072 19.1668 6.22464 19.1668 6.66667V15.8333Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.99984 14.1667C11.8408 14.1667 13.3332 12.6743 13.3332 10.8333C13.3332 8.99238 11.8408 7.5 9.99984 7.5C8.15889 7.5 6.6665 8.99238 6.6665 10.8333C6.6665 12.6743 8.15889 14.1667 9.99984 14.1667Z" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboard .snapshot-btn::before {position: absolute;content: '';width: 20px;height: 20px;left: 16px;background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.1668 15.8333C19.1668 16.2754 18.9912 16.6993 18.6787 17.0118C18.3661 17.3244 17.9422 17.5 17.5002 17.5H2.50016C2.05814 17.5 1.63421 17.3244 1.32165 17.0118C1.00909 16.6993 0.833496 16.2754 0.833496 15.8333V6.66667C0.833496 6.22464 1.00909 5.80072 1.32165 5.48816C1.63421 5.17559 2.05814 5 2.50016 5H5.8335L7.50016 2.5H12.5002L14.1668 5H17.5002C17.9422 5 18.3661 5.17559 18.6787 5.48816C18.9912 5.80072 19.1668 6.22464 19.1668 6.66667V15.8333Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.99984 14.1667C11.8408 14.1667 13.3332 12.6743 13.3332 10.8333C13.3332 8.99238 11.8408 7.5 9.99984 7.5C8.15889 7.5 6.6665 8.99238 6.6665 10.8333C6.6665 12.6743 8.15889 14.1667 9.99984 14.1667Z" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat }.dashboard .program--card {background-color: #fff;border: 1px solid rgba(43, 42, 41, .1) }.dashboard .program--card--header {margin-top: 0 }.dashboard .program--card .chips {margin-top: 16px }.dashboard .program--card--status {margin-top: 6px }.dashboard .program--card--footer {-ms-flex-pack: end;justify-content: flex-end }.dashboard .program--slider--body {position: relative }.dashboard .program--slider--body .slider-controls {position: absolute;top: 50%;left: 0;transform: translateY(-50%);z-index: 99;-ms-flex-pack: justify;justify-content: space-between;width: 100% }.dashboard .program--slider--body .slider-controls a {background-color: #fff;box-shadow: 0 4px 24px rgba(0, 0, 0, .04) }.dashboard .program--slider--body .slider-controls a:hover {background-color: #df252a }.dashboard .program--slider--body .slider-controls a:nth-child(1) {margin-left: -10px }.dashboard .program--slider--body .slider-controls a:nth-child(2) {margin-right: -10px }.dashboard .program--slider--heading {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-bottom: 20px }.dashboard .program--slider--heading p {font-size: 18px;line-height: 25px }@media (max-width:767px) {.dashboard .program--slider--heading p {font-size: 14px;line-height: 22px }}.dashboard .program--slider--heading .left {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap }.dashboard .program--slider--heading .left .filter-btn {margin-left: 16px }@media (max-width:767px) {.dashboard .program--slider--heading .left .filter-btn {margin-left: 0;margin-top: 10px }}@media (max-width:767px) {.dashboard .program--slider--heading.with-searchbar {-ms-flex-wrap: wrap;flex-wrap: wrap }}@media (max-width:767px) {.dashboard .program--slider--heading.with-searchbar .arrow {margin-top: 20px }}.dashboard .hero--searchbar {background-color: #fff;width: 100%;max-width: 100%;margin-bottom: 24px;margin-top: 0 }.dashboard .nextStep--item {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start }@media (max-width:991px) {.dashboard .nextStep--item {width: 100% }}@media (max-width:991px) {.dashboard .nextStep--item + .nextStep--item {margin-top: 10px }}.dashboard .nextStep--item img {width: 40px;height: 40px;border-radius: 50% }@media (max-width:767px) {.dashboard .nextStep--item img {width: 32px;height: 32px }}.dashboard .nextStep--item__desc {margin-left: 12px }@media (max-width:767px) {.dashboard .nextStep--item__desc {margin-left: 8px }}.dashboard .nextStep--item__desc a {font-size: 14px;line-height: 20px;margin-bottom: 4px;padding-right: 20px;position: relative;display: -ms-inline-flexbox;display: inline-flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.dashboard .nextStep--item__desc a {font-size: 12px;line-height: 19px }}.dashboard .nextStep--item__desc a::before {content: '';position: absolute;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>');background-position: center;background-size: cover;background-repeat: no-repeat;width: 16px;height: 16px;right: 0;transition: all .3s ease-in }@media (max-width:767px) {.dashboard .nextStep--item__desc a::before {width: 14px;height: 14px }}.dashboard .nextStep--item__desc a:hover {color: #df252a }.dashboard .nextStep--item__desc a:hover::before {right: -10px }.dashboard .nextStep--item__desc p {font-size: 12px;line-height: 19px }.dashboard .nextStep .dashboard--accordion__answer {display: -ms-flexbox;display: flex;padding-top: 16px;margin-top: 20px;border-top: 1px solid rgba(43, 42, 41, .1) }@media (max-width:991px) {.dashboard .nextStep .dashboard--accordion__answer {-ms-flex-wrap: wrap;flex-wrap: wrap }}.dashboard .nextStep .dashboard--accordion__header {-ms-flex-direction: column;flex-direction: column;-ms-flex-align: start;align-items: flex-start }.dashboard .nextStep .dashboard--accordion__header p:nth-child(1) {font-size: 18px;line-height: 25px;margin-bottom: 6px }@media (max-width:767px) {.dashboard .nextStep .dashboard--accordion__header p:nth-child(1) {font-size: 14px;line-height: 20px }}.dashboard .nextStep .dashboard--accordion__header p:nth-child(2) {font-size: 14px;line-height: 20px }@media (max-width:767px) {.dashboard .nextStep .dashboard--accordion__header p:nth-child(2) {font-size: 12px;line-height: 19px }}.dashboard .nextStep .dashboard--accordion__header::after {display: none }.dashboard .searchbar--secondary {border-radius: 28px;border: 1px solid rgba(43, 42, 41, .1);width: 354px;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 14px;line-height: 20px;padding: 10px 10px 10px 44px }@media (max-width:767px) {.dashboard .searchbar--secondary {width: 100% }}.dashboard .searchbar--secondary::before {position: absolute;content: '';width: 20px;height: 20px;left: 16px;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M21.0004 21L16.6504 16.65" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat }.dashboard .searchbar--secondary input {border: none;outline: 0;box-shadow: none;width: 100%;padding: 0 }.dashboard .application--card {background-color: #fff;border-radius: 12px;padding: 16px;display: block;position: relative;cursor: pointer }@media (max-width:991px) {.dashboard .application--card {margin-bottom: 20px }}.dashboard .application--card::before {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>');background-position: center;background-size: cover;background-repeat: no-repeat;width: 20px;height: 20px;right: 16px;top: 16px;transition: all .3s ease-in-out }.dashboard .application--card:hover span:nth-child(1) {color: #df252a }.dashboard .application--card:hover:before {right: 8px }.dashboard .application--card span {display: block }.dashboard .application--card span:nth-child(1) {font-size: 24px;line-height: 33px }@media (max-width:767px) {.dashboard .application--card span:nth-child(1) {font-size: 16px;line-height: 26px }}.dashboard .application--card span:nth-child(2) {font-size: 12px;line-height: 19px }@media (max-width:767px) {.dashboard .application--card span:nth-child(2) {font-size: 12px;line-height: 19px }}.dashboard .toast {position: fixed;right: 40px;bottom: 40px;padding: 24px;margin-top: 0;box-shadow: 0 6px 24px rgba(0, 0, 0, .12);border-radius: 10px;border: 1px solid rgba(43, 42, 41, .1);background-color: #fff;max-width: 460px;z-index: 999 }@media (max-width:991px) {.dashboard .toast {max-width: 350px;right: 10px;padding: 10px;bottom: 70px }}.dashboard .toast--title {font-size: 16px;line-height: 24px;margin-bottom: 8px }@media (max-width:767px) {.dashboard .toast--title {font-size: 14px;line-height: 20px;margin-bottom: 5px }}.dashboard .toast--time {font-size: 14px;line-height: 21px }@media (max-width:767px) {.dashboard .toast--time {font-size: 12px;line-height: 19px }}.dashboard .toast--footer {margin-top: 24px;text-align: right }@media (max-width:767px) {.dashboard .toast--footer {margin-top: 12px }}.dashboard .toast .left {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center;margin-right: 12px;padding-right: 12px;border-right: 1px solid rgba(43, 42, 41, .1) }.dashboard .toast .left span:nth-child(1) {font-size: 16px;line-height: 24px;margin-bottom: 2px }@media (max-width:767px) {.dashboard .toast .left span:nth-child(1) {font-size: 14px;line-height: 20px }}.dashboard .toast .left span:nth-child(2) {font-size: 14px;line-height: 21px;text-transform: uppercase }@media (max-width:767px) {.dashboard .toast .left span:nth-child(2) {font-size: 12px;line-height: 19px }}.dashboard .toast.shortlist-toast {left: 50%;transform: translateX(-50%);background-color: transparent;z-index: 999;padding: 0;box-shadow: none;border-radius: 0;border: none;max-width: inherit }@media (max-width:991px) {.dashboard .toast.shortlist-toast {max-width: 100%;left: 0;right: 0;transform: inherit;padding: 0 20px }}.dashboard .toast.shortlist-toast .toast-body {background-color: #403f3e;border-radius: 12px;padding: 12px 20px;width: -webkit-max-content;width: max-content;margin: 0 auto }.dashboard .toast.shortlist-toast .toast-body .toast-action {font-size: 12px;line-height: 19px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }@media (max-width:767px) {.dashboard .toast.shortlist-toast .toast-body .toast-action {-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: start;align-items: flex-start }}.dashboard .toast.shortlist-toast .toast-body .toast-action .left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-direction: row;flex-direction: row }@media (max-width:767px) {.dashboard .toast.shortlist-toast .toast-body .toast-action .left {-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: start;align-items: flex-start }}.dashboard .toast.shortlist-toast .toast-body .toast-action .left p {margin-right: 16px;padding-right: 16px;border-right: 1px solid #fff }@media (max-width:767px) {.dashboard .toast.shortlist-toast .toast-body .toast-action .left p {border-right: none;margin-bottom: 10px;margin-right: 0;padding-right: 0 }}.dashboard .toast.shortlist-toast .toast-body .toast-action .left .compare-btn {padding: 8px 20px;border-radius: 100px;background-color: #fff;border: 1px solid rgba(43, 42, 41, .1) }.dashboard .toast.shortlist-toast .toast-body .toast-action .left .compare-btn:not(:last-child) {margin-right: 16px }@media (max-width:767px) {.dashboard .toast.shortlist-toast .toast-body .toast-action .left .compare-btn:not(:last-child) {margin-right: 0;margin-bottom: 10px }}.dashboard .toast.shortlist-toast .toast-body .toast-action .left .compare-btn:hover {color: #df252a }.dashboard .toast.shortlist-toast .toast-body .toast-action .left .compare-btn.with-img {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboard .toast.shortlist-toast .toast-body .toast-action .left .compare-btn.with-img img {width: 16px;height: 16px;margin-right: 4px }.dashboard .toast.shortlist-toast .toast-body .toast-action .left .compare-btn.text--red:hover {color: #1a1a19 }.dashboard .toast.shortlist-toast .toast-body .toast-action .left .compare-btn.checkbox {position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding-left: 48px }@media (max-width:767px) {.dashboard .toast.shortlist-toast .toast-body .toast-action .left .compare-btn.checkbox {padding-left: 40px }}.dashboard .toast.shortlist-toast .toast-body .toast-action .left .compare-btn.checkbox:after {content: '';position: absolute;width: 24px;height: 24px;left: 20px;background-repeat: no-repeat;background-size: cover;background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="%23DF252A" xmlns="http://www.w3.org/2000/svg"><path d="M15.8327 17.5L9.99935 13.3333L4.16602 17.5V4.16667C4.16602 3.72464 4.34161 3.30072 4.65417 2.98816C4.96673 2.67559 5.39065 2.5 5.83268 2.5H14.166C14.608 2.5 15.032 2.67559 15.3445 2.98816C15.6571 3.30072 15.8327 3.72464 15.8327 4.16667V17.5Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>') }@media (max-width:767px) {.dashboard .toast.shortlist-toast .toast-body .toast-action .left .compare-btn.checkbox:after {width: 16px;height: 16px }}.dashboard .toast.shortlist-toast .toast-body .toast-action .right {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboard .toast.shortlist-toast .toast-body .toast-action .right .custom--switch input:checked + .round {background-color: #fff }.dashboard .toast.shortlist-toast .toast-body .toast-action .right .custom--switch input:checked + .round::before {background-color: #1a1a19 }.dashboard .toast.shortlist-toast .toast-body .toast-action .right .custom--switch .round {background-color: transparent;border-color: #fff }.dashboard .toast.shortlist-toast .toast-body .toast-action .right .custom--switch .round::before {background-color: #fff }.dashboard .toast.shortlist-toast .toast-body .toast-action .right .custom--switch--label {margin-right: 16px;margin-left: 50px;padding-right: 16px;border-right: 1px solid #fff }.dashboard .toast.shortlist-toast .toast-body .toast-action .right .custom--switch--label + .cancel-btn {margin-left: 0 }.dashboard .toast.shortlist-toast .toast-body .toast-action .right .custom--switch--label p {font-size: 12px;line-height: 19px }.dashboard .toast.shortlist-toast .toast-body .toast-action .cancel-btn {display: block;margin-left: 50px }@media (max-width:767px) {.dashboard .toast.shortlist-toast .toast-body .toast-action .cancel-btn {margin-top: 10px;margin-left: 0 }}.dashboard .toast.shortlist-toast .toast-body .toast-action .cancel-btn:hover {color: #df252a }.dashboard .button-rounded {padding: 6px 16px }.dashboard .button-rounded__white {color: #1a1a19 }.dashboard .button-rounded__white:hover {background-color: #1a1a19;color: #fff }.dashboard .button-rounded__dark {border: 1px solid transparent }.dashboard .button-rounded__dark:hover {background-color: transparent;color: #1a1a19 !important;border: 1px solid #1a1a19 }.dashboard .advisorBio--card {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-direction: column;flex-direction: column }.dashboard .advisorBio--card .submit {width: 100%;margin-top: 32px }@media (max-width:767px) {.dashboard .advisorBio--card .submit {margin-top: 24px }}.dashboard .advisorBio--card .submit a {-ms-flex: 1;flex: 1 }.dashboard .advisorBio--image {width: 128px;height: 128px;border-radius: 50%;margin: 14px auto 0 }@media (max-width:767px) {.dashboard .advisorBio--image {width: 64px;height: 64px }}.dashboard .advisorBio--name {font-size: 24px;line-height: 33px;margin-top: 24px;margin-bottom: 4px }@media (max-width:767px) {.dashboard .advisorBio--name {font-size: 16px;line-height: 22px;margin: 10px 0 4px }}.dashboard .advisorBio--designation, .dashboard .advisorBio--location {font-size: 16px;line-height: 24px }@media (max-width:767px) {.dashboard .advisorBio--designation, .dashboard .advisorBio--location {font-size: 12px;line-height: 19px }}.dashboard .advisorBio--designation {margin-top: 28px }@media (max-width:767px) {.dashboard .advisorBio--designation {margin-top: 12px }}.dashboard .advisorBio--rich p {font-size: 14px;line-height: 20px }@media (max-width:767px) {.dashboard .advisorBio--rich p {font-size: 12px;line-height: 19px }}.dashboard .advisorBio--rich p + p {margin-top: 10px }@media (max-width:991px) {.dashboard .advisorBio--links .form--footer--link {-ms-flex-pack: justify;justify-content: space-between }}@media (max-width:767px) {.dashboard .advisorBio--links .form--footer--link {-ms-flex-wrap: wrap;flex-wrap: wrap }}@media (max-width:767px) {.dashboard .advisorBio--links .form--footer--link a {width: 100% }}@media (max-width:991px) {.dashboard .advisorBio--links .form--footer--link a + a {margin-left: 15px }}@media (max-width:767px) {.dashboard .advisorBio--links .form--footer--link a + a {margin-left: 0;margin-top: 10px }}.dashboard.advisorBio {padding: 112px 52px 100px 170px }@media (max-width:1024px) {.dashboard.advisorBio {padding: 100px 20px 76px }}.dashboard.advisorBio .testimonial .slider-controls {margin-top: 24px }@media (max-width:767px) {.dashboard.advisorBio .testimonial .slider-controls {margin-top: 15px }}.dashboard.advisorBio .dp-edit {position: relative }.dashboard.advisorBio .dp-edit .edit-btn {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;position: absolute;bottom: 8px;right: 0;width: 32px;height: 32px;background-color: #df252a;border: 3px solid #fff;border-radius: 50% }.dashboard.advisorBio .dp-edit .edit-btn .edit-icon {width: 12px;height: 12px;background-size: cover;background-position: center;background-repeat: no-repeat;background-image: url('data:image/svg+xml;utf-8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.778 5.1956L13.7781 5.19563L13.7838 5.18974C14.7308 4.22166 14.7391 2.64279 13.778 1.68168C12.8053 0.708971 11.2368 0.708971 10.2641 1.68168L2.88957 9.05622C2.82017 9.12562 2.76507 9.20796 2.72739 9.29858L0.980857 13.4987C0.864236 13.7791 0.928281 14.1022 1.14306 14.317C1.35785 14.5318 1.68096 14.5958 1.9614 14.4791L6.16118 12.7323C6.25178 12.6946 6.3341 12.6395 6.40348 12.5701L13.778 5.1956Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboard.advisorBio .advisor-profile-action {position: fixed;bottom: 0;background: #fff;width: 100%;left: 0;right: 0;padding: 20px 52px;box-shadow: 0 4px 24px rgba(0, 0, 0, .08) }.dashboard p.dashboard--accordion__header {margin-bottom: 24px }.dashboard p.dashboard--accordion__header:after {display: none }.dashboard .with--action {margin-bottom: 20px }.dashboard .arrow span {font-size: 14px;line-height: 20px;padding-right: 20px;white-space: nowrap }.dashboard .arrow span::before {width: 16px;height: 16px }@media (max-width:767px) {.dashboard.event .explore.profile-tab {margin-top: 20px }}@media (max-width:767px) {.dashboard.event .explore.profile-tab .tabs {-ms-flex-wrap: nowrap;flex-wrap: nowrap;overflow-x: auto }}.dashboard.event .explore.profile-tab .tabs:after {bottom: 0 }@media (max-width:767px) {.dashboard.event .explore.profile-tab .tabs--link {white-space: nowrap }}.dashboard.event .explore .tabs--link {font-size: 14px;line-height: 20px;color: #727271;display: -ms-flexbox;display: flex }.dashboard.event .explore .tabs--link.active {color: #2b2a29 }.dashboard.event .explore .tabs--info {position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding-right: 20px }.dashboard.event .explore .tabs--info:before {width: calc(100% - 20px) }.dashboard.event .explore .tabs--info::after {background-image: url(../assets/images/info-yellow.svg);background-size: cover;background-position: center;background-repeat: no-repeat;position: absolute;content: '';width: 16px;height: 16px;right: 0 }.dashboard.event .explore .tabs::after {bottom: 0 }.dashboard.event .explore .tabs--item + .tabs--item {margin-left: 40px }.dashboard.event .explore .tabs--content {margin-top: 25px }.dashboard.shortlist .topCard .program--card {margin-bottom: 24px;min-height: inherit }.dashboard.shortlist .topCard .program--card--header {-ms-flex-align: start;align-items: flex-start }@media (max-width:991px) {.dashboard.shortlist .topCard .program--card--header {-ms-flex-wrap: wrap;flex-wrap: wrap }}.dashboard.shortlist .topCard .program--card--header .right {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:991px) {.dashboard.shortlist .topCard .program--card--header .right {margin-top: 20px;-ms-flex-pack: justify;justify-content: space-between;width: 100% }}.dashboard.shortlist .topCard .program--card--header .right .action {margin-left: 12px }.dashboard.shortlist .topCard .program--card--detail {-ms-flex-wrap: wrap;flex-wrap: wrap }.dashboard.shortlist .topCard .program--card--detail__item {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;max-width: 33.333%;width: 100%;margin-bottom: 24px }@media (max-width:991px) {.dashboard.shortlist .topCard .program--card--detail__item {max-width: 50% }}.dashboard.shortlist .topCard .program--card--detail__item .circle {min-width: 40px;height: 40px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: rgba(179, 179, 178, .15);margin-right: 12px }.dashboard.shortlist .topCard .program--card--detail__item .circle img {width: 20px;height: 20px }@media (max-width:991px) {.dashboard.shortlist .topCard .program--slider--heading {-ms-flex-wrap: wrap;flex-wrap: wrap }}.dashboard.shortlist .topCard .header-info {font-size: 14px;line-height: 22px }@media (max-width:991px) {.dashboard.shortlist .topCard .header-info {margin-bottom: 10px }}@media (max-width:767px) {.dashboard.shortlist .topCard .header-info {margin-bottom: 0 }}.dashboard.shortlist .topCard .career {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.dashboard.shortlist .topCard .career {-ms-flex-wrap: wrap;flex-wrap: wrap }}.dashboard.shortlist .topCard .career .position--heading__location {padding: 9px 16px;height: 42px }.dashboard.shortlist .topCard .career .position--heading__location > span {font-size: 14px;line-height: 22px }@media (max-width:767px) {.dashboard.shortlist .topCard .career .position--heading__location {margin-left: 0 }}.dashboard.shortlist .topCard .career .position--heading__drop .dropdown-toggle {font-size: 14px;line-height: 22px;border: none !important }.dashboard.shortlist .topCard .career .position--heading__drop .dropdown-toggle::after {width: 20px;height: 20px }.dashboard.shortlist .topCard .career .position--heading__drop .dropdown-menu {font-size: 14px;line-height: 22px;border-radius: 8px;box-shadow: -4px 4px 16px rgba(43, 42, 41, .04) }.dashboard.shortlist .topCard .career .position--heading__drop .dropdown-menu .dropdown-item.active, .dashboard.shortlist .topCard .career .position--heading__drop .dropdown-menu .dropdown-item:active {background-color: transparent;color: #2b2a29 }.dashboard.shortlist .topCard .career .position--heading__drop .dropdown-menu .dropdown-item {padding: 10px 15px }.dashboard.shortlist .topCard .career .position--heading__drop .dropdown-menu .bs-ok-default {right: 20px;top: 12px }.dashboard.shortlist .topCard .career .position--heading__drop .dropdown-menu .bs-ok-default:after {border-width: 0 1.5px 1.5px 0 }@media (max-width:767px) {.dashboard.shortlist .topCard .career .searchbar--secondary {width: 100%;margin: 10px 0 }}.dashboard.shortlist .topCard .career .filter-btn {margin-left: 8px }@media (max-width:767px) {.dashboard.shortlist .topCard .career .filter-btn {margin-left: 0;margin-top: 10px }}.dashboard.shortlist .dashboard--card.first-card {border-radius: 0 0 12px 12px }.dashboard.shortlist .shortlist-table .table td:nth-child(3), .dashboard.shortlist .shortlist-table .table th:nth-child(3) {min-width: 350px }.dashboard.shortlist .shortlist-table .tabs {background-color: #fff;border-radius: 12px 12px 0 0;padding: 24px 24px 0 }.dashboard.shortlist .shortlist-table .tabs:after {left: 0 }.dashboard .action {width: 32px;height: 32px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: #fff;border: 1px solid rgba(43, 42, 41, .1);position: relative }@media (max-width:1024px) {.dashboard .action {width: 32px;height: 32px }}.dashboard .action::before {position: absolute;content: '';width: 20px;height: 20px;background-repeat: no-repeat;background-position: center;background-size: cover }@media (max-width:1024px) {.dashboard .action::before {width: 18px;height: 18px }}.dashboard .action:hover {background-color: #df252a }.dashboard .action:hover.delete::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.1032 7.88965C16.1032 7.88965 15.6507 14.1353 15.3882 16.4995C15.2632 17.6287 14.5657 17.6571 13.4232 17.678C11.249 17.7171 9.07234 17.7196 6.89901 17.6738C5.79984 17.6513 5.11401 17.6087 4.99151 16.4995C4.72734 14.1145 4.27734 7.88965 4.27734 7.88965" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/><path d="M14.5335 5.19949C13.8793 5.19949 13.316 4.73699 13.1877 4.09616L12.9852 3.08283C12.8602 2.61533 12.4368 2.29199 11.9543 2.29199H8.42682C7.94432 2.29199 7.52099 2.61533 7.39599 3.08283L7.19349 4.09616C7.06516 4.73699 6.50182 5.19949 5.84766 5.19949" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/><path d="M17.2567 5.19938H3.125" stroke="%23ffffff" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.dashboard .action.delete::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.1032 7.88965C16.1032 7.88965 15.6507 14.1353 15.3882 16.4995C15.2632 17.6287 14.5657 17.6571 13.4232 17.678C11.249 17.7171 9.07234 17.7196 6.89901 17.6738C5.79984 17.6513 5.11401 17.6087 4.99151 16.4995C4.72734 14.1145 4.27734 7.88965 4.27734 7.88965" stroke="%23727271" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/><path d="M14.5335 5.19949C13.8793 5.19949 13.316 4.73699 13.1877 4.09616L12.9852 3.08283C12.8602 2.61533 12.4368 2.29199 11.9543 2.29199H8.42682C7.94432 2.29199 7.52099 2.61533 7.39599 3.08283L7.19349 4.09616C7.06516 4.73699 6.50182 5.19949 5.84766 5.19949" stroke="%23727271" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/><path d="M17.2567 5.19938H3.125" stroke="%23727271" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.dashboard .button-rounded__white {color: #1a1a19 }.dashboard .button-rounded__white:hover {background-color: #1a1a19;color: #fff }.dashboard--filter {position: fixed;right: -100%;top: 0;bottom: 0;padding: 0;max-height: 100%;z-index: 99999;opacity: 0;visibility: hidden;transition: all .2s ease-in-out }.dashboard--filter.show {opacity: 1;visibility: visible;right: 0 }.dashboard--filter .backdrop {position: fixed;content: '';background-color: rgba(43, 42, 41, .5);left: 0;right: 0;bottom: 0;top: 0;z-index: -1 }.dashboard--filter .white-form {width: 458px;border-radius: 12px 0 0 12px;background-color: #fff;padding: 40px;height: 100%;overflow-x: hidden }.dashboard--filter .button-rounded__white {color: #1a1a19 }.dashboard--filter .button-rounded__white:hover {background-color: #1a1a19;color: #fff }.dashboard--filter .searchbar--secondary {border-radius: 28px;border: 1px solid rgba(43, 42, 41, .1);width: 100%;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 14px;line-height: 20px;padding: 10px 10px 10px 44px;margin-bottom: 20px }@media (max-width:767px) {.dashboard--filter .searchbar--secondary {width: 100% }}.dashboard--filter .searchbar--secondary::before {position: absolute;content: '';width: 20px;height: 20px;left: 16px;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M21.0004 21L16.6504 16.65" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat }.dashboard--filter .searchbar--secondary input {border: none;outline: 0;box-shadow: none;width: 100%;padding: 0 }.dashboard--filter .filter-body {max-height: 90%;overflow-y: auto;overflow-x: hidden }.dashboard--filter .filter--footer {-ms-flex-pack: justify;justify-content: space-between;display: -ms-flexbox;display: flex;position: absolute;bottom: 15px;left: 0;width: 100%;padding: 0 40px }.dashboard--filter .filter--footer a {-ms-flex: 1;flex: 1 }.dashboard--filter.assignAdvisor .mega--close {width: 32px;height: 32px;transform: inherit;position: relative }.dashboard--filter.assignAdvisor .mega--close::after {width: 16px;height: 16px }.dashboard--filter.assignAdvisor .filter-body {max-height: 100% }.dashboard--filter.assignAdvisor .filter--heading {-ms-flex-align: start;align-items: flex-start;border-bottom: none }.dashboard--filter.assignAdvisor .filter--heading h2 {font-size: 20px;line-height: 28px;margin-bottom: 14px }.dashboard--filter.assignAdvisor .filter--heading p {font-size: 14px;line-height: 20px }.dashboard--filter.assignAdvisor .filter--assign > .item {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-bottom: 16px;padding-bottom: 16px;border-bottom: 1px solid rgba(43, 42, 41, .1) }.dashboard--filter.assignAdvisor .filter--assign > .item .advisorDetail {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboard--filter.assignAdvisor .filter--assign > .item .advisorDetail > .left img {width: 40px;height: 40px;border-radius: 50% }.dashboard--filter.assignAdvisor .filter--assign > .item .advisorDetail > .right {padding-left: 8px }.dashboard--filter.assignAdvisor .filter--assign > .item .advisorDetail > .right .name {font-size: 14px;line-height: 20px;margin-bottom: 4px }.dashboard--filter.assignAdvisor .filter--assign > .item .advisorDetail > .right .designation {font-size: 12px;line-height: 19px }.dashboard--filter.assignAdvisor .filter--assign > .item .arrow span {font-size: 12px;line-height: 19px;padding-right: 20px }.dashboard--filter.assignAdvisor .filter--assign > .item .arrow span::before {width: 16px;height: 16px }.dashboard .custom--radio {position: relative;display: -ms-flexbox;display: flex;cursor: pointer }.dashboard .custom--radio input {display: none }.dashboard .custom--radio input:checked ~ .custom--radio__checkmark {background-color: transparent;border-color: #2b2a29 }.dashboard .custom--radio input:checked ~ .custom--radio__checkmark::after {display: block }.dashboard .custom--radio input:checked ~ .custom--radio__label {border-color: #2b2a29 }.dashboard .custom--radio__checkmark {position: absolute;width: 18px;height: 18px;left: 12px;border-radius: 50%;border: 1px solid #b3b3b2;top: 14px }@media (max-width:767px) {.dashboard .custom--radio__checkmark {width: 13px;height: 13px }}.dashboard .custom--radio__checkmark:after {position: absolute;content: '';width: 10px;height: 10px;border-radius: 50%;background-color: #2b2a29;background-image: none;top: 50%;left: 50%;transform: translate(-50%, -50%);display: none }@media (max-width:767px) {.dashboard .custom--radio__checkmark:after {width: 6px;height: 6px }}.dashboard .custom--radio__label {font-size: 14px;line-height: 20px;background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .05);border-radius: 8px;padding: 12px 12px 12px 42px;width: 100% }@media (max-width:767px) {.dashboard .custom--radio__label {font-size: 12px;line-height: 19px;padding: 10px 10px 10px 30px }}.dashboard .custom--checkbox.bookmark {min-width: 32px;height: 32px }.dashboard .table .custom--checkbox {width: 16px;height: 16px }.dashboard .table .custom--checkbox__checkmark {cursor: pointer }.dashboard .table .custom--checkbox input {display: block;opacity: 0;z-index: 999;cursor: pointer;width: 16px;height: 16px }.dashboard .table .drag {min-width: auto;padding: 0 !important }.dashboard .table .drag--td {cursor: move;padding-left: 0 !important;padding-right: 0 !important }.dashboard .table .drag--td img {padding-top: 5px }.dashboard .table--flag {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboard .table--flag.uni img {width: 40px;height: 40px }.dashboard .table--flag img {width: 18px;height: 18px;border-radius: 50%;margin-right: 8px }.dashboard .table--dot {padding-left: 18px;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboard .table--dot::before {position: absolute;content: '';width: 10px;height: 10px;left: 0;border-radius: 50% }.dashboard .table--dot__green:before {background-color: #1bb161 }.dashboard .table--dot__red:before {background-color: #df252a }.dashboard .table--program {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.dashboard .table--program .button-rounded {padding: 8px 20px;font-size: 12px;line-height: 16px }.dashboard .table--program--name {max-width: 140px;width: 100%;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal }.dashboard .table--program .right {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboard .table--program .right .action {margin-left: 12px }.dashboard.profile .user--heading {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;-ms-flex-pack: justify;justify-content: space-between;-ms-flex-wrap: wrap;flex-wrap: wrap }.dashboard.profile .user--heading .info {max-width: 465px;-ms-flex-align: start;align-items: flex-start }.dashboard.profile .user--heading .searchbar--secondary {background-color: #fff }@media (max-width:991px) {.dashboard.profile .user--heading .searchbar--secondary {-ms-flex-order: 0;order: 0 }}@media (max-width:767px) {.dashboard.profile .user--heading .searchbar--secondary {width: 100%;margin-bottom: 20px }}.dashboard.profile .user--heading .right {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:991px) {.dashboard.profile .user--heading .right {margin-top: 20px;-ms-flex-pack: justify;justify-content: space-between;width: 100% }}@media (max-width:767px) {.dashboard.profile .user--heading .right {-ms-flex-wrap: wrap;flex-wrap: wrap }}.dashboard.profile .user--heading .right .progress {width: 155px;height: 6px;border-radius: 20px;background-color: rgba(27, 177, 97, .15) }.dashboard.profile .user--heading .right .progress--body {margin-right: 20px }@media (max-width:991px) {.dashboard.profile .user--heading .right .progress--body {-ms-flex-order: 1;order: 1;margin-right: 0;margin-left: 20px }}@media (max-width:767px) {.dashboard.profile .user--heading .right .progress--body {margin-left: 0 }}.dashboard.profile .user--heading .right .progress--body > span {font-size: 12px;line-height: 19px;margin-bottom: 5px }.dashboard.profile .user--heading .right .progress .progress-bar {height: 100%;border-radius: 20px;background-color: #1bb161 }.dashboard.event .user--heading {margin-bottom: 20px }.dashboard.event .user--instruction {max-width: 700px }.dashboard.event .career--left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.dashboard.event .career--left {-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-pack: justify;justify-content: space-between }}.dashboard.event .career--left .position--heading__location {background-color: #fff;padding: 10px 16px }@media (max-width:767px) {.dashboard.event .career--left .position--heading__location {margin-left: 0;margin-bottom: 10px }}.dashboard.event .career--left .position--heading__search {margin-left: 8px;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>');background-color: #1a1a19 }.dashboard.instituteDetail .faq--accordion {background-color: #fff }@media (max-width:991px) {.dashboard.instituteDetail .program--row {-ms-flex-wrap: wrap;flex-wrap: wrap }}@media (max-width:991px) {.dashboard.instituteDetail .program--row .program--card--header {display: -ms-flexbox;display: flex;margin-top: 20px }}@media (max-width:991px) {.dashboard.instituteDetail .topCard .program--card--header {display: block }}.dashboard.instituteDetail .topCard .program--card--detail__item {max-width: 20%;margin-bottom: 0 }@media (max-width:991px) {.dashboard.instituteDetail .topCard .program--card--detail__item {margin-bottom: 20px;max-width: 33.33% }}@media (max-width:767px) {.dashboard.instituteDetail .topCard .program--card--detail__item {max-width: 50% }}.dashboard.notification .stepper--heading {font-size: 24px;line-height: 34px;margin-bottom: 20px;font-weight: 600;padding-left: 36px }@media (max-width:767px) {.dashboard.notification .stepper--heading {font-size: 18px;line-height: 24px;margin-bottom: 15px }}.dashboard.notification .stepper--heading::before {width: 24px;height: 24px }.dashboard.notification .notification--content {padding-left: 25px }@media (max-width:767px) {.dashboard.notification .notification--content {padding-left: 12px }}.dashboard.notification .notification--lists {max-height: calc(100vh - 250px);overflow-y: auto }.dashboard.notification .notification--lists__icon {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;position: relative;min-width: 40px;height: 40px;border-radius: 50%;background-color: rgba(179, 179, 178, .15) }@media (max-width:767px) {.dashboard.notification .notification--lists__icon {min-width: 32px;height: 32px }}.dashboard.notification .notification--lists__icon::before {content: '';position: absolute;width: 20px;height: 20px;background-size: cover;background-position: center;background-repeat: no-repeat }@media (max-width:767px) {.dashboard.notification .notification--lists__icon::before {width: 14px;height: 14px }}.dashboard.notification .notification--lists__icon.application:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 3.33333H7C7.79565 3.33333 8.55871 3.66501 9.12132 4.2554C9.68393 4.84579 10 5.64654 10 6.48148V17.5C10 16.8738 9.76295 16.2732 9.34099 15.8304C8.91903 15.3876 8.34674 15.1389 7.75 15.1389H2.5V3.33333Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="square"/><path d="M17.5 3.33331H13C12.2044 3.33331 11.4413 3.66499 10.8787 4.25538C10.3161 4.84578 10 5.64652 10 6.48146V17.5C10 16.8738 10.2371 16.2732 10.659 15.8304C11.081 15.3876 11.6533 15.1389 12.25 15.1389H17.5V3.33331Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="square"/></svg>') }.dashboard.notification .notification--lists__icon.upcoming:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>') }.dashboard.notification .notification--lists__icon.offer:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.75391 7.05927C4.75391 4.13513 7.08427 1.78174 9.93801 1.78174C12.7917 1.78174 15.1221 4.13513 15.1221 7.05927C15.1221 9.69479 13.2291 11.8667 10.766 12.2697C10.4786 12.3029 10.1631 12.3228 9.81739 12.3228C9.6527 12.3228 9.46973 12.313 9.27636 12.2941C6.73269 11.9637 4.75391 9.75382 4.75391 7.05927ZM5.96729 12.1961C4.46595 10.9995 3.50391 9.14056 3.50391 7.05927C3.50391 3.46365 6.37519 0.531738 9.93801 0.531738C13.5008 0.531738 16.3721 3.46365 16.3721 7.05927C16.3721 9.14027 15.4103 10.9989 13.9094 12.1956V18.5219C13.9094 18.7344 13.8014 18.9324 13.6226 19.0474C13.4439 19.1625 13.219 19.1788 13.0255 19.0908L9.82703 17.6353L6.86691 19.0833C6.6732 19.1781 6.44433 19.1663 6.26139 19.0521C6.07845 18.9379 5.96729 18.7375 5.96729 18.5219V12.1961ZM9.12433 13.5352C8.74741 13.497 8.35065 13.4309 7.96948 13.3425C7.71768 13.284 7.46244 13.2135 7.21729 13.1306V17.5204L9.54276 16.3829C9.71054 16.3008 9.90624 16.2981 10.0762 16.3754L12.6594 17.5508V13.1148C12.2398 13.2601 11.6783 13.4148 10.9783 13.5021C10.6398 13.5578 10.2923 13.5868 9.93801 13.5868C9.6623 13.5868 9.39074 13.5692 9.12433 13.5352Z" fill="%23727271"/><path d="M9.93748 9.81372C11.4347 9.81372 12.6484 8.58048 12.6484 7.0592C12.6484 5.53793 11.4347 4.30469 9.93748 4.30469C8.44028 4.30469 7.22656 5.53793 7.22656 7.0592C7.22656 8.58048 8.44028 9.81372 9.93748 9.81372Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.dashboard.notification .notification--lists__icon.shortlist:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.8327 17.5L9.99935 13.3333L4.16602 17.5V4.16667C4.16602 3.72464 4.34161 3.30072 4.65417 2.98816C4.96673 2.67559 5.39065 2.5 5.83268 2.5H14.166C14.608 2.5 15.032 2.67559 15.3445 2.98816C15.6571 3.30072 15.8327 3.72464 15.8327 4.16667V17.5Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.dashboard.notification .notification--lists li {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.dashboard.notification .notification--lists li + li {margin-top: 20px;padding-top: 20px;border-top: 1px solid rgba(43, 42, 41, .1) }@media (max-width:767px) {.dashboard.notification .notification--lists li + li {margin-top: 10px;padding-top: 10px }}@media (max-width:767px) {.dashboard.notification .notification--lists li {-ms-flex-wrap: wrap;flex-wrap: wrap }}.dashboard.notification .notification--lists li .left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.dashboard.notification .notification--lists li .left {-ms-flex-align: start;align-items: flex-start }}.dashboard.notification .notification--lists li .left + .right {margin-left: 10px }@media (max-width:767px) {.dashboard.notification .notification--lists li .left + .right {margin-left: 0 }}@media (max-width:767px) {.dashboard.notification .notification--lists li .right {margin-top: 10px;padding-left: 44px }}.dashboard.notification .notification--lists li .title {font-size: 16px;line-height: 22px;margin-bottom: 8px }@media (max-width:767px) {.dashboard.notification .notification--lists li .title {font-size: 14px;line-height: 20px;margin-bottom: 5px }}.dashboard.notification .notification--lists li .time {font-size: 14px;line-height: 20px }@media (max-width:767px) {.dashboard.notification .notification--lists li .time {font-size: 12px }}.dashboard.institute .sidebar {border-right: 0;background-color: #fff }.dashboard.institute .filter--sticky {padding-top: 32px;top: 0 }.dashboard.institute .filter--sticky .filter {padding-top: 0 }.dashboard.institute .filter--sticky .filter .white-form {margin-top: 0 }@media (max-width:767px) {.dashboard.exploreProgram .dashboard--card {padding: 0;background-color: transparent }}.dashboard.exploreProgram .program--card {box-shadow: -4px 4px 16px rgba(43, 42, 41, .04);margin-bottom: 0 !important }.dashboard.exploreProgram .program--card + .program--card {margin-top: 12px }@media (max-width:991px) {.dashboard.exploreProgram .program--row {-ms-flex-wrap: wrap;flex-wrap: wrap }}@media (max-width:991px) {.dashboard.exploreProgram .program--row .program--card--header {display: -ms-flexbox;display: flex;margin-top: 20px }}@media (max-width:991px) {.dashboard.exploreProgram .topCard .program--card--header {display: block }}.dashboard.exploreProgram .topCard .program--card--header .right a {margin-left: 12px }.dashboard.exploreProgram .topCard .program--card--detail__item {max-width: 20%;margin-bottom: 0 }@media (max-width:991px) {.dashboard.exploreProgram .topCard .program--card--detail__item {margin-bottom: 20px;max-width: 33.33% }}@media (max-width:767px) {.dashboard.exploreProgram .topCard .program--card--detail__item {max-width: 50% }}.dashboard.exploreProgram .topCard .program--card--detail__item.more {max-width: 25%;margin-bottom: 24px }@media (max-width:1199px) {.dashboard.exploreProgram .topCard .program--card--detail__item.more {max-width: 33.33% }}@media (max-width:991px) {.dashboard.exploreProgram .topCard .program--card--detail__item.more {margin-bottom: 20px;max-width: 33.33% }}@media (max-width:767px) {.dashboard.exploreProgram .topCard .program--card--detail__item.more {max-width: 50% }}.dashboard.exploreProgram .topCard .program--card--detail__item.more .program--card--score--item:not(:last-child) {margin-right: 5px }.dashboard.exploreProgram .position--heading__left .section--title {margin-bottom: 24px;font-size: 36px;line-height: 46px }@media (max-width:767px) {.dashboard.exploreProgram .position--heading__left .section--title {font-size: 26px;line-height: 32px }}.dashboard.exploreProgram .position--heading__location, .dashboard.exploreProgram .position--heading__search {background-color: #fff }.dashboard.document .position--heading__location {background-color: #fff }.dashboard.document .dashboard--card .progress--body {width: 157px }.dashboard.document .dashboard--card .progress--body span {font-size: 12px;line-height: 19px;margin-bottom: 5px;display: block }@media (max-width:767px) {.dashboard.document .dashboard--card .progress--body span {margin-top: 10px }}.dashboard.document .dashboard--card .progress--body .progress {height: 6px;border-radius: 20px;background-color: rgba(27, 177, 97, .1) }.dashboard.document .dashboard--card .progress--body .progress > div {border-radius: 20px;background-color: #1bb161 }.dashboard.document .viewBtnBody {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;background-color: #fff;padding: 8px 16px;border-radius: 98px }.dashboard.document .viewBtnBody .viewBtn {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;position: relative;box-sizing: content-box;width: 24px;height: 24px }.dashboard.document .viewBtnBody .viewBtn::after {position: absolute;content: '';width: 24px;height: 24px;background-size: cover;background-position: center;background-repeat: no-repeat }.dashboard.document .viewBtnBody .viewBtn.active.grid:after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.75" y="3.75" width="6.5" height="6.5" rx="1.25" stroke="%231a1a19" stroke-width="1.5"/><rect x="13.75" y="3.75" width="6.5" height="6.5" rx="1.25" stroke="%231a1a19" stroke-width="1.5"/><rect x="3.75" y="13.75" width="6.5" height="6.5" rx="1.25" stroke="%231a1a19" stroke-width="1.5"/><rect x="13.75" y="13.75" width="6.5" height="6.5" rx="1.25" stroke="%231a1a19" stroke-width="1.5"/></svg>') }.dashboard.document .viewBtnBody .viewBtn.active.list::after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="4.92857" cy="5.92857" r="1.92857" fill="%231a1a19"/><circle cx="4.92857" cy="12.3573" r="1.92857" fill="%231a1a19"/><circle cx="4.92857" cy="18.786" r="1.92857" fill="%231a1a19"/><path d="M9.42871 5.92871H21.0001" stroke="%231a1a19" stroke-width="1.5"/><path d="M9.42871 12.3574H21.0001" stroke="%231a1a19" stroke-width="1.5"/><path d="M9.42871 18.7861H21.0001" stroke="%231a1a19" stroke-width="1.5"/></svg>') }.dashboard.document .viewBtnBody .viewBtn.grid:after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.75" y="3.75" width="6.5" height="6.5" rx="1.25" stroke="%23B3B3B2" stroke-width="1.5"/><rect x="13.75" y="3.75" width="6.5" height="6.5" rx="1.25" stroke="%23B3B3B2" stroke-width="1.5"/><rect x="3.75" y="13.75" width="6.5" height="6.5" rx="1.25" stroke="%23B3B3B2" stroke-width="1.5"/><rect x="13.75" y="13.75" width="6.5" height="6.5" rx="1.25" stroke="%23B3B3B2" stroke-width="1.5"/></svg>') }.dashboard.document .viewBtnBody .viewBtn.list::after {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="4.92857" cy="5.92857" r="1.92857" fill="%23B3B3B2"/><circle cx="4.92857" cy="12.3573" r="1.92857" fill="%23B3B3B2"/><circle cx="4.92857" cy="18.786" r="1.92857" fill="%23B3B3B2"/><path d="M9.42871 5.92871H21.0001" stroke="%23B3B3B2" stroke-width="1.5"/><path d="M9.42871 12.3574H21.0001" stroke="%23B3B3B2" stroke-width="1.5"/><path d="M9.42871 18.7861H21.0001" stroke="%23B3B3B2" stroke-width="1.5"/></svg>') }.dashboard.document .viewBtnBody .viewBtn + .viewBtn {border-left: 1px solid rgba(43, 42, 41, .1);padding-left: 8px;margin-left: 8px }.dashboard.application .shortlist-table .table td:nth-child(3), .dashboard.application .shortlist-table .table th:nth-child(3) {min-width: inherit }.dashboard.application .shortlist-table .table--program--name {max-width: inherit }.dashboard.application .shortlist-table .table--university {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboard.application .shortlist-table .table--university .left {margin-right: 12px }.dashboard.application .shortlist-table .table--university .left img {border-radius: 50%;min-width: 34px;height: 34px }.dashboard.application .shortlist-table .table--university .right p:nth-child(1) {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 1;overflow: hidden;text-overflow: ellipsis;white-space: normal }.dashboard.application .shortlist-table .table .withTooltip img {width: 16px;height: 16px;margin-left: 8px }.delete--modal .modal-content {border-radius: 12px }.delete--modal .modal-body {padding: 24px }.delete--modal--desc {font-size: 14px;line-height: 20px;margin: 10px 0 28px;max-width: 352px }.delete--modal--desc span {font-style: italic;font-weight: 500 }.delete--modal--control {display: -ms-flexbox;display: flex;-ms-flex-pack: end;justify-content: flex-end }.delete--modal--control .button-rounded__white {color: #2b2a29 }.delete--modal--control .button-rounded__white:hover {color: #fff;background-color: #2b2a29 }.delete--modal.requestModal .close {margin: 10px 9px 0 auto }.delete--modal.requestModal img {width: 56px;height: 56px;margin: 0 auto 12px }.delete--modal.requestModal .modal-body {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center }.delete--modal.requestModal p {text-align: center }.delete--modal.requestModal .delete--modal--control {width: 100%;-ms-flex-pack: justify;justify-content: space-between }.delete--modal.requestModal .delete--modal--control > a {-ms-flex: 1;flex: 1 }.apply-accordion-heading {-ms-flex-align: start;align-items: flex-start }.apply-accordion-heading .left p:last-child {font-size: 14px;line-height: 20px;max-width: 525px;margin-top: 12px }@media (max-width:767px) {.apply-accordion-heading .left p:last-child {font-size: 12px;line-height: 19px;margin-top: 8px }}.apply-credit {border: 1px solid rgba(43, 42, 41, .1);border-radius: 12px }.apply .program--card--title {font-size: 20px;line-height: 28px }@media (max-width:767px) {.apply .program--card--title {font-size: 16px;line-height: 22px }}.apply .program--card--status {font-size: 14px;line-height: 22px }@media (max-width:767px) {.apply .program--card--status {font-size: 12px;line-height: 19px;-ms-flex-wrap: wrap;flex-wrap: wrap }}@media (max-width:767px) {.apply .program--card--status > P {width: 100% }}@media (max-width:767px) {.apply .program--card--status > P + P {margin-left: 0;padding-left: 0;margin-top: 10px;border-left: none }}.apply .program--card--detail {background-color: rgba(228, 231, 233, .2);border-radius: 12px;border-top: none;padding: 20px 20px 24px }.apply .program--card--detail__item {max-width: 16.66% !important }@media (max-width:991px) {.apply .program--card--detail__item {max-width: 100% !important }}.apply .program--card--detail__item .circle {box-shadow: -4px 4px 16px rgba(43, 42, 41, .04);background-color: #fff !important }@media (max-width:991px) {.apply .tabs--content .tab-pane {display: none !important }}@media (max-width:991px) {.apply .tabs--content .tab-pane.active {display: block !important }}.application--wizard {position: relative;border-right: 1px solid rgba(43, 42, 41, .1) }@media (max-width:991px) {.application--wizard {display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;overflow-x: auto;border-right: none }}.application--wizard li {position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:991px) {.application--wizard li {-ms-flex-wrap: wrap;flex-wrap: wrap;padding-top: 25px;-ms-flex-align: start;align-items: flex-start }}.application--wizard li:not(:last-child) {padding-bottom: 75px }@media (max-width:991px) {.application--wizard li:not(:last-child) {padding-right: 40px;padding-bottom: 30px }}@media (max-width:991px) {.application--wizard li:not(.active) > span {top: 2px !important }}.application--wizard li:before {position: absolute;content: '';width: 3px;height: calc(100% - 20px);top: 20px;left: 8px;background-color: rgba(43, 42, 41, .1) }@media (max-width:991px) {.application--wizard li:before {width: 100%;height: 3px;top: 10px }}.application--wizard li:last-child::before {display: none }.application--wizard li.completed {-ms-flex-align: start;align-items: flex-start }.application--wizard li.completed::before {background-color: #1bb161;height: calc(100% - 5px) }@media (max-width:991px) {.application--wizard li.completed::before {width: 100%;height: 3px }}.application--wizard li.completed > span {background-color: #1bb161;border: none;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }.application--wizard li.completed > span:after {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="9" height="7" viewBox="0 0 9 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 3.373L3.374 5.746L8.12 1" stroke="%23ffffff" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-repeat: no-repeat;background-size: cover;background-position: center;width: 10px;height: 8px }.application--wizard li.cancel {-ms-flex-align: start;align-items: flex-start }.application--wizard li.cancel > span {background-color: #df252a;border: none;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }.application--wizard li.cancel > span:after {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M6 6L18 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>');background-repeat: no-repeat;background-size: cover;background-position: center;width: 12px;height: 12px }.application--wizard li.active::before {top: 28px;height: calc(100% - 28px) }@media (max-width:991px) {.application--wizard li.active::before {width: 100%;height: 3px;top: 10px }}.application--wizard li.active > span {min-width: 28px;height: 28px;background-color: rgba(27, 177, 97, .15);border: none;position: absolute;left: -5px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }.application--wizard li.active > span::before {position: absolute;content: '';width: 10px;height: 10px;border-radius: 50%;background-color: #1bb161 }.application--wizard li.active .application--wizard--title, .application--wizard li.cancel .application--wizard--title, .application--wizard li.completed .application--wizard--title {color: #1a1a19 }.application--wizard li > span {min-width: 20px;height: 20px;background-color: #fff;border: 3px solid #b3b3b2;border-radius: 50%;position: absolute;top: 0 }.application--wizard--text {padding-left: 40px }@media (max-width:991px) {.application--wizard--text {padding-top: 40px;padding-left: 0;white-space: nowrap }}.application--wizard--title {font-size: 14px;line-height: 22px;color: #b3b3b2 }.application--wizard--date {font-size: 12px;line-height: 19px;font-weight: 400;color: #727271 }.applicationStatus__text {margin-bottom: 32px }@media (max-width:767px) {.applicationStatus__text {margin-bottom: 20px }}.applicationStatus__text + .applicationStatus__text {margin-top: 40px;padding-top: 32px;border-top: 1px solid rgba(43, 42, 41, .1) }@media (max-width:767px) {.applicationStatus__text + .applicationStatus__text {margin-top: 20px;padding-top: 12px }}.applicationStatus__text.center {max-width: 515px;display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;margin: 0 auto;height: 100% }.applicationStatus__text.center > p {text-align: center }.applicationStatus__title {font-size: 20px;line-height: 24px;margin-bottom: 12px }@media (max-width:767px) {.applicationStatus__title {font-size: 16px;line-height: 22px;margin-bottom: 8px }}.applicationStatus__desc {font-size: 16px;line-height: 22px }@media (max-width:767px) {.applicationStatus__desc {font-size: 14px;line-height: 20px }}.applicationStatus__desc + .button-rounded {margin-top: 24px }.visa .application--wizard li:not(:last-child) {padding-bottom: 44px }.visa--filter .filter--heading {border-bottom: none }.visa--filter .filter-body {max-height: 100% }.visa--filter__step {position: relative }.visa--filter__step:not(:last-child) {padding-bottom: 22px }.visa--filter__step:not(:last-child):after {position: absolute;content: '';width: 1px;height: calc(100% - 24px);top: 24px;left: 12px;background-color: rgba(43, 42, 41, .1) }.visa--filter__step.active > p span {color: #1a1a19 }.visa--filter__step.active > p span:nth-child(1) {border-color: #1a1a19 }.visa--filter__step--title {margin-bottom: 20px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.visa--filter__step--title span {color: #b3b3b2 }.visa--filter__step--title span:nth-child(1) {font-size: 14px;line-height: 20px;border-radius: 50%;border: 1px solid #b3b3b2;padding: 2px 9px;width: 24px;height: 24px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }@media (max-width:767px) {.visa--filter__step--title span:nth-child(1) {font-size: 12px;line-height: 19px }}.visa--filter__step--title span:nth-child(2) {font-size: 20px;line-height: 28px;padding-left: 16px }@media (max-width:767px) {.visa--filter__step--title span:nth-child(2) {font-size: 16px;line-height: 22px;padding-left: 10px }}.visa--filter .application--wizard {padding: 32px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 12px;margin-left: 40px }.visa--filter .application--wizard li:not(:last-child) {padding-bottom: 44px }.modal .custom--input {position: relative;background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .05);color: #b3b3b2;padding: 14px 20px;border-radius: 8px;font-size: 14px;line-height: 19px;outline: 0;width: 100%;margin-bottom: 24px }@media (max-width:767px) {.modal .custom--input {font-size: 12px;line-height: 19px }}.modal .custom--input.textarea .custom--label {top: 14px }.modal .custom--input:active, .modal .custom--input:focus, .modal .custom--input:focus-visible, .modal .custom--input:focus-within {border-color: #1a1a19 }.modal .custom--input:-ms-input-placeholder {color: #b3b3b2;opacity: 0 }.modal .custom--input::placeholder {color: #b3b3b2;opacity: 0 }.modal .custom--input input:-ms-input-placeholder, .modal .custom--input textarea:-ms-input-placeholder {opacity: 0 }.modal .custom--input input::placeholder, .modal .custom--input textarea::placeholder {opacity: 0 }.modal .custom--input input:focus + .custom--label, .modal .custom--input input:not(:placeholder-shown) + .custom--label, .modal .custom--input textarea:focus + .custom--label, .modal .custom--input textarea:not(:placeholder-shown) + .custom--label {left: 16px;transform: translateY(-25px);font-size: 10px;line-height: 14px;background-color: #fff;border-radius: 12px;padding: 0 4px }.modal .custom--input.is-invalid {border-color: #df252a;background-color: rgba(223, 37, 42, .05) }.modal .custom--switch--label {margin-bottom: 24px }.modal .custom--label {position: absolute;left: 20px;font-size: 14px;line-height: 20px;transition: all .3s ease-in }@media (max-width:767px) {.modal .custom--label {font-size: 12px;line-height: 19px }}.modal .custom--radio {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.modal .custom--radio + .custom--radio {margin-left: 24px }.modal .custom--radio__label {background-color: transparent;border: none;padding: 0;padding-left: 26px;border-radius: none;width: auto;font-size: 16px;line-height: 24px }@media (max-width:767px) {.modal .custom--radio__label {font-size: 12px;line-height: 19px;padding-left: 20px }}.modal .custom--radio__checkmark {left: 0;top: inherit }.modal .custom--mobile label {-ms-flex: 1;flex: 1;padding-left: 8px;margin-left: 8px;border-left: 1px solid rgba(43, 42, 41, .1);position: relative;display: -ms-flexbox;display: flex }.modal .custom--mobile .dropdown-toggle {padding: 0;background-color: transparent;border: none;font-size: 14px;line-height: 20px;color: #1a1a19 }.modal .custom--mobile .dropdown-toggle .filter-option-inner-inner {color: #1a1a19 }.modal .custom--mobile .dropdown-toggle:after {width: 20px;height: 20px }.modal .dropdown-toggle {background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .1) }.modal .dropdown-toggle .filter-option-inner-inner {color: #727271 }.modal .dropdown-toggle:active, .modal .dropdown-toggle:focus {box-shadow: none;outline: 0 !important }.modal .dropdown-toggle[aria-expanded=true]:after {transform: rotate(0) }.modal .dropdown-toggle:after {border: none;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%232B2A29"/></svg>');width: 24px;height: 24px;transform: rotate(180deg);background-size: cover;background-position: center;transition: all .3s ease-in }@media (max-width:991px) {.modal .dropdown-toggle:after {width: 20px;height: 20px }}.modal .dropdown-menu {font-size: 16px }@media (max-width:991px) {.modal .dropdown-menu {font-size: 12px;line-height: 18px }}.modal .dropdown-menu .dropdown-item.active, .modal .dropdown-menu .dropdown-item:active {background-color: #df252a }.applyModal p {text-align: left !important }.applyModal .modal-body {-ms-flex-align: start !important;align-items: flex-start !important }.applyModal .delete--modal--message {font-size: 20px;line-height: 28px;margin-bottom: 16px }@media (max-width:767px) {.applyModal .delete--modal--message {font-size: 16px;line-height: 22px;margin-bottom: 10px }}.applyModal .delete--modal--Submessage {font-size: 16px;line-height: 24px }@media (max-width:767px) {.applyModal .delete--modal--Submessage {font-size: 14px;line-height: 20px }}.applyModal .white-form .custom--radio input:checked ~ .custom--radio__checkmark {background-color: transparent }.applyModal .custom--radio__checkmark:after {position: absolute;content: '';width: 10px;height: 10px;border-radius: 50%;background-color: #2b2a29;background-image: none;top: 50%;left: 50%;transform: translate(-50%, -50%) }.applyModal--uni {font-size: 16px;line-height: 24px;margin-bottom: 32px }@media (max-width:767px) {.applyModal--uni {margin-bottom: 12px;font-size: 12px;line-height: 19px }}.applyModal--uni span {display: block }.applyModal form {width: 100% }.mainShortlist > .nav .tabs--item:not(:last-child) {margin-right: 20px }.mainShortlist > .nav .tabs--link {background-color: #fff;padding: 16px 24px;font-size: 20px;line-height: 28px;color: #b3b3b2;font-weight: 600;border-radius: 8px 8px 0 0;position: relative }.mainShortlist > .nav .tabs--link:after {position: absolute;content: '';width: 30px;height: 60px;background-color: #fff;right: -25px;bottom: 0;z-index: 9;border-radius: 0 100% 0 0 }.mainShortlist > .nav .tabs--link.active {color: #1a1a19;box-shadow: 8px -8px 15px rgba(0, 0, 0, .08) }.mainShortlist > .nav .tabs--link.active:after {box-shadow: 8px -8px 15px rgba(0, 0, 0, .08) }.mainShortlist > .nav .tabs--link span {font-size: 14px;line-height: 20px;font-weight: 400;color: #b3b3b2;margin-left: 8px }.navbar--profile {width: 40px;height: 40px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: rgba(223, 37, 42, .15) }@media (max-width:767px) {.navbar--profile {width: 30px;height: 30px }}.navbar--profile__name {font-size: 14px;line-height: 22px;color: #df252a }@media (max-width:767px) {.navbar--profile__name {font-size: 12px;line-height: 19px }}.dashboard--tcGrid {padding-left: 15px;padding-right: 15px;max-width: 14.28%;width: 100% }@media (max-width:1024px) {.dashboard--tcGrid {max-width: 33.33% }}@media (max-width:767px) {.dashboard--tcGrid {max-width: 50% }}.dashboard--tcGrid .application--card {margin-bottom: 20px }.dashboard--tcGrid .application--card::before {display: none }.dashboard--tcGrid .application--card--detail {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.dashboard--tcGrid .application--card--detail .trending {font-size: 12px;line-height: 18px;font-weight: 400;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.dashboard--tcGrid .application--card--detail .trending span {width: 16px;height: 16px;border-radius: 50%;margin-right: 4px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;position: relative }.dashboard--tcGrid .application--card--detail .trending span:after {position: absolute;content: '';width: 10px;height: 10px;background-repeat: no-repeat;background-size: cover;background-position: center }.dashboard--tcGrid .application--card--detail .up {color: #1bb161 }.dashboard--tcGrid .application--card--detail .up span {background-color: rgba(27, 177, 97, .15) }.dashboard--tcGrid .application--card--detail .up span:after {transform: rotate(-90deg);background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%231BB161" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%231BB161" stroke-width="1.5" stroke-linecap="square"/></svg>') }.dashboard--tcGrid .application--card--detail .down {color: #df252a }.dashboard--tcGrid .application--card--detail .down span {background-color: rgba(223, 37, 42, .15) }.dashboard--tcGrid .application--card--detail .down span:after {transform: rotate(90deg);background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>') }.dashboard--tcGrid .application--card--name {font-size: 12px !important;line-height: 19px !important;font-weight: 400;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 1;overflow: hidden;text-overflow: ellipsis;white-space: normal;max-width: 118px }.dashboard .secondaryTab .tabs {-ms-flex-wrap: nowrap;flex-wrap: nowrap;white-space: nowrap;overflow-x: auto }.advisorTable tr {position: relative }.advisorTable tr:hover .floating {opacity: 1;display: block }.advisorTable td:nth-child(3), .advisorTable th:nth-child(3) {min-width: inherit !important }.advisorTable .floating {transition: all .3s ease-in;position: absolute;left: 0;top: 0;bottom: 0;width: 100%;max-width: 900px;text-align: right;background: linear-gradient(269.97deg, #e4e7e9 68.02%, rgba(255, 255, 255, .5) 99.97%) }.advisorTable .temp .top {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 12px;line-height: 19px;margin-bottom: 2px;color: #1a1a19 }.advisorTable .temp .top img {width: 16px;height: 16px;margin-right: 4px }.advisorTable .temp .bottom {color: #727271;font-size: 12px;line-height: 19px;font-style: italic }.advisorTable .nameWidth {min-width: 200px }.advisorTable .name .top {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.advisorTable .name .top > a {font-size: 12px;line-height: 18px;font-weight: 500;text-decoration: underline;color: #1a1a19 }.advisorTable .name .top > a:hover {color: #df252a }.advisorTable .name .top img {width: 16px;height: 16px;margin-left: 4px }.advisorTable .name .bottom > a {font-size: 12px;line-height: 20px;font-weight: 400;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;color: #727271 }.advisorTable .name .bottom > a:hover {color: #1a1a19 }.advisorTable .name .bottom > a img {width: 14px;height: 14px;margin-right: 4px }.session.dashboard--filter .white-form {width: 422px }@media (max-width:767px) {.session.dashboard--filter .white-form {width: 100% }}.session.dashboard--filter .white-form .dashboard--accordion__header::after {display: none }.session .schedule__body + .schedule__body {margin-top: 24px }.session .schedule__label {font-size: 18px;line-height: 28px;margin-bottom: 16px }@media (max-width:767px) {.session .schedule__label {font-size: 14px;line-height: 22px;margin-bottom: 10px }}.session .date__radio {font-size: 12px;line-height: 18px;padding: 10px 12px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 6px;cursor: pointer }.session .date__radio span {display: block }.session .date__radio--label {margin-bottom: 16px;padding: 0 8px;max-width: 33.33%;width: 100% }.session .date__radio--label:hover .date__radio {border-color: #1a1a19;background-color: #1a1a19 }.session .date__radio--label:hover .date__radio span:nth-child(1) {color: #b3b3b2 }.session .date__radio--label:hover .date__radio span:nth-child(2) {color: #fff }.session .date__radio--label input {display: none }.session .date__radio--label input:checked ~ .date__radio {border-color: #1a1a19;background-color: #1a1a19 }.session .date__radio--label input:checked ~ .date__radio span:nth-child(1) {color: #b3b3b2 }.session .date__radio--label input:checked ~ .date__radio span:nth-child(2) {color: #fff }.session .date__row {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-wrap: wrap;flex-wrap: wrap;margin-left: -8px;margin-right: -8px }.session .time__row {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-wrap: wrap;flex-wrap: wrap;margin-left: -7px;margin-right: -7px }.session .time__radio {font-size: 12px;line-height: 18px;padding: 8px 12px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 60px;white-space: nowrap;cursor: pointer;text-align: center }.session .time__radio--label {margin-bottom: 16px;padding: 0 7px;max-width: 25%;width: 100%;position: relative }.session .time__radio--label:hover .time__radio {border-color: #1a1a19;background-color: #1a1a19;color: #fff }@media (max-width:767px) {.session .time__radio--label {max-width: 33.33% }}.session .time__radio--label .user-list {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;position: absolute;top: -8px;right: 16px }.session .time__radio--label .user-list img {border-radius: 50%;width: 20px;height: 20px;border: 2px solid #fff;object-fit: cover }.session .time__radio--label .user-list img + img {margin-left: -5px }.session .time__radio--label.is-assigned .time__radio {color: #b3b3b2;cursor: not-allowed }.session .time__radio--label.is-assigned:hover .time__radio {background-color: #ddd;border-color: #ddd }.session .time__radio--label input {display: none }.session .time__radio--label input:checked ~ .time__radio {border-color: #1a1a19;background-color: #1a1a19;color: #fff }.session__wizard__card {padding: 16px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 12px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }@media (max-width:767px) {.session__wizard__card {-ms-flex-direction: column;flex-direction: column }}.session__wizard__card .left {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start }.session__wizard__card .left .user-image {width: 34px;height: 34px;border-radius: 50%;object-fit: cover }.session__wizard__card .right {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.session__wizard__card .right {margin-top: 10px;-ms-flex-align: start;align-items: flex-start;width: 100%;padding-left: 46px }}.session__wizard__card .right .chips {margin-right: 24px }.session__wizard__card .right .button-rounded {font-size: 12px;line-height: 16px;padding: 8px 20px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 100px;margin-right: 16px }.session__wizard__card .right .button-rounded__black {color: #1a1a19 }.session__wizard__card .right .button-rounded__black:hover {color: #fff;background-color: #1a1a19 }.session__wizard__card .center {max-width: 250px }.session__wizard__card .center .declined-message {font-size: 12px;line-height: 18px;display: -ms-flexbox;display: flex }.session__wizard__card .center .declined-message .message-icon {margin-right: 5px;position: relative;min-width: 24px;height: 24px;border-radius: 50%;background-color: rgba(228, 231, 233, .4);display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }.session__wizard__card .center .declined-message .message-icon::after {position: absolute;content: '';width: 14px;height: 14px;background-size: cover;background-repeat: no-repeat;background-position: center;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.4375 16.25C20.16 14.9963 20.5 13.5513 20.5 12C20.5 7.30375 16.6963 3.5 12 3.5C7.30375 3.5 3.5 7.30375 3.5 12C3.5 16.6963 7.30375 20.5 12 20.5C13.5513 20.5 14.9963 20.0856 16.2394 19.3631L20.5 20.5L19.4375 16.25Z" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.session__wizard__card .center .declined-message .message-text {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal }.session__wizard__menu {position: relative;display: -ms-flexbox;display: flex }@media (max-width:767px) {.session__wizard__menu {position: absolute;top: 16px;right: 16px }}.session__wizard__menu .menu-icon {width: 24px;height: 24px;cursor: pointer }.session__wizard__dropdown__action, .session__wizard__dropdown__decline {display: none;position: absolute;opacity: 0;transition: all .3s ease-in;background-color: #fff;border-radius: 10px;padding: 20px;border: 1px solid rgba(43, 42, 41, .1);filter: drop-shadow(0 2px 24px rgba(0, 0, 0, .08));top: calc(100% + 5px);right: calc(100% - 30px);z-index: 99 }.session__wizard__dropdown__action::after, .session__wizard__dropdown__decline::after {position: absolute;content: '';width: 0;height: 0;border-left: 5px solid transparent;border-right: 5px solid transparent;border-bottom: 5px solid #fff;filter: drop-shadow(0 2px 24px rgba(0, 0, 0, .08));right: 12px;top: -4px }.session__wizard__dropdown__action.toggle, .session__wizard__dropdown__decline.toggle {display: block;opacity: 1 }.session__wizard__dropdown__action {width: 262px }.session__wizard__dropdown__action > a {font-size: 14px;line-height: 21px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.session__wizard__dropdown__action > a:hover {color: #1a1a19 }.session__wizard__dropdown__action > a img {margin-right: 8px;width: 24px;height: 24px }.session__wizard__dropdown__action > a + a {margin-top: 24px }.session__wizard__dropdown__decline {width: 340px }.session__wizard__dropdown__decline p {margin-bottom: 12px }.session__wizard__dropdown__decline textarea {background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .05);border-radius: 8px;padding: 12px 16px;font-size: 14px;line-height: 21px;width: 100% }.session__wizard__item {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;position: relative }@media (max-width:767px) {.session__wizard__item {-ms-flex-direction: column;flex-direction: column;-ms-flex-align: start;align-items: flex-start }}.session__wizard__item::before {content: '';position: absolute;top: 0;bottom: 0;left: 122px;width: 1px;background-color: rgba(43, 42, 41, .1) }@media (max-width:767px) {.session__wizard__item::before {display: none }}.session__wizard__item + .session__wizard__item {padding-top: 24px }@media (max-width:767px) {.session__wizard__item + .session__wizard__item {padding-top: 35px }}.session__wizard__item > .right {-ms-flex: 1;flex: 1;padding-left: 15px;margin-left: 24px;position: relative }@media (max-width:767px) {.session__wizard__item > .right {padding-left: 0;margin-left: 0;margin-top: 10px }}.session__wizard__item > .right::before {content: '';position: absolute;left: 0;top: 50%;transform: translateY(-50%);width: 16px;height: 1px;background-color: rgba(43, 42, 41, .1) }@media (max-width:767px) {.session__wizard__item > .right::before {display: none }}.session__wizard__date {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: end;align-items: flex-end }@media (max-width:767px) {.session__wizard__date {-ms-flex-align: center;align-items: center;-ms-flex-direction: row;flex-direction: row }}.session__wizard__date span:nth-child(1) {font-size: 14px;line-height: 21px;margin-bottom: 4px }@media (max-width:767px) {.session__wizard__date span:nth-child(1) {margin-right: 5px;margin-bottom: 0 }}.session__wizard__date span:nth-child(2) {font-size: 12px;line-height: 18px }@media (max-width:767px) {.session__wizard__body.declined .session__wizard__card {-ms-flex-align: start;align-items: flex-start }}@media (max-width:767px) {.session__wizard__body.declined .session__wizard__card .center {padding-left: 46px;margin-top: 10px }}.session__user__detail {padding-left: 12px }.session__user__name {font-size: 16px;line-height: 24px;margin-bottom: 4px }.session__user__link, .session__user__time {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 12px;height: 18px }.session__user__link img, .session__user__time img {width: 16px;height: 16px;margin-right: 8px }.session__user__link {margin-top: 4px;color: #458bf3 }.session .dropdown-toggle {border-radius: 8px;background: #fff;padding: 15px 16px;border: 1px solid rgba(43, 42, 41, .1) }.session .dropdown-toggle .filter-option-inner-inner {color: #727271 }.session .dropdown-toggle:active, .session .dropdown-toggle:focus {box-shadow: none;outline: 0 !important }.session .dropdown-toggle[aria-expanded=true]:after {transform: rotate(0) }.session .dropdown-toggle:after {border: none;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%232B2A29"/></svg>');width: 24px;height: 24px;transform: rotate(180deg);background-size: cover;background-position: center;transition: all .3s ease-in }@media (max-width:991px) {.session .dropdown-toggle:after {width: 20px;height: 20px }}.session .dropdown-menu {font-size: 16px;box-shadow: 0 4px 20px rgba(0, 0, 0, .08);border-radius: 8px }@media (max-width:991px) {.session .dropdown-menu {font-size: 12px;line-height: 18px }}.session .dropdown-menu .dropdown-item {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding-top: 10px;padding-bottom: 10px }.session .dropdown-menu .dropdown-item.active, .session .dropdown-menu .dropdown-item:active {background-color: transparent }.session .dropdown-menu .selected span.check-mark {top: inherit !important;right: 25px !important }.session .dropdown-menu .selected span.check-mark::after {border-color: #1a1a19;border-width: 0 1px 1px 0;width: 8px;height: 15px }.session .dropdown-user {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.session .dropdown-user .right {margin-left: 12px }.session .dropdown-user .user-image {width: 44px;height: 44px;border-radius: 50%;object-fit: cover }.session .dropdown-user .user-name {font-size: 16px;line-height: 24px;font-weight: 500 }.session .dropdown-user .user-designation {font-size: 12px;line-height: 19px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.session .dropdown-user .user-designation img {width: 14px;height: 14px;margin-left: 4px }.session .table .button-rounded {font-size: 12px;line-height: 16px;font-weight: 500;border: 1px solid rgba(43, 42, 41, .1);border-radius: 100px;width: 88px;height: 32px;margin-right: 16px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }.session .table .button-rounded__black {color: #1a1a19 }.session .table .button-rounded__black:hover {background-color: #1a1a19;color: #fff }.session .table .button-rounded__red {color: #df252a }.session .table .button-rounded__red:hover {color: #fff;background-color: #df252a }.session .table .chips {padding: 2px 8px }.session .table .chips:before {display: none }.session .table .table-comment {font-size: 12px;line-height: 19px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal }.session .upcoming-table .executive-user {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.session .upcoming-table .executive-user img {width: 24px;height: 24px;border-radius: 50%;object-fit: cover }.session .upcoming-table .executive-user p {margin-left: 8px }.session .upcoming-table td:nth-child(3), .session .upcoming-table th:nth-child(3) {min-width: inherit }.session .page-list .dropdown-toggle {padding: .375rem .75rem }.session .page-list .dropdown-toggle:after {background-image: inherit;width: inherit;height: inherit;border-top: 0;border-right: .3em solid transparent;border-bottom: .3em solid;border-left: .3em solid transparent }.session .page-list .dropdown-menu .dropdown-item {padding: .25rem 1.5rem }.session .page-list .dropdown-menu .dropdown-item.active {background-color: #df252a;color: #fff }.fixed-height {padding-bottom: 37px !important }.chat {filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .04));position: fixed;top: calc(100% - 70px);right: 52px;max-width: 395px;width: 100%;max-height: 550px;height: 100%;background-color: #fff;z-index: 999999 }.chat.open {bottom: 0;top: inherit }.chat__header {padding: 10px 20px;background-color: #2b2a29;border-radius: 12px 12px 0 0;position: absolute;top: 0;left: 0;right: 0;cursor: pointer;z-index: 9999;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.chat__header .user-details {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.chat__header .user-details .user-image {min-width: 50px;height: 50px;border-radius: 50%;position: relative }@media (max-width:991px) {.chat__header .user-details .user-image {min-width: 40px;height: 40px }}.chat__header .user-details .user-image.active::after {position: absolute;content: '';width: 16px;height: 16px;border: 1.5px solid #2b2a29;background-color: #1bb161;border-radius: 50%;bottom: 0;right: 0 }.chat__header .user-details .user-image img {width: 100%;height: 100%;object-fit: cover;border-radius: 50% }.chat__header .user-details .right {padding-left: 12px }.chat__header .user-details .user-name {font-size: 16px;line-height: 22px }@media (max-width:991px) {.chat__header .user-details .user-name {font-size: 14px }}.chat__header .user-details .user-designation {font-size: 14px;line-height: 22px }@media (max-width:991px) {.chat__header .user-details .user-designation {font-size: 12px }}.chat__header > .right {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;position: absolute;right: 20px;z-index: 999 }.chat__header > .right > a:not(:last-child), .chat__header > .right > div:not(:last-child) {margin-right: 16px }.chat__header--action {width: 24px;height: 24px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;position: relative }.chat__header--drop {border: 1px solid #fff;border-radius: 100px;padding: 6px 36px 6px 12px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;position: relative }.chat__header--drop:after {position: absolute;content: '';width: 16px;height: 16px;background-repeat: no-repeat;background-position: center;background-size: cover;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%23ffffff"/></svg>');transform: rotate(180deg);right: 12px }.chat__header--drop > img {width: 24px;height: 24px }.chat__header--menu {position: relative }.chat__header--menu:hover .chat__header--menu--drop {display: block }.chat__header--menu--drop {display: none;width: 215px;position: absolute;padding: 20px;background-color: #fff;border: 1px solid rgba(43, 42, 41, .1);box-shadow: -4px 4px 16px rgba(43, 42, 41, .04);border-radius: 8px;right: 0;top: 100% }.chat__header--menu--drop:after {position: absolute;content: '';width: 0;height: 0;border-left: 5px solid transparent;border-right: 5px solid transparent;border-bottom: 5px solid #fff;filter: drop-shadow(0 2px 24px rgba(0, 0, 0, .08));right: 12px;top: -6px }.chat__header--menu--drop--action {font-size: 14px;line-height: 22px;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding-left: 28px }@media (max-width:767px) {.chat__header--menu--drop--action {font-size: 12px;line-height: 19px;padding-left: 20px }}.chat__header--menu--drop--action:not(:last-child) {margin-bottom: 20px }@media (max-width:767px) {.chat__header--menu--drop--action:not(:last-child) {margin-bottom: 8px }}.chat__header--menu--drop--action:hover {color: #df252a }.chat__header--menu--drop--action:hover.gallery::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.1853 2.92969H4.81498C3.99678 2.92969 3.3335 3.59297 3.3335 4.41117V14.7815C3.3335 15.5997 3.99678 16.263 4.81498 16.263H15.1853C16.0035 16.263 16.6668 15.5997 16.6668 14.7815V4.41117C16.6668 3.59297 16.0035 2.92969 15.1853 2.92969Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.4075 8.1148C8.02115 8.1148 8.51861 7.61734 8.51861 7.00369C8.51861 6.39004 8.02115 5.89258 7.4075 5.89258C6.79385 5.89258 6.29639 6.39004 6.29639 7.00369C6.29639 7.61734 6.79385 8.1148 7.4075 8.1148Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.6668 11.8189L14.3773 9.52945C13.5963 8.7484 12.3299 8.7484 11.5489 9.52945L4.81494 16.2634" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.chat__header--menu--drop--action:hover.issue::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.80417 3.43984L2.02083 15.1898C1.4875 16.1065 2.15417 17.2565 3.2125 17.2565H16.7875C17.8458 17.2565 18.5125 16.1065 17.9792 15.1898L11.1958 3.43984C10.6625 2.51484 9.32917 2.51484 8.80417 3.43984Z" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.99609 7.19922V12.1992" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.99593 15.5339C10.4562 15.5339 10.8293 15.1608 10.8293 14.7005C10.8293 14.2403 10.4562 13.8672 9.99593 13.8672C9.53569 13.8672 9.1626 14.2403 9.1626 14.7005C9.1626 15.1608 9.53569 15.5339 9.99593 15.5339Z" fill="%23DF252A"/></svg>') }.chat__header--menu--drop--action:hover.search::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M21.0004 21L16.6504 16.65" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>') }.chat__header--menu--drop--action::before {position: absolute;content: '';left: 0;width: 20px;height: 20px;background-position: center;background-size: cover;background-repeat: no-repeat }@media (max-width:767px) {.chat__header--menu--drop--action::before {width: 15px;height: 15px }}.chat__header--menu--drop--action.gallery::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.1853 2.92969H4.81498C3.99678 2.92969 3.3335 3.59297 3.3335 4.41117V14.7815C3.3335 15.5997 3.99678 16.263 4.81498 16.263H15.1853C16.0035 16.263 16.6668 15.5997 16.6668 14.7815V4.41117C16.6668 3.59297 16.0035 2.92969 15.1853 2.92969Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.4075 8.1148C8.02115 8.1148 8.51861 7.61734 8.51861 7.00369C8.51861 6.39004 8.02115 5.89258 7.4075 5.89258C6.79385 5.89258 6.29639 6.39004 6.29639 7.00369C6.29639 7.61734 6.79385 8.1148 7.4075 8.1148Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.6668 11.8189L14.3773 9.52945C13.5963 8.7484 12.3299 8.7484 11.5489 9.52945L4.81494 16.2634" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.chat__header--menu--drop--action.video::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.1853 2.92969H4.81498C3.99678 2.92969 3.3335 3.59297 3.3335 4.41117V14.7815C3.3335 15.5997 3.99678 16.263 4.81498 16.263H15.1853C16.0035 16.263 16.6668 15.5997 16.6668 14.7815V4.41117C16.6668 3.59297 16.0035 2.92969 15.1853 2.92969Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.4075 8.1148C8.02115 8.1148 8.51861 7.61734 8.51861 7.00369C8.51861 6.39004 8.02115 5.89258 7.4075 5.89258C6.79385 5.89258 6.29639 6.39004 6.29639 7.00369C6.29639 7.61734 6.79385 8.1148 7.4075 8.1148Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.6668 11.8189L14.3773 9.52945C13.5963 8.7484 12.3299 8.7484 11.5489 9.52945L4.81494 16.2634" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.chat__header--menu--drop--action.calendar::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>') }.chat__header--menu--drop--action.issue::before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.80417 3.43984L2.02083 15.1898C1.4875 16.1065 2.15417 17.2565 3.2125 17.2565H16.7875C17.8458 17.2565 18.5125 16.1065 17.9792 15.1898L11.1958 3.43984C10.6625 2.51484 9.32917 2.51484 8.80417 3.43984Z" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.99609 7.19922V12.1992" stroke="%23727271" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.99593 15.5339C10.4562 15.5339 10.8293 15.1608 10.8293 14.7005C10.8293 14.2403 10.4562 13.8672 9.99593 13.8672C9.53569 13.8672 9.1626 14.2403 9.1626 14.7005C9.1626 15.1608 9.53569 15.5339 9.99593 15.5339Z" fill="%23727271"/></svg>') }.chat__header--menu--drop--action.search::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M21.0004 21L16.6504 16.65" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>') }.chat__body {padding: 90px 20px 75px;max-height: 100%;overflow-y: auto }.chat__body__list {width: 100% }.chat__body__list li {position: relative }.chat__body__list li.message {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;max-width: 268px }.chat__body__list li.receive .chat-details .chat-message-body {background-color: rgba(43, 42, 41, .1);border-radius: 0 12px 12px 12px }.chat__body__list li.receive .chat-details .chat-message-body p {color: #2b2a29 }.chat__body__list li.send {margin-left: auto;-ms-flex-direction: row-reverse;flex-direction: row-reverse }.chat__body__list li.send .chat-details {padding-left: 0;padding-right: 12px }.chat__body__list li.send .chat-details .chat-message-body {background-color: #2b2a29;border-radius: 12px 0 12px 12px }.chat__body__list li.send .chat-details .chat-message-body p {color: #fff }.chat__body__list li:not(:last-child) {margin-bottom: 12px }.chat__body__list li.date {display: -ms-flexbox;display: flex;-ms-flex-pack: center;justify-content: center }.chat__body__list li.date.show .drop-menu {display: block;opacity: 1 }.chat__body__list li.date .chip-name {font-size: 12px;line-height: 19px;display: -ms-inline-flexbox;display: inline-flex;-ms-flex-align: center;align-items: center;position: relative;border-radius: 12px;border: 1px solid rgba(43, 42, 41, .1);padding: 5px 12px;cursor: pointer }.chat__body__list li.date .chip-name .drop-arrow {width: 16px;height: 16px;background-repeat: no-repeat;background-size: cover;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%232B2A29"/></svg>');transform: rotate(180deg) }.chat__body__list li.date .drop-menu {position: absolute;border-radius: 8px;border: 1px solid rgba(43, 42, 41, .1);box-shadow: -4px 4px 16px rgba(43, 42, 41, .04);background-color: #fff;z-index: 99;top: 100%;width: 210px;display: none;opacity: 0;transition: all .3s ease }.chat__body__list li.date .drop-menu > span {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 14px;line-height: 22px;position: relative;cursor: pointer;padding: 10px 20px }.chat__body__list li.date .drop-menu > span:last-child {border-top: 1px solid rgba(43, 42, 41, .1) }.chat__body__list li.date .drop-menu > span:hover {background-color: rgba(43, 42, 41, .04) }.chat__body__list li.date .drop-menu > span.selected:after {position: absolute;content: '';border-color: #1a1a19;border-width: 0 1.5px 1.5px 0;border-style: solid;width: 6px;height: 12px;transform-style: preserve-3d;transform: rotate(45deg);right: 20px }.chat__body__list li .chat-user-image {width: 24px;height: 24px;border-radius: 50% }.chat__body__list li .chat-user-image img {min-width: 24px;height: 100%;object-fit: cover;border-radius: 50% }.chat__body__list li .chat-details {padding-left: 12px }.chat__body__list li .chat-details .chat-user-detail {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.chat__body__list li .chat-details .chat-user-detail .chat-time, .chat__body__list li .chat-details .chat-user-detail .chat-user-name {font-size: 12px;line-height: 16px }.chat__body__list li .chat-details .chat-message-body {margin-top: 8px;padding: 12px }.chat__body__list li .chat-details .chat-message-body p {font-size: 12px;line-height: 19px }.chat__footer {z-index: 99;background-color: #fff;position: absolute;left: 0;right: 0;bottom: 0;padding: 12px 16px;filter: drop-shadow(0 -4px 20px rgba(0, 0, 0, .04));display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.chat__footer .left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.chat__footer .right {-ms-flex: 1;flex: 1;margin-left: 12px }.chat__footer .right .message-input {background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .05);border-radius: 98px;padding: 4px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.chat__footer .right .message-input input {padding: 0 10px;font-size: 14px;width: 100%;background-color: transparent;border: none;outline: 0;box-shadow: none }.chat__footer .right .message-input button {box-shadow: none;background-color: #2b2a29;outline: 0;border: none;border-radius: 98px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;padding: 6px 12px }.chat__footer .right .message-input button img {width: 20px;height: 20px }.chat__action {display: block;width: 20px;height: 20px;background-size: cover;background-position: center;background-repeat: no-repeat }.chat__action:not(:last-child) {margin-right: 12px }.chat__action.attachment {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_206_31398)"><path d="M3.41211 10.625L10.1871 3.85C11.6538 2.38333 14.0288 2.38333 15.4871 3.85C16.9538 5.31667 16.9538 7.69167 15.4871 9.15L8.12044 16.5167C7.14544 17.4917 5.56211 17.4917 4.58711 16.5167C3.61211 15.5417 3.61211 13.9583 4.58711 12.9833L11.9538 5.61667C12.4454 5.125 13.2371 5.125 13.7204 5.61667C14.2121 6.10833 14.2121 6.9 13.7204 7.38333L6.94544 14.1583" stroke="%232B2A29" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_206_31398"><rect width="14.425" height="15.75" fill="white" transform="translate(2.78711 2.125)"/></clipPath></defs></svg>') }.chat__action.emoji {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.2012 18.2598C14.6518 18.2598 18.2598 14.6518 18.2598 10.2012C18.2598 5.75054 14.6518 2.14258 10.2012 2.14258C5.75054 2.14258 2.14258 5.75054 2.14258 10.2012C2.14258 14.6518 5.75054 18.2598 10.2012 18.2598Z" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.97754 11.8125C6.97754 11.8125 8.18633 13.4242 10.201 13.4242C12.2156 13.4242 13.4244 11.8125 13.4244 11.8125" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.7832 7.7832H7.79157" stroke="%232B2A29" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M12.6191 7.7832H12.6275" stroke="%232B2A29" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.chat__action.mic {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.0075 2.5C8.87415 2.5 7.96582 3.41667 7.96582 4.54167V10C7.96582 11.1333 8.88249 12.0417 10.0075 12.0417C11.1325 12.0417 12.0492 11.125 12.0492 10V4.54167C12.0492 3.41667 11.1325 2.5 10.0075 2.5Z" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.7746 8.63281V9.99948C14.7746 12.6328 12.6413 14.7745 9.99961 14.7745C7.35794 14.7745 5.22461 12.6411 5.22461 9.99948V8.63281" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.0078 14.7754V17.5004" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.27441 17.5H12.7327" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.chat__action:hover.attachment {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_206_31398)"><path d="M3.41211 10.625L10.1871 3.85C11.6538 2.38333 14.0288 2.38333 15.4871 3.85C16.9538 5.31667 16.9538 7.69167 15.4871 9.15L8.12044 16.5167C7.14544 17.4917 5.56211 17.4917 4.58711 16.5167C3.61211 15.5417 3.61211 13.9583 4.58711 12.9833L11.9538 5.61667C12.4454 5.125 13.2371 5.125 13.7204 5.61667C14.2121 6.10833 14.2121 6.9 13.7204 7.38333L6.94544 14.1583" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_206_31398"><rect width="14.425" height="15.75" fill="white" transform="translate(2.78711 2.125)"/></clipPath></defs></svg>') }.chat__action:hover.emoji {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.2012 18.2598C14.6518 18.2598 18.2598 14.6518 18.2598 10.2012C18.2598 5.75054 14.6518 2.14258 10.2012 2.14258C5.75054 2.14258 2.14258 5.75054 2.14258 10.2012C2.14258 14.6518 5.75054 18.2598 10.2012 18.2598Z" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.97754 11.8125C6.97754 11.8125 8.18633 13.4242 10.201 13.4242C12.2156 13.4242 13.4244 11.8125 13.4244 11.8125" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.7832 7.7832H7.79157" stroke="%23DF252A" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M12.6191 7.7832H12.6275" stroke="%23DF252A" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.chat__action:hover.mic {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.0075 2.5C8.87415 2.5 7.96582 3.41667 7.96582 4.54167V10C7.96582 11.1333 8.88249 12.0417 10.0075 12.0417C11.1325 12.0417 12.0492 11.125 12.0492 10V4.54167C12.0492 3.41667 11.1325 2.5 10.0075 2.5Z" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.7746 8.63281V9.99948C14.7746 12.6328 12.6413 14.7745 9.99961 14.7745C7.35794 14.7745 5.22461 12.6411 5.22461 9.99948V8.63281" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.0078 14.7754V17.5004" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.27441 17.5H12.7327" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.chat__media--title {font-size: 20px;padding-left: 40px;margin-bottom: 24px }@media (max-width:767px) {.chat__media--title {font-size: 16px;padding-left: 20px;margin-bottom: 15px }}.chat__media .white-form {padding: 0;padding-top: 32px;position: relative }.chat__media .white-form .close {position: absolute;right: 40px;top: 20px;cursor: pointer }@media (max-width:767px) {.chat__media .white-form .close {right: 20px }}.chat__media .nav {-ms-flex-wrap: nowrap;flex-wrap: nowrap;white-space: nowrap }.chat__media .tabs {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;position: relative;padding: 0 40px }@media (max-width:767px) {.chat__media .tabs {padding: 0 20px }}.chat__media .tabs:after {content: '';position: absolute;width: 100%;bottom: 0;left: 0;height: 1px;background: rgba(43, 42, 41, .1) }.chat__media .tabs--item:not(:last-child) {margin-right: 40px }@media (max-width:767px) {.chat__media .tabs--item:not(:last-child) {margin-right: 20px }}.chat__media .tabs--link {color: #1a1a19;font-size: 14px;line-height: 22px;font-weight: 400;padding-bottom: 12px;text-decoration: none;position: relative;display: block }@media (max-width:767px) {.chat__media .tabs--link {font-size: 12px;line-height: 19px }}.chat__media .tabs--link.active {color: #df252a }.chat__media .tabs--link.active::before {content: '';position: absolute;height: 4px;background-color: #df252a;left: 0;right: 0;bottom: 0 }@media (max-width:767px) {.chat__media .tabs--link.active::before {height: 2px }}.chat__media .tabs--content {margin-top: 32px;padding: 0 40px }@media (max-width:767px) {.chat__media .tabs--content {padding: 0 20px }}.chat__media .photos-container {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap }.chat__media .photos-container .photos-panel {max-width: 33.33%;width: 100%;margin-bottom: 25px;padding: 0 8px }.chat__media .photos-container .photos-panel img {display: block;height: 115px;border-radius: 8px;object-fit: cover }.chat__media .photos-container .photos-panel .photo-caption {font-size: 12px;line-height: 19px;margin-top: 14px;text-align: center }.chat__media .download-item {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;border: 1px solid rgba(43, 42, 41, .1);border-radius: 12px;padding: 12px }.chat__media .download-item:not(:last-child) {margin-bottom: 12px }.chat__media .download-item .left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.chat__media .download-item .thumbnail {position: relative;width: 48px;height: 48px }.chat__media .download-item .thumbnail .file-image {width: 48px;height: 48px;border-radius: 8px }.chat__media .download-item .thumbnail .file-icon {width: 100%;height: 100%;border-radius: 8px;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: rgba(0, 0, 0, .4) }.chat__media .download-item .thumbnail .file-icon img {width: 24px;height: 24px }.chat__media .download-item .download-detail {padding-left: 12px }.chat__media .download-item .download-detail .file-name {font-size: 14px;line-height: 22px;margin-bottom: 5px }.chat__media .download-item .download-detail .file-type {font-size: 12px;line-height: 19px }.chat__media .download-item .download-btn {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;width: 36px;height: 36px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 50%;background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.3848 11.5195L10.3848 2.5006" stroke="%23727271" stroke-width="1.25"/><path d="M13.8535 8.92766L10.3847 12.3965L6.91588 8.92766" stroke="%23727271" stroke-width="1.25"/><path d="M17.5 8.33368L17.5 15.5645C17.5 16.669 16.6046 17.5645 15.5 17.5645L4.5 17.5645C3.39543 17.5645 2.5 16.669 2.5 15.5645L2.5 8.33369" stroke="%23727271" stroke-width="1.25" stroke-linejoin="round"/></svg>');background-size: 20px;background-position: center;background-repeat: no-repeat }.inChat .chat--container {display: -ms-flexbox;display: flex;position: relative }@media (max-width:991px) {.inChat .chat--container {-ms-flex-wrap: wrap;flex-wrap: wrap }}.inChat .chat--container > .left {width: 100%;max-width: 33.33%;border-right: 1px solid rgba(43, 42, 41, .1) }@media (max-width:991px) {.inChat .chat--container > .left {max-width: 100%;border-right: none }}.inChat .chat--container > .right {position: relative;width: 100%;max-width: 66.66%;height: 100% }@media (max-width:991px) {.inChat .chat--container > .right {max-width: 100%;position: absolute;right: -1000% }}.inChat .chat--container > .right.show {background-color: #fff;border-radius: 12px 12px 0 0 }@media (max-width:991px) {.inChat .chat--container > .right.show {right: 0;transition: all .2s ease-in-out }}.inChat .chat__header {background-color: #fff;padding: 12px 24px;position: static;box-shadow: 0 4px 20px rgba(0, 0, 0, .04);border-radius: 0 12px 0 0 }@media (max-width:991px) {.inChat .chat__header {border-radius: 12px 12px 0 0 }}.inChat .chat__header--drop {background-color: #1a1a19 }.inChat .chat__header--menu:not(:last-child) {margin-right: 16px }.inChat .chat__header--menu--main {display: none }.inChat .chat__header--menu--main.active {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.inChat .chat__header .right {position: relative;right: inherit }.inChat .chat__body {padding: 20px 20px 75px;overflow-y: auto;max-height: 500px }@media (max-width:991px) {.inChat .chat__body {max-height: calc(100% - 80px) }}@media (max-width:767px) {.inChat .chat__body {max-height: 405px }}.inChat .chat__body__list li.message {max-width: 382px }.inChat .chat__footer {border-top: 1px solid rgba(43, 42, 41, .1);filter: inherit;border-bottom-right-radius: 12px }.inChat .chat--searchbar {background-color: #fff;padding: 16px 24px;box-shadow: 0 4px 20px rgba(0, 0, 0, .04);border-radius: 12px 0 0 0 }@media (max-width:991px) {.inChat .chat--searchbar {border-radius: 12px 12px 0 0 }}@media (max-width:991px) {.inChat .chat--searchbar .searchbar--secondary {width: 100% }}.inChat .chat--user--list {max-height: 500px;overflow-y: auto }@media (max-width:991px) {.inChat .chat--user--list {max-height: calc(100% - 90px) }}@media (max-width:767px) {.inChat .chat--user--list {max-height: 400px }}.inChat .chat--user--list .user-details {padding: 24px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.inChat .chat--user--list .user-details:not(:last-child) {border-bottom: 1px solid rgba(43, 42, 41, .1) }.inChat .chat--user--list .user-details.active {background: rgba(228, 231, 233, .4) }.inChat .chat--user--list .user-details .user-image {min-width: 50px;height: 50px;border-radius: 50%;position: relative }@media (max-width:991px) {.inChat .chat--user--list .user-details .user-image {min-width: 40px;height: 40px }}.inChat .chat--user--list .user-details .user-image.active::after {position: absolute;content: '';width: 16px;height: 16px;border: 1.5px solid #2b2a29;background-color: #1bb161;border-radius: 50%;bottom: 0;right: 0 }.inChat .chat--user--list .user-details .user-image img {width: 100%;height: 100%;object-fit: cover;border-radius: 50% }.inChat .chat--user--list .user-details .right {padding-left: 12px;width: 100% }.inChat .chat--user--list .user-details .right .top {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.inChat .chat--user--list .user-details .right .top__left {display: -ms-flexbox;display: flex }.inChat .chat--user--list .user-details .right .top .user-designation {margin-left: 8px }.inChat .chat--user--list .user-details .right .bottom .user-designation {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 1;overflow: hidden;text-overflow: ellipsis;white-space: normal }.inChat .chat--user--list .user-details .user-name {font-size: 16px;line-height: 22px }@media (max-width:991px) {.inChat .chat--user--list .user-details .user-name {font-size: 14px }}.inChat .chat--user--list .user-details .user-designation {font-size: 14px;line-height: 22px }@media (max-width:991px) {.inChat .chat--user--list .user-details .user-designation {font-size: 12px }}.progress-bar {position: relative;height: 52px;width: 52px;background-color: transparent }.progress-bar .center-content {position: absolute;z-index: 9;color: #000;top: 50%;left: 50%;transform: translate(-50%, -50%);font-size: 12px;font-weight: 600;display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center }.progress-bar div {position: absolute;height: 52px;width: 52px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }.progress-bar div span {line-height: 39px;height: 46px;width: 46px;text-align: center;border-radius: 50%;color: #000;background-color: #fff }.progress-bar div .counter {width: auto;height: auto;line-height: 1.2 }.progress-bar .background {background-color: #eff1f2 }.progress-bar .rotate {clip: rect(0 26px 52px 0);background-color: #1dbd68 }.progress-bar .left {clip: rect(0 26px 52px 0);opacity: 1;background-color: #eff1f2 }.progress-bar .right {clip: rect(0 26px 52px 0);transform: rotate(180deg);opacity: 0;background-color: #1dbd68 }@keyframes toggle {0% {opacity: 0 }100% {opacity: 1 }}.talk {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-pack: justify;justify-content: space-between }.talk--footer {margin-top: 56px;padding-top: 40px;border-top: 1px solid #727271 }.talk--footer > p {margin-bottom: 4px }@media (max-width:767px) {.talk--footer > p {font-size: 12px;line-height: 19px }}@media (max-width:767px) {.talk--web {display: none }}.talk--mobile {display: none }@media (max-width:767px) {.talk--mobile {display: block;padding-top: 24px;margin-top: 24px;border-top: 1px solid rgba(255, 255, 255, .15) }}.card--video {display: block;text-decoration: none }.card--video:hover {text-decoration: none }.card--video:hover .card--video__play {transform: scale(1.07) translate(-50%, -50%);box-shadow: 3px 3px 30px rgba(43, 42, 41, .8) }.card--video__figure {position: relative }.card--video__thumbnail {border-radius: 12px }.card--video__play {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);border-radius: 50%;transition: all .3s ease-in;width: 60px !important;height: 60px }.card--video__name {font-size: 20px;line-height: 27px;margin-bottom: 8px;margin-top: 24px }@media (max-width:767px) {.card--video__name {font-size: 16px;margin-top: 16px }}.card--video__description {position: relative;padding-top: 12px;margin-top: 12px }@media (max-width:767px) {.card--video__description {padding-top: 8px;margin-top: 8px }}.card--video__description::before {position: absolute;content: '';width: 42px;height: 1px;left: 0;top: 0;background-color: rgba(255, 255, 255, .15) }@media (max-width:767px) {.card--video__description::before {width: 34px }}.card--event {display: block;text-decoration: none }.card--event:hover {text-decoration: none }.card--event:hover figure img {transform: scale(1.2) }.card--event:hover .card--event__name {text-decoration: underline }.card--event__box {box-shadow: 0 4px 24px rgba(0, 0, 0, .04);border: 1px solid rgba(43, 42, 41, .1);border-radius: 12px }.card--event__box figure {border-radius: 12px 12px 0 0 }.card--event__box figure img {border-radius: 12px 12px 0 0 }.card--event__box .card--event__bottom {padding: 16px 24px 24px }@media (max-width:767px) {.card--event__box .card--event__bottom {padding: 16px 20px 20px }}.card--event__box .card--event__name {margin-top: 0 }.card--event__figure {position: relative;overflow: hidden;border-radius: 12px;line-height: 1 }.card--event__thumbnail {width: 100%;border-radius: 12px;transition: all .2s ease-in-out }.card--event__dates {position: absolute;top: 8px;right: 8px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.card--event__dates .card--event__date + .card--event__date {margin-left: 4px }.card--event__date {background-color: #fff;border-radius: 8px;padding: 8px;min-width: 48px;display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.card--event__date {padding: 6px 4px }}.card--event__date__number {font-size: 22px }@media (max-width:767px) {.card--event__date__number {font-size: 16px }}.card--event__date__month {font-size: 14px }@media (max-width:767px) {.card--event__date__month {font-size: 12px }}.card--event__tag {font-size: 14px;line-height: 21px;margin-bottom: 8px }@media (max-width:767px) {.card--event__tag {font-size: 12px;line-height: 19px }}.card--event__name {font-size: 20px;line-height: 27px;margin-top: 24px;margin-bottom: 12px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal }@media (max-width:767px) {.card--event__name {font-size: 16px;margin-top: 10px }}@media (max-width:767px) {.card--event__location {font-size: 12px }}.card--event__time {margin-top: 4px }@media (max-width:767px) {.card--event__time {font-size: 12px }}.card--event__tags {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-wrap: wrap;flex-wrap: wrap;margin-top: 24px }@media (max-width:767px) {.card--event__tags {margin-top: 16px }}.card--event__tags span {background-color: rgba(228, 231, 233, .6);border-radius: 8px;padding: 9px 12px;font-size: 14px }@media (max-width:767px) {.card--event__tags span {font-size: 12px;padding: 8px }}.card--event__tags span + span {margin-left: 12px }@media (max-width:767px) {.card--event__tags span + span {margin-left: 8px }}.accordion {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;cursor: pointer }.accordion img {width: 28px;height: 28px }@media (max-width:767px) {.accordion img {width: 24px;height: 24px }}.accordion__right {padding-left: 28px }@media (max-width:767px) {.accordion__right {padding-left: 12px }}.accordion__heading h3 {font-size: 20px;font-weight: 600 }@media (max-width:767px) {.accordion__heading h3 {font-size: 16px }}.accordion__body {font-weight: 400;color: #727271;margin-top: 16px;max-width: 384px }@media (max-width:575px) {.accordion__body {margin-top: 12px;font-size: 12px;max-width: 280px }}@media (max-width:767px) {.accordion__img {margin-bottom: 48px }}.accordion__img img {display: block }.getting .accordion + .accordion {padding-top: 28px }@media (max-width:767px) {.getting .accordion + .accordion {padding-top: 24px }}.getting .accordion {position: relative;padding-bottom: 28px;padding-left: 46px }@media (max-width:767px) {.getting .accordion {padding-left: 18px;padding-bottom: 24px }}.getting .accordion:after {position: absolute;content: '';left: 102px;right: 0;bottom: 0;width: 384px;height: 1px;background-color: rgba(43, 42, 41, .1) }@media (max-width:767px) {.getting .accordion:after {left: 54px }}@media (max-width:575px) {.getting .accordion:after {max-width: 280px }}.getting .accordion::before {content: '';position: absolute;width: 4px;background-color: #2b2a29;left: -4px;top: 0;bottom: 0;opacity: 0;transition: all .3s ease-in-out;transition-delay: .3s }@media (max-width:767px) {.getting .accordion::before {width: 2px;left: -2px }}.getting .accordion.active::before {opacity: 1 }.getting--accordion {border-left: 4px solid rgba(179, 179, 178, .4) }@media (max-width:767px) {.getting--accordion {border-left: 2px solid rgba(179, 179, 178, .4) }}.getting .cta {margin-top: 120px }@media (max-width:767px) {.getting .cta {margin-top: 80px }}@media (max-width:767px) {.faq {background-image: url(../assets/images/faq-bg.svg);background-repeat: no-repeat;background-position: bottom left;background-size: 180px;padding-bottom: 75px;margin-bottom: 40px }}.faq--accordion {box-shadow: 0 4px 24px rgba(0, 0, 0, .04);border-radius: 12px;border: 1px solid rgba(43, 42, 41, .1);background-color: #fff;padding: 20px 24px }@media (max-width:767px) {.faq--accordion {padding: 16px }}.faq--accordion + .faq--accordion {margin-top: 24px }@media (max-width:767px) {.faq--accordion + .faq--accordion {margin-top: 16px }}.faq--accordion__header {font-size: 18px;line-height: 28px;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;cursor: pointer }@media (max-width:767px) {.faq--accordion__header {font-size: 16px;line-height: 22px;padding-right: 25px }}.faq--accordion__header::after {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%23727271"/></svg>');background-position: center;background-size: cover;width: 24px;height: 24px;right: 0;transform: rotate(0);transition: all .3s ease-in-out }@media (max-width:767px) {.faq--accordion__header::after {width: 20px;height: 20px }}.faq--accordion__header.collapsed::after {transform: rotate(180deg) }.faq--accordion__answer p {margin-top: 12px }@media (max-width:767px) {.faq--accordion__answer p {font-size: 12px;line-height: 20px;margin-top: 8px }}.faq__cta {display: -ms-flexbox;display: flex;-ms-flex-pack: end;justify-content: flex-end;margin-top: 40px }@media (max-width:767px) {.faq--bg {display: none }}.explore .tabs {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.explore .tabs--item + .tabs--item {margin-left: 80px }@media (max-width:767px) {.explore .tabs--item + .tabs--item {margin-left: 35px }}.explore .tabs--link {color: #1a1a19;font-size: 20px;line-height: 32px;font-weight: 500;padding-bottom: 12px;text-decoration: none;position: relative }@media (max-width:767px) {.explore .tabs--link {font-size: 12px;line-height: 19px }}.explore .tabs--link.active {color: #df252a }.explore .tabs--link.active::before {content: '';position: absolute;height: 4px;background-color: #df252a;left: 0;right: 0;bottom: 0 }@media (max-width:767px) {.explore .tabs--link.active::before {height: 2px }}.explore .tabs--content {margin-top: 96px }@media (max-width:767px) {.explore .tabs--content {margin-top: 54px }}.exploreSlider .country--card:hover .country--name {text-decoration: underline }.exploreSlider .country--card:hover .country__img {transform: scale(1.2) }.exploreSlider .country--figure {position: relative;overflow: hidden;border-radius: 12px }.exploreSlider .country__img {border-radius: 12px;transition: all .3s ease-in }.exploreSlider .country__flag {border-radius: 50%;width: 40px !important;height: 40px;position: absolute;top: 16px;left: 16px }@media (max-width:767px) {.exploreSlider .country__flag {width: 28px !important;height: 28px;top: 12px;left: 12px }}.exploreSlider .country--name {font-size: 16px;line-height: 27px;margin-top: 20px }@media (max-width:767px) {.exploreSlider .country--name {margin-top: 16px }}.exploreSlider .country--courses {margin-top: 4px;font-size: 12px;line-height: 19px }.why--image {max-width: 490px;margin: 0 0 0 auto }@media (max-width:991px) {.why--image {max-width: inherit }}.why--header {font-size: 24px;line-height: 30px;margin-bottom: 20px }@media (max-width:767px) {.why--header {font-size: 20px;line-height: 25px;margin-bottom: 16px }}@media (max-width:991px) {.why--header {margin-top: 40px }}.why--description + .why--description {margin-top: 24px }@media (max-width:767px) {.why--description {font-size: 12px;line-height: 19px }}.why--controls {margin-top: 40px }@media (max-width:767px) {.why--controls .slider-controls > a {width: 40px;height: 40px;margin-right: 8px }}@media (max-width:767px) {.why--controls .slider-controls > a::before {width: 20px;height: 20px }}@media (max-width:767px) {.why--controls .slider-controls > p {display: none }}.student--header {background-image: url(../assets/images/student-stories.png);background-repeat: no-repeat;background-position: right center;background-size: 425px }@media (max-width:1024px) {.student--header {background-size: 320px }}@media (max-width:991px) {.student--header {background-image: none }}.student--card {position: relative;padding: 24px;margin-top: 16px;max-height: 312px;min-height: 312px }@media (max-width:767px) {.student--card {max-height: 240px;min-height: 240px }}@media (max-width:767px) {.student--card {padding: 16px }}.student--card__quote {position: absolute;top: -16px;left: 16px;max-width: 34px }.student--card blockquote {font-size: 18px;line-height: 25px;max-width: 336px }@media (max-width:767px) {.student--card blockquote {font-size: 12px;line-height: 19px }}.student--card__footer {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;padding: 16px 0 0 0;border-top: 1px solid rgba(43, 42, 41, .1);margin-top: 20px }@media (max-width:767px) {.student--card__footer {margin-top: 16px }}.student--card__image {max-height: 52px;max-width: 52px;border-radius: 50% }@media (max-width:767px) {.student--card__image {max-width: 40px;max-height: 40px }}.student--card__details {padding-left: 12px }@media (max-width:767px) {.student--card__details {padding-left: 8px }}.student--card__name {font-size: 16px;line-height: 24px;margin-bottom: 2px }@media (max-width:767px) {.student--card__name {font-size: 12px;line-height: 19px }}.student--card__designation {font-size: 16px;line-height: 24px }@media (max-width:767px) {.student--card__designation {font-size: 12px;line-height: 19px }}.reach {position: relative;overflow: hidden;padding: 200px 0 }@media (max-width:767px) {.reach {padding: 40px 0 }}.reach--logos {position: absolute;right: 20px;top: 50%;transform: translateY(-50%) }@media (max-width:1024px) {.reach--logos {right: -35% }}@media (max-width:991px) {.reach--logos {position: static;right: inherit;top: inherit;transform: inherit;margin-top: 40px }}.reach--logos__row {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.reach--logos__row + .reach--logos__row {margin-top: 48px }@media (max-width:767px) {.reach--logos__row + .reach--logos__row {margin-top: 12px }}.reach--logos__row:nth-child(1) :nth-child(1) img {transition-duration: 1.7s }.reach--logos__row:nth-child(1) :nth-child(2) img {transition-delay: 3s }.reach--logos__row:nth-child(1) :nth-child(3) img {transition-delay: 3.4s }.reach--logos__row:nth-child(1) :nth-child(4) img {transition-delay: 2.5s }.reach--logos__row:nth-child(2) :nth-child(1) img {transition-delay: 2.5s }.reach--logos__row:nth-child(2) :nth-child(2) img {transition-delay: 4s }.reach--logos__row:nth-child(2) :nth-child(3) img {transition-delay: 1.7s }.reach--logos__row:nth-child(2) :nth-child(4) img {transition-delay: 3s }.reach--logos__row:nth-child(3) :nth-child(1) img {transition-delay: 3s }.reach--logos__row:nth-child(3) :nth-child(2) img {transition-delay: 4.5s }.reach--logos__row:nth-child(3) :nth-child(3) img {transition-delay: 2s }.reach--logos__row:nth-child(3) :nth-child(4) img {transition-duration: 1.7s }.reach--logos__row:nth-child(4) :nth-child(1) img {transition-delay: 3.4s }.reach--logos__row:nth-child(4) :nth-child(2) img {transition-delay: 2.4s }.reach--logos__row:nth-child(4) :nth-child(3) img {transition-delay: 1.7s }.reach--logos__row:nth-child(4) :nth-child(4) img {transition-delay: 3.5s }.reach--logos__row:nth-child(5) :nth-child(1) img {transition-delay: 4.5s }.reach--logos__row:nth-child(5) :nth-child(2) img {transition-duration: 3.1s }.reach--logos__row:nth-child(5) :nth-child(3) img {transition-duration: 1.7s }.reach--logos__row:nth-child(5) :nth-child(4) img {transition-duration: 2.5s }.reach--logos__item {position: relative;width: 120px;height: 72px }@media (max-width:767px) {.reach--logos__item {width: 33.33%;min-width: inherit }}@media (max-width:575px) {.reach--logos__item {height: 42px }}.reach--logos__item + .reach--logos__item {margin-left: 40px }@media (max-width:767px) {.reach--logos__item + .reach--logos__item {margin-left: 20px }}.reach--logos__item img {opacity: 0;position: absolute;transition: opacity .5s }@media (max-width:767px) {.reach--logos__item img {width: 100% }}.reach--logos__item img.active {opacity: 1 }.reach .section--title {margin-bottom: 40px;max-width: 490px }.reach--flag {max-width: 424px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-wrap: wrap;flex-wrap: wrap;margin-bottom: 60px }@media (max-width:767px) {.reach--flag {margin-bottom: 40px }}.reach--flag img {border-radius: 50%;width: 28px;height: 28px;margin: 0 16px 16px 0 }@media (max-width:767px) {.reach--flag img {margin: 0 12px 12px 0 }}.blog--item {border-top: 1px solid rgba(43, 42, 41, .1) }.blog--item__list {border: 1px solid rgba(43, 42, 41, .1);border-top: none;border-left: none;display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;padding: 24px;min-height: 200px }@media (max-width:767px) {.blog--item__list {padding: 16px }}.blog--item__list:hover {text-decoration: none }.blog--item__list:hover h3 {text-decoration: underline }.blog--item__title {font-size: 20px;line-height: 27px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal;max-width: 439px }@media (max-width:767px) {.blog--item__title {font-size: 16px;line-height: 22px }}.blog--item__desc {font-size: 16px;line-height: 24px;margin: 12px 0;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal;max-width: 439px }@media (max-width:767px) {.blog--item__desc {font-size: 12px;line-height: 19px;-webkit-line-clamp: 3 }}.blog--item__detail {font-size: 14px;line-height: 20px }@media (max-width:767px) {.blog--item__detail {font-size: 12px;line-height: 19px }}.blog--item__right {padding-left: 40px }@media (max-width:767px) {.blog--item__right {padding-left: 12px }}.blog--item__left {max-width: 439px;width: 100% }@media (max-width:767px) {.blog--item__left {max-width: 242px }}.blog--item__image {max-width: 113px;max-height: 113px;width: 100%;height: 100%;border-radius: 8px }@media (max-width:767px) {.blog--item__image {max-width: 80px;max-height: 80px }}.hero--cta {margin-bottom: 5px;margin-top: 60px }@media (max-width:767px) {.hero--cta {margin-top: 32px;font-size: 12px;line-height: 19px }}.hero--searchbar {padding: 8px 8px 8px 20px;background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .1);border-radius: 98px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-top: 40px;max-width: 596px }@media (max-width:767px) {.hero--searchbar {margin-top: 32px;padding: 4px 4px 4px 16px }}@media (max-width:991px) {.hero--searchbar .country-picker.bootstrap-select {width: 98px !important }}.hero--searchbar .country-picker .dropdown-toggle {font-size: 16px;color: #2b2a29;background-color: transparent;border-color: transparent;padding: 0;margin: 0 }@media (max-width:1024px) {.hero--searchbar .country-picker .dropdown-toggle {font-size: 14px;line-height: 22px }}@media (max-width:991px) {.hero--searchbar .country-picker .dropdown-toggle {font-size: 12px;line-height: 18px }}.hero--searchbar .country-picker .dropdown-toggle:active, .hero--searchbar .country-picker .dropdown-toggle:focus {box-shadow: none;outline: 0 !important }.hero--searchbar .country-picker .dropdown-toggle[aria-expanded=true]:after {transform: rotate(0) }.hero--searchbar .country-picker .dropdown-toggle:after {border: none;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%232B2A29"/></svg>');width: 24px;height: 24px;transform: rotate(180deg);background-size: cover;background-position: center;transition: all .3s ease-in }@media (max-width:991px) {.hero--searchbar .country-picker .dropdown-toggle:after {width: 20px;height: 20px }}.hero--searchbar .country-picker .dropdown-menu {font-size: 16px }@media (max-width:991px) {.hero--searchbar .country-picker .dropdown-menu {font-size: 12px;line-height: 18px }}.hero--searchbar .country-picker .dropdown-menu .dropdown-item.active, .hero--searchbar .country-picker .dropdown-menu .dropdown-item:active {background-color: #df252a }.hero--searchbar input[type=text] {background-color: transparent;border: none;max-width: 341px;font-size: 14px;color: #2b2a29;width: 100%;outline: 0;box-shadow: none;caret-color: #df252a;border-left: 1px solid rgba(43, 42, 41, .15);padding-left: 16px;margin-left: 12px;border-radius: 0 }@media (max-width:767px) {.hero--searchbar input[type=text] {font-size: 12px;line-height: 18px;padding-left: 12px;margin-left: 4px;max-width: 156px }}.hero--searchbar input[type=text]:-ms-input-placeholder {font-size: 14px;color: #727271 }.hero--searchbar input[type=text]::placeholder {font-size: 14px;color: #727271 }@media (max-width:1024px) {.hero--searchbar input[type=text]:-ms-input-placeholder {font-size: 12px;line-height: 18px }.hero--searchbar input[type=text]::placeholder {font-size: 12px;line-height: 18px }}.hero--searchbar__left {-ms-flex: 1;flex: 1 }.hero--searchbar__submit {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;padding: 8px 16px;border-radius: 100px;background-color: #2b2a29;border: none }@media (max-width:991px) {.hero--searchbar__submit {padding: 8px }}.hero--searchbar__submit:focus {outline: 0 }@media (max-width:991px) {.hero--searchbar__submit img {width: 20px;height: 20px }}.hero--slider__left {margin-top: 50px }@media (max-width:991px) {.hero--slider__left {margin-top: 40px }}.hero--slider__image {max-width: 500px;margin: 0 0 0 auto;width: 100% }@media (max-width:1024px) {.hero--slider__image {margin: 0 auto }}@media (max-width:767px) {.hero--slider__image img {max-height: 335px;max-width: 335px;object-fit: contain }}.hero--counter {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;-ms-flex-wrap: wrap;flex-wrap: wrap;margin-top: 80px }@media (max-width:991px) {.hero--counter__item {width: 100%;max-width: 50%;margin-bottom: 28px }}.hero--counter__number {font-size: 40px;line-height: 52px;white-space: nowrap }@media (max-width:767px) {.hero--counter__number {font-size: 26px;line-height: 33px }}.hero--counter__text {font-size: 20px;line-height: 32px;margin-top: 16px }@media (max-width:1199px) {.hero--counter__text {margin-top: 10px }}@media (max-width:767px) {.hero--counter__text {margin-top: 4px;font-size: 12px;line-height: 19px }}.mission--bg {background-image: url(../assets/images/mission-bg.svg);background-position: top right;background-size: 328px;background-repeat: no-repeat }@media (max-width:767px) {.mission--bg {background-size: 178px;background-position: bottom right }}.mission--bg .section--title {max-width: 808px }.vision--flex {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;-ms-flex-pack: end;justify-content: flex-end }@media (max-width:767px) {.vision--flex {-ms-flex-pack: justify;justify-content: space-between }}.vision--flex > ul + ul {margin-left: 40px }@media (max-width:767px) {.vision--flex > ul + ul {margin-left: 10px }}.leadership--flex {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;-ms-flex-wrap: wrap;flex-wrap: wrap }@media (max-width:991px) {.leadership--flex {margin-left: -8px;margin-right: -8px }}.leadership--card {display: -ms-flexbox;display: flex;max-width: 50%;width: 100% }@media (max-width:991px) {.leadership--card {-ms-flex-wrap: wrap;flex-wrap: wrap;padding-right: 8px;padding-left: 8px }}@media (max-width:767px) {.leadership--card {max-width: 100% }.leadership--card:not(:last-child) {margin-bottom: 30px }}.leadership--card .right {max-width: 278px;padding-left: 40px }@media (max-width:991px) {.leadership--card .right {padding-left: 0;max-width: 100% }}.leadership--card img {width: 278px;height: 278px;border-radius: 12px;margin-bottom: 24px }@media (max-width:991px) {.leadership--card img {width: 100%;height: auto;margin-bottom: 16px }}.leadership--name {font-size: 20px;line-height: 27px }@media (max-width:767px) {.leadership--name {font-size: 16px;line-height: 24px }}.leadership--designation {margin-top: 12px }@media (max-width:767px) {.leadership--designation {margin-top: 5px }}.leadership--description, .leadership--designation {font-size: 16px;line-height: 24px;margin-bottom: 16px }@media (max-width:767px) {.leadership--description, .leadership--designation {font-size: 12px;line-height: 18px;margin-bottom: 8px }}.leadership--social {display: -ms-inline-flexbox;display: inline-flex;-ms-flex-align: center;align-items: center;position: relative;width: 24px;height: 24px;margin-left: 16px }@media (max-width:767px) {.leadership--social {width: 16px;height: 16px }}.leadership--social::before {position: absolute;content: '';width: 100%;height: 100%;background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.333 6.66699C14.6591 6.66699 15.9309 7.19378 16.8685 8.13146C17.8062 9.06914 18.333 10.3409 18.333 11.667V17.5003H14.9997V11.667C14.9997 11.225 14.8241 10.801 14.5115 10.4885C14.199 10.1759 13.775 10.0003 13.333 10.0003C12.891 10.0003 12.4671 10.1759 12.1545 10.4885C11.8419 10.801 11.6663 11.225 11.6663 11.667V17.5003H8.33301V11.667C8.33301 10.3409 8.85979 9.06914 9.79747 8.13146C10.7352 7.19378 12.0069 6.66699 13.333 6.66699V6.66699Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round"/><path d="M5.00033 7.5H1.66699V17.5H5.00033V7.5Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round"/><path d="M3.33366 5.00033C4.25413 5.00033 5.00033 4.25413 5.00033 3.33366C5.00033 2.41318 4.25413 1.66699 3.33366 1.66699C2.41318 1.66699 1.66699 2.41318 1.66699 3.33366C1.66699 4.25413 2.41318 5.00033 3.33366 5.00033Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round"/></svg>');background-repeat: no-repeat;background-size: cover }.home {position: relative }.home .hero .section--hero {font-size: 54px;max-width: 530px;line-height: 66px;margin-bottom: 28px;padding-top: 20px;position: relative }@media (max-width:1024px) {.home .hero .section--hero {font-size: 38px;line-height: 44px }}@media (max-width:767px) {.home .hero .section--hero {font-size: 32px;line-height: 40px;margin-bottom: 16px }}.home .hero .section--hero::before {content: '';position: absolute;width: 50px;height: 2px;background-color: #df252a;left: 0;top: 0 }@media (max-width:767px) {.home .hero .section--hero::before {width: 28px }}.home .notFound {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center;margin-top: 76px;background-color: #f1f2f3;padding: 150px 0 }@media (max-width:767px) {.home .notFound {margin-top: 40px }}.home .notFound img {margin-bottom: 25px }.home .notFound .title {font-size: 24px;line-height: 33px }@media (max-width:767px) {.home .notFound .title {font-size: 18px;line-height: 24px }}.home .notFound .subTitle {font-size: 16px;line-height: 24px;margin: 5px 0 22px }@media (max-width:767px) {.home .notFound .subTitle {font-size: 14px;line-height: 20px }}.home--blog .hero .section--hero::before {background-color: #727271 }.home--blog .hero .section--hero__desc {max-width: 490px }.about .hero--secondary .hero--counter {-ms-flex-wrap: nowrap;flex-wrap: nowrap }@media (max-width:991px) {.about .hero--secondary .hero--counter__item {max-width: 100%;margin-bottom: 0 }}@media (max-width:991px) {.about .hero--slider__image {margin-bottom: 40px }}.about .what .section--title {margin-bottom: 28px }@media (max-width:767px) {.about .what .section--title {margin-bottom: 16px }}.about .what--list {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start }.about .what--list + .what--list {margin-top: 40px }@media (max-width:767px) {.about .what--list + .what--list {margin-top: 28px }}@media (max-width:767px) {.about .what--list:first-child {margin-top: 40px }}.about .what--list__image {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;width: 100%;max-width: 52px;height: 52px;border-radius: 50%;background-color: rgba(179, 179, 178, .15) }@media (max-width:767px) {.about .what--list__image {max-width: 48px;height: 48px }}.about .what--list__image img {width: 24px;height: 24px }.about .what--list__right {padding-left: 24px }@media (max-width:767px) {.about .what--list__right {padding-left: 16px }}.about .what--list__right h3 {font-size: 20px;line-height: 32px;margin-bottom: 8px }@media (max-width:767px) {.about .what--list__right h3 {font-size: 16px;line-height: 25px }}.about .what--list__right p {font-size: 16px;line-height: 25px;max-width: 414px }@media (max-width:767px) {.about .what--list__right p {font-size: 12px;line-height: 19px }}.about .what .arrow {margin-top: 48px }@media (max-width:767px) {.about .what .arrow {margin-top: 40px }}.career .hero--counter {-ms-flex-align: start;align-items: flex-start;margin: 48px 0 }@media (max-width:767px) {.career .hero--counter {margin: 40px 0 }}.career .hero--counter__item {-ms-flex: 1 1 0px;flex: 1 1 0 }@media (max-width:767px) {.career .hero--counter__item {-ms-flex: inherit;flex: inherit }}.career .hero--counter__item + .hero--counter__item {margin-left: 65px }@media (max-width:1199px) {.career .hero--counter__item + .hero--counter__item {margin-left: 45px }}@media (max-width:1024px) {.career .hero--counter__item + .hero--counter__item {margin-left: 0 }}.career .hero--counter__number {font-size: 34px;white-space: nowrap }@media (max-width:1199px) {.career .hero--counter__number {font-size: 28px;line-height: 32px }}@media (max-width:767px) {.career .hero--counter__number {font-size: 26px;line-height: 33px }}.career .hero--counter__text {font-size: 16px;line-height: 23px }@media (max-width:767px) {.career .hero--counter__text {font-size: 12px;line-height: 19px }}@media (max-width:1024px) {.career .hero--slider__image {margin-bottom: 40px }}.career .work--item {margin-bottom: 48px }@media (max-width:767px) {.career .work--item {margin-bottom: 28px;display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start }}.career .work--icon {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;width: 100%;max-width: 52px;height: 52px;border-radius: 50%;background-color: rgba(179, 179, 178, .15);margin-bottom: 24px }@media (max-width:767px) {.career .work--icon {max-width: 48px;height: 48px }}.career .work--icon img {width: 24px;height: 24px }@media (max-width:767px) {.career .work--right {padding-left: 16px }}.career .work--right h3 {font-size: 20px;line-height: 28px;margin-bottom: 8px }@media (max-width:767px) {.career .work--right h3 {font-size: 16px;line-height: 25px }}.career .work--right p {font-size: 16px;line-height: 25px }@media (max-width:767px) {.career .work--right p {font-size: 12px;line-height: 19px }}.career .stories--card {border: 1px solid rgba(43, 42, 41, .1);box-shadow: 0 4px 24px rgba(0, 0, 0, .04);border-radius: 16px;padding: 40px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;min-height: 412px;max-height: 412px }@media (max-width:1024px) {.career .stories--card {-ms-flex-direction: column;flex-direction: column;-ms-flex-align: start;align-items: flex-start;padding: 20px;margin-top: 14px }}@media (max-width:991px) {.career .stories--card {max-height: 312px;min-height: 312px }}.career .stories--card__tag {font-size: 18px;line-height: 28px;margin-bottom: 16px }@media (max-width:767px) {.career .stories--card__tag {font-size: 12px;line-height: 19px;margin-bottom: 8px }}.career .stories--card blockquote {font-size: 24px;line-height: 36px;max-width: 670px }@media (max-width:767px) {.career .stories--card blockquote {font-size: 14px;line-height: 22px }}.career .stories--card__left {position: relative;padding-left: 88px }@media (max-width:1024px) {.career .stories--card__left {padding-left: 0 }}.career .stories--card__left::before {position: absolute;content: '';background-image: url(../assets/images/blockquote.svg);background-repeat: no-repeat;background-position: center;background-size: cover;width: 48px;height: 40px;top: 0;left: 0 }@media (max-width:1024px) {.career .stories--card__left::before {width: 28px;height: 24px;top: -34px }}.career .stories--card__right {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center;border-left: 1px solid rgba(43, 42, 41, .1);padding-left: 48px;margin-left: 50px }@media (max-width:1024px) {.career .stories--card__right {-ms-flex-direction: row;flex-direction: row;margin-top: 16px;margin-left: 0;padding-top: 16px;padding-left: 0;border-left: 0;border-top: 1px solid rgba(43, 42, 41, .1);width: 100% }}.career .stories--card__image {max-width: 182px;min-width: 182px;height: 182px;border-radius: 50%;margin-bottom: 24px;object-fit: cover }@media (max-width:1024px) {.career .stories--card__image {max-width: 80px;min-width: 80px;height: 80px;margin-bottom: 0;margin-right: 8px }}@media (max-width:767px) {.career .stories--card__image {max-width: 40px;min-width: 40px;height: 40px }}.career .position--heading {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start }@media (max-width:991px) {.career .position--heading {-ms-flex-wrap: wrap;flex-wrap: wrap }}.career .position--heading__right {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:991px) {.career .position--heading__right {margin-bottom: 40px;-ms-flex-wrap: wrap;flex-wrap: wrap }}.career .position--heading__left .section--title {max-width: 600px }.career .position--heading__search {padding: 12px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 50%;min-width: 48px;height: 48px;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/><path d="M21.0004 21L16.6504 16.65" stroke="%232B2A29" stroke-width="1.5" stroke-linecap="square"/></svg>');background-repeat: no-repeat;background-size: 24px;background-position: center;cursor: pointer }.career .position--heading__search.list {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.17188 5.28015H17.9995V4.03015H5.17188V5.28015Z" fill="%232B2A29"/><path d="M5.17188 10.625H17.9995V9.375H5.17188V10.625Z" fill="%232B2A29"/><path d="M5.17188 15.9698H17.9995V14.7198H5.17188V15.9698Z" fill="%232B2A29"/><path d="M2.5 4.65515H2.50875" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M2.5 10H2.50875" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M2.5 15.3448H2.50875" stroke="%232B2A29" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');margin-left: 8px }.career .position--heading__search.grid {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.33333 2.5H2.5V8.33333H8.33333V2.5Z" stroke="%232B2A29" stroke-width="1.25" stroke-linejoin="round"/><path d="M17.4993 2.5H11.666V8.33333H17.4993V2.5Z" stroke="%232B2A29" stroke-width="1.25" stroke-linejoin="round"/><path d="M17.4993 11.6666H11.666V17.5H17.4993V11.6666Z" stroke="%232B2A29" stroke-width="1.25" stroke-linejoin="round"/><path d="M8.33333 11.6666H2.5V17.5H8.33333V11.6666Z" stroke="%232B2A29" stroke-width="1.25" stroke-linejoin="round"/></svg>');margin-left: 8px }@media (max-width:767px) {.career .position--heading__search {max-width: 40px;min-width: 40px;height: 40px;background-size: 20px }}.career .position--heading__location {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;border: 1px solid rgba(43, 42, 41, .1);border-radius: 98px;padding: 10px 24px;margin-left: 8px;white-space: nowrap }@media (max-width:991px) {.career .position--heading__location {width: 100%;margin-top: 10px;margin-left: 0 }}@media (max-width:767px) {.career .position--heading__location {padding: 10px 12px }}.career .position--heading__location > span {font-size: 16px;line-height: 26px;margin-right: 5px;white-space: nowrap }@media (max-width:991px) {.career .position--heading__location > span {font-size: 12px;line-height: 18px }}.career .position--heading__drop .dropdown-toggle {font-size: 16px;font-weight: 500;color: #2b2a29;background-color: transparent;border-color: transparent;padding: 0;margin: 0 }@media (max-width:991px) {.career .position--heading__drop .dropdown-toggle {font-size: 12px;line-height: 18px }}.career .position--heading__drop .dropdown-toggle:active, .career .position--heading__drop .dropdown-toggle:focus {box-shadow: none;outline: 0 !important }.career .position--heading__drop .dropdown-toggle[aria-expanded=true]:after {transform: rotate(0) }.career .position--heading__drop .dropdown-toggle:after {border: none;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%232B2A29"/></svg>');width: 24px;height: 24px;transform: rotate(180deg);background-size: cover;background-position: center;transition: all .3s ease-in }@media (max-width:991px) {.career .position--heading__drop .dropdown-toggle:after {width: 20px;height: 20px }}.career .position--heading__drop .dropdown-menu {font-size: 16px }@media (max-width:991px) {.career .position--heading__drop .dropdown-menu {font-size: 12px;line-height: 18px }}.career .position--heading__drop .dropdown-menu .dropdown-item.active, .career .position--heading__drop .dropdown-menu .dropdown-item:active {background-color: #df252a }.career .position--subHeading {width: 100% }.career .position--subHeading .searchbar--body {width: 522px;background-color: #fff }.career .position--cta {margin-top: 120px;background-color: #1a1a19;border-radius: 24px;padding: 44px 0;background-image: url(../assets/images/position-top.svg), url(../assets/images/position-top.svg);background-repeat: no-repeat;background-size: auto;background-position: top right, bottom left }@media (max-width:767px) {.career .position--cta {padding: 24px;background-size: 210px;margin-top: 80px }}.career .position--cta h3 {font-size: 36px;line-height: 46px;max-width: 556px;margin: 0 auto 24px }@media (max-width:767px) {.career .position--cta h3 {font-size: 26px;line-height: 33px;margin: 0 auto 16px;max-width: 255px }}.career .position--cta a {font-size: 18px;line-height: 29px;display: block;text-decoration: none }.career .position--cta a:hover {color: #df252a }@media (max-width:767px) {.career .position--cta a {font-size: 16px;line-height: 25px }}.career .position--list {padding-top: 24px;border-top: 1px solid rgba(43, 42, 41, .1) }.career .position--list + .position--list {margin-top: 24px }.career .position--list__heading {margin-bottom: 16px }@media (max-width:991px) {.career .position--list__heading {display: none }}.career .position--list__heading__role {padding-left: 40px;max-width: 33.33%;width: 100% }.career .position--list__heading__location {padding-left: 112px;width: 100%;max-width: 33.33% }.career .position--list__heading span {font-size: 16px;line-height: 24px }.career .position--list__team {font-size: 28px;line-height: 35px;padding-top: 10px }@media (max-width:991px) {.career .position--list__team {margin-bottom: 20px;font-size: 20px;line-height: 25px;padding-top: 0 }}.career .position--list__card {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;text-decoration: none;border-radius: 12px;border: 1px solid rgba(43, 42, 41, .1);background-color: #fff;box-shadow: 0 4px 24px rgba(0, 0, 0, .04);padding: 24px 24px 24px 40px;transition: all .3s ease }@media (max-width:767px) {.career .position--list__card {-ms-flex-wrap: wrap;flex-wrap: wrap;padding: 16px 20px }}.career .position--list__card + a {margin-top: 24px }@media (max-width:767px) {.career .position--list__card + a {margin-top: 16px }}.career .position--list__card:hover {border-color: #df252a }.career .position--list__card:hover .btn-next {background-color: #df252a }.career .position--list__card:hover .btn-next::before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>') }.career .position--list__card__location, .career .position--list__card__role {-ms-flex: 0 0 33.33333%;flex: 0 0 33.33333%;max-width: 33.33333% }@media (max-width:767px) {.career .position--list__card__location, .career .position--list__card__role {max-width: 100%;-ms-flex: initial;flex: initial }}.career .position--list__card__title {font-size: 20px;line-height: 27px;margin-bottom: 8px }@media (max-width:767px) {.career .position--list__card__title {font-size: 16px;line-height: 21px;margin-bottom: 4px }}.career .position--list__card__desc {font-size: 16px;line-height: 27px }@media (max-width:767px) {.career .position--list__card__desc {font-size: 12px;line-height: 19px }}.career .position--list__card__location {font-size: 16px;line-height: 24px }@media (max-width:767px) {.career .position--list__card__location {font-size: 12px;line-height: 19px;margin-top: 12px }}.career .position--list__card .btn-next {width: 48px;height: 48px;border: 1px solid rgba(43, 42, 41, .1);border-radius: 50%;cursor: pointer;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;transition: all .3s ease }@media (max-width:767px) {.career .position--list__card .btn-next {display: none }}.career .position--list__card .btn-next::before {content: '';position: absolute;width: 24px;height: 24px;background-size: cover;background-repeat: no-repeat;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>') }.career .position .load-more {margin-top: 40px }@media (max-width:767px) {.career .position .load-more {margin-top: 24px }}.job-detail .section--hero__desc {font-size: 18px;line-height: 28px;margin-bottom: 8px }@media (max-width:767px) {.job-detail .section--hero__desc {font-size: 12px;line-height: 19px;margin-bottom: 24px }}.job-detail .section--hero__cta {text-decoration: none;font-size: 18px;line-height: 28px;margin-bottom: 40px;display: inline-block }.job-detail .section--hero__cta:hover {color: #df252a }@media (max-width:767px) {.job-detail .section--hero__cta {font-size: 12px;line-height: 19px }}.job-detail .section--hero__bottom {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.job-detail .job + .job {margin-top: 60px }@media (max-width:767px) {.job-detail .job + .job {margin-top: 40px }}.job-detail .job .section--title {margin-bottom: 24px }@media (max-width:767px) {.job-detail .job .section--title {margin-bottom: 16px;font-size: 20px;line-height: 25px }}.job-detail .job--listing {font-size: 16px;line-height: 25px;font-weight: 400;list-style-type: disc;color: #2b2a29;padding-left: 15px }@media (max-width:767px) {.job-detail .job--listing {font-size: 12px;line-height: 19px }}.job-detail .job--listing li {padding-left: 25px }@media (max-width:767px) {.job-detail .job--listing li {padding-left: 10px }}.job-detail .job p {font-size: 16px;line-height: 25px;font-weight: 400 }@media (max-width:767px) {.job-detail .job p {font-size: 12px;line-height: 19px }}.job-detail .job--form .apply-linked {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;color: #2867b2;font-size: 18px;line-height: 27px }@media (max-width:767px) {.job-detail .job--form .apply-linked {font-size: 12px;line-height: 19px }}.job-detail .job--form .apply-linked img {margin-right: 16px;width: 28px;height: 28px }@media (max-width:767px) {.job-detail .job--form .apply-linked img {width: 16px;height: 16px;margin-right: 8px }}.job-detail .job--form form {margin-top: 60px;padding-top: 60px;border-top: 1px solid rgba(43, 42, 41, .1) }@media (max-width:767px) {.job-detail .job--form form {margin-top: 24px;padding-top: 24px }}@media (max-width:767px) {.job-detail .job--form form .form__button--right {text-align: left }}.job-detail .job--detail__hero {padding-bottom: 32px }.job-detail .job--detail__gray {padding: 64px 0;margin-top: 32px }.thank p {max-width: 702px }.thank a {margin-top: 48px }.blog--article {border-right: 1px solid rgba(43, 42, 41, .1) }@media (max-width:991px) {.blog--article {border-right: none }}.blog--feature {margin-top: 60px }.blog--feature:hover .blog--feature__figure img {transform: scale(1.2) }.blog--feature:hover .blog--feature__title {text-decoration: underline }@media (max-width:991px) {.blog--feature {margin-top: 40px }}.blog--feature__figure {overflow: hidden;border-radius: 12px;line-height: 1 }@media (max-width:991px) {.blog--feature__figure {margin-bottom: 16px }}.blog--feature__figure img {border-radius: 12px;transition: all .5s ease-in-out }.blog--feature__title {font-size: 28px;line-height: 38px;margin: 12px 0 }@media (max-width:767px) {.blog--feature__title {font-size: 16px;line-height: 21px;margin: 8px 0 12px 0 }}.blog--feature__right {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-pack: justify;justify-content: space-between }.blog__time {font-size: 14px;line-height: 20px }@media (max-width:767px) {.blog__time {font-size: 12px;line-height: 19px }}.blog__author, .blog__desc {font-size: 16px;line-height: 25px }@media (max-width:767px) {.blog__author, .blog__desc {font-size: 12px;line-height: 19px }}@media (max-width:991px) {.blog__author {margin-top: 16px }}.blog--career .archive {margin-bottom: 24px;font-size: 28px;line-height: 38px }@media (max-width:767px) {.blog--career .archive {font-size: 20px;line-height: 25px;margin-bottom: 20px }}.blog--career .position--list__card {padding: 20px 24px }.blog--career .position--list__card__role {-ms-flex: 1;flex: 1;max-width: 100% }.blog--career .load-more {margin-top: 40px }.blog--listing {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.blog--listing + .blog--listing {margin-top: 60px }@media (max-width:767px) {.blog--listing + .blog--listing {margin-top: 32px }}.blog--listing:hover .blog--title {text-decoration: underline }.blog--listing:hover .blog--feature__figure img {transform: scale(1.2) }.blog--listing__left {max-width: 490px;-ms-flex: 0 0 490px;flex: 0 0 490px;width: 100%;padding-right: 40px }@media (max-width:767px) {.blog--listing__left {max-width: 300px;-ms-flex: 0 0 300px;flex: 0 0 300px }}@media (max-width:575px) {.blog--listing__left {max-width: 220px;-ms-flex: 0 0 220px;flex: 0 0 220px;padding-right: 16px }}.blog--listing .blog--title {font-size: 20px;line-height: 27px;margin-bottom: 12px }@media (max-width:767px) {.blog--listing .blog--title {font-size: 16px;line-height: 21px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal;max-width: 200px }}.blog--listing .blog__desc {margin-bottom: 12px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal }@media (max-width:767px) {.blog--listing .blog__desc {margin-bottom: 8px }}.blog--listing .blog--feature__figure {width: 238px;height: 148px }@media (max-width:767px) {.blog--listing .blog--feature__figure {width: 100px;height: 100px }}.blog--listing .blog--feature__figure img {width: 100%;height: 100%;object-fit: cover }.blog--pagination {margin-top: 80px;padding-top: 40px;border-top: 1px solid rgba(43, 42, 41, .1) }@media (max-width:991px) {.blog--pagination {margin-top: 40px;margin-bottom: 80px;padding-top: 40px }}.blog--hero__time {margin-bottom: 20px }@media (max-width:767px) {.blog--hero__time {margin-bottom: 8px }}.blog--hero__banner {margin: 60px 0;border-radius: 12px }@media (max-width:767px) {.blog--hero__banner {margin: 24px 0 }}.blog--rich {font-size: 16px;line-height: 25px;font-weight: 400 }@media (max-width:767px) {.blog--rich {font-size: 12px;line-height: 19px }}.blog--rich p + p {margin-top: 30px }@media (max-width:767px) {.blog--rich p + p {margin-top: 20px }}.blog--rich a {color: #df252a }.blog--rich h2 {font-size: 28px;line-height: 38px;font-weight: 600;margin-top: 48px;margin-bottom: 20px }@media (max-width:767px) {.blog--rich h2 {font-size: 20px;line-height: 25px;margin-top: 40px;margin-bottom: 16px }}.blog--rich img {margin: 60px 0 }.blog--rich img + h2, .blog--rich img + p {margin-top: 0 }@media (max-width:767px) {.blog--rich img {margin: 40px 0 }}.blog--rich ul {list-style-type: disc;padding-left: 15px }.blog--rich ul + p {margin-top: 30px }@media (max-width:767px) {.blog--rich ul + p {margin-top: 20px }}.event .explore .tabs {position: relative }@media (max-width:991px) {.event .explore .tabs {white-space: nowrap;-ms-flex-wrap: nowrap;flex-wrap: nowrap;overflow-x: auto;line-height: 3 }}@media (max-width:767px) {.event .explore .tabs {-ms-flex-pack: justify;justify-content: space-between;-ms-flex-wrap: nowrap;flex-wrap: nowrap;white-space: nowrap;overflow-x: auto;padding-bottom: 15px }}.event .explore .tabs:after {content: '';position: absolute;width: 100%;height: 1px;background: rgba(43, 42, 41, .1);bottom: -11px }@media (max-width:991px) {.event .explore .tabs:after {bottom: 0 }}.event .explore .tabs--content {margin-top: 40px }.event .explore .tabs--content .hero {margin-bottom: 40px }.event--chip > .item {background-color: rgba(223, 37, 42, .1);padding: 10px 12px;border-radius: 12px;font-size: 12px;line-height: 19px }.event--chip > .item:not(:last-child) {margin-bottom: 10px }.event .card--event {margin-bottom: 48px }@media (max-width:767px) {.event .card--event {margin-bottom: 40px }}@media (max-width:991px) {.event .hero .card--event {margin-top: 40px }}.event .hero .vision--flex {-ms-flex-pack: start;justify-content: flex-start;margin-top: 32px }@media (max-width:767px) {.event .hero .vision--flex {-ms-flex-wrap: wrap;flex-wrap: wrap }}@media (max-width:575px) {.event .hero .vision--flex ul + ul {margin-left: 0;margin-top: 10px }}@media (max-width:575px) {.event .hero .vision--flex ul {width: 100% }}.event .hero .vision--flex .tick--list {font-size: 14px;line-height: 21px;padding-left: 28px }@media (max-width:767px) {.event .hero .vision--flex .tick--list {font-size: 12px;line-height: 19px }}.event .hero .vision--flex .tick--list::before {width: 20px;height: 20px;background-size: cover }@media (max-width:767px) {.event .hero .vision--flex .tick--list::before {width: 16px;height: 16px }}.event .hero .vision--flex .tick--list + .tick--list {margin-top: 16px }@media (max-width:767px) {.event .hero .vision--flex .tick--list + .tick--list {margin-top: 10px }}.event .hero .career {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;margin-top: 48px }@media (max-width:767px) {.event .hero .career {-ms-flex-align: end;align-items: flex-end;-ms-flex-wrap: wrap;flex-wrap: wrap }}.event .hero .career .position--heading__location {margin-left: 0 }.event .hero .career--left {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:1024px) {.event .hero .career--left {-ms-flex-align: start;align-items: flex-start }}@media (max-width:767px) {.event .hero .career--left {-ms-flex-wrap: wrap;flex-wrap: wrap }}.event .hero .career--left .position--heading__location {margin-right: 12px }@media (max-width:1024px) {.event .hero .career--left .position--heading__location {margin-left: 0 }}@media (max-width:767px) {.event .hero .career--left .position--heading__location {margin-bottom: 10px }}.event .hero .career--right .position--heading__search {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L17 12" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/><path d="M12 6L18 12L12 18" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="square"/></svg>');background-color: #1a1a19 }@media (max-width:767px) {.event.blog .blog--hero__banner {height: 360px;object-fit: cover }}.event .ed--heading {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;-ms-flex-pack: justify;justify-content: space-between }@media (max-width:991px) {.event .ed--heading {-ms-flex-wrap: wrap;flex-wrap: wrap }}.event .ed--title {font-size: 28px;line-height: 38px;margin-bottom: 12px }@media (max-width:767px) {.event .ed--title {margin-bottom: 24px }}.event .ed--detail li {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;font-size: 16px;line-height: 22px }@media (max-width:767px) {.event .ed--detail li {font-size: 12px;line-height: 19px }}.event .ed--detail li + li {margin-top: 12px }.event .ed--detail li p:first-child {min-width: 62px;margin-right: 22px }@media (max-width:767px) {.event .ed--detail li p:first-child {margin-right: 36px }}@media (max-width:767px) {.event .ed .card--event__tags {padding-left: 98px }}.event .ed .highlight {margin-top: 80px }.event .ed .highlight h3 {font-size: 24px;line-height: 30px;margin-bottom: 20px }@media (max-width:767px) {.event .ed .highlight h3 {font-size: 20px;line-height: 25px;margin-bottom: 16px }}.event .ed .highlight p {font-size: 14px;line-height: 21px }@media (max-width:767px) {.event .ed .highlight p {font-size: 12px;line-height: 19px }}.event .ed .highlight p + p {margin-top: 30px }@media (max-width:767px) {.event .ed .highlight p + p {margin-top: 20px }}.event .ed .highlight .tick--container {margin: 30px 0 }.event .ed .highlight .tick--list {font-size: 16px;line-height: 25px;padding-left: 32px }@media (max-width:767px) {.event .ed .highlight .tick--list {font-size: 14px;line-height: 22px;padding-left: 28px }}.event .ed .highlight .tick--list::before {width: 20px;height: 20px }@media (max-width:767px) {.event .ed .highlight .tick--list::before {width: 16px;height: 16px }}.event .ed .highlight .tick--list + .tick--list {margin-top: 12px }.event .ed--form {border: 1px solid rgba(43, 42, 41, .1);border-radius: 12px;box-shadow: 0 4px 24px rgba(0, 0, 0, .04);padding-bottom: 24px }@media (max-width:991px) {.event .ed--form {margin-top: 80px }}@media (max-width:767px) {.event .ed--form {margin-top: 40px;padding-bottom: 20px }}.event .ed--form__header {background-color: #2b2a29;border-radius: 12px 12px 0 0;padding: 20px 24px;font-size: 20px;line-height: 25px }@media (max-width:767px) {.event .ed--form__header {font-size: 16px;line-height: 21px;padding: 16px 20px }}.event .ed--form__type {padding-top: 24px }@media (max-width:767px) {.event .ed--form__type {padding-top: 20px }}.event .ed--form__type + .ed--form__type {margin-top: 28px;border-top: 1px solid rgba(43, 42, 41, .1) }@media (max-width:767px) {.event .ed--form__type + .ed--form__type {margin-top: 20px }}.event .ed--form__type .terms {-ms-flex-align: start;align-items: flex-start }.event .ed--form__type .terms .custom--checkbox__checkmark {margin-top: 6px }.event .ed--form__type .terms .custom--checkbox__label {-webkit-line-clamp: 2 }.event .ed--form__title {font-size: 16px;line-height: 25px;margin-bottom: 20px }.event .ed--form__title.has-desc {margin-bottom: 8px }@media (max-width:767px) {.event .ed--form__title.has-desc {margin-bottom: 4px }}.event .ed--form__title.small {font-size: 14px;line-height: 20px }@media (max-width:767px) {.event .ed--form__title.small {font-size: 12px;line-height: 19px }}@media (max-width:767px) {.event .ed--form__title {font-size: 14px;line-height: 19px }}.event .ed--form__desc {font-size: 14px;line-height: 19px;margin-bottom: 20px }.event .ed form {padding: 0 24px }@media (max-width:767px) {.event .ed form {padding: 0 20px }}.event .ed form .form--row + .form--row {margin-top: 16px }.event .ed form .arrow {display: -ms-flexbox;display: flex;-ms-flex-pack: center;justify-content: center;margin-top: 14px }.event .ed form .arrow span {font-size: 14px }@media (max-width:991px) {.event .ed form .country-picker.bootstrap-select {width: 98px !important }}.event .ed form .country-picker .dropdown-toggle {font-size: 14px;color: #727271;background-color: transparent;border-color: transparent;padding: 0;margin: 0 }@media (max-width:991px) {.event .ed form .country-picker .dropdown-toggle {font-size: 12px;line-height: 18px }}.event .ed form .country-picker .dropdown-toggle:active, .event .ed form .country-picker .dropdown-toggle:focus {box-shadow: none;outline: 0 !important }.event .ed form .country-picker .dropdown-toggle[aria-expanded=true]:after {transform: rotate(0) }.event .ed form .country-picker .dropdown-toggle:after {border: none;width: 24px;height: 24px;transform: rotate(180deg);background-size: cover;background-position: center;transition: all .3s ease-in }@media (max-width:991px) {.event .ed form .country-picker .dropdown-toggle:after {width: 20px;height: 20px }}.event .ed form .country-picker .dropdown-menu {font-size: 16px }@media (max-width:991px) {.event .ed form .country-picker .dropdown-menu {font-size: 12px;line-height: 18px }}.event .ed form .country-picker .dropdown-menu .dropdown-item.active, .event .ed form .country-picker .dropdown-menu .dropdown-item:active {background-color: #df252a }.contact .with-bg {padding: 24px 28px;border-radius: 8px;background-color: #fafafb }.contact .for-institute {display: none }.contact .map {margin-bottom: 40px }@media (max-width:767px) {.contact .map {margin-bottom: 20px }}.contact .location--card {padding: 24px;border-radius: 12px;background-color: rgba(228, 231, 233, .2);height: 100% }@media (max-width:991px) {.contact .location--card {padding: 20px }}.contact .location--card__container {margin-bottom: 40px }@media (max-width:991px) {.contact .location--card__container {margin-bottom: 20px }}.contact .location--name {font-size: 20px;line-height: 27px;margin-bottom: 16px }@media (max-width:991px) {.contact .location--name {font-size: 16px;line-height: 20px;margin-bottom: 12px }}.contact .location--desc {font-size: 16px;line-height: 24px;margin-bottom: 26px }@media (max-width:991px) {.contact .location--desc {font-size: 12px;line-height: 19px;margin-bottom: 22px }}.contact .location--mobile {position: relative;font-size: 16px;line-height: 24px;margin-bottom: 16px;padding-left: 32px;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-align: start;align-items: flex-start }@media (max-screen:1024px) {.contact .location--mobile {font-size: 14px;line-height: 20px }}@media (max-width:991px) {.contact .location--mobile {font-size: 12px;line-height: 19px;margin-bottom: 10px;padding-left: 28px }}.contact .location--mobile::before {position: absolute;content: '';width: 20px;height: 20px;background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.167 1.66669H5.83366C4.91318 1.66669 4.16699 2.41288 4.16699 3.33335V16.6667C4.16699 17.5872 4.91318 18.3334 5.83366 18.3334H14.167C15.0875 18.3334 15.8337 17.5872 15.8337 16.6667V3.33335C15.8337 2.41288 15.0875 1.66669 14.167 1.66669Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M10 15H10.0088" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat;left: 0 }@media (max-width:767px) {.contact .location--mobile::before {width: 16px;height: 16px }}.contact .location--mobile a:hover {color: #df252a }.contact .location--mobile a:not(:last-child) {margin-right: 5px }.contact .location--mail {position: relative;font-size: 16px;line-height: 24px;margin-bottom: 16px;padding-left: 32px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:991px) {.contact .location--mail {font-size: 12px;line-height: 19px;margin-bottom: 10px;padding-left: 28px }}.contact .location--mail::before {position: absolute;content: '';width: 20px;height: 20px;background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.33366 3.33331H16.667C17.5837 3.33331 18.3337 4.08331 18.3337 4.99998V15C18.3337 15.9166 17.5837 16.6666 16.667 16.6666H3.33366C2.41699 16.6666 1.66699 15.9166 1.66699 15V4.99998C1.66699 4.08331 2.41699 3.33331 3.33366 3.33331Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.3337 5L10.0003 10.8333L1.66699 5" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat;left: 0 }@media (max-width:767px) {.contact .location--mail::before {width: 16px;height: 16px }}.contact .location--mail a:hover {color: #df252a }.contact .location--mail a + a {margin-left: 5px }.contact .location--address {position: relative;font-size: 16px;line-height: 24px;margin-bottom: 16px;padding-left: 32px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:991px) {.contact .location--address {font-size: 12px;line-height: 19px;margin-bottom: 10px;padding-left: 28px }}.contact .location--address::before {position: absolute;content: '';width: 20px;height: 20px;background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.5 8.33331C17.5 14.1666 10 19.1666 10 19.1666C10 19.1666 2.5 14.1666 2.5 8.33331C2.5 6.34419 3.29018 4.43654 4.6967 3.03001C6.10322 1.62349 8.01088 0.833313 10 0.833313C11.9891 0.833313 13.8968 1.62349 15.3033 3.03001C16.7098 4.43654 17.5 6.34419 17.5 8.33331Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/><path d="M10 10.8333C11.3807 10.8333 12.5 9.71402 12.5 8.33331C12.5 6.9526 11.3807 5.83331 10 5.83331C8.61929 5.83331 7.5 6.9526 7.5 8.33331C7.5 9.71402 8.61929 10.8333 10 10.8333Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat;left: 0 }@media (max-width:767px) {.contact .location--address::before {width: 16px;height: 16px }}.contact .location--address a:hover {color: #df252a }.contact .location--address a + a {margin-left: 5px }.contact .location--hero {margin-top: 40px }.contact .location--hero p {-ms-flex-direction: column;flex-direction: column;-ms-flex-align: start;align-items: flex-start }.contact .location--hero p + p {margin-top: 30px }@media (max-width:767px) {.contact .location--hero p + p {margin-top: 18px }}.contact .text--terms {font-size: 14px;line-height: 20px;max-width: 50% }@media (max-width:767px) {.contact .text--terms {font-size: 12px;line-height: 19px }}.contact .dropdown-toggle {background: rgba(228, 231, 233, .4);border: none }.contact .dropdown-toggle .filter-option-inner-inner {color: #727271 }.contact .dropdown-toggle:active, .contact .dropdown-toggle:focus {box-shadow: none;outline: 0 !important }.contact .dropdown-toggle[aria-expanded=true]:after {transform: rotate(0) }.contact .dropdown-toggle:after {border: none;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2695 14.9307L16.7998 15.4611L17.8605 14.4004L17.3301 13.8701L16.2695 14.9307ZM11.9998 9.60039L12.5301 9.07006L11.9998 8.53973L11.4695 9.07006L11.9998 9.60039ZM6.66947 13.8701L6.13914 14.4004L7.1998 15.461L7.73013 14.9307L6.66947 13.8701ZM17.3301 13.8701L12.5301 9.07006L11.4695 10.1307L16.2695 14.9307L17.3301 13.8701ZM11.4695 9.07006L6.66947 13.8701L7.73013 14.9307L12.5301 10.1307L11.4695 9.07006Z" fill="%232B2A29"/></svg>');width: 24px;height: 24px;transform: rotate(180deg);background-size: cover;background-position: center;transition: all .3s ease-in }@media (max-width:991px) {.contact .dropdown-toggle:after {width: 20px;height: 20px }}.contact .dropdown-menu {font-size: 16px }@media (max-width:991px) {.contact .dropdown-menu {font-size: 12px;line-height: 18px }}.contact .dropdown-menu .dropdown-item.active, .contact .dropdown-menu .dropdown-item:active {background-color: #df252a }.contact--left {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-pack: justify;justify-content: space-between }@media (max-width:991px) {.contact--left {margin-bottom: 40px;padding-bottom: 40px;border-bottom: 1px solid rgba(43, 42, 41, .1) }}@media (max-width:991px) {.contact .web {display: none }}@media (max-width:991px) {.contact .mobile {display: block;margin-top: 40px;padding-top: 24px }}.contact form {position: relative }.contact .form__title {font-size: 18px;line-height: 28px;margin-bottom: 16px }@media (max-width:767px) {.contact .form__title {font-size: 14px;line-height: 19px;margin-bottom: 20px }}.contact .form__title--margin {margin-top: 40px }.contact--right {position: relative }.contact--right .thankyou {position: absolute;top: 0;right: 0;left: 0;bottom: 0;border-radius: 12px;background-color: #fafafb;display: none;-ms-flex-direction: column;flex-direction: column;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;z-index: 99 }.contact--right .thankyou.show {display: -ms-flexbox;display: flex }.contact--right .thankyou img {width: 120px;height: 120px;margin-bottom: 40px }@media (max-width:767px) {.contact--right .thankyou img {width: 62px;height: 62px }}.contact--right .thankyou--title {font-size: 48px;line-height: 60px;margin-bottom: 28px }@media (max-width:767px) {.contact--right .thankyou--title {font-size: 28px;line-height: 34px;margin-bottom: 16px }}.contact--right .thankyou--desc {font-size: 18px;line-height: 28px;max-width: 384px;margin: 0 auto }@media (max-width:767px) {.contact--right .thankyou--desc {font-size: 16px;line-height: 22px;max-width: 295px }}.contact--right .thankyou .close {position: absolute;top: 16px;right: 16px }.services .service {margin-top: 80px }@media (max-width:767px) {.services .service {margin-top: 40px }}.services .service--card {max-width: 490px }@media (max-width:991px) {.services .service--card {margin-bottom: 48px }}.services .service--card img {margin-bottom: 40px }@media (max-width:767px) {.services .service--card img {margin-bottom: 24px }}.services .service--card__title {font-size: 20px;line-height: 27px;margin-bottom: 16px }@media (max-width:767px) {.services .service--card__title {margin-bottom: 12px }}.services .service--card__desc {margin-bottom: 28px }@media (max-width:767px) {.services .service--card__desc {font-size: 12px;line-height: 19px;margin-bottom: 25px }}.services .service--card .tick--list {font-size: 16px;line-height: 24px;padding-left: 36px }@media (max-width:767px) {.services .service--card .tick--list {font-size: 14px;line-height: 22px;padding-left: 32px }}.services .service--card .tick--list + .tick--list {margin-top: 16px }@media (max-width:767px) {.services .service--card .tick--list + .tick--list {margin-top: 8px }}@media (max-width:767px) {.services .service--card .tick--list::before {width: 20px;height: 20px }}.services .student-tab .service--card {margin-bottom: 80px }@media (max-width:767px) {.services .student-tab .service--card {margin-bottom: 48px }}.services .explore .tabs::after {bottom: 0 }.services .explore .tabs--link {display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column }.services .explore .tabs--link .icon {width: 48px;height: 48px;border-radius: 50%;border: 1px solid rgba(43, 42, 41, .1);background-position: center;background-size: 24px;background-repeat: no-repeat;margin-bottom: 12px }@media (max-width:767px) {.services .explore .tabs--link .icon {width: 32px;height: 32px;background-size: 16px }}.services .explore .tabs--link .icon.icon-student {background-image: url('data:image/svg+xml;utf-8,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.9615 6L1.46484 10.6897L12.9615 16.2L25.2648 10.6897L12.9615 6Z" stroke="%232B2A29" stroke-width="1.5" stroke-linejoin="round"/><path d="M6 12.8V18.8019C6.47887 19.8235 8.43268 21.8667 12.4169 21.8667C16.4011 21.8667 18.8657 19.8235 19.6 18.8019V12.8" stroke="%232B2A29" stroke-width="1.5"/><path d="M13 11H25V19" stroke="%232B2A29" stroke-width="1.5"/><circle cx="25" cy="20" r="2" fill="%232B2A29"/></svg>') }.services .explore .tabs--link .icon.icon-institute {background-image: url('data:image/svg+xml;utf-8,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="6" y="8" width="17" height="16" stroke="%232B2A29" stroke-width="1.5"/><rect x="9" y="5" width="11" height="3" stroke="%232B2A29" stroke-width="1.5"/><rect x="3" y="11" width="3" height="13" stroke="%232B2A29" stroke-width="1.5"/><rect x="23" y="11" width="3" height="13" stroke="%232B2A29" stroke-width="1.5"/><rect x="8.72656" y="11.5455" width="1.63636" height="1.63636" fill="%232B2A29"/><rect x="8.72656" y="14.8182" width="1.63636" height="1.63636" fill="%232B2A29"/><rect x="12" y="11.5455" width="1.63636" height="1.63636" fill="%232B2A29"/><rect x="12" y="14.8182" width="1.63636" height="1.63636" fill="%232B2A29"/><rect x="13" y="20" width="3" height="4" stroke="%232B2A29" stroke-width="1.5"/><rect x="15.2734" y="11.5455" width="1.63636" height="1.63636" fill="%232B2A29"/><rect x="15.2734" y="14.8182" width="1.63636" height="1.63636" fill="%232B2A29"/><rect x="18.5469" y="11.5455" width="1.63636" height="1.63636" fill="%232B2A29"/><rect x="18.5469" y="14.8182" width="1.63636" height="1.63636" fill="%232B2A29"/></svg>') }.services .explore .tabs--link.active .icon.icon-student {background-image: url('data:image/svg+xml;utf-8,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.9615 6L1.46484 10.6897L12.9615 16.2L25.2648 10.6897L12.9615 6Z" stroke="%23DF252A" stroke-width="1.5" stroke-linejoin="round"/><path d="M6 12.8V18.8019C6.47887 19.8235 8.43268 21.8667 12.4169 21.8667C16.4011 21.8667 18.8657 19.8235 19.6 18.8019V12.8" stroke="%23DF252A" stroke-width="1.5"/><path d="M13 11H25V19" stroke="%23DF252A" stroke-width="1.5"/><circle cx="25" cy="20" r="2" fill="%23DF252A"/></svg>') }.services .explore .tabs--link.active .icon.icon-institute {background-image: url('data:image/svg+xml;utf-8,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="6" y="8" width="17" height="16" stroke="%23DF252A" stroke-width="1.5"/><rect x="9" y="5" width="11" height="3" stroke="%23DF252A" stroke-width="1.5"/><rect x="3" y="11" width="3" height="13" stroke="%23DF252A" stroke-width="1.5"/><rect x="23" y="11" width="3" height="13" stroke="%23DF252A" stroke-width="1.5"/><rect x="8.72656" y="11.5455" width="1.63636" height="1.63636" fill="%23DF252A"/><rect x="8.72656" y="14.8182" width="1.63636" height="1.63636" fill="%23DF252A"/><rect x="12" y="11.5455" width="1.63636" height="1.63636" fill="%23DF252A"/><rect x="12" y="14.8182" width="1.63636" height="1.63636" fill="%23DF252A"/><rect x="13" y="20" width="3" height="4" stroke="%23DF252A" stroke-width="1.5"/><rect x="15.2734" y="11.5455" width="1.63636" height="1.63636" fill="%23DF252A"/><rect x="15.2734" y="14.8182" width="1.63636" height="1.63636" fill="%23DF252A"/><rect x="18.5469" y="11.5455" width="1.63636" height="1.63636" fill="%23DF252A"/><rect x="18.5469" y="14.8182" width="1.63636" height="1.63636" fill="%23DF252A"/></svg>') }.tc {margin-bottom: 28px !important }.study .hero__flag {width: 48px;height: 48px;border-radius: 50%;margin-bottom: 28px }@media (max-width:767px) {.study .hero__flag {width: 40px;height: 40px;margin-bottom: 16px }}.study .hero__study {font-size: 20px;font-weight: 32px;margin-bottom: 20px;margin-top: 28px;max-width: 490px }@media (max-width:767px) {.study .hero__study {margin-top: 24px;margin-bottom: 16px;font-size: 16px;line-height: 25px }}.study .hero--counter {-ms-flex-pack: start;justify-content: flex-start;-ms-flex-wrap: nowrap;flex-wrap: nowrap }@media (max-width:767px) {.study .hero--counter {margin-top: 40px }}.study .hero--counter__item + .hero--counter__item {margin-left: 94px }@media (max-width:991px) {.study .hero--counter__item + .hero--counter__item {margin-left: 20px }}@media (max-width:767px) {.study .hero--counter__item + .hero--counter__item {margin-left: 0 }}.study .hero--slider__image img {max-width: 100%;max-height: 100% }@media (max-width:767px) {.study .hero--slider__image img {margin-bottom: 40px }}.study .why .section--title {max-width: 596px }.study .why--card {padding: 24px;border-radius: 12px;background-color: rgba(255, 255, 255, .1);margin-bottom: 40px;height: 100% }@media (max-width:767px) {.study .why--card {padding: 20px;margin-bottom: 16px }}.study .why--card--header {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-bottom: 16px }.study .why--card--header__title {font-size: 20px;line-height: 27px;max-width: 253px }@media (max-width:767px) {.study .why--card--header__title {font-size: 16px;line-height: 21px;max-width: 220px }}.study .why--card--header__icon {min-width: 52px;height: 52px;border-radius: 50%;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;background-color: rgba(26, 25, 25, .4) }@media (max-width:767px) {.study .why--card--header__icon {width: 48px;height: 48px }}.study .why--card--header__icon img {width: 24px;height: 24px }.study .why--card--desc {font-size: 14px;line-height: 21px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 4;overflow: hidden;text-overflow: ellipsis;white-space: normal }@media (max-width:767px) {.study .why--card--desc {font-size: 12px;line-height: 19px }}.study .level--card {display: block }@media (max-width:991px) {.study .level--card {margin-bottom: 40px }}.study .level--card:hover figure img {transform: scale(1.2) }.study .level--card--figure {overflow: hidden;border-radius: 12px;margin-bottom: 24px }@media (max-width:767px) {.study .level--card--figure {margin-bottom: 16px }}.study .level--card--figure img {transition: all .3s ease-in }.study .level--card--title {font-size: 20px;line-height: 27px }@media (max-width:767px) {.study .level--card--title {font-size: 16px;line-height: 20px }}.study .level--card--desc {font-size: 16px;line-height: 24px;margin-top: 12px }@media (max-width:767px) {.study .level--card--desc {font-size: 12px;line-height: 19px }}.study .level--card__gray {background-color: rgba(228, 231, 233, .2);border-radius: 12px;padding: 24px }@media (max-width:767px) {.study .level--card__gray {padding: 20px }}.study .level--card__gray h3 {padding-bottom: 20px;border-bottom: 1px solid rgba(43, 42, 41, .1) }.study .level--card--courses {margin-top: 20px }.study .level--card--courses .arrow {margin-left: 36px }@media (max-width:767px) {.study .level--card--courses .arrow {margin-left: 28px }}.study .level--card--cList {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 16px;line-height: 24px;margin-bottom: 20px;position: relative;padding-left: 36px }@media (max-width:767px) {.study .level--card--cList {font-size: 12px;line-height: 19px;margin-bottom: 14px;padding-left: 28px }}.study .level--card--cList:hover {color: #df252a }.study .level--card--cList:hover.humanities:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.88965 20.7V15.66C6.88965 15.05 7.03965 14.48 7.29965 13.97C7.90965 12.8 9.13965 12 10.5497 12H13.3496C14.7596 12 15.9896 12.8 16.5996 13.97C16.8596 14.48 17.0096 15.05 17.0096 15.66V20.7" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M12.1303 7.82508C13.4061 7.82508 14.4403 6.79086 14.4403 5.51508C14.4403 4.2393 13.4061 3.20508 12.1303 3.20508C10.8545 3.20508 9.82031 4.2393 9.82031 5.51508C9.82031 6.79086 10.8545 7.82508 12.1303 7.82508Z" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M6 10.835C6.82843 10.835 7.5 10.1634 7.5 9.33496C7.5 8.50653 6.82843 7.83496 6 7.83496C5.17157 7.83496 4.5 8.50653 4.5 9.33496C4.5 10.1634 5.17157 10.835 6 10.835Z" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.5195 10.835C19.348 10.835 20.0195 10.1634 20.0195 9.33496C20.0195 8.50653 19.348 7.83496 18.5195 7.83496C17.6911 7.83496 17.0195 8.50653 17.0195 9.33496C17.0195 10.1634 17.6911 10.835 18.5195 10.835Z" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.00098 14H4.84546C3.2805 14 2.00098 15.3438 2.00098 17.0104V19" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M17.001 14H19.2114C20.7558 14 22.001 15.3438 22.001 17.0104V19" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.study .level--card--cList:hover.education:before {background-image: url('data:image/svg+xml;utf-8,<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.1813 10.0629C16.9103 10.0629 17.5013 9.47187 17.5013 8.74285C17.5013 8.01384 16.9103 7.42285 16.1813 7.42285C15.4523 7.42285 14.8613 8.01384 14.8613 8.74285C14.8613 9.47187 15.4523 10.0629 16.1813 10.0629Z" fill="%23DF252A"/><path d="M19.8907 13.8229C19.8907 12.7729 18.9207 11.9229 17.7207 11.9229H14.5007C13.2807 11.9229 12.3007 12.7929 12.3307 13.8629" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M4.56203 18.6563C5.24134 18.6563 5.79203 18.1056 5.79203 17.4263C5.79203 16.747 5.24134 16.1963 4.56203 16.1963C3.88272 16.1963 3.33203 16.747 3.33203 17.4263C3.33203 18.1056 3.88272 18.6563 4.56203 18.6563Z" fill="%23DF252A"/><path d="M7.30111 22.1864C7.30111 21.4064 6.58111 20.7864 5.69111 20.7864H3.32111C2.42111 20.7864 1.70111 21.4264 1.72111 22.2164" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M12.1245 18.6563C12.8038 18.6563 13.3545 18.1056 13.3545 17.4263C13.3545 16.747 12.8038 16.1963 12.1245 16.1963C11.4452 16.1963 10.8945 16.747 10.8945 17.4263C10.8945 18.1056 11.4452 18.6563 12.1245 18.6563Z" fill="%23DF252A"/><path d="M14.8636 22.1864C14.8636 21.4064 14.1436 20.7864 13.2536 20.7864H10.8836C9.98361 20.7864 9.26361 21.4264 9.28361 22.2164" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M19.7027 18.6563C20.382 18.6563 20.9327 18.1056 20.9327 17.4263C20.9327 16.747 20.382 16.1963 19.7027 16.1963C19.0233 16.1963 18.4727 16.747 18.4727 17.4263C18.4727 18.1056 19.0233 18.6563 19.7027 18.6563Z" fill="%23DF252A"/><path d="M22.4417 22.1864C22.4417 21.4064 21.7217 20.7864 20.8317 20.7864H18.4617C17.5617 20.7864 16.8417 21.4264 16.8617 22.2164" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M10.0707 13.0644H3.4707V3.02441H21.7307V13.0644" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.study .level--card--cList:hover.computer:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.75" y="4.75" width="16.5" height="11.5" rx="1.25" stroke="%23DF252A" stroke-width="1.5"/><path d="M12 17L12 19" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="round"/><path d="M7.5 20H16.5" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>') }.study .level--card--cList:hover.business:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.4 6H3.6C2.71634 6 2 6.70355 2 7.57143V15.4286C2 16.2964 2.71634 17 3.6 17H16.4C17.2837 17 18 16.2964 18 15.4286V7.57143C18 6.70355 17.2837 6 16.4 6Z" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M13.3337 6V4.16667C13.3337 3.72464 13.1581 3.30072 12.8455 2.98816C12.5329 2.67559 12.109 2.5 11.667 2.5H8.33366C7.89163 2.5 7.46771 2.67559 7.15515 2.98816C6.84259 3.30072 6.66699 3.72464 6.66699 4.16667L6.66699 6" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M2 9L6 10.5H14L18 9" stroke="%23DF252A" stroke-width="1.5"/></svg>') }.study .level--card--cList:hover.engineering:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.0001 15.4375C13.8987 15.4375 15.4377 13.8984 15.4377 11.9999C15.4377 10.1013 13.8987 8.56226 12.0001 8.56226C10.1016 8.56226 8.5625 10.1013 8.5625 11.9999C8.5625 13.8984 10.1016 15.4375 12.0001 15.4375Z" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/><path d="M19.4007 15C19.2675 15.3016 19.2278 15.6362 19.2866 15.9606C19.3455 16.285 19.5001 16.5844 19.7307 16.8201L19.7907 16.8801C19.9766 17.0658 20.1241 17.2864 20.2248 17.5292C20.3255 17.772 20.3773 18.0323 20.3773 18.2951C20.3773 18.558 20.3255 18.8182 20.2248 19.061C20.1241 19.3038 19.9766 19.5244 19.7907 19.7102C19.6049 19.8961 19.3843 20.0437 19.1415 20.1443C18.8987 20.245 18.6385 20.2968 18.3756 20.2968C18.1128 20.2968 17.8525 20.245 17.6097 20.1443C17.3669 20.0437 17.1463 19.8961 16.9606 19.7102L16.9006 19.6502C16.6649 19.4196 16.3655 19.265 16.0411 19.2062C15.7167 19.1473 15.3821 19.187 15.0805 19.3202C14.7847 19.4469 14.5325 19.6574 14.3548 19.9257C14.1771 20.194 14.0817 20.5084 14.0805 20.8302V21.0002C14.0805 21.5307 13.8697 22.0394 13.4947 22.4145C13.1196 22.7896 12.6108 23.0003 12.0804 23.0003C11.5499 23.0003 11.0412 22.7896 10.6661 22.4145C10.291 22.0394 10.0803 21.5307 10.0803 21.0002V20.9102C10.0726 20.5792 9.96544 20.2582 9.77282 19.9889C9.58021 19.7196 9.31103 19.5145 9.00028 19.4002C8.69866 19.267 8.36407 19.2273 8.03966 19.2862C7.71525 19.345 7.41591 19.4996 7.18022 19.7302L7.12022 19.7902C6.93446 19.9761 6.71388 20.1237 6.47107 20.2243C6.22827 20.325 5.96801 20.3768 5.70517 20.3768C5.44233 20.3768 5.18206 20.325 4.93926 20.2243C4.69645 20.1237 4.47587 19.9761 4.29012 19.7902C4.10416 19.6044 3.95663 19.3838 3.85598 19.141C3.75533 18.8982 3.70352 18.638 3.70352 18.3751C3.70352 18.1123 3.75533 17.852 3.85598 17.6092C3.95663 17.3664 4.10416 17.1458 4.29012 16.9601L4.35012 16.9001C4.58066 16.6644 4.73532 16.365 4.79414 16.0406C4.85296 15.7162 4.81325 15.3816 4.68013 15.08C4.55336 14.7842 4.34287 14.532 4.07457 14.3543C3.80627 14.1766 3.49188 14.0813 3.17008 14.08H3.00007C2.46962 14.08 1.96089 13.8693 1.58581 13.4942C1.21072 13.1191 1 12.6104 1 12.0799C1 11.5495 1.21072 11.0407 1.58581 10.6656C1.96089 10.2906 2.46962 10.0798 3.00007 10.0798H3.09007C3.42108 10.0721 3.7421 9.96495 4.01141 9.77233C4.28071 9.57972 4.48584 9.31054 4.60013 8.9998C4.73325 8.69817 4.77296 8.36358 4.71414 8.03917C4.65532 7.71477 4.50066 7.41542 4.27012 7.17973L4.21011 7.11973C4.02415 6.93398 3.87663 6.71339 3.77598 6.47059C3.67533 6.22778 3.62352 5.96752 3.62352 5.70468C3.62352 5.44184 3.67533 5.18158 3.77598 4.93877C3.87663 4.69597 4.02415 4.47538 4.21011 4.28963C4.39587 4.10367 4.61645 3.95615 4.85926 3.85549C5.10206 3.75484 5.36232 3.70303 5.62516 3.70303C5.888 3.70303 6.14827 3.75484 6.39107 3.85549C6.63388 3.95615 6.85446 4.10367 7.04021 4.28963L7.10022 4.34963C7.3359 4.58018 7.63525 4.73483 7.95966 4.79365C8.28407 4.85247 8.61865 4.81276 8.92028 4.67964H9.00028C9.29606 4.55287 9.54832 4.34239 9.726 4.07409C9.90368 3.80579 9.99904 3.49139 10.0003 3.16959V2.99958C10.0003 2.46913 10.211 1.96041 10.5861 1.58532C10.9612 1.21023 11.4699 0.999512 12.0004 0.999512C12.5308 0.999512 13.0396 1.21023 13.4147 1.58532C13.7897 1.96041 14.0005 2.46913 14.0005 2.99958V3.08959C14.0017 3.41138 14.0971 3.72578 14.2748 3.99408C14.4525 4.26238 14.7047 4.47287 15.0005 4.59964C15.3021 4.73276 15.6367 4.77247 15.9611 4.71365C16.2855 4.65483 16.5849 4.50017 16.8206 4.26963L16.8806 4.20963C17.0663 4.02367 17.2869 3.87614 17.5297 3.77549C17.7725 3.67484 18.0328 3.62303 18.2956 3.62303C18.5585 3.62303 18.8187 3.67484 19.0615 3.77549C19.3043 3.87614 19.5249 4.02367 19.7107 4.20963C19.8966 4.39538 20.0441 4.61596 20.1448 4.85877C20.2455 5.10157 20.2973 5.36184 20.2973 5.62468C20.2973 5.88752 20.2455 6.14778 20.1448 6.39058C20.0441 6.63339 19.8966 6.85397 19.7107 7.03973L19.6507 7.09973C19.4201 7.33542 19.2655 7.63476 19.2066 7.95917C19.1478 8.28358 19.1875 8.61817 19.3207 8.91979V8.9998C19.4474 9.29558 19.6579 9.54783 19.9262 9.72551C20.1945 9.9032 20.5089 9.99855 20.8307 9.99983H21.0007C21.5312 9.99983 22.0399 10.2106 22.415 10.5856C22.7901 10.9607 23.0008 11.4695 23.0008 11.9999C23.0008 12.5304 22.7901 13.0391 22.415 13.4142C22.0399 13.7893 21.5312 14 21.0007 14H20.9107C20.5889 14.0013 20.2745 14.0966 20.0062 14.2743C19.7379 14.452 19.5274 14.7042 19.4007 15V15Z" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square"/></svg>') }.study .level--card--cList:hover.health:before {background-image: url('data:image/svg+xml;utf-8,<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.7592 13.246C21.7592 11.246 22.0892 7.99601 20.2792 5.80601C18.2092 3.30601 14.4992 3.16601 12.2492 5.41601C10.0192 3.17601 6.29921 3.30601 4.22921 5.80601C2.42921 7.98601 2.74921 11.236 4.74921 13.246L11.9092 20.406" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M14.1289 18.0059H20.1289" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M17.1289 21.0059V15.0059" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.study .level--card--cList:hover.law:before {background-image: url('data:image/svg+xml;utf-8,<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="6.00293" y="12.8101" width="11" height="7.10684" transform="rotate(-34.8272 6.00293 12.8101)" stroke="%23DF252A" stroke-width="1.5"/><rect x="14.21" y="5.13318" width="4.27859" height="10" rx="0.5" transform="rotate(-34.8272 14.21 5.13318)" stroke="%23DF252A" stroke-width="1.5"/><rect x="1.4707" y="13.9946" width="4.23709" height="10" rx="0.5" transform="rotate(-34.8272 1.4707 13.9946)" stroke="%23DF252A" stroke-width="1.5"/><rect x="13.6904" y="16.1494" width="2.68742" height="9.46834" transform="rotate(-34.8272 13.6904 16.1494)" stroke="%23DF252A" stroke-width="1.5"/></svg>') }.study .level--card--cList:hover.pen:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 16.6667H17.5" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square"/><path d="M13.75 2.91663C14.0815 2.58511 14.5312 2.39886 15 2.39886C15.2321 2.39886 15.462 2.44459 15.6765 2.53343C15.891 2.62227 16.0858 2.75248 16.25 2.91663C16.4142 3.08078 16.5444 3.27566 16.6332 3.49014C16.722 3.70461 16.7678 3.93449 16.7678 4.16663C16.7678 4.39878 16.722 4.62865 16.6332 4.84313C16.5444 5.0576 16.4142 5.25248 16.25 5.41663L5.83333 15.8333L2.5 16.6666L3.33333 13.3333L13.75 2.91663Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square"/></svg>') }.study .level--card--cList:hover.flower:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.7469 7.25L13.1102 6.59385H13.1102L12.7469 7.25ZM12.7469 16.375L12.4381 15.6915L12.7469 16.375ZM6.295 1.25589C6.55878 1.98263 6.81443 3.00949 7.64914 4.14649C8.48742 5.28835 9.87871 6.51929 12.3836 7.90615L13.1102 6.59385C10.7211 5.27112 9.52628 4.16872 8.85828 3.25882C8.18672 2.34405 8.01591 1.60071 7.705 0.744114L6.295 1.25589ZM12.3836 7.90615C13.9185 8.75594 14.9298 9.56748 15.5321 10.3088C16.1263 11.0404 16.2967 11.6677 16.2395 12.2013C16.1808 12.7481 15.8682 13.3362 15.2218 13.9471C14.5754 14.5582 13.6377 15.1496 12.4381 15.6915L13.0556 17.0585C14.3464 16.4754 15.444 15.8012 16.2522 15.0372C17.0606 14.2732 17.622 13.3769 17.7309 12.3612C17.8413 11.3323 17.4729 10.319 16.6963 9.36304C15.9277 8.4169 14.7361 7.49406 13.1102 6.59385L12.3836 7.90615ZM12.4381 15.6915C7.82546 17.7753 6.25 20.7487 6.25 23H7.75C7.75 21.5013 8.81384 18.9747 13.0556 17.0585L12.4381 15.6915Z" fill="%23DF252A"/><path d="M11.2531 7.25L10.8898 6.59386L11.2531 7.25ZM11.2531 16.375L11.5619 15.6915L11.2531 16.375ZM17.705 1.25589C17.4412 1.98263 17.1856 3.00949 16.3509 4.14649C15.5126 5.28835 14.1213 6.51929 11.6164 7.90615L10.8898 6.59386C13.2789 5.27112 14.4737 4.16872 15.1417 3.25882C15.8133 2.34405 15.9841 1.60071 16.295 0.744114L17.705 1.25589ZM11.6164 7.90615C10.0815 8.75594 9.0702 9.56748 8.46794 10.3088C7.87366 11.0404 7.7033 11.6677 7.76053 12.2013C7.81919 12.7481 8.13182 13.3362 8.77815 13.9471C9.42458 14.5582 10.3623 15.1496 11.5619 15.6915L10.9444 17.0585C9.65365 16.4754 8.55602 15.8012 7.74777 15.0372C6.93942 14.2732 6.37805 13.3769 6.26909 12.3612C6.15871 11.3323 6.52712 10.319 7.3037 9.36304C8.07231 8.4169 9.26393 7.49406 10.8898 6.59386L11.6164 7.90615ZM11.5619 15.6915C13.6034 16.6137 15.1374 17.8742 16.1673 19.1751C17.1845 20.46 17.75 21.8386 17.75 23H16.25C16.25 22.2864 15.8789 21.2275 14.9912 20.1062C14.1161 19.0008 12.7767 17.8863 10.9444 17.0585L11.5619 15.6915Z" fill="%23DF252A"/><path d="M7 10.5652H17" stroke="%23DF252A" stroke-width="1.5"/><path d="M8.11133 3.86951L15.8891 3.86951" stroke="%23DF252A" stroke-width="1.5"/><path d="M8.11133 20.1305L15.8891 20.1305" stroke="%23DF252A" stroke-width="1.5"/><path d="M7 13.4348H17" stroke="%23DF252A" stroke-width="1.5"/></svg>') }.study .level--card--cList:hover.dollar:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="10.2627" y="10.0526" width="10.7368" height="11.6316" stroke="%23DF252A" stroke-width="1.5"/><path d="M10.2627 13.6316L20.9995 13.6316" stroke="%23DF252A" stroke-width="1.5"/><path d="M18.3158 7.9908V3.78943H4V19.8947H8.14404" stroke="%23DF252A" stroke-width="1.5"/><rect x="17.4209" y="15.421" width="1.78947" height="4.47368" fill="%23DF252A"/><rect x="14.7373" y="15.421" width="1.78947" height="1.78947" fill="%23DF252A"/><rect x="14.7373" y="18.1052" width="1.78947" height="1.78947" fill="%23DF252A"/><rect x="12.0527" y="15.421" width="1.78947" height="1.78947" fill="%23DF252A"/><rect x="12.0527" y="18.1052" width="1.78947" height="1.78947" fill="%23DF252A"/><rect x="7.5791" y="2" width="7.15789" height="3.57895" fill="white" stroke="%23DF252A" stroke-width="1.5"/></svg>') }.study .level--card--cList:hover.agriculture:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.00381 17.9485C5.95129 10.4302 6.86125 2.00296 20.2491 2.05154C20.1507 9.56928 20.7317 18.0019 6.00381 17.9485Z" stroke="%23DF252A" stroke-width="1.5"/><path d="M2.5 22L20 2" stroke="%23DF252A" stroke-width="1.5"/><path d="M20 8.5L13 10M9.5 14L11 4" stroke="%23DF252A" stroke-width="1.5"/></svg>') }.study .level--card--cList:hover.art:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.97376 18.8965L20.8133 4.84035C21.0035 4.6368 21.1517 4.39778 21.2495 4.13694C21.3473 3.8761 21.3928 3.59855 21.3834 3.32014C21.3739 3.04172 21.3097 2.76789 21.1944 2.51429C21.0792 2.26068 20.9151 2.03226 20.7115 1.84207C20.508 1.65188 20.269 1.50365 20.0081 1.40583C19.7473 1.30802 19.4697 1.26254 19.1913 1.27198C18.629 1.29107 18.0974 1.53273 17.7132 1.94382L4.87373 16M7.97376 18.8965L2.63656 21.5352L4.87373 16M7.97376 18.8965L4.87373 16" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="round"/><path d="M2.58387 5.64673L13.6934 17.2612C14.0812 17.6666 14.7265 17.6737 15.1232 17.2771L15.6002 16.8L16.6976 15.7026C17.0864 15.3139 17.0884 14.6842 16.7021 14.293L5.43281 2.8782C4.67488 2.11049 3.44275 2.08808 2.65742 2.82773C1.85445 3.58398 1.82143 4.84963 2.58387 5.64673Z" fill="white"/><path d="M16.0785 20.1309C15.188 19.1692 15.5219 17.4262 16.0785 16.8252C17.1915 15.9236 19.0574 15.7761 19.9741 17.4262C20.8089 18.9288 21.3654 20.5316 22.2002 21.0325C18.8611 22.2345 17.1915 21.333 16.0785 20.1309Z" fill="white"/><path d="M13.6934 17.2612L14.2354 16.7428L14.2354 16.7428L13.6934 17.2612ZM2.58387 5.64673L2.04189 6.16514V6.16514L2.58387 5.64673ZM5.43281 2.8782L5.96653 2.35128V2.35128L5.43281 2.8782ZM16.7021 14.293L16.1684 14.8199L16.1684 14.8199L16.7021 14.293ZM16.0785 16.8252L15.5281 16.3156C15.5524 16.2894 15.5786 16.2649 15.6064 16.2424L16.0785 16.8252ZM16.0785 20.1309L15.5281 20.6405L16.0785 20.1309ZM22.2002 21.0325L22.5861 20.3893C22.8345 20.5384 22.9748 20.8171 22.9466 21.1054C22.9185 21.3937 22.7268 21.64 22.4542 21.7381L22.2002 21.0325ZM19.9741 17.4262L20.6297 17.062L19.9741 17.4262ZM16.6976 15.7026L16.1673 15.1723L16.6976 15.7026ZM15.6002 16.8L16.1305 17.3304L15.6002 16.8ZM15.1232 17.2771L14.5929 16.7467L15.1232 17.2771ZM2.65742 2.82773L2.14321 2.28175L2.65742 2.82773ZM13.1515 17.7796L2.04189 6.16514L3.12585 5.12831L14.2354 16.7428L13.1515 17.7796ZM5.96653 2.35128L17.2358 13.7661L16.1684 14.8199L4.89909 3.40512L5.96653 2.35128ZM16.6288 17.3347C16.5054 17.4679 16.319 17.8668 16.2842 18.3923C16.2506 18.9006 16.3715 19.3434 16.6288 19.6213L15.5281 20.6405C14.895 19.9567 14.7376 19.0472 14.7875 18.2933C14.8362 17.5566 15.095 16.7834 15.5281 16.3156L16.6288 17.3347ZM16.6288 19.6213C17.1181 20.1498 17.6892 20.571 18.4736 20.7526C19.2668 20.9361 20.3673 20.8952 21.9462 20.3268L22.4542 21.7381C20.6939 22.3718 19.2901 22.4812 18.1354 22.2139C16.9721 21.9447 16.1518 21.314 15.5281 20.6405L16.6288 19.6213ZM21.8143 21.6756C21.198 21.3058 20.7673 20.598 20.4256 19.9584C20.2446 19.6195 20.0637 19.2483 19.8844 18.8855C19.7022 18.5171 19.5178 18.1491 19.3185 17.7904L20.6297 17.062C20.8479 17.4546 21.046 17.8505 21.229 18.2208C21.4149 18.5968 21.5819 18.9394 21.7487 19.2516C22.1026 19.9142 22.3677 20.2583 22.5861 20.3893L21.8143 21.6756ZM19.3185 17.7904C18.985 17.1901 18.5164 16.9539 18.041 16.9165C17.5328 16.8765 16.9744 17.0646 16.5505 17.408L15.6064 16.2424C16.2955 15.6842 17.2266 15.3477 18.1588 15.4211C19.1238 15.4971 20.0465 16.0122 20.6297 17.062L19.3185 17.7904ZM17.2279 16.233L16.1305 17.3304L15.0699 16.2697L16.1673 15.1723L17.2279 16.233ZM16.1305 17.3304L15.6535 17.8074L14.5929 16.7467L15.0699 16.2697L16.1305 17.3304ZM2.14321 2.28175C3.22507 1.26284 4.92242 1.2937 5.96653 2.35128L4.89909 3.40512C4.42734 2.92728 3.66044 2.91333 3.17163 3.3737L2.14321 2.28175ZM2.04189 6.16514C0.991564 5.06708 1.03705 3.32355 2.14321 2.28175L3.17163 3.3737C2.67184 3.84441 2.65129 4.63218 3.12585 5.12831L2.04189 6.16514ZM14.2354 16.7428C14.3324 16.8441 14.4937 16.8459 14.5929 16.7467L15.6535 17.8074C14.9593 18.5016 13.83 18.489 13.1515 17.7796L14.2354 16.7428ZM17.2358 13.7661C17.9118 14.4507 17.9083 15.5526 17.2279 16.233L16.1673 15.1723C16.2645 15.0751 16.265 14.9177 16.1684 14.8199L17.2358 13.7661Z" fill="%23DF252A"/></svg>') }.study .level--card--cList:hover.hospitality:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.019 16.0078L16.371 14.2438C16.6185 14.0582 16.9203 13.9808 17.2143 14.004C17.4851 14.0272 17.7481 14.151 17.957 14.3522C18.4289 14.8241 18.4289 15.59 17.957 16.062L16.4561 17.942C15.4193 19.2418 13.8488 20 12.1931 20H4M5.35381 16.0078C5.78707 16.0078 6.20486 15.8376 6.51433 15.5281L7.03269 15.0098C7.41179 14.6307 7.93016 14.4141 8.47173 14.4141H9.57809C9.87208 14.4141 10.1661 14.4837 10.4291 14.6152L11.1177 14.9634C11.4504 15.1258 11.814 15.2187 12.1854 15.2187H12.8198C13.4852 15.2187 14.019 15.7525 14.019 16.4179C14.019 17.0832 13.4852 17.6171 12.8198 17.6171H10.8237" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M1.04395 13.5H22.957" stroke="%23DF252A" stroke-width="1.5"/><path d="M12.001 4.82609C12.4665 4.82609 12.8438 4.4173 12.8438 3.91304C12.8438 3.40878 12.4665 3 12.001 3C11.5355 3 11.1582 3.40878 11.1582 3.91304C11.1582 4.4173 11.5355 4.82609 12.001 4.82609Z" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.57227 13.5001C3.57227 10.6088 5.25788 4.82617 12.0004 4.82617C18.7428 4.82617 20.7094 10.6088 20.8499 13.5001" stroke="%23DF252A" stroke-width="1.5"/></svg>') }.study .level--card--cList:hover.media:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.5 14.5H3V8H7.5M7.5 14.5V8M7.5 14.5L17 18V4.5L7.5 8" stroke="%23DF252A" stroke-width="1.5"/><path d="M5 14.5V20H7.5V14.5" stroke="%23DF252A" stroke-width="1.5"/><path d="M19 11L22 11" stroke="%23DF252A" stroke-width="1.5"/><path d="M19 6L21 4" stroke="%23DF252A" stroke-width="1.5"/><path d="M19 16L21 18" stroke="%23DF252A" stroke-width="1.5"/></svg>') }.study .level--card--cList:hover.marine:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 8.56437C2.42073 8.22574 3.07748 8.236 3.48794 8.5849L4.25757 9.24164C4.66803 9.59054 5.32478 9.6008 5.74551 9.26217L6.62801 8.55411C7.04874 8.21548 7.70549 8.22574 8.11596 8.57464L8.88558 9.23138C9.29605 9.58028 9.9528 9.59054 10.3735 9.25191L11.256 8.54385C11.6768 8.20522 12.3335 8.21548 12.744 8.56437L13.5136 9.22112C13.9241 9.57002 14.5808 9.58028 15.0015 9.24164L15.884 8.53359C16.3048 8.19495 16.9615 8.20522 17.372 8.55411L18.1416 9.21086C18.5521 9.55976 19.2088 9.57002 19.6296 9.23138L20.5121 8.52333C20.9328 8.18469 21.5895 8.19495 22 8.54385" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 5.08586C2.42073 4.74722 3.07748 4.75748 3.48794 5.10638L4.25757 5.76313C4.66803 6.11203 5.32478 6.12229 5.74551 5.78365L6.62801 5.0756C7.04874 4.73696 7.70549 4.74722 8.11596 5.09612L8.88558 5.75287C9.29605 6.10176 9.9528 6.11203 10.3735 5.77339L11.256 5.06533C11.6768 4.7267 12.3335 4.73696 12.744 5.08586L13.5136 5.7426C13.9241 6.0915 14.5808 6.10176 15.0015 5.76313L15.884 5.05507C16.3048 4.71644 16.9615 4.7267 17.372 5.0756L18.1416 5.73234C18.5521 6.08124 19.2088 6.0915 19.6296 5.75287L20.5121 5.04481C20.9328 4.70618 21.5895 4.71644 22 5.06533" stroke="%23DF252A" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.7487 13.0063C7.53265 13.0063 5.48767 15.0861 4.61374 16.3481C4.41117 16.6407 4.41636 17.0246 4.62611 17.312C5.61733 18.6703 7.80838 20.7025 10.7487 20.7025C13.6366 20.7025 16.0349 18.742 17.2117 17.3852C17.4882 17.0663 17.492 16.6015 17.221 16.2779C16.16 15.0105 13.9057 13.0063 10.7487 13.0063Z" stroke="%23DF252A" stroke-width="1.5"/><path d="M20.2139 13.5195L17.6484 16.598L20.2139 19.1635V13.5195Z" stroke="%23DF252A" stroke-width="1.5" stroke-linejoin="round"/><circle cx="9.18242" cy="16.085" r="1.02617" fill="%23DF252A"/></svg>') }.study .level--card--cList:hover.natural:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.97376 19.8965L19.8133 5.84035C20.0035 5.6368 20.1517 5.39778 20.2495 5.13694C20.3473 4.8761 20.3928 4.59855 20.3834 4.32014C20.3739 4.04172 20.3097 3.76789 20.1944 3.51429C20.0792 3.26068 19.9151 3.03226 19.7115 2.84207C19.508 2.65188 19.269 2.50365 19.0081 2.40583C18.7473 2.30802 18.4697 2.26254 18.1913 2.27198C17.629 2.29107 17.0974 2.53273 16.7132 2.94382L3.87373 17M6.97376 19.8965L1.63656 22.5352L3.87373 17M6.97376 19.8965L3.87373 17" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="round"/><rect x="1.25586" y="6.44238" width="7.27054" height="22.7204" transform="rotate(-45.4631 1.25586 6.44238)" fill="white" stroke="%23DF252A" stroke-width="1.5"/><path d="M7.36328 6.71436L9.59424 4.44704" stroke="%23DF252A" stroke-width="1.5"/><path d="M10.6016 9.90161L12.8325 7.6343" stroke="%23DF252A" stroke-width="1.5"/><path d="M13.8398 13.0886L16.0708 10.8213" stroke="%23DF252A" stroke-width="1.5"/><path d="M17.0801 16.2756L19.311 14.0083" stroke="%23DF252A" stroke-width="1.5"/></svg>') }.study .level--card--cList:hover.trades:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.6994 6.29998C14.5161 6.48691 14.4135 6.73823 14.4135 6.99998C14.4135 7.26173 14.5161 7.51305 14.6994 7.69998L16.2994 9.29998C16.4863 9.48321 16.7376 9.58584 16.9994 9.58584C17.2611 9.58584 17.5124 9.48321 17.6994 9.29998L21.4694 5.52998C21.9722 6.64117 22.1245 7.87921 21.9058 9.07913C21.6872 10.279 21.1081 11.3838 20.2456 12.2463C19.3832 13.1087 18.2784 13.6878 17.0785 13.9064C15.8786 14.1251 14.6406 13.9728 13.5294 13.47L6.61937 20.38C6.22154 20.7778 5.68198 21.0013 5.11937 21.0013C4.55676 21.0013 4.01719 20.7778 3.61937 20.38C3.22154 19.9822 2.99805 19.4426 2.99805 18.88C2.99805 18.3174 3.22154 17.7778 3.61937 17.38L10.5294 10.47C10.0265 9.35879 9.87428 8.12075 10.0929 6.92083C10.3115 5.72092 10.8907 4.61614 11.7531 3.7537C12.6155 2.89127 13.7203 2.31215 14.9202 2.09352C16.1201 1.8749 17.3582 2.02714 18.4694 2.52998L14.7094 6.28998L14.6994 6.29998Z" stroke="%23DF252A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.study .level--card--cList:hover.social-science:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 12H22" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 2C14.5013 4.73835 15.9228 8.29203 16 12C15.9228 15.708 14.5013 19.2616 12 22C9.49872 19.2616 8.07725 15.708 8 12C8.07725 8.29203 9.49872 4.73835 12 2V2Z" stroke="%23DF252A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.study .level--card--cList::before {position: absolute;content: '';left: 0;width: 20px;height: 20px;background-position: center;background-size: contain;background-repeat: no-repeat }@media (max-width:767px) {.study .level--card--cList::before {width: 16px;height: 16px }}.study .level--card--cList.computer:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.75" y="4.75" width="16.5" height="11.5" rx="1.25" stroke="%23727271" stroke-width="1.5"/><path d="M12 17L12 19" stroke="%23727271" stroke-width="1.5" stroke-linecap="round"/><path d="M7.5 20H16.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>') }.study .level--card--cList.social-science:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 12H22" stroke="%23727271" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 2C14.5013 4.73835 15.9228 8.29203 16 12C15.9228 15.708 14.5013 19.2616 12 22C9.49872 19.2616 8.07725 15.708 8 12C8.07725 8.29203 9.49872 4.73835 12 2V2Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.study .level--card--cList.trades:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.6994 6.29998C14.5161 6.48691 14.4135 6.73823 14.4135 6.99998C14.4135 7.26173 14.5161 7.51305 14.6994 7.69998L16.2994 9.29998C16.4863 9.48321 16.7376 9.58584 16.9994 9.58584C17.2611 9.58584 17.5124 9.48321 17.6994 9.29998L21.4694 5.52998C21.9722 6.64117 22.1245 7.87921 21.9058 9.07913C21.6872 10.279 21.1081 11.3838 20.2456 12.2463C19.3832 13.1087 18.2784 13.6878 17.0785 13.9064C15.8786 14.1251 14.6406 13.9728 13.5294 13.47L6.61937 20.38C6.22154 20.7778 5.68198 21.0013 5.11937 21.0013C4.55676 21.0013 4.01719 20.7778 3.61937 20.38C3.22154 19.9822 2.99805 19.4426 2.99805 18.88C2.99805 18.3174 3.22154 17.7778 3.61937 17.38L10.5294 10.47C10.0265 9.35879 9.87428 8.12075 10.0929 6.92083C10.3115 5.72092 10.8907 4.61614 11.7531 3.7537C12.6155 2.89127 13.7203 2.31215 14.9202 2.09352C16.1201 1.8749 17.3582 2.02714 18.4694 2.52998L14.7094 6.28998L14.6994 6.29998Z" stroke="%23727271" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') }.study .level--card--cList.natural:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.97376 19.8965L19.8133 5.84035C20.0035 5.6368 20.1517 5.39778 20.2495 5.13694C20.3473 4.8761 20.3928 4.59855 20.3834 4.32014C20.3739 4.04172 20.3097 3.76789 20.1944 3.51429C20.0792 3.26068 19.9151 3.03226 19.7115 2.84207C19.508 2.65188 19.269 2.50365 19.0081 2.40583C18.7473 2.30802 18.4697 2.26254 18.1913 2.27198C17.629 2.29107 17.0974 2.53273 16.7132 2.94382L3.87373 17M6.97376 19.8965L1.63656 22.5352L3.87373 17M6.97376 19.8965L3.87373 17" stroke="%23727271" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="round"/><rect x="1.25586" y="6.44238" width="7.27054" height="22.7204" transform="rotate(-45.4631 1.25586 6.44238)" fill="white" stroke="%23727271" stroke-width="1.5"/><path d="M7.36328 6.71436L9.59424 4.44704" stroke="%23727271" stroke-width="1.5"/><path d="M10.6016 9.90161L12.8325 7.6343" stroke="%23727271" stroke-width="1.5"/><path d="M13.8398 13.0886L16.0708 10.8213" stroke="%23727271" stroke-width="1.5"/><path d="M17.0801 16.2756L19.311 14.0083" stroke="%23727271" stroke-width="1.5"/></svg>') }.study .level--card--cList.media:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.5 14.5H3V8H7.5M7.5 14.5V8M7.5 14.5L17 18V4.5L7.5 8" stroke="%23727271" stroke-width="1.5"/><path d="M5 14.5V20H7.5V14.5" stroke="%23727271" stroke-width="1.5"/><path d="M19 11L22 11" stroke="%23727271" stroke-width="1.5"/><path d="M19 6L21 4" stroke="%23727271" stroke-width="1.5"/><path d="M19 16L21 18" stroke="%23727271" stroke-width="1.5"/></svg>') }.study .level--card--cList.marine:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 8.56437C2.42073 8.22574 3.07748 8.236 3.48794 8.5849L4.25757 9.24164C4.66803 9.59054 5.32478 9.6008 5.74551 9.26217L6.62801 8.55411C7.04874 8.21548 7.70549 8.22574 8.11596 8.57464L8.88558 9.23138C9.29605 9.58028 9.9528 9.59054 10.3735 9.25191L11.256 8.54385C11.6768 8.20522 12.3335 8.21548 12.744 8.56437L13.5136 9.22112C13.9241 9.57002 14.5808 9.58028 15.0015 9.24164L15.884 8.53359C16.3048 8.19495 16.9615 8.20522 17.372 8.55411L18.1416 9.21086C18.5521 9.55976 19.2088 9.57002 19.6296 9.23138L20.5121 8.52333C20.9328 8.18469 21.5895 8.19495 22 8.54385" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 5.08586C2.42073 4.74722 3.07748 4.75748 3.48794 5.10638L4.25757 5.76313C4.66803 6.11203 5.32478 6.12229 5.74551 5.78365L6.62801 5.0756C7.04874 4.73696 7.70549 4.74722 8.11596 5.09612L8.88558 5.75287C9.29605 6.10176 9.9528 6.11203 10.3735 5.77339L11.256 5.06533C11.6768 4.7267 12.3335 4.73696 12.744 5.08586L13.5136 5.7426C13.9241 6.0915 14.5808 6.10176 15.0015 5.76313L15.884 5.05507C16.3048 4.71644 16.9615 4.7267 17.372 5.0756L18.1416 5.73234C18.5521 6.08124 19.2088 6.0915 19.6296 5.75287L20.5121 5.04481C20.9328 4.70618 21.5895 4.71644 22 5.06533" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.7487 13.0063C7.53265 13.0063 5.48767 15.0861 4.61374 16.3481C4.41117 16.6407 4.41636 17.0246 4.62611 17.312C5.61733 18.6703 7.80838 20.7025 10.7487 20.7025C13.6366 20.7025 16.0349 18.742 17.2117 17.3852C17.4882 17.0663 17.492 16.6015 17.221 16.2779C16.16 15.0105 13.9057 13.0063 10.7487 13.0063Z" stroke="%23727271" stroke-width="1.5"/><path d="M20.2139 13.5195L17.6484 16.598L20.2139 19.1635V13.5195Z" stroke="%23727271" stroke-width="1.5" stroke-linejoin="round"/><circle cx="9.18242" cy="16.085" r="1.02617" fill="%23727271"/></svg>') }.study .level--card--cList.education:before {background-image: url('data:image/svg+xml;utf-8,<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.1813 10.0629C16.9103 10.0629 17.5013 9.47187 17.5013 8.74285C17.5013 8.01384 16.9103 7.42285 16.1813 7.42285C15.4523 7.42285 14.8613 8.01384 14.8613 8.74285C14.8613 9.47187 15.4523 10.0629 16.1813 10.0629Z" fill="%23727271"/><path d="M19.8907 13.8229C19.8907 12.7729 18.9207 11.9229 17.7207 11.9229H14.5007C13.2807 11.9229 12.3007 12.7929 12.3307 13.8629" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M4.56203 18.6563C5.24134 18.6563 5.79203 18.1056 5.79203 17.4263C5.79203 16.747 5.24134 16.1963 4.56203 16.1963C3.88272 16.1963 3.33203 16.747 3.33203 17.4263C3.33203 18.1056 3.88272 18.6563 4.56203 18.6563Z" fill="%23727271"/><path d="M7.30111 22.1864C7.30111 21.4064 6.58111 20.7864 5.69111 20.7864H3.32111C2.42111 20.7864 1.70111 21.4264 1.72111 22.2164" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M12.1245 18.6563C12.8038 18.6563 13.3545 18.1056 13.3545 17.4263C13.3545 16.747 12.8038 16.1963 12.1245 16.1963C11.4452 16.1963 10.8945 16.747 10.8945 17.4263C10.8945 18.1056 11.4452 18.6563 12.1245 18.6563Z" fill="%23727271"/><path d="M14.8636 22.1864C14.8636 21.4064 14.1436 20.7864 13.2536 20.7864H10.8836C9.98361 20.7864 9.26361 21.4264 9.28361 22.2164" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M19.7027 18.6563C20.382 18.6563 20.9327 18.1056 20.9327 17.4263C20.9327 16.747 20.382 16.1963 19.7027 16.1963C19.0233 16.1963 18.4727 16.747 18.4727 17.4263C18.4727 18.1056 19.0233 18.6563 19.7027 18.6563Z" fill="%23727271"/><path d="M22.4417 22.1864C22.4417 21.4064 21.7217 20.7864 20.8317 20.7864H18.4617C17.5617 20.7864 16.8417 21.4264 16.8617 22.2164" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M10.0707 13.0644H3.4707V3.02441H21.7307V13.0644" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.study .level--card--cList.hospitality:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.019 16.0078L16.371 14.2438C16.6185 14.0582 16.9203 13.9808 17.2143 14.004C17.4851 14.0272 17.7481 14.151 17.957 14.3522C18.4289 14.8241 18.4289 15.59 17.957 16.062L16.4561 17.942C15.4193 19.2418 13.8488 20 12.1931 20H4M5.35381 16.0078C5.78707 16.0078 6.20486 15.8376 6.51433 15.5281L7.03269 15.0098C7.41179 14.6307 7.93016 14.4141 8.47173 14.4141H9.57809C9.87208 14.4141 10.1661 14.4837 10.4291 14.6152L11.1177 14.9634C11.4504 15.1258 11.814 15.2187 12.1854 15.2187H12.8198C13.4852 15.2187 14.019 15.7525 14.019 16.4179C14.019 17.0832 13.4852 17.6171 12.8198 17.6171H10.8237" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M1.04395 13.5H22.957" stroke="%23727271" stroke-width="1.5"/><path d="M12.001 4.82609C12.4665 4.82609 12.8438 4.4173 12.8438 3.91304C12.8438 3.40878 12.4665 3 12.001 3C11.5355 3 11.1582 3.40878 11.1582 3.91304C11.1582 4.4173 11.5355 4.82609 12.001 4.82609Z" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.57227 13.5001C3.57227 10.6088 5.25788 4.82617 12.0004 4.82617C18.7428 4.82617 20.7094 10.6088 20.8499 13.5001" stroke="%23727271" stroke-width="1.5"/></svg>') }.study .level--card--cList.humanities:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.88965 20.7V15.66C6.88965 15.05 7.03965 14.48 7.29965 13.97C7.90965 12.8 9.13965 12 10.5497 12H13.3496C14.7596 12 15.9896 12.8 16.5996 13.97C16.8596 14.48 17.0096 15.05 17.0096 15.66V20.7" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M12.1303 7.82508C13.4061 7.82508 14.4403 6.79086 14.4403 5.51508C14.4403 4.2393 13.4061 3.20508 12.1303 3.20508C10.8545 3.20508 9.82031 4.2393 9.82031 5.51508C9.82031 6.79086 10.8545 7.82508 12.1303 7.82508Z" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M6 10.835C6.82843 10.835 7.5 10.1634 7.5 9.33496C7.5 8.50653 6.82843 7.83496 6 7.83496C5.17157 7.83496 4.5 8.50653 4.5 9.33496C4.5 10.1634 5.17157 10.835 6 10.835Z" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.5195 10.835C19.348 10.835 20.0195 10.1634 20.0195 9.33496C20.0195 8.50653 19.348 7.83496 18.5195 7.83496C17.6911 7.83496 17.0195 8.50653 17.0195 9.33496C17.0195 10.1634 17.6911 10.835 18.5195 10.835Z" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.00098 14H4.84546C3.2805 14 2.00098 15.3438 2.00098 17.0104V19" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M17.001 14H19.2114C20.7558 14 22.001 15.3438 22.001 17.0104V19" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.study .level--card--cList.business:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.4 6H3.6C2.71634 6 2 6.70355 2 7.57143V15.4286C2 16.2964 2.71634 17 3.6 17H16.4C17.2837 17 18 16.2964 18 15.4286V7.57143C18 6.70355 17.2837 6 16.4 6Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M13.3337 6V4.16667C13.3337 3.72464 13.1581 3.30072 12.8455 2.98816C12.5329 2.67559 12.109 2.5 11.667 2.5H8.33366C7.89163 2.5 7.46771 2.67559 7.15515 2.98816C6.84259 3.30072 6.66699 3.72464 6.66699 4.16667L6.66699 6" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M2 9L6 10.5H14L18 9" stroke="%23727271" stroke-width="1.5"/></svg>') }.study .level--card--cList.engineering:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.0001 15.4375C13.8987 15.4375 15.4377 13.8984 15.4377 11.9999C15.4377 10.1013 13.8987 8.56226 12.0001 8.56226C10.1016 8.56226 8.5625 10.1013 8.5625 11.9999C8.5625 13.8984 10.1016 15.4375 12.0001 15.4375Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M19.4007 15C19.2675 15.3016 19.2278 15.6362 19.2866 15.9606C19.3455 16.285 19.5001 16.5844 19.7307 16.8201L19.7907 16.8801C19.9766 17.0658 20.1241 17.2864 20.2248 17.5292C20.3255 17.772 20.3773 18.0323 20.3773 18.2951C20.3773 18.558 20.3255 18.8182 20.2248 19.061C20.1241 19.3038 19.9766 19.5244 19.7907 19.7102C19.6049 19.8961 19.3843 20.0437 19.1415 20.1443C18.8987 20.245 18.6385 20.2968 18.3756 20.2968C18.1128 20.2968 17.8525 20.245 17.6097 20.1443C17.3669 20.0437 17.1463 19.8961 16.9606 19.7102L16.9006 19.6502C16.6649 19.4196 16.3655 19.265 16.0411 19.2062C15.7167 19.1473 15.3821 19.187 15.0805 19.3202C14.7847 19.4469 14.5325 19.6574 14.3548 19.9257C14.1771 20.194 14.0817 20.5084 14.0805 20.8302V21.0002C14.0805 21.5307 13.8697 22.0394 13.4947 22.4145C13.1196 22.7896 12.6108 23.0003 12.0804 23.0003C11.5499 23.0003 11.0412 22.7896 10.6661 22.4145C10.291 22.0394 10.0803 21.5307 10.0803 21.0002V20.9102C10.0726 20.5792 9.96544 20.2582 9.77282 19.9889C9.58021 19.7196 9.31103 19.5145 9.00028 19.4002C8.69866 19.267 8.36407 19.2273 8.03966 19.2862C7.71525 19.345 7.41591 19.4996 7.18022 19.7302L7.12022 19.7902C6.93446 19.9761 6.71388 20.1237 6.47107 20.2243C6.22827 20.325 5.96801 20.3768 5.70517 20.3768C5.44233 20.3768 5.18206 20.325 4.93926 20.2243C4.69645 20.1237 4.47587 19.9761 4.29012 19.7902C4.10416 19.6044 3.95663 19.3838 3.85598 19.141C3.75533 18.8982 3.70352 18.638 3.70352 18.3751C3.70352 18.1123 3.75533 17.852 3.85598 17.6092C3.95663 17.3664 4.10416 17.1458 4.29012 16.9601L4.35012 16.9001C4.58066 16.6644 4.73532 16.365 4.79414 16.0406C4.85296 15.7162 4.81325 15.3816 4.68013 15.08C4.55336 14.7842 4.34287 14.532 4.07457 14.3543C3.80627 14.1766 3.49188 14.0813 3.17008 14.08H3.00007C2.46962 14.08 1.96089 13.8693 1.58581 13.4942C1.21072 13.1191 1 12.6104 1 12.0799C1 11.5495 1.21072 11.0407 1.58581 10.6656C1.96089 10.2906 2.46962 10.0798 3.00007 10.0798H3.09007C3.42108 10.0721 3.7421 9.96495 4.01141 9.77233C4.28071 9.57972 4.48584 9.31054 4.60013 8.9998C4.73325 8.69817 4.77296 8.36358 4.71414 8.03917C4.65532 7.71477 4.50066 7.41542 4.27012 7.17973L4.21011 7.11973C4.02415 6.93398 3.87663 6.71339 3.77598 6.47059C3.67533 6.22778 3.62352 5.96752 3.62352 5.70468C3.62352 5.44184 3.67533 5.18158 3.77598 4.93877C3.87663 4.69597 4.02415 4.47538 4.21011 4.28963C4.39587 4.10367 4.61645 3.95615 4.85926 3.85549C5.10206 3.75484 5.36232 3.70303 5.62516 3.70303C5.888 3.70303 6.14827 3.75484 6.39107 3.85549C6.63388 3.95615 6.85446 4.10367 7.04021 4.28963L7.10022 4.34963C7.3359 4.58018 7.63525 4.73483 7.95966 4.79365C8.28407 4.85247 8.61865 4.81276 8.92028 4.67964H9.00028C9.29606 4.55287 9.54832 4.34239 9.726 4.07409C9.90368 3.80579 9.99904 3.49139 10.0003 3.16959V2.99958C10.0003 2.46913 10.211 1.96041 10.5861 1.58532C10.9612 1.21023 11.4699 0.999512 12.0004 0.999512C12.5308 0.999512 13.0396 1.21023 13.4147 1.58532C13.7897 1.96041 14.0005 2.46913 14.0005 2.99958V3.08959C14.0017 3.41138 14.0971 3.72578 14.2748 3.99408C14.4525 4.26238 14.7047 4.47287 15.0005 4.59964C15.3021 4.73276 15.6367 4.77247 15.9611 4.71365C16.2855 4.65483 16.5849 4.50017 16.8206 4.26963L16.8806 4.20963C17.0663 4.02367 17.2869 3.87614 17.5297 3.77549C17.7725 3.67484 18.0328 3.62303 18.2956 3.62303C18.5585 3.62303 18.8187 3.67484 19.0615 3.77549C19.3043 3.87614 19.5249 4.02367 19.7107 4.20963C19.8966 4.39538 20.0441 4.61596 20.1448 4.85877C20.2455 5.10157 20.2973 5.36184 20.2973 5.62468C20.2973 5.88752 20.2455 6.14778 20.1448 6.39058C20.0441 6.63339 19.8966 6.85397 19.7107 7.03973L19.6507 7.09973C19.4201 7.33542 19.2655 7.63476 19.2066 7.95917C19.1478 8.28358 19.1875 8.61817 19.3207 8.91979V8.9998C19.4474 9.29558 19.6579 9.54783 19.9262 9.72551C20.1945 9.9032 20.5089 9.99855 20.8307 9.99983H21.0007C21.5312 9.99983 22.0399 10.2106 22.415 10.5856C22.7901 10.9607 23.0008 11.4695 23.0008 11.9999C23.0008 12.5304 22.7901 13.0391 22.415 13.4142C22.0399 13.7893 21.5312 14 21.0007 14H20.9107C20.5889 14.0013 20.2745 14.0966 20.0062 14.2743C19.7379 14.452 19.5274 14.7042 19.4007 15V15Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>') }.study .level--card--cList.health:before {background-image: url('data:image/svg+xml;utf-8,<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.7592 13.246C21.7592 11.246 22.0892 7.99601 20.2792 5.80601C18.2092 3.30601 14.4992 3.16601 12.2492 5.41601C10.0192 3.17601 6.29921 3.30601 4.22921 5.80601C2.42921 7.98601 2.74921 11.236 4.74921 13.246L11.9092 20.406" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M14.1289 18.0059H20.1289" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/><path d="M17.1289 21.0059V15.0059" stroke="%23727271" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.study .level--card--cList.law:before {background-image: url('data:image/svg+xml;utf-8,<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="6.00293" y="12.8101" width="11" height="7.10684" transform="rotate(-34.8272 6.00293 12.8101)" stroke="%23727271" stroke-width="1.5"/><rect x="14.21" y="5.13318" width="4.27859" height="10" rx="0.5" transform="rotate(-34.8272 14.21 5.13318)" stroke="%23727271" stroke-width="1.5"/><rect x="1.4707" y="13.9946" width="4.23709" height="10" rx="0.5" transform="rotate(-34.8272 1.4707 13.9946)" stroke="%23727271" stroke-width="1.5"/><rect x="13.6904" y="16.1494" width="2.68742" height="9.46834" transform="rotate(-34.8272 13.6904 16.1494)" stroke="%23727271" stroke-width="1.5"/></svg>') }.study .level--card--cList.pen:before {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 16.6667H17.5" stroke="%23727271" stroke-width="1.25" stroke-linecap="square"/><path d="M13.75 2.91663C14.0815 2.58511 14.5312 2.39886 15 2.39886C15.2321 2.39886 15.462 2.44459 15.6765 2.53343C15.891 2.62227 16.0858 2.75248 16.25 2.91663C16.4142 3.08078 16.5444 3.27566 16.6332 3.49014C16.722 3.70461 16.7678 3.93449 16.7678 4.16663C16.7678 4.39878 16.722 4.62865 16.6332 4.84313C16.5444 5.0576 16.4142 5.25248 16.25 5.41663L5.83333 15.8333L2.5 16.6666L3.33333 13.3333L13.75 2.91663Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="square"/></svg>') }.study .level--card--cList.flower:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.7469 7.25L13.1102 6.59385H13.1102L12.7469 7.25ZM12.7469 16.375L12.4381 15.6915L12.7469 16.375ZM6.295 1.25589C6.55878 1.98263 6.81443 3.00949 7.64914 4.14649C8.48742 5.28835 9.87871 6.51929 12.3836 7.90615L13.1102 6.59385C10.7211 5.27112 9.52628 4.16872 8.85828 3.25882C8.18672 2.34405 8.01591 1.60071 7.705 0.744114L6.295 1.25589ZM12.3836 7.90615C13.9185 8.75594 14.9298 9.56748 15.5321 10.3088C16.1263 11.0404 16.2967 11.6677 16.2395 12.2013C16.1808 12.7481 15.8682 13.3362 15.2218 13.9471C14.5754 14.5582 13.6377 15.1496 12.4381 15.6915L13.0556 17.0585C14.3464 16.4754 15.444 15.8012 16.2522 15.0372C17.0606 14.2732 17.622 13.3769 17.7309 12.3612C17.8413 11.3323 17.4729 10.319 16.6963 9.36304C15.9277 8.4169 14.7361 7.49406 13.1102 6.59385L12.3836 7.90615ZM12.4381 15.6915C7.82546 17.7753 6.25 20.7487 6.25 23H7.75C7.75 21.5013 8.81384 18.9747 13.0556 17.0585L12.4381 15.6915Z" fill="%23727271"/><path d="M11.2531 7.25L10.8898 6.59386L11.2531 7.25ZM11.2531 16.375L11.5619 15.6915L11.2531 16.375ZM17.705 1.25589C17.4412 1.98263 17.1856 3.00949 16.3509 4.14649C15.5126 5.28835 14.1213 6.51929 11.6164 7.90615L10.8898 6.59386C13.2789 5.27112 14.4737 4.16872 15.1417 3.25882C15.8133 2.34405 15.9841 1.60071 16.295 0.744114L17.705 1.25589ZM11.6164 7.90615C10.0815 8.75594 9.0702 9.56748 8.46794 10.3088C7.87366 11.0404 7.7033 11.6677 7.76053 12.2013C7.81919 12.7481 8.13182 13.3362 8.77815 13.9471C9.42458 14.5582 10.3623 15.1496 11.5619 15.6915L10.9444 17.0585C9.65365 16.4754 8.55602 15.8012 7.74777 15.0372C6.93942 14.2732 6.37805 13.3769 6.26909 12.3612C6.15871 11.3323 6.52712 10.319 7.3037 9.36304C8.07231 8.4169 9.26393 7.49406 10.8898 6.59386L11.6164 7.90615ZM11.5619 15.6915C13.6034 16.6137 15.1374 17.8742 16.1673 19.1751C17.1845 20.46 17.75 21.8386 17.75 23H16.25C16.25 22.2864 15.8789 21.2275 14.9912 20.1062C14.1161 19.0008 12.7767 17.8863 10.9444 17.0585L11.5619 15.6915Z" fill="%23727271"/><path d="M7 10.5652H17" stroke="%23727271" stroke-width="1.5"/><path d="M8.11133 3.86951L15.8891 3.86951" stroke="%23727271" stroke-width="1.5"/><path d="M8.11133 20.1305L15.8891 20.1305" stroke="%23727271" stroke-width="1.5"/><path d="M7 13.4348H17" stroke="%23727271" stroke-width="1.5"/></svg>') }.study .level--card--cList.dollar:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="10.2627" y="10.0526" width="10.7368" height="11.6316" stroke="%23727271" stroke-width="1.5"/><path d="M10.2627 13.6316L20.9995 13.6316" stroke="%23727271" stroke-width="1.5"/><path d="M18.3158 7.9908V3.78943H4V19.8947H8.14404" stroke="%23727271" stroke-width="1.5"/><rect x="17.4209" y="15.421" width="1.78947" height="4.47368" fill="%23727271"/><rect x="14.7373" y="15.421" width="1.78947" height="1.78947" fill="%23727271"/><rect x="14.7373" y="18.1052" width="1.78947" height="1.78947" fill="%23727271"/><rect x="12.0527" y="15.421" width="1.78947" height="1.78947" fill="%23727271"/><rect x="12.0527" y="18.1052" width="1.78947" height="1.78947" fill="%23727271"/><rect x="7.5791" y="2" width="7.15789" height="3.57895" fill="white" stroke="%23727271" stroke-width="1.5"/></svg>') }.study .level--card--cList.agriculture:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.00381 17.9485C5.95129 10.4302 6.86125 2.00296 20.2491 2.05154C20.1507 9.56928 20.7317 18.0019 6.00381 17.9485Z" stroke="%23727271" stroke-width="1.5"/><path d="M2.5 22L20 2" stroke="%23727271" stroke-width="1.5"/><path d="M20 8.5L13 10M9.5 14L11 4" stroke="%23727271" stroke-width="1.5"/></svg>') }.study .level--card--cList.art:before {background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.97376 18.8965L20.8133 4.84035C21.0035 4.6368 21.1517 4.39778 21.2495 4.13694C21.3473 3.8761 21.3928 3.59855 21.3834 3.32014C21.3739 3.04172 21.3097 2.76789 21.1944 2.51429C21.0792 2.26068 20.9151 2.03226 20.7115 1.84207C20.508 1.65188 20.269 1.50365 20.0081 1.40583C19.7473 1.30802 19.4697 1.26254 19.1913 1.27198C18.629 1.29107 18.0974 1.53273 17.7132 1.94382L4.87373 16M7.97376 18.8965L2.63656 21.5352L4.87373 16M7.97376 18.8965L4.87373 16" stroke="%23727271" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="round"/><path d="M2.58387 5.64673L13.6934 17.2612C14.0812 17.6666 14.7265 17.6737 15.1232 17.2771L15.6002 16.8L16.6976 15.7026C17.0864 15.3139 17.0884 14.6842 16.7021 14.293L5.43281 2.8782C4.67488 2.11049 3.44275 2.08808 2.65742 2.82773C1.85445 3.58398 1.82143 4.84963 2.58387 5.64673Z" fill="white"/><path d="M16.0785 20.1309C15.188 19.1692 15.5219 17.4262 16.0785 16.8252C17.1915 15.9236 19.0574 15.7761 19.9741 17.4262C20.8089 18.9288 21.3654 20.5316 22.2002 21.0325C18.8611 22.2345 17.1915 21.333 16.0785 20.1309Z" fill="white"/><path d="M13.6934 17.2612L14.2354 16.7428L14.2354 16.7428L13.6934 17.2612ZM2.58387 5.64673L2.04189 6.16514V6.16514L2.58387 5.64673ZM5.43281 2.8782L5.96653 2.35128V2.35128L5.43281 2.8782ZM16.7021 14.293L16.1684 14.8199L16.1684 14.8199L16.7021 14.293ZM16.0785 16.8252L15.5281 16.3156C15.5524 16.2894 15.5786 16.2649 15.6064 16.2424L16.0785 16.8252ZM16.0785 20.1309L15.5281 20.6405L16.0785 20.1309ZM22.2002 21.0325L22.5861 20.3893C22.8345 20.5384 22.9748 20.8171 22.9466 21.1054C22.9185 21.3937 22.7268 21.64 22.4542 21.7381L22.2002 21.0325ZM19.9741 17.4262L20.6297 17.062L19.9741 17.4262ZM16.6976 15.7026L16.1673 15.1723L16.6976 15.7026ZM15.6002 16.8L16.1305 17.3304L15.6002 16.8ZM15.1232 17.2771L14.5929 16.7467L15.1232 17.2771ZM2.65742 2.82773L2.14321 2.28175L2.65742 2.82773ZM13.1515 17.7796L2.04189 6.16514L3.12585 5.12831L14.2354 16.7428L13.1515 17.7796ZM5.96653 2.35128L17.2358 13.7661L16.1684 14.8199L4.89909 3.40512L5.96653 2.35128ZM16.6288 17.3347C16.5054 17.4679 16.319 17.8668 16.2842 18.3923C16.2506 18.9006 16.3715 19.3434 16.6288 19.6213L15.5281 20.6405C14.895 19.9567 14.7376 19.0472 14.7875 18.2933C14.8362 17.5566 15.095 16.7834 15.5281 16.3156L16.6288 17.3347ZM16.6288 19.6213C17.1181 20.1498 17.6892 20.571 18.4736 20.7526C19.2668 20.9361 20.3673 20.8952 21.9462 20.3268L22.4542 21.7381C20.6939 22.3718 19.2901 22.4812 18.1354 22.2139C16.9721 21.9447 16.1518 21.314 15.5281 20.6405L16.6288 19.6213ZM21.8143 21.6756C21.198 21.3058 20.7673 20.598 20.4256 19.9584C20.2446 19.6195 20.0637 19.2483 19.8844 18.8855C19.7022 18.5171 19.5178 18.1491 19.3185 17.7904L20.6297 17.062C20.8479 17.4546 21.046 17.8505 21.229 18.2208C21.4149 18.5968 21.5819 18.9394 21.7487 19.2516C22.1026 19.9142 22.3677 20.2583 22.5861 20.3893L21.8143 21.6756ZM19.3185 17.7904C18.985 17.1901 18.5164 16.9539 18.041 16.9165C17.5328 16.8765 16.9744 17.0646 16.5505 17.408L15.6064 16.2424C16.2955 15.6842 17.2266 15.3477 18.1588 15.4211C19.1238 15.4971 20.0465 16.0122 20.6297 17.062L19.3185 17.7904ZM17.2279 16.233L16.1305 17.3304L15.0699 16.2697L16.1673 15.1723L17.2279 16.233ZM16.1305 17.3304L15.6535 17.8074L14.5929 16.7467L15.0699 16.2697L16.1305 17.3304ZM2.14321 2.28175C3.22507 1.26284 4.92242 1.2937 5.96653 2.35128L4.89909 3.40512C4.42734 2.92728 3.66044 2.91333 3.17163 3.3737L2.14321 2.28175ZM2.04189 6.16514C0.991564 5.06708 1.03705 3.32355 2.14321 2.28175L3.17163 3.3737C2.67184 3.84441 2.65129 4.63218 3.12585 5.12831L2.04189 6.16514ZM14.2354 16.7428C14.3324 16.8441 14.4937 16.8459 14.5929 16.7467L15.6535 17.8074C14.9593 18.5016 13.83 18.489 13.1515 17.7796L14.2354 16.7428ZM17.2358 13.7661C17.9118 14.4507 17.9083 15.5526 17.2279 16.233L16.1673 15.1723C16.2645 15.0751 16.265 14.9177 16.1684 14.8199L17.2358 13.7661Z" fill="%23727271"/></svg>') }.study .university--card {display: block;margin-bottom: 40px }.study .university--card:hover figure > img {transform: scale(1.2) }.study .university--card:hover .university--name {text-decoration: underline }.study .university--card .custom--checkbox {position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;cursor: pointer }.study .university--card .custom--checkbox input {display: none }.study .university--card .custom--checkbox input:checked ~ .custom--checkbox__checkmark {background-color: #2b2a29;border-color: #2b2a29 }.study .university--card .custom--checkbox input:checked ~ .custom--checkbox__checkmark::after {display: block }.study .university--card .custom--checkbox input:checked ~ .custom--checkbox__bookmark {background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="%23DF252A" xmlns="http://www.w3.org/2000/svg"><path d="M15.8327 17.5L9.99935 13.3333L4.16602 17.5V4.16667C4.16602 3.72464 4.34161 3.30072 4.65417 2.98816C4.96673 2.67559 5.39065 2.5 5.83268 2.5H14.166C14.608 2.5 15.032 2.67559 15.3445 2.98816C15.6571 3.30072 15.8327 3.72464 15.8327 4.16667V17.5Z" stroke="%23DF252A" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>') }.study .university--card .custom--checkbox__checkmark {position: absolute;width: 16px;height: 16px;left: 0;border-radius: 1px;border: 1.25px solid #b3b3b2 }@media (max-width:767px) {.study .university--card .custom--checkbox__checkmark {width: 13px;height: 13px }}.study .university--card .custom--checkbox__checkmark:after {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="9" height="7" viewBox="0 0 9 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 3.373L3.374 5.746L8.12 1" stroke="%23ffffff" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-size: cover;background-position: center;background-repeat: no-repeat;width: 8px;height: 8px;top: 50%;left: 50%;transform: translate(-50%, -50%);display: none }@media (max-width:767px) {.study .university--card .custom--checkbox__checkmark:after {width: 6px;height: 6px }}.study .university--card .custom--checkbox__bookmark {width: 20px;height: 20px;background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.8327 17.5L9.99935 13.3333L4.16602 17.5V4.16667C4.16602 3.72464 4.34161 3.30072 4.65417 2.98816C4.96673 2.67559 5.39065 2.5 5.83268 2.5H14.166C14.608 2.5 15.032 2.67559 15.3445 2.98816C15.6571 3.30072 15.8327 3.72464 15.8327 4.16667V17.5Z" stroke="%23727271" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="round"/></svg>');background-repeat: no-repeat;background-size: cover;background-position: center }.study .university--card__bottom {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start }.study .university--card__bottom .left {padding-right: 12px }.study .university--figure {position: relative;border-radius: 12px;overflow: hidden;margin-bottom: 16px }.study .university--figure img {transition: all .3s ease-in;display: block }.study .university--logo {position: absolute;left: 16px;bottom: 16px;background-color: #fff;border-radius: 50%;width: 60px;height: 60px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }@media (max-width:991px) {.study .university--logo {width: 48px;height: 48px;left: 12px;bottom: 12px }}.study .university--logo img {width: 48px !important }@media (max-width:991px) {.study .university--logo img {width: 38px !important }}.study .university--name {font-size: 16px;line-height: 20px }.study .university--desc {font-size: 12px;line-height: 19px;margin-top: 12px }.study .university--fees {font-size: 12px;line-height: 19px;margin-top: 4px }.study .number {max-width: 50%;width: 100% }@media (max-width:991px) {.study .number {max-width: 100% }}@media (max-width:767px) {.study .number {margin-bottom: 28px }}.study .number--row {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between;margin-top: 48px }@media (max-width:767px) {.study .number--row:nth-child(even) {margin-top: 40px }}@media (max-width:767px) {.study .number--row:nth-child(odd) {margin-top: 0 }}@media (max-width:767px) {.study .number--row {-ms-flex-wrap: wrap;flex-wrap: wrap }}.study .number--count {font-size: 24px;line-height: 30px;margin-bottom: 8px }@media (max-width:767px) {.study .number--count {font-size: 16px;line-height: 25px;margin-bottom: 4px }}.study .number--desc {font-size: 16px;line-height: 25px }@media (max-width:767px) {.study .number--desc {font-size: 12px;line-height: 19px }}@media (max-width:991px) {.study .living--image {margin-top: 40px }}.study .scholarship {margin-top: 80px }.study .scholarship--title {font-size: 24px;line-height: 30px;margin-bottom: 20px }.study .scholarship .section--hero__desc {max-width: 596px }.study .scholarship--slider {margin-top: 48px }@media (max-width:767px) {.study .scholarship--slider {margin-top: 40px }}.study .scholarship--slider .sCard {box-shadow: 0 4px 24px rgba(0, 0, 0, .04);border-radius: 12px;border: 1px solid rgba(43, 42, 41, .1);padding: 24px;min-height: 335px }@media (max-width:767px) {.study .scholarship--slider .sCard {padding: 20px;min-height: 235px }}.study .scholarship--slider .sCard--logo {width: 72px;height: 72px;border-radius: 50%;object-fit: cover;margin-bottom: 20px }@media (max-width:767px) {.study .scholarship--slider .sCard--logo {width: 48px;height: 48px;margin-bottom: 16px }}.study .scholarship--slider .sCard--title {font-size: 20px;line-height: 27px;margin-bottom: 16px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;text-overflow: ellipsis;white-space: normal }@media (max-width:767px) {.study .scholarship--slider .sCard--title {font-size: 16px;line-height: 20px;margin-bottom: 12px }}.study .scholarship--slider .sCard--desc {font-size: 16px;line-height: 24px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 4;overflow: hidden;text-overflow: ellipsis;white-space: normal }@media (max-width:767px) {.study .scholarship--slider .sCard--desc {font-size: 12px;line-height: 19px }}.study .scholarship-button {margin-top: 40px }.institute .sidebar {position: relative;border-right: 1px solid rgba(43, 42, 41, .1) }.institute .sidebar:after {position: absolute;content: '';left: -100%;right: 0;bottom: 0;height: 100%;z-index: -1;background-color: rgba(228, 231, 233, .2) }@media (max-width:991px) {.institute .section--title {margin-bottom: 24px }}.institute .institute-body {padding-top: 116px }@media (max-width:767px) {.institute .institute-body .position--heading.web {display: none }}.institute .institute-body .position--heading__location.check {border: none;border-radius: 0;padding: 0 }.institute .institute-body .position--heading__location.check a {border: 1px solid rgba(43, 42, 41, .1);border-radius: 98px;padding: 10px 24px;transition: all .3s ease }.institute .institute-body .position--heading__location.check:hover a {color: #fff;background-color: #df252a }.institute .sticky-footer {position: -webkit-sticky;position: sticky;left: 0;bottom: 0;right: 0;z-index: 99 }.institute .sticky-footer .filter-sticky {background-color: #df252a;box-shadow: 0 4px 8px rgba(223, 37, 42, .12);width: 48px;height: 48px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;border-radius: 50%;margin: 0 20px 16px auto;position: relative }.institute .sticky-footer .filter-sticky:after {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 4.80029H2.40002L10.08 13.6296V19.7336L13.92 21.6003V13.6296L21.6 4.80029Z" stroke="%23ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');background-repeat: no-repeat;background-size: cover;background-position: center;width: 24px;height: 24px }.institute .sticky-footer .bottom-button {background-color: #fff;padding: 16px 20px;box-shadow: -4px 4px 16px rgba(43, 42, 41, .04);border-top: 1px solid rgba(43, 42, 41, .1) }.institute .sticky-footer .button-rounded {display: block }@media (max-width:991px) {.institute .web {display: none }}@media (max-width:991px) {.institute .mobile {display: block }}.institute .searchbar {width: 100%;padding-bottom: 24px;margin-bottom: 24px;border-bottom: 1px solid rgba(43, 42, 41, .1) }.institute .searchbar--body {padding: 12px;background: rgba(228, 231, 233, .4);border: 1px solid rgba(43, 42, 41, .1);border-radius: 98px;position: relative;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.institute .searchbar--body::before {position: absolute;content: '';background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M21.0004 21L16.6504 16.65" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>');background-size: cover;background-position: center;width: 20px;height: 20px;left: 12px }.institute .searchbar--body input[type=text] {background-color: transparent;border: none;color: #2b2a29;width: 100%;outline: 0;box-shadow: none;caret-color: #df252a;border-radius: 0;font-size: 12px;line-height: 18px;padding-left: 28px }.institute .searchbar--body input[type=text]:-ms-input-placeholder {font-size: 12px;line-height: 18px;color: #727271 }.institute .searchbar--body input[type=text]::placeholder {font-size: 12px;line-height: 18px;color: #727271 }.program--list + .program--list {margin-top: 40px;padding-top: 24px;border-top: 1px solid rgba(43, 42, 41, .1) }.program--list:last-child {padding-bottom: 40px }.program--row {display: -ms-flexbox;display: flex;-ms-flex-align: end;align-items: flex-end;-ms-flex-pack: justify;justify-content: space-between;margin-bottom: 24px }.program--row .arrow span {font-size: 12px;line-height: 19px;padding-right: 18px;white-space: nowrap }.program--row .arrow span::before {width: 16px;height: 16px }.program--heading {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.program--heading img {width: 48px;height: 48px;border-radius: 50% }@media (max-width:767px) {.program--heading img {width: 40px;height: 40px }}.program--heading--right {padding-left: 12px }@media (max-width:767px) {.program--heading--right {padding-left: 8px }}.program--heading--right h2 {font-size: 16px;line-height: 24px;margin-bottom: 4px }@media (max-width:767px) {.program--heading--right h2 {font-size: 12px;line-height: 19px }}.program--heading--right p {font-size: 12px;line-height: 19px;display: flex;align-items: center;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 1;overflow: hidden;text-overflow: ellipsis;white-space: normal }.program--heading--right p img {width: 12px;height: 12px;margin-right: 4px }.program--card {background-color: rgba(228, 231, 233, .2);padding: 16px;border-radius: 12px }.program--card--header {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }.program--card--header .bookmark {min-width: 32px;height: 32px;border-radius: 50%;border: 1px solid rgba(43, 42, 41, .1);display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }.program--card--header .bookmark:hover {background-color: rgba(228, 231, 233, .3) }.program--card--title {font-size: 14px;line-height: 19px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal }.program--card--status {font-size: 12px;line-height: 19px;margin-top: 12px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.program--card--status p {white-space: nowrap }.program--card--status p + p {margin-left: 12px;padding-left: 12px;border-left: 1px solid rgba(43, 42, 41, .1) }.program--card--detail {display: -ms-flexbox;display: flex;padding-top: 18px;margin-top: 16px;border-top: 1px solid rgba(43, 42, 41, .1) }.program--card--detail__item {max-width: 50%;width: 100% }.program--card--detail__count {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;font-size: 14px;line-height: 21px }.program--card--detail__count img {max-width: 16px;height: 16px;margin-right: 4px }.program--card--detail__desc {font-size: 12px;line-height: 19px;margin-top: 5px }.program--card--score {margin-top: 16px;padding-top: 16px;border-top: 1px solid rgba(43, 42, 41, .1) }.program--card--score--title {font-size: 12px;line-height: 19px;margin-bottom: 12px }.program--card--score--row {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }.program--card--score--item {width: 100% }.program--card--score--item + .program--card--score--item {border-left: 1px solid rgba(43, 42, 41, .1);padding-left: 16px }.program--card--score--count {font-size: 14px;line-height: 21px;margin-bottom: 2px }.program--card--score--desc {font-size: 12px;line-height: 19px;white-space: nowrap }.program--card--footer {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;margin-top: 24px }.program--card--footer a + a {margin-left: 12px }.program--card--footer .button-rounded {font-size: 12px;line-height: 19px;padding: 6px 12px;width: 50%;white-space: nowrap }.program--card--footer .button-rounded__white {color: #2b2a29 }.program--card--footer .button-rounded__white:hover {background-color: #2b2a29;color: #fff }.program--card.list {display: -ms-flexbox;display: flex;-ms-flex-pack: justify;justify-content: space-between;-ms-flex-align: center;align-items: center;overflow-x: auto }.program--card.list + .list {margin-top: 16px }.program--card.list .list-left {-ms-flex: 1;flex: 1 }@media (max-width:991px) {.program--card.list .list-left {margin-right: 50px }}.program--card.list .program--card--status {margin-top: 4px }.program--card.list .program--card--title {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 1;overflow: hidden;text-overflow: ellipsis;white-space: normal }.program--card.list .program--card--footer {-ms-flex-direction: column;flex-direction: column;-ms-flex-align: start;align-items: flex-start;margin-top: 0 }.program--card.list .program--card--footer a {width: 100%;margin-top: 8px }.program--card.list .program--card--footer a + a {margin-left: 0 }.program--card.list .program--card--footer .custom--checkbox {border: 1px solid rgba(43, 42, 41, .1);border-radius: 98px;padding: 6px 28px;background-color: #fff }.program--card.list .program--card--footer .custom--checkbox:hover {background-color: rgba(179, 179, 178, .1) }.program--card.list .program--card--footer .custom--checkbox__label {padding-left: 8px;font-size: 12px;line-height: 19px }.program--card.list .program--card--footer .custom--checkbox__bookmark {width: 16px;height: 16px }.program--card.list .program--card--detail {border-top: none;margin-top: 20px;padding-top: 0 }.program--card.list .program--card--detail__item {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;max-width: initial;width: auto }.program--card.list .program--card--detail__item + .program--card--detail__item {margin-left: 48px }.program--card.list .program--card--detail__item .circle {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;min-width: 48px;height: 48px;border: 1px solid rgba(43, 42, 41, .05);background-color: #fff;box-shadow: -4px 4px 16px rgba(43, 42, 41, .04);border-radius: 50%;margin-right: 12px }.program--card.list .program--card--detail__item .circle img {width: 24px;height: 24px }.program--card.list .program--card--detail__desc {white-space: nowrap;margin-top: 2px }.program--card.list .program--card--detail__count {white-space: nowrap }.program--card.list .program--card--score--item + .program--card--score--item {border-left: 0 }.program--card.list .program--card--score--desc {white-space: nowrap }.program--card.column {min-height: 382px;display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;-ms-flex-pack: justify;justify-content: space-between }.program--card.column .program--card--header {-ms-flex-align: start;align-items: flex-start }.program--card.column .program--card--header .program--card--title {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 4;overflow: hidden;text-overflow: ellipsis;white-space: normal }.program.viewAll .program--card {margin-bottom: 30px }.program .position--subHeading {margin: 24px 0 32px }@media (max-width:767px) {.program .mobile.searchbar {margin-top: 30px }}.faq-page h1 {max-width: 596px }.faq-page .hero--searchbar {margin-top: 80px }@media (max-width:767px) {.faq-page .hero--searchbar {margin-top: 32px }}.faq-page .hero--searchbar input[type=text] {padding-left: 0;margin-left: 0;border-left: 0 }.video-modal {margin-top: 100px }.video-modal .modal-dialog {max-width: 800px;margin: 30px auto }.video-modal .modal-dialog .modal-body {position: relative;padding: 0 }.video-modal .modal-dialog .close {position: absolute;right: -30px;top: 0;z-index: 999;font-size: 2rem;font-weight: 400;color: #fff;opacity: 1 }.searchAction {display: none;width: 400px !important;padding-bottom: 0 !important;border-bottom: 0 !important;margin-bottom: 0 !important }.searchAction .close {width: 20px;height: 20px;cursor: pointer }.mainToast {position: fixed;bottom: 36px;right: 36px;z-index: 99 }@media (max-width:767px) {.mainToast {right: 10px }}.mainToast .close-btn {position: absolute;width: 28px;height: 28px;top: -44px;right: 0;border-radius: 50%;background-color: #191717;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center }@media (max-width:767px) {.mainToast .close-btn {width: 24px;height: 24px;top: -30px }}.mainToast .close-btn .close {width: 16px;height: 16px }@media (max-width:767px) {.mainToast .close-btn .close {width: 12px;height: 12px }}.mainToast .toast {background-color: #f2f0f0;border-radius: 12px;border: 1px solid rgba(43, 42, 41, .05);box-shadow: 0 6px 24px rgba(0, 0, 0, .08);padding: 16px;min-width: 432px;}@media (max-width:767px) {.mainToast .toast {min-width: inherit }}.mainToast .toast:not(:last-child) {margin-bottom: 16px }.mainToast .toast .toast-body {display: -ms-flexbox;display: flex;padding: 0 }.mainToast .toast .toast-body .toast-logo {width: 68px;height: 68px;border-radius: 50%;background: #fff;padding: 8px;}.mainToast .close-btn .close {background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4Igp3aWR0aD0iMjQiIGhlaWdodD0iMjQiCnZpZXdCb3g9IjAsMCwyNTYsMjU2IgpzdHlsZT0iZmlsbDojMDAwMDAwOyI+CjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lY2FwPSJidXR0IiBzdHJva2UtbGluZWpvaW49Im1pdGVyIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1kYXNoYXJyYXk9IiIgc3Ryb2tlLWRhc2hvZmZzZXQ9IjAiIGZvbnQtZmFtaWx5PSJub25lIiBmb250LXdlaWdodD0ibm9uZSIgZm9udC1zaXplPSJub25lIiB0ZXh0LWFuY2hvcj0ibm9uZSIgc3R5bGU9Im1peC1ibGVuZC1tb2RlOiBub3JtYWwiPjxnIHRyYW5zZm9ybT0ic2NhbGUoMTAuNjY2NjcsMTAuNjY2NjcpIj48cGF0aCBkPSJNNC43MDcwMywzLjI5Mjk3bC0xLjQxNDA2LDEuNDE0MDZsNy4yOTI5Nyw3LjI5Mjk3bC03LjI5Mjk3LDcuMjkyOTdsMS40MTQwNiwxLjQxNDA2bDcuMjkyOTcsLTcuMjkyOTdsNy4yOTI5Nyw3LjI5Mjk3bDEuNDE0MDYsLTEuNDE0MDZsLTcuMjkyOTcsLTcuMjkyOTdsNy4yOTI5NywtNy4yOTI5N2wtMS40MTQwNiwtMS40MTQwNmwtNy4yOTI5Nyw3LjI5Mjk3eiI+PC9wYXRoPjwvZz48L2c+Cjwvc3ZnPg==') 50% 50% no-repeat;background-size: auto;background-size: 100%;opacity: unset;}@media (max-width:991px) {.mainToast .toast .toast-body .toast-logo {width: 38px;height: 38px }}.mainToast .toast .toast-body .toast-right {padding-left: 16px }.mainToast .toast .toast-body .toast-right .toast-tag {font-size: 14px;line-height: 22px;margin-bottom: 6px }@media (max-width:767px) {.mainToast .toast .toast-body .toast-right .toast-tag {font-size: 12px;line-height: 19px }}.mainToast .toast .toast-body .toast-right .toast-title {font-size: 18px;line-height: 26px;margin-bottom: 20px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;white-space: normal }@media (max-width:767px) {.mainToast .toast .toast-body .toast-right .toast-title {font-size: 16px;line-height: 22px;margin-bottom: 12px }}.mainToast .toast .toast-body .toast-right .toast-footer {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: justify;justify-content: space-between }@media (max-width:767px) {.mainToast .toast .toast-body .toast-right .toast-footer {-ms-flex-wrap: wrap;flex-wrap: wrap }}.mainToast .toast .toast-body .toast-right .toast-footer .toast-time {position: relative;font-size: 14px;line-height: 20px;padding-left: 24px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center }@media (max-width:767px) {.mainToast .toast .toast-body .toast-right .toast-footer .toast-time {margin-bottom: 8px;font-size: 12px;line-height: 19px;padding-left: 19px }}.mainToast .toast .toast-body .toast-right .toast-footer .toast-time::before {position: absolute;content: '';width: 20px;height: 20px;background-image: url('data:image/svg+xml;utf-8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M8 2.5V6.5" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><path d="M3.5 10L20.5 10" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/><rect x="3.5" y="4.5" width="17" height="16" rx="0.666667" stroke="%23727271" stroke-width="1.5" stroke-linecap="square"/></svg>');background-repeat: no-repeat;background-position: center;background-size: cover;left: 0 }@media (max-width:767px) {.mainToast .toast .toast-body .toast-right .toast-footer .toast-time::before {width: 14px;height: 14px }}.mainToast .toast .toast-body .toast-right .arrow span {font-size: 14px;line-height: 20px }.otp-modal .form--header {font-size: 20px;line-height: 28px;margin-bottom: 16px }@media (max-width:767px) {.otp-modal .form--header {font-size: 16px;line-height: 22px;margin-bottom: 20px }}.otp-modal .otp--header {margin-bottom: 40px;text-align: left !important }@media (max-width:767px) {.otp-modal .otp--header {margin-bottom: 20px }}.otp-modal .already {margin-top: 24px;margin-bottom: 42px }@media (max-width:767px) {.otp-modal .already {margin-top: 15px;margin-bottom: 30px }}.otp-modal .already p {text-align: left;font-size: 14px }