@charset "UTF-8";

.compat-container, .compat-container * {
  box-sizing: content-box;
}

.compat-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .compat-container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .compat-container {
    max-width: 970px;
  }
}

@media (min-width: 1200px) {
  .compat-container {
    max-width: 1170px;
  }
}

.compat-jumbotron {
  box-sizing: content-box;
  padding-left: 24px;
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 16px;
  background-color: rgb(233, 236, 239);
  border-radius: 6px;
  color: inherit;
  font-weight: 600;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.compat-jumbotron h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
}

#errorbanner-generic {
  color: #ffffff;
  font-size: 1rem;
  font-style: bold;
  font-weight: 600;
}

#errorbanner-error {
  color: #ffffff;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
}

#errorbanner-clienterror {
  color: #ffffff;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
}

#errorbanner-clienterrormore {
  color: #ffffff;
  font-size: 0.8rem;
  font-style: normal;
  text-decoration: underline;
  font-weight: 400;
}

#errorbanner-errormore {
  color: #ffffff;
  font-size: 0.8rem;
  font-style: normal;
  text-decoration: underline;
  font-weight: 400;
}

#errorbanner-moredetail {
  color: #ffffff;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
}

#errorbanner-moredetailheader {
  color: #ffffff;
  font-size: 0.8rem;
  font-style: bold;
  font-weight: 600;
  padding-top: 0.8rem;
}

#dialog-container {
  color: #161616;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
}

#dialog-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
}

#dialog-ok {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
}

#dialog-cancel {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
}

#spinner-title {
  color: #9ca3af;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
}

/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */

: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:2;
  animation-iteration-count:calc(var(--animate-repeat)*2)
}

.animate__animated.animate__repeat-3{
  animation-iteration-count: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:2s;
  animation-delay:calc(var(--animate-delay)*2)
}

.animate__animated.animate__delay-3s{
  animation-delay:3s;
  animation-delay:calc(var(--animate-delay)*3)
}

.animate__animated.animate__delay-4s{
  animation-delay:4s;
  animation-delay:calc(var(--animate-delay)*4)
}

.animate__animated.animate__delay-5s{
  animation-delay:5s;
  animation-delay:calc(var(--animate-delay)*5)
}

.animate__animated.animate__faster{
  animation-duration:.5s;
  animation-duration:calc(var(--animate-duration)/2)
}

.animate__animated.animate__fast{
  animation-duration:.8s;
  animation-duration:calc(var(--animate-duration)*0.8)
}

.animate__animated.animate__slow{
  animation-duration:2s;
  animation-duration:calc(var(--animate-duration)*2)
}

.animate__animated.animate__slower{
  animation-duration:3s;
  animation-duration:calc(var(--animate-duration)*3)
}

@media (prefers-reduced-motion:reduce), print{
  .animate__animated{
    animation-duration:1ms!important;
    transition-duration:1ms!important;
    animation-iteration-count:1!important
  }

  .animate__animated[class*=Out]{
    opacity:0
  }
}

@keyframes bounce{
  0%,20%,53%,to{
    animation-timing-function:cubic-bezier(.215,.61,.355,1);
    transform:translateZ(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:translateZ(0) scaleY(.95)
  }

  90%{
    transform:translate3d(0,-4px,0) scaleY(1.02)
  }
}

.animate__bounce{
  animation-name:bounce;
  transform-origin:center bottom
}

@keyframes flash{
  0%,50%,to{
    opacity:1
  }

  25%,75%{
    opacity:0
  }
}

.animate__flash{
  animation-name:flash
}

@keyframes pulse{
  0%{
    transform:scaleX(1)
  }

  50%{
    transform:scale3d(1.05,1.05,1.05)
  }

  to{
    transform:scaleX(1)
  }
}

.animate__pulse{
  animation-name:pulse;
  animation-timing-function:ease-in-out
}

@keyframes rubberBand{
  0%{
    transform:scaleX(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:scaleX(1)
  }
}

.animate__rubberBand{
  animation-name:rubberBand
}

@keyframes shakeX{
  0%,to{
    transform:translateZ(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{
  0%,to{
    transform:translateZ(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:rotate(15deg)
  }

  40%{
    transform:rotate(-10deg)
  }

  60%{
    transform:rotate(5deg)
  }

  80%{
    transform:rotate(-5deg)
  }

  to{
    transform:rotate(0deg)
  }
}

.animate__swing{
  transform-origin:top center;
  animation-name:swing
}

@keyframes tada{
  0%{
    transform:scaleX(1)
  }

  10%,20%{
    transform:scale3d(.9,.9,.9) rotate(-3deg)
  }

  30%,50%,70%,90%{
    transform:scale3d(1.1,1.1,1.1) rotate(3deg)
  }

  40%,60%,80%{
    transform:scale3d(1.1,1.1,1.1) rotate(-3deg)
  }

  to{
    transform:scaleX(1)
  }
}

.animate__tada{
  animation-name:tada
}

@keyframes wobble{
  0%{
    transform:translateZ(0)
  }

  15%{
    transform:translate3d(-25%,0,0) rotate(-5deg)
  }

  30%{
    transform:translate3d(20%,0,0) rotate(3deg)
  }

  45%{
    transform:translate3d(-15%,0,0) rotate(-3deg)
  }

  60%{
    transform:translate3d(10%,0,0) rotate(2deg)
  }

  75%{
    transform:translate3d(-5%,0,0) rotate(-1deg)
  }

  to{
    transform:translateZ(0)
  }
}

.animate__wobble{
  animation-name:wobble
}

@keyframes jello{
  0%,11.1%,to{
    transform:translateZ(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(.390625deg) skewY(.390625deg)
  }

  88.8%{
    transform:skewX(-.1953125deg) skewY(-.1953125deg)
  }
}

.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:1.3s;
  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
  }

  to{
    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
  }

  to{
    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
  }

  to{
    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
  }

  to{
    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
  }

  to{
    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
  }

  to{
    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
  }

  to{
    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
  }

  to{
    transform:translateY(-700px) scale(.7);
    opacity:.7
  }
}

.animate__backOutUp{
  animation-name:backOutUp
}

@keyframes bounceIn{
  0%,20%,40%,60%,80%,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:scaleX(1)
  }
}

.animate__bounceIn{
  animation-duration:.75s;
  animation-duration:calc(var(--animate-duration)*0.75);
  animation-name:bounceIn
}

@keyframes bounceInDown{
  0%,60%,75%,90%,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:translateZ(0)
  }
}

.animate__bounceInDown{
  animation-name:bounceInDown
}

@keyframes bounceInLeft{
  0%,60%,75%,90%,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:translateZ(0)
  }
}

.animate__bounceInLeft{
  animation-name:bounceInLeft
}

@keyframes bounceInRight{
  0%,60%,75%,90%,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:translateZ(0)
  }
}

.animate__bounceInRight{
  animation-name:bounceInRight
}

@keyframes bounceInUp{
  0%,60%,75%,90%,to{
    animation-timing-function:cubic-bezier(.215,.61,.355,1)
  }

  0%{
    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:translateZ(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:.75s;
  animation-duration:calc(var(--animate-duration)*0.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{
  0%{
    opacity:0
  }

  to{
    opacity:1
  }
}

.animate__fadeIn{
  animation-name:fadeIn
}

@keyframes fadeInDown{
  0%{
    opacity:0;
    transform:translate3d(0,-100%,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInDown{
  animation-name:fadeInDown
}

@keyframes fadeInDownBig{
  0%{
    opacity:0;
    transform:translate3d(0,-2000px,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInDownBig{
  animation-name:fadeInDownBig
}

@keyframes fadeInLeft{
  0%{
    opacity:0;
    transform:translate3d(-100%,0,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInLeft{
  animation-name:fadeInLeft
}

@keyframes fadeInLeftBig{
  0%{
    opacity:0;
    transform:translate3d(-2000px,0,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInLeftBig{
  animation-name:fadeInLeftBig
}

@keyframes fadeInRight{
  0%{
    opacity:0;
    transform:translate3d(100%,0,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInRight{
  animation-name:fadeInRight
}

@keyframes fadeInRightBig{
  0%{
    opacity:0;
    transform:translate3d(2000px,0,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInRightBig{
  animation-name:fadeInRightBig
}

@keyframes fadeInUp{
  0%{
    opacity:0;
    transform:translate3d(0,100%,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInUp{
  animation-name:fadeInUp
}

@keyframes fadeInUpBig{
  0%{
    opacity:0;
    transform:translate3d(0,2000px,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInUpBig{
  animation-name:fadeInUpBig
}

@keyframes fadeInTopLeft{
  0%{
    opacity:0;
    transform:translate3d(-100%,-100%,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInTopLeft{
  animation-name:fadeInTopLeft
}

@keyframes fadeInTopRight{
  0%{
    opacity:0;
    transform:translate3d(100%,-100%,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInTopRight{
  animation-name:fadeInTopRight
}

@keyframes fadeInBottomLeft{
  0%{
    opacity:0;
    transform:translate3d(-100%,100%,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInBottomLeft{
  animation-name:fadeInBottomLeft
}

@keyframes fadeInBottomRight{
  0%{
    opacity:0;
    transform:translate3d(100%,100%,0)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__fadeInBottomRight{
  animation-name:fadeInBottomRight
}

@keyframes fadeOut{
  0%{
    opacity:1
  }

  to{
    opacity:0
  }
}

.animate__fadeOut{
  animation-name:fadeOut
}

@keyframes fadeOutDown{
  0%{
    opacity:1
  }

  to{
    opacity:0;
    transform:translate3d(0,100%,0)
  }
}

.animate__fadeOutDown{
  animation-name:fadeOutDown
}

@keyframes fadeOutDownBig{
  0%{
    opacity:1
  }

  to{
    opacity:0;
    transform:translate3d(0,2000px,0)
  }
}

.animate__fadeOutDownBig{
  animation-name:fadeOutDownBig
}

@keyframes fadeOutLeft{
  0%{
    opacity:1
  }

  to{
    opacity:0;
    transform:translate3d(-100%,0,0)
  }
}

.animate__fadeOutLeft{
  animation-name:fadeOutLeft
}

@keyframes fadeOutLeftBig{
  0%{
    opacity:1
  }

  to{
    opacity:0;
    transform:translate3d(-2000px,0,0)
  }
}

.animate__fadeOutLeftBig{
  animation-name:fadeOutLeftBig
}

@keyframes fadeOutRight{
  0%{
    opacity:1
  }

  to{
    opacity:0;
    transform:translate3d(100%,0,0)
  }
}

.animate__fadeOutRight{
  animation-name:fadeOutRight
}

@keyframes fadeOutRightBig{
  0%{
    opacity:1
  }

  to{
    opacity:0;
    transform:translate3d(2000px,0,0)
  }
}

.animate__fadeOutRightBig{
  animation-name:fadeOutRightBig
}

@keyframes fadeOutUp{
  0%{
    opacity:1
  }

  to{
    opacity:0;
    transform:translate3d(0,-100%,0)
  }
}

.animate__fadeOutUp{
  animation-name:fadeOutUp
}

@keyframes fadeOutUpBig{
  0%{
    opacity:1
  }

  to{
    opacity:0;
    transform:translate3d(0,-2000px,0)
  }
}

.animate__fadeOutUpBig{
  animation-name:fadeOutUpBig
}

@keyframes fadeOutTopLeft{
  0%{
    opacity:1;
    transform:translateZ(0)
  }

  to{
    opacity:0;
    transform:translate3d(-100%,-100%,0)
  }
}

.animate__fadeOutTopLeft{
  animation-name:fadeOutTopLeft
}

@keyframes fadeOutTopRight{
  0%{
    opacity:1;
    transform:translateZ(0)
  }

  to{
    opacity:0;
    transform:translate3d(100%,-100%,0)
  }
}

.animate__fadeOutTopRight{
  animation-name:fadeOutTopRight
}

@keyframes fadeOutBottomRight{
  0%{
    opacity:1;
    transform:translateZ(0)
  }

  to{
    opacity:0;
    transform:translate3d(100%,100%,0)
  }
}

.animate__fadeOutBottomRight{
  animation-name:fadeOutBottomRight
}

@keyframes fadeOutBottomLeft{
  0%{
    opacity:1;
    transform:translateZ(0)
  }

  to{
    opacity:0;
    transform:translate3d(-100%,100%,0)
  }
}

.animate__fadeOutBottomLeft{
  animation-name:fadeOutBottomLeft
}

@keyframes flip{
  0%{
    transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function:ease-out
  }

  40%{
    transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function:ease-out
  }

  50%{
    transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function:ease-in
  }

  80%{
    transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
    animation-timing-function:ease-in
  }

  to{
    transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function:ease-in
  }
}

.animate__animated.animate__flip{
  backface-visibility:visible;
  animation-name:flip
}

@keyframes flipInX{
  0%{
    transform:perspective(400px) rotateX(90deg);
    animation-timing-function:ease-in;
    opacity:0
  }

  40%{
    transform:perspective(400px) rotateX(-20deg);
    animation-timing-function:ease-in
  }

  60%{
    transform:perspective(400px) rotateX(10deg);
    opacity:1
  }

  80%{
    transform:perspective(400px) rotateX(-5deg)
  }

  to{
    transform:perspective(400px)
  }
}

.animate__flipInX{
  backface-visibility:visible!important;
  animation-name:flipInX
}

@keyframes flipInY{
  0%{
    transform:perspective(400px) rotateY(90deg);
    animation-timing-function:ease-in;
    opacity:0
  }

  40%{
    transform:perspective(400px) rotateY(-20deg);
    animation-timing-function:ease-in
  }

  60%{
    transform:perspective(400px) rotateY(10deg);
    opacity:1
  }

  80%{
    transform:perspective(400px) rotateY(-5deg)
  }

  to{
    transform:perspective(400px)
  }
}

.animate__flipInY{
  backface-visibility:visible!important;
  animation-name:flipInY
}

@keyframes flipOutX{
  0%{
    transform:perspective(400px)
  }

  30%{
    transform:perspective(400px) rotateX(-20deg);
    opacity:1
  }

  to{
    transform:perspective(400px) rotateX(90deg);
    opacity:0
  }
}

.animate__flipOutX{
  animation-duration:.75s;
  animation-duration:calc(var(--animate-duration)*0.75);
  animation-name:flipOutX;
  backface-visibility:visible!important
}

@keyframes flipOutY{
  0%{
    transform:perspective(400px)
  }

  30%{
    transform:perspective(400px) rotateY(-15deg);
    opacity:1
  }

  to{
    transform:perspective(400px) rotateY(90deg);
    opacity:0
  }
}

.animate__flipOutY{
  animation-duration:.75s;
  animation-duration:calc(var(--animate-duration)*0.75);
  backface-visibility:visible!important;
  animation-name:flipOutY
}

@keyframes lightSpeedInRight{
  0%{
    transform:translate3d(100%,0,0) skewX(-30deg);
    opacity:0
  }

  60%{
    transform:skewX(20deg);
    opacity:1
  }

  80%{
    transform:skewX(-5deg)
  }

  to{
    transform:translateZ(0)
  }
}

.animate__lightSpeedInRight{
  animation-name:lightSpeedInRight;
  animation-timing-function:ease-out
}

@keyframes lightSpeedInLeft{
  0%{
    transform:translate3d(-100%,0,0) skewX(30deg);
    opacity:0
  }

  60%{
    transform:skewX(-20deg);
    opacity:1
  }

  80%{
    transform:skewX(5deg)
  }

  to{
    transform:translateZ(0)
  }
}

.animate__lightSpeedInLeft{
  animation-name:lightSpeedInLeft;
  animation-timing-function:ease-out
}

@keyframes lightSpeedOutRight{
  0%{
    opacity:1
  }

  to{
    transform:translate3d(100%,0,0) skewX(30deg);
    opacity:0
  }
}

.animate__lightSpeedOutRight{
  animation-name:lightSpeedOutRight;
  animation-timing-function:ease-in
}

@keyframes lightSpeedOutLeft{
  0%{
    opacity:1
  }

  to{
    transform:translate3d(-100%,0,0) skewX(-30deg);
    opacity:0
  }
}

.animate__lightSpeedOutLeft{
  animation-name:lightSpeedOutLeft;
  animation-timing-function:ease-in
}

@keyframes rotateIn{
  0%{
    transform:rotate(-200deg);
    opacity:0
  }

  to{
    transform:translateZ(0);
    opacity:1
  }
}

.animate__rotateIn{
  animation-name:rotateIn;
  transform-origin:center
}

@keyframes rotateInDownLeft{
  0%{
    transform:rotate(-45deg);
    opacity:0
  }

  to{
    transform:translateZ(0);
    opacity:1
  }
}

.animate__rotateInDownLeft{
  animation-name:rotateInDownLeft;
  transform-origin:left bottom
}

@keyframes rotateInDownRight{
  0%{
    transform:rotate(45deg);
    opacity:0
  }

  to{
    transform:translateZ(0);
    opacity:1
  }
}

.animate__rotateInDownRight{
  animation-name:rotateInDownRight;
  transform-origin:right bottom
}

@keyframes rotateInUpLeft{
  0%{
    transform:rotate(45deg);
    opacity:0
  }

  to{
    transform:translateZ(0);
    opacity:1
  }
}

.animate__rotateInUpLeft{
  animation-name:rotateInUpLeft;
  transform-origin:left bottom
}

@keyframes rotateInUpRight{
  0%{
    transform:rotate(-90deg);
    opacity:0
  }

  to{
    transform:translateZ(0);
    opacity:1
  }
}

.animate__rotateInUpRight{
  animation-name:rotateInUpRight;
  transform-origin:right bottom
}

@keyframes rotateOut{
  0%{
    opacity:1
  }

  to{
    transform:rotate(200deg);
    opacity:0
  }
}

.animate__rotateOut{
  animation-name:rotateOut;
  transform-origin:center
}

@keyframes rotateOutDownLeft{
  0%{
    opacity:1
  }

  to{
    transform:rotate(45deg);
    opacity:0
  }
}

.animate__rotateOutDownLeft{
  animation-name:rotateOutDownLeft;
  transform-origin:left bottom
}

@keyframes rotateOutDownRight{
  0%{
    opacity:1
  }

  to{
    transform:rotate(-45deg);
    opacity:0
  }
}

.animate__rotateOutDownRight{
  animation-name:rotateOutDownRight;
  transform-origin:right bottom
}

@keyframes rotateOutUpLeft{
  0%{
    opacity:1
  }

  to{
    transform:rotate(-45deg);
    opacity:0
  }
}

.animate__rotateOutUpLeft{
  animation-name:rotateOutUpLeft;
  transform-origin:left bottom
}

@keyframes rotateOutUpRight{
  0%{
    opacity:1
  }

  to{
    transform:rotate(90deg);
    opacity:0
  }
}

.animate__rotateOutUpRight{
  animation-name:rotateOutUpRight;
  transform-origin:right bottom
}

@keyframes hinge{
  0%{
    animation-timing-function:ease-in-out
  }

  20%,60%{
    transform:rotate(80deg);
    animation-timing-function:ease-in-out
  }

  40%,80%{
    transform:rotate(60deg);
    animation-timing-function:ease-in-out;
    opacity:1
  }

  to{
    transform:translate3d(0,700px,0);
    opacity:0
  }
}

.animate__hinge{
  animation-duration:2s;
  animation-duration:calc(var(--animate-duration)*2);
  animation-name:hinge;
  transform-origin:top left
}

@keyframes jackInTheBox{
  0%{
    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{
  0%{
    opacity:0;
    transform:translate3d(-100%,0,0) rotate(-120deg)
  }

  to{
    opacity:1;
    transform:translateZ(0)
  }
}

.animate__rollIn{
  animation-name:rollIn
}

@keyframes rollOut{
  0%{
    opacity:1
  }

  to{
    opacity:0;
    transform:translate3d(100%,0,0) rotate(120deg)
  }
}

.animate__rollOut{
  animation-name:rollOut
}

@keyframes zoomIn{
  0%{
    opacity:0;
    transform:scale3d(.3,.3,.3)
  }

  50%{
    opacity:1
  }
}

.animate__zoomIn{
  animation-name:zoomIn
}

@keyframes zoomInDown{
  0%{
    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{
  0%{
    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{
  0%{
    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{
  0%{
    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{
  0%{
    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{
  0%{
    transform:translate3d(0,-100%,0);
    visibility:visible
  }

  to{
    transform:translateZ(0)
  }
}

.animate__slideInDown{
  animation-name:slideInDown
}

@keyframes slideInLeft{
  0%{
    transform:translate3d(-100%,0,0);
    visibility:visible
  }

  to{
    transform:translateZ(0)
  }
}

.animate__slideInLeft{
  animation-name:slideInLeft
}

@keyframes slideInRight{
  0%{
    transform:translate3d(100%,0,0);
    visibility:visible
  }

  to{
    transform:translateZ(0)
  }
}

.animate__slideInRight{
  animation-name:slideInRight
}

@keyframes slideInUp{
  0%{
    transform:translate3d(0,100%,0);
    visibility:visible
  }

  to{
    transform:translateZ(0)
  }
}

.animate__slideInUp{
  animation-name:slideInUp
}

@keyframes slideOutDown{
  0%{
    transform:translateZ(0)
  }

  to{
    visibility:hidden;
    transform:translate3d(0,100%,0)
  }
}

.animate__slideOutDown{
  animation-name:slideOutDown
}

@keyframes slideOutLeft{
  0%{
    transform:translateZ(0)
  }

  to{
    visibility:hidden;
    transform:translate3d(-100%,0,0)
  }
}

.animate__slideOutLeft{
  animation-name:slideOutLeft
}

@keyframes slideOutRight{
  0%{
    transform:translateZ(0)
  }

  to{
    visibility:hidden;
    transform:translate3d(100%,0,0)
  }
}

.animate__slideOutRight{
  animation-name:slideOutRight
}

@keyframes slideOutUp{
  0%{
    transform:translateZ(0)
  }

  to{
    visibility:hidden;
    transform:translate3d(0,-100%,0)
  }
}

.animate__slideOutUp{
  animation-name:slideOutUp
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}

.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}

.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}

.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}

.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }

  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }

  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }

  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }

  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  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);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }

  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*! tailwindcss v3.4.7 | MIT License | https://tailwindcss.com
 */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

.container{
  width: 100%;
}

@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}

@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}

@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}

.static{
  position: static;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.sticky{
  position: sticky;
}

.inset-0{
  inset: 0px;
}

.inset-y-0{
  top: 0px;
  bottom: 0px;
}

.bottom-0{
  bottom: 0px;
}

.left-0{
  left: 0px;
}

.top-0{
  top: 0px;
}

.z-10{
  z-index: 10;
}

.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ml-4{
  margin-left: 1rem;
}

.mr-2{
  margin-right: 0.5rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.flex{
  display: flex;
}

.h-6{
  height: 1.5rem;
}

.h-full{
  height: 100%;
}

.w-6{
  width: 1.5rem;
}

.w-full{
  width: 100%;
}

.w-max{
  width: -moz-max-content;
  width: max-content;
}

.w-screen{
  width: 100vw;
}

.min-w-\[24rem\]{
  min-width: 24rem;
}

.max-w-full{
  max-width: 100%;
}

.max-w-md{
  max-width: 28rem;
}

.flex-1{
  flex: 1 1 0%;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.flex-grow{
  flex-grow: 1;
}

.cursor-pointer{
  cursor: pointer;
}

.flex-col{
  flex-direction: column;
}

.items-start{
  align-items: flex-start;
}

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

.justify-end{
  justify-content: flex-end;
}

.justify-center{
  justify-content: center;
}

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

.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.overflow-hidden{
  overflow: hidden;
}

.overflow-y-auto{
  overflow-y: auto;
}

.rounded-md{
  border-radius: 0.375rem;
}

.rounded-xl{
  border-radius: 0.75rem;
}

.bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}

.bg-neutral-300{
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 212 / var(--tw-bg-opacity));
}

.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-opacity-50{
  --tw-bg-opacity: 0.5;
}

.p-4{
  padding: 1rem;
}

.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pb-4{
  padding-bottom: 1rem;
}

.pb-6{
  padding-bottom: 1.5rem;
}

.pl-\[0\.5rem\]{
  padding-left: 0.5rem;
}

.pr-2{
  padding-right: 0.5rem;
}

.pt-24{
  padding-top: 6rem;
}

.pt-\[5rem\]{
  padding-top: 5rem;
}

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

.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.text-neutral-500{
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.opacity-0{
  opacity: 0;
}

.opacity-100{
  opacity: 1;
}

.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300{
  transition-duration: 300ms;
}

@media (min-width: 640px){
  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@font-face {
  font-family : 'Rounded Mplus 1c';

  src : url('./../fonts/m-plus-rounded-1c-latin-400-normal.woff2') format('woff2');

  font-style : normal;

  font-weight : 400;
}

@font-face {
  font-family : 'Roboto';

  src : url('./../fonts/roboto-latin-400-normal.woff2') format('woff2');

  font-style : normal;

  font-weight : 400;
}

@font-face {
  font-family : 'Roboto';

  src : url('./../fonts/roboto-latin-500-normal.woff2') format('woff2');

  font-style : normal;

  font-weight : 500;
}

@font-face {
  font-family : 'Roboto';

  src : url('./../fonts/roboto-latin-600-normal.woff2') format('woff2');

  font-style : normal;

  font-weight : 600;
}

body {
  font-weight: 400;
}

.header, #changeplannerprompt-main-text, #contactcontainer-main-heading, .servicesteps-step-title, #partnerheader-main-text, #sectorstypes-headline, #sectorstypes-subtitle, #sectorsheader-main-text, #servicesteps-journey-title, #serviceheader-main-text, #aboutuscta-main-text, #aboutuswhatwestandfor-subtitle, #aboutusfounders-main-heading, #aboutusheader-main-text, #indexcta-main-text, #indexwhatwedo-main-heading, #indexnavbar-mobile-dropdown-inner, #indexnavbar-mobile-dropdown, #indexnavbar-mobile-menu, #indexheader-headline-5-text, #indexheader-headline-5, #indexheader-headline-4-text, #indexheader-headline-4, #indexheader-headline-3-text, #indexheader-headline-3, #indexheader-headline-2-text, #indexheader-headline-2, #indexheader-headline-1-text, #indexheader-headline-1 {
  background-color: white;
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 2.5rem;
  color: #34495E;
}

.header-supporting, #changeplannerprompt-sub-text, #changeplannerprompt-prompt-label, #changeplannerprompt-sub-text-3, #changeplannerprompt-sub-text-2, #contactcontainer-main-description, #servicesteps-description, #serviceheader-sub-text, #serviceheader-sub-text-3, #serviceheader-sub-text-2, #aboutuscta-sub-text, #aboutuswhatwestandfor-li-excellence-3, #aboutuswhatwestandfor-li-excellence-2, #aboutuswhatwestandfor-li-excellence-1, #aboutuswhatwestandfor-li-better-4, #aboutuswhatwestandfor-li-better-3, #aboutuswhatwestandfor-li-better-2, #aboutuswhatwestandfor-li-better-1, #aboutuswhatwestandfor-li-courage-3, #aboutuswhatwestandfor-li-courage-2, #aboutuswhatwestandfor-li-courage-1, #aboutuswhatwestandfor-ul-care, #aboutuswhatwestandfor-li-care-3, #aboutuswhatwestandfor-li-care-2, #aboutuswhatwestandfor-li-care-1, #aboutuswhatwestandfor-description, #aboutusfounders-heading-prefix, #aboutusheader-sub-text, #aboutusheader-sub-text-3, #aboutusheader-sub-text-2, #indexcta-sub-text, #indexfooter-subscribe-desc-text, #indexfooter-main-content, #indexwhatwedo-main-description, #indexnavbar-link-our-services-text, #indexnavbar-link-about-us-text, #indexnavbar-link-home-page-text, #indexheader-supporting-text-2-span, #indexheader-supporting-text-2, #indexheader-supporting-text-1-span, #indexheader-supporting-text-1 {
  background-color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  color: #34495E;
}

.content, #changeplannerprompt-textarea-placeholder, #changeplannerprompt-textarea-wrapper, #contactform-form, #contactcontainer-compliance-governance-body-paragraph-2, #contactcontainer-compliance-governance-body-paragraph-1, #contactcontainer-managed-services-body-paragraph-3, #contactcontainer-managed-services-body-paragraph-2, #contactcontainer-managed-services-body-paragraph-1, #contactcontainer-platform-modernisation-body-paragraph-3, #contactcontainer-platform-modernisation-body-paragraph-2, #contactcontainer-platform-modernisation-body-paragraph-1, #contactcontainer-digital-health-body-paragraph-2, #contactcontainer-digital-health-body-paragraph-1, #partnerheader-sub-text-2, .sectorstypes-description, #sectorstypes-intro-paragraph, #sectorsheader-sub-text-2, .servicesteps-step-description, #serviceheader-content, #aboutussinglefounder-name, #aboutussinglefounder-role, .aboutusfounders-description, #aboutusfounders-founder-grid, #aboutusfounders-subheading, #indexwhatwedo-compliance-governance-body-paragraph-2, #indexwhatwedo-compliance-governance-body-paragraph-1, #indexwhatwedo-managed-services-body-paragraph-3, #indexwhatwedo-managed-services-body-paragraph-2, #indexwhatwedo-managed-services-body-paragraph-1, #indexwhatwedo-platform-modernisation-body-paragraph-3, #indexwhatwedo-platform-modernisation-body-paragraph-2, #indexwhatwedo-platform-modernisation-body-paragraph-1, #indexwhatwedo-digital-health-body-paragraph-2, #indexwhatwedo-digital-health-body-paragraph-1, #indexnavmenu-main-navigation {
  background-color: #34495E;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: white;
}

.header-buttons, #changeplannerprompt-submit-button, #changeplannerprompt-book-consultation-label, #changeplannerprompt-book-consultation, #changeplannerprompt-talk-to-us, #contactform-submit, #contactcontainer-book-consultation, #contactcontainer-talk-to-us, #contactcontainer-learn-more-digital-health, #contactcontainer-learn-more-platform-modernisation, #contactcontainer-learn-more-managed-services, #contactcontainer-learn-more-compliance-governance, #partnerheader-book-consultation, #partnerheader-talk-to-us, #sectorsheader-book-consultation, #sectorsheader-talk-to-us, #serviceheader-book-consultation, #serviceheader-talk-to-us, #aboutuscta-talk-to-us, #aboutuscta-book-consultation, #aboutuswhatwestandfor-consultation-button, #aboutuswhatwestandfor-talk-button, #aboutusheader-book-consultation-label, #aboutusheader-book-consultation, #aboutusheader-talk-to-us, #indexcta-book-consultation, #indexcta-talk-to-us, #indexfooter-subscribe-btn, #indexwhatwedo-book-consultation, #indexwhatwedo-talk-to-us, #indexwhatwedo-learn-more-digital-health, #indexwhatwedo-learn-more-platform-modernisation, #indexwhatwedo-learn-more-managed-services, #indexwhatwedo-learn-more-compliance-governance, #indexnavbar-contact, #indexnavbar-join-text, #indexnavbar-join, #indexheader-book-consultation, #indexheader-talk-to-us {
  background-color: #34495E;
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  font-style: bold;
  font-weight: 600;
  color: white;
}

.quoted, #changeplannerprompt-sub-text-4, #contactcontainer-digital-health-quote, #partnerheader-sub-text-4, #partnerheader-sub-text, #partnerheader-sub-text-3, #sectorsheader-sub-text-4, #sectorsheader-sub-text, #sectorsheader-sub-text-3, #servicesteps-milestones-title, #serviceheader-byline, #serviceheader-sub-text-4, #aboutuswhatwestandfor-description-excellence, #aboutuswhatwestandfor-description-better, #aboutuswhatwestandfor-description-courage, #aboutuswhatwestandfor-description-care, #aboutusheader-sub-text-4, #indexwhatwedo-digital-health-quote {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.blockheader, #contactcontainer-compliance-governance-heading, #contactcontainer-managed-services-heading, #contactcontainer-platform-modernisation-heading, #contactcontainer-digital-health-heading, .sectorstypes-title, #aboutuswhatwestandfor-title-excellence, #aboutuswhatwestandfor-title-better, #aboutuswhatwestandfor-title-courage, #aboutuswhatwestandfor-title-care, #indexwhatwedo-compliance-governance-heading, #indexwhatwedo-managed-services-heading, #indexwhatwedo-platform-modernisation-heading, #indexwhatwedo-digital-health-heading {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 2rem;
}

#indexheader-container {
  background-color: white;
}

#indexheader-left-panel {
  background-color: white;
}

#indexheader-main-text {
  background-color: #1ABC9C;
}

#indexheader-talk-to-us {
  background-color: #BDC3C7;
  color: white;
}

#indexheader-talk-to-us-label {
  color: #101828;
}

#indexheader-book-consultation {
  background-color: #34495E;
  color: #34495E;
}

#indexheader-book-consultation-label {
  color: white;
}

#indexheader-image-panel {
  background-color: white;
}

#indexheader-image-wrapper {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexnavbar-container {
  background-color: #34495E;
}

#indexnavbar-top-row {
  background-color: #34495E;
}

#indexnavbar-logo-and-links {
  background-color: #34495E;
}

#indexnavbar-logo-text {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
}

#indexnavbar-logo-text-small {
  font-family: "Roboto", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  color: white;
}

#indexnavbar-link-home-page-text {
  background-color: #34495E;
  color: white;
}

#indexnavmenu-main-navigation-header-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

#indexnavbar-link-about-us-text {
  background-color: #34495E;
  color: white;
}

#indexnavbar-link-our-services-text {
  background-color: #34495E;
  color: white;
}

#indexnavbar-link-more-links {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

#indexnavbar-link-chevron-down {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavbar-actions {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavbar-join {
  background-color: #BDC3C7;
  color: white;
}

#indexnavbar-join-text {
  background-color: #BDC3C7;
  color: #101828;
}

#indexnavbar-dropdown-links-list {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexnavbar-contact {
  background-color: white;
  color: #34495E;
}

#indexnavmenu-dropdown-link-d {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexnavbar-main-links-section {
  background-color: #233746;
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-main-navigation {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-main-navigation-header {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-main-navigation-links {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-main-nav-service-one-title {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexnavmenu-main-nav-service-one-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-main-nav-service-one-desc {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexnavmenu-main-nav-service-one-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-main-nav-service-two-icon {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexnavmenu-additional-pages-header-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

#indexnavmenu-main-nav-service-two-title {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

#indexnavmenu-main-nav-service-two-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-main-nav-service-two-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-additional-pages-service-five-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-main-nav-service-three-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-additional-pages-service-five-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-main-nav-service-three-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-additional-pages-service-six-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-additional-pages-service-six-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-additional-pages-service-seven-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-additional-pages-service-seven-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-main-nav-service-four-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-additional-pages-service-eight-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-main-nav-service-four-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-additional-pages-service-eight-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-additional-pages-header {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavbar-additional-pages-links {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-additional-pages-service-five {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexnavmenu-additional-pages-service-five-icon {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-additional-pages-service-five-content {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-additional-pages-service-five-title {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-additional-pages-service-five-desc {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-additional-pages-service-six {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-additional-pages-service-six-content {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexnavmenu-further-options-header-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

#indexnavmenu-additional-pages-service-seven {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-nine-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-further-options-service-nine-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-ten-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-further-options-service-ten-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-eleven-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavbar-further-options {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavbar-mobile-join {
  background-color: #34495E;
  color: white;
}

#indexnavbar-mobile-toggle {
  background-color: #34495E;
  color: white;
}

#indexnavbar-mobile-actions {
  background-color: #34495E;
  color: white;
}

#indexnavbar-mobile-menu {
  background-color: #233746;
  font-size: 1rem;
  color: white;
}

#indexnavbar-mobile-dropdown {
  background-color: #233746;
  font-size: 1rem;
  color: white;
}

#indexnavbar-mobile-dropdown-inner {
  background-color: #233746;
  font-size: 1rem;
  color: white;
}

#indexnavbar-mobile-link-home {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavbar-mobile-link-about {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavbar-mobile-link-services {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavbar-mobile-more-links-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-header {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-twelve-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-further-options-service-twelve-desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-eleven-desc-text {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-nine-content {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexnavmenu-further-options-service-nine-title {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexnavmenu-further-options-service-nine-desc {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexnavmenu-further-options-service-ten {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexnavmenu-further-options-service-ten-icon {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-ten-content {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-ten-title {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-dropdown-links-header-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

#indexnavmenu-dropdown-link-a-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-dropdown-link-b-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-dropdown-link-c-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-dropdown-link-d-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-dropdown-link-e-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-twelve {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-twelve-icon {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-twelve-content {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-twelve-title {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-further-options-service-twelve-desc {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-dropdown-links-section {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexnavmenu-dropdown-link-a {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexnavmenu-dropdown-link-e {
  color: #34495E;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexnavmenu-main-navigation {
  background-color: #233746;
  color: white;
}

#indexnavmenu-main-links-inner {
  background-color: #233746;
}

#indexwhatwedo-container {
  background-color: #34495E;
}

#indexwhatwedo-left-section {
  background-color: #34495E;
}

#indexwhatwedo-services-label {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

#indexwhatwedo-main-heading {
  background-color: #34495E;
  color: white;
}

#indexwhatwedo-main-description {
  background-color: #34495E;
  color: white;
}

#indexwhatwedo-main-buttons {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexwhatwedo-learn-more-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexwhatwedo-learn-more-compliance-governance {
  background-color: #2C3E50;
  color: white;
}

#indexwhatwedo-learn-more-managed-services {
  background-color: #2C3E50;
  color: white;
}

#indexwhatwedo-learn-more-platform-modernisation {
  background-color: #2C3E50;
  color: white;
}

#indexwhatwedo-learn-more-digital-health {
  background-color: #2C3E50;
  color: white;
}

#indexwhatwedo-platform-modernisation-section {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexwhatwedo-sign-up-btn-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexwhatwedo-digital-health-section {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexwhatwedo-digital-health-body-paragraph-1 {
  background-color: #34495E;
}

#indexwhatwedo-digital-health-body-paragraph-2 {
  background-color: #34495E;
}

#indexwhatwedo-platform-modernisation-icon-box {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexwhatwedo-platform-modernisation-heading {
  color: white;
}

#indexwhatwedo-platform-modernisation-quote {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexwhatwedo-platform-modernisation-body-paragraph-1 {
  background-color: #34495E;
}

#indexwhatwedo-platform-modernisation-body-paragraph-2 {
  background-color: #34495E;
}

#indexwhatwedo-platform-modernisation-body-paragraph-3 {
  background-color: #34495E;
}

#indexwhatwedo-managed-services-section {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexwhatwedo-managed-services-quote {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexwhatwedo-managed-services-body-paragraph-1 {
  background-color: #34495E;
}

#indexwhatwedo-managed-services-body-paragraph-2 {
  background-color: #34495E;
}

#indexwhatwedo-managed-services-body-paragraph-3 {
  background-color: #34495E;
}

#indexwhatwedo-compliance-governance-section {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexwhatwedo-compliance-governance-quote {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#indexwhatwedo-compliance-governance-body-paragraph-1 {
  background-color: #34495E;
}

#indexwhatwedo-compliance-governance-body-paragraph-2 {
  background-color: #34495E;
}

#indexwhatwedo-talk-to-us {
  background-color: #2C3E50;
  color: white;
}

#indexwhatwedo-talk-to-us-label {
  color: white;
}

#indexwhatwedo-book-consultation {
  background-color: #34495E;
  color: white;
}

#indexwhatwedo-book-consultation-label {
  color: white;
}

#indexcta-container {
  background-color: #CAD5E2;
}

#indexcta-content-wrapper {
  background-color: #CAD5E2;
}

#indexcta-text-section {
  background-color: #CAD5E2;
}

#indexcta-main-text {
  background-color: #CAD5E2;
}

#indexcta-title {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 2.5rem;
}

#indexcta-description {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#indexcta-description-text {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#indexcta-learn-more-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexcta-contact-button {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexcta-contact-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexfooter-container {
  background-color: #F9F9F9;
}

#indexfooter-main-content {
  background-color: #F9F9F9;
}

#indexfooter-logo {
  background-color: #F9F9F9;
}

#indexfooter-quick-links-column {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

#indexfooter-quick-links-heading {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  font-style: bold;
}

#indexfooter-stayupdated-list {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexfooter-stayupdated-heading {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexfooter-quick-links-about-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-stayupdated-email-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-quick-links-services-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-stayupdated-newsletters-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-quick-links-contact-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-stayupdated-special-offers-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-quick-links-blog-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-stayupdated-event-updates-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-quick-links-faqs-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-followus-list {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#indexfooter-followus-heading {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  font-style: bold;
}

#indexfooter-followus-facebook-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-followus-twitter-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-followus-instagram-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-followus-linkedin-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-followus-youtube-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-stayupdated-webinars-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-subscribe-btn {
  color: #101828;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  background-color: #BDC3C7;
}

#indexfooter-subscribe-btn-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-subscribe-desc-text {
  background-color: #F9F9F9;
}

#indexfooter-subscribe-privacy {
  color: #34495E;
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
}

#indexfooter-subscribe-privacy-text {
  color: #34495E;
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
}

#indexfooter-subscribe-email {
  background-color: #BDC3C7;
}

#indexfooter-subscribe-heading {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  font-style: bold;
}

#indexfooter-copyright {
  color: #34495E;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

#indexfooter-copyright-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
}

#indexfooter-privacy-policy {
  color: #34495E;
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
}

#indexfooter-privacy-policy-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
}

#indexfooter-terms-service {
  color: #34495E;
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
}

#indexfooter-terms-service-text {
  color: #34495E;
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
}

#indexfooter-cookies-settings {
  color: #34495E;
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
}

#indexfooter-cookies-settings-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
}

#indexcta-inner-wrapper {
  background-color: #CAD5E2;
}

#indexcta-sub-text {
  background-color: #CAD5E2;
}

#indexcta-learn-more-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexcta-contact-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#indexcta-image-wrapper {
  background-color: #CAD5E2;
}

#indexcta-talk-to-us {
  background-color: white;
  color: #34495E;
}

#indexcta-book-consultation {
  background-color: #BDC3C7;
  color: white;
}

#indexcta-book-consultation-label {
  color: #101828;
}

#aboutusheader-container {
  background-color: #CAD5E2;
}

#aboutusheader-content-wrapper {
  background-color: #CAD5E2;
}

#aboutusheader-text-section {
  background-color: #CAD5E2;
}

#aboutusheader-main-text {
  background-color: #CAD5E2;
}

#aboutusheader-title {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 2.5rem;
}

#aboutusheader-description {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#aboutusheader-description-text {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#aboutusheader-button-row {
  background-color: #CAD5E2;
}

#aboutusheader-learn-more-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#aboutusheader-contact-button {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#aboutusheader-contact-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#aboutusheader-inner-wrapper {
  background-color: #CAD5E2;
}

#aboutusheader-sub-text, #aboutusheader-sub-text-3, #aboutusheader-sub-text-2 {
  background-color: #CAD5E2;
}

#aboutusheader-sub-text-4 {
  color: #34495E;
}

#aboutusheader-learn-more-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#aboutusheader-contact-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#aboutusheader-image-wrapper {
  background-color: #CAD5E2;
}

#aboutusheader-talk-to-us {
  background-color: white;
  color: #34495E;
}

#aboutusheader-book-consultation {
  background-color: #BDC3C7;
  color: white;
}

#aboutusheader-book-consultation-label {
  background-color: #BDC3C7;
  color: #101828;
}

#aboutusfounders-heading-prefix {
  background-color: #192431;
  color: white;
}

#aboutusfounders-main-heading {
  background-color: #192431;
  color: white;
}

#aboutusfounders-subheading {
  background-color: #192431;
  color: white;
}

#aboutusfounders-root {
  background-color: #192431;
  color: white;
}

#aboutusfounders-founder-grid {
  background-color: #192431;
}

.aboutusfounders-description {
  background-color: #192431;
}

#aboutussinglefounder-role {
  background-color: #192431;
}

#aboutussinglefounder-name {
  background-color: #192431;
  font-weight: 600;
}

#aboutussinglefounder-image-container {
  background-color: #34495E;
}

#aboutuswhatwestandfor-values-section {
  background-color: #34495E;
}

#aboutuswhatwestandfor-values-title {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

#aboutuswhatwestandfor-main-container {
  background-color: #34495E;
}

#aboutuswhatwestandfor-main-content {
  color: white;
}

#aboutuswhatwestandfor-subtitle {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-description {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-talk-button {
  background-color: #2C3E50;
  color: white;
}

#aboutuswhatwestandfor-consultation-button {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-title-care {
  color: white;
}

#aboutuswhatwestandfor-title-courage {
  color: white;
}

#aboutuswhatwestandfor-title-better {
  color: white;
}

#aboutuswhatwestandfor-title-excellence {
  color: white;
}

#aboutuswhatwestandfor-li-care-1 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-li-care-2 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-li-care-3 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-ul-care {
  background-color: #34495E;
}

#aboutuswhatwestandfor-li-courage-1 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-li-courage-2 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-li-courage-3 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-li-better-1 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-li-better-2 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-li-better-3 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-li-better-4 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-li-excellence-1 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-li-excellence-2 {
  background-color: #34495E;
  color: white;
}

#aboutuswhatwestandfor-li-excellence-3 {
  background-color: #34495E;
  color: white;
}

#aboutuscta-container {
  background-color: #1ABC9C;
}

#aboutuscta-content-wrapper {
  background-color: #CAD5E2;
}

#aboutuscta-text-section {
  background-color: #CAD5E2;
}

#aboutuscta-main-text {
  background-color: #1ABC9C;
}

#aboutuscta-title {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 2.5rem;
}

#aboutuscta-description {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#aboutuscta-description-text {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#aboutuscta-learn-more-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#aboutuscta-contact-button {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#aboutuscta-contact-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#aboutuscta-sub-text {
  background-color: #1ABC9C;
}

#aboutuscta-book-consultation {
  background-color: #15937C;
  color: white;
}

#aboutuscta-talk-to-us {
  background-color: #233746;
  color: white;
}

#aboutuscta-inner-wrapper {
  background-color: #1ABC9C;
}

#serviceheader-container {
  background-color: #34495E;
}

#serviceheader-content {
  background-color: #34495E;
}

#serviceheader-text-section {
  background-color: #34495E;
}

#serviceheader-main-text {
  background-color: #34495E;
  color: white;
}

#serviceheader-title {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 2.5rem;
}

#serviceheader-description {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#serviceheader-description-text {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#serviceheader-button-row {
  background-color: #34495E;
}

#serviceheader-learn-more-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#serviceheader-contact-button {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#serviceheader-contact-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#serviceheader-inner-wrapper {
  background-color: #34495E;
}

#serviceheader-sub-text, #serviceheader-sub-text-3, #serviceheader-sub-text-2 {
  background-color: #34495E;
}

#serviceheader-learn-more-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#serviceheader-contact-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#serviceheader-image-wrapper {
  background-color: #CAD5E2;
}

#serviceheader-talk-to-us {
  background-color: white;
  color: #34495E;
}

#serviceheader-book-consultation {
  background-color: #233746;
  color: white;
}

#serviceheader-book-consultation-label {
  background-color: #233746;
}

#servicesteps-milestones-title {
  background-color: white;
  color: #34495E;
}

#servicesteps-journey-title {
  background-color: white;
  color: #34495E;
}

#servicesteps-description {
  background-color: white;
  color: #34495E;
}

.servicesteps-step-description {
  background-color: white;
  color: #34495E;
}

#sectorsheader-container {
  background-color: #34495E;
}

#sectorsheader-content-wrapper {
  background-color: #34495E;
  color: white;
}

#sectorsheader-text-section {
  background-color: #34495E;
  color: white;
}

#sectorsheader-main-text {
  background-color: #34495E;
  color: white;
}

#sectorsheader-title {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 2.5rem;
}

#sectorsheader-description {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#sectorsheader-description-text {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#sectorsheader-button-row {
  background-color: #34495E;
}

#sectorsheader-learn-more-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#sectorsheader-contact-button {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#sectorsheader-contact-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#sectorsheader-inner-wrapper {
  background-color: #34495E;
}

#sectorsheader-sub-text, #sectorsheader-sub-text-3 {
  background-color: #34495E;
}

#sectorsheader-learn-more-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#sectorsheader-contact-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#sectorsheader-image-wrapper {
  background-color: #CAD5E2;
}

#sectorsheader-talk-to-us {
  background-color: white;
  color: #34495E;
}

#sectorsheader-book-consultation {
  background-color: #233746;
  color: white;
}

#sectorsheader-book-consultation-label {
  background-color: #233746;
}

#sectorstypes-section {
  background-color: #233746;
  color: white;
}

#sectorstypes-values-title {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

#sectorstypes-subtitle {
  background-color: #233746;
  color: white;
}

#sectorstypes-headline {
  background-color: #233746;
}

#sectorstypes-intro-paragraph {
  background-color: #233746;
  font-size: 1.2rem;
  font-weight: 600;
}

.sectorstypes-description {
  background-color: #233746;
}

.sectorstypes-title {
  background-color: #233746;
}

#partnerheader-container {
  background-color: #34495E;
}

#partnerheader-content-wrapper {
  background-color: #34495E;
}

#partnerheader-text-section {
  background-color: #34495E;
}

#partnerheader-main-text {
  background-color: #34495E;
  color: white;
}

#partnerheader-title {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 2.5rem;
}

#partnerheader-description {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#partnerheader-description-text {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#partnerheader-button-row {
  background-color: #34495E;
}

#partnerheader-learn-more-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#partnerheader-contact-button {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#partnerheader-contact-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#partnerheader-inner-wrapper {
  background-color: #34495E;
}

#partnerheader-sub-text, #partnerheader-sub-text-3 {
  background-color: #34495E;
}

#partnerheader-learn-more-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#partnerheader-contact-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#partnerheader-image-wrapper {
  background-color: #CAD5E2;
}

#partnerheader-talk-to-us {
  background-color: white;
  color: #34495E;
}

#partnerheader-book-consultation {
  background-color: #233746;
  color: white;
}

#partnerheader-book-consultation-label {
  background-color: #233746;
}

.servicesteps-step-title {
  font-size: 1.5rem;
  background-color: white;
  color: #34495E;
}

.servicesteps-step-description {
  background-color: white;
  color: #34495E;
}

#contactcontainer-container {
  background-color: #CAD5E2;
}

#contactcontainer-main-row {
  background-color: #CAD5E2;
}

#contactcontainer-left-section {
  background-color: #CAD5E2;
}

#contactcontainer-services-label {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #101828;
}

#contactcontainer-main-heading {
  background-color: #CAD5E2;
  color: #101828;
}

#contactcontainer-main-description {
  background-color: #CAD5E2;
  color: #101828;
}

#contactcontainer-main-buttons {
  color: #101828;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#contactcontainer-learn-more-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#contactcontainer-learn-more-compliance-governance {
  background-color: #BDC3C7;
  color: #101828;
}

#contactcontainer-learn-more-managed-services {
  background-color: #BDC3C7;
  color: #101828;
}

#contactcontainer-learn-more-platform-modernisation {
  background-color: #BDC3C7;
  color: #101828;
}

#contactcontainer-learn-more-digital-health {
  background-color: #BDC3C7;
  color: #101828;
}

#contactcontainer-platform-modernisation-section {
  color: #101828;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#contactcontainer-sign-up-btn-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#contactcontainer-right-section {
  background-color: #CAD5E2;
}

#contactcontainer-digital-health-section {
  color: #101828;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#contactcontainer-digital-health-body-paragraph-1 {
  background-color: #CAD5E2;
}

#contactcontainer-digital-health-body-paragraph-2 {
  background-color: #CAD5E2;
}

#contactcontainer-platform-modernisation-icon-box {
  color: #101828;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#contactcontainer-platform-modernisation-heading {
  color: #101828;
}

#contactcontainer-platform-modernisation-quote {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#contactcontainer-platform-modernisation-body-paragraph-1 {
  background-color: #CAD5E2;
}

#contactcontainer-platform-modernisation-body-paragraph-2 {
  background-color: #CAD5E2;
}

#contactcontainer-platform-modernisation-body-paragraph-3 {
  background-color: #CAD5E2;
}

#contactcontainer-managed-services-section {
  color: #101828;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#contactcontainer-managed-services-quote {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#contactcontainer-managed-services-body-paragraph-1 {
  background-color: #CAD5E2;
}

#contactcontainer-managed-services-body-paragraph-2 {
  background-color: #CAD5E2;
}

#contactcontainer-managed-services-body-paragraph-3 {
  background-color: #CAD5E2;
}

#contactcontainer-compliance-governance-section {
  color: #101828;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#contactcontainer-compliance-governance-quote {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

#contactcontainer-compliance-governance-body-paragraph-1 {
  background-color: #CAD5E2;
}

#contactcontainer-compliance-governance-body-paragraph-2 {
  background-color: #CAD5E2;
}

#contactcontainer-talk-to-us {
  background-color: #BDC3C7;
  color: #101828;
}

#contactcontainer-book-consultation {
  background-color: #CAD5E2;
  color: #101828;
}

#contactform-submit {
  background-color: #BDC3C7;
  color: #101828;
}

#contactform-form {
  background-color: #CAD5E2;
  color: #101828;
}

#contactform-description-textarea {
  color: #34495E;
}

#contactform-subject-input {
  color: #34495E;
}

#contactform-email-input {
  color: #34495E;
}

#changeplannerprompt-container {
  background-color: #CAD5E2;
}

#changeplannerprompt-content-wrapper {
  background-color: #CAD5E2;
}

#changeplannerprompt-text-section {
  background-color: #CAD5E2;
}

#changeplannerprompt-main-text {
  background-color: #CAD5E2;
}

#changeplannerprompt-title {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 2.5rem;
}

#changeplannerprompt-description {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#changeplannerprompt-description-text {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}

#changeplannerprompt-button-row {
  background-color: #CAD5E2;
}

#changeplannerprompt-learn-more-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#changeplannerprompt-contact-button {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#changeplannerprompt-contact-button-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#changeplannerprompt-inner-wrapper {
  background-color: #CAD5E2;
}

#changeplannerprompt-sub-text, #changeplannerprompt-prompt-label, #changeplannerprompt-sub-text-3, #changeplannerprompt-sub-text-2 {
  background-color: #CAD5E2;
}

#changeplannerprompt-sub-text-4 {
  color: #34495E;
}

#changeplannerprompt-learn-more-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#changeplannerprompt-contact-btn {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

#changeplannerprompt-image-wrapper {
  background-color: #CAD5E2;
}

#changeplannerprompt-talk-to-us {
  background-color: white;
  color: #34495E;
}

#changeplannerprompt-book-consultation {
  background-color: #BDC3C7;
  color: white;
}

#changeplannerprompt-book-consultation-label {
  background-color: #BDC3C7;
  color: #101828;
}

#changeplannerprompt-submit-button {
  background-color: #BDC3C7;
  color: #101828;
}

#changeplannerprompt-textarea-wrapper {
  background-color: white;
  font-size: 0.8rem;
  color: black;
}

#changeplannerprompt-textarea-placeholder {
  background-color: white;
  font-size: 0.8rem;
  color: #BDC3C7;
}

/*! tailwindcss v3.4.7 | MIT License | https://tailwindcss.com
 */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 100%){
  .container{
    max-width: 100%;
  }
}

@media (min-width: 992px){
  .container{
    max-width: 992px;
  }
}

@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}

.pointer-events-none{
  pointer-events: none;
}

.static{
  position: static;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.sticky{
  position: sticky;
}

.inset-4{
  inset: 1rem;
}

.bottom-0{
  bottom: 0px;
}

.left-0{
  left: 0px;
}

.right-0{
  right: 0px;
}

.top-0{
  top: 0px;
}

.top-\[-50vh\]{
  top: -50vh;
}

.top-full{
  top: 100%;
}

.z-0{
  z-index: 0;
}

.z-10{
  z-index: 10;
}

.z-20{
  z-index: 20;
}

.z-\[-1\]{
  z-index: -1;
}

.z-\[999\]{
  z-index: 999;
}

.order-1{
  order: 1;
}

.order-2{
  order: 2;
}

.m-0{
  margin: 0px;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.my-\[3px\]{
  margin-top: 3px;
  margin-bottom: 3px;
}

.\!mt-8{
  margin-top: 2rem !important;
}

.-mr-2{
  margin-right: -0.5rem;
}

.mb-1{
  margin-bottom: 0.25rem;
}

.mb-10{
  margin-bottom: 2.5rem;
}

.mb-12{
  margin-bottom: 3rem;
}

.mb-2{
  margin-bottom: 0.5rem;
}

.mb-3{
  margin-bottom: 0.75rem;
}

.mb-4{
  margin-bottom: 1rem;
}

.mb-5{
  margin-bottom: 1.25rem;
}

.mb-6{
  margin-bottom: 1.5rem;
}

.mb-8{
  margin-bottom: 2rem;
}

.ml-0{
  margin-left: 0px;
}

.ml-10{
  margin-left: 2.5rem;
}

.ml-12{
  margin-left: 3rem;
}

.ml-2{
  margin-left: 0.5rem;
}

.mt-10{
  margin-top: 2.5rem;
}

.mt-16{
  margin-top: 4rem;
}

.mt-4{
  margin-top: 1rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.mt-7{
  margin-top: 1.75rem;
}

.mt-8{
  margin-top: 2rem;
}

.mt-\[-50vh\]{
  margin-top: -50vh;
}

.block{
  display: block;
}

.flex{
  display: flex;
}

.table{
  display: table;
}

.grid{
  display: grid;
}

.hidden{
  display: none;
}

.aspect-\[10\/12\]{
  aspect-ratio: 10/12;
}

.size-12{
  width: 3rem;
  height: 3rem;
}

.size-4{
  width: 1rem;
  height: 1rem;
}

.size-6{
  width: 1.5rem;
  height: 1.5rem;
}

.size-full{
  width: 100%;
  height: 100%;
}

.h-0\.5{
  height: 0.125rem;
}

.h-16{
  height: 4rem;
}

.h-32{
  height: 8rem;
}

.h-48{
  height: 12rem;
}

.h-8{
  height: 2rem;
}

.h-\[50vh\]{
  height: 50vh;
}

.h-\[8rem\]{
  height: 8rem;
}

.h-dvh{
  height: 100dvh;
}

.h-full{
  height: 100%;
}

.min-h-16{
  min-height: 4rem;
}

.min-h-screen{
  min-height: 100vh;
}

.w-1{
  width: 0.25rem;
}

.w-6{
  width: 1.5rem;
}

.w-8{
  width: 2rem;
}

.w-\[3px\]{
  width: 3px;
}

.w-\[7rem\]{
  width: 7rem;
}

.w-\[90\%\]{
  width: 90%;
}

.w-auto{
  width: auto;
}

.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}

.w-full{
  width: 100%;
}

.min-w-0{
  min-width: 0px;
}

.min-w-\[600px\]{
  min-width: 600px;
}

.min-w-full{
  min-width: 100%;
}

.max-w-full{
  max-width: 100%;
}

.max-w-lg{
  max-width: 48rem;
}

.max-w-xl{
  max-width: 64rem;
}

.flex-1{
  flex: 1 1 0%;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.cursor-not-allowed{
  cursor: not-allowed;
}

.cursor-pointer{
  cursor: pointer;
}

.resize-none{
  resize: none;
}

.list-outside{
  list-style-position: outside;
}

.list-disc{
  list-style-type: disc;
}

.auto-cols-fr{
  grid-auto-columns: minmax(0, 1fr);
}

.grid-flow-col{
  grid-auto-flow: column;
}

.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-\[max-content\]{
  grid-template-columns: max-content;
}

.grid-cols-\[max-content_1fr\]{
  grid-template-columns: max-content 1fr;
}

.grid-rows-\[max-content_max-content_max-content_max-content\]{
  grid-template-rows: max-content max-content max-content max-content;
}

.flex-row{
  flex-direction: row;
}

.flex-col{
  flex-direction: column;
}

.flex-wrap{
  flex-wrap: wrap;
}

.items-start{
  align-items: flex-start;
}

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

.items-stretch{
  align-items: stretch;
}

.justify-center{
  justify-content: center;
}

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

.gap-10{
  gap: 2.5rem;
}

.gap-12{
  gap: 3rem;
}

.gap-16{
  gap: 4rem;
}

.gap-2{
  gap: 0.5rem;
}

.gap-24{
  gap: 6rem;
}

.gap-3{
  gap: 0.75rem;
}

.gap-3\.5{
  gap: 0.875rem;
}

.gap-4{
  gap: 1rem;
}

.gap-6{
  gap: 1.5rem;
}

.gap-8{
  gap: 2rem;
}

.gap-x-12{
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.gap-x-3{
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-5{
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.gap-x-8{
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-y-12{
  row-gap: 3rem;
}

.gap-y-2{
  row-gap: 0.5rem;
}

.gap-y-3{
  row-gap: 0.75rem;
}

.gap-y-6{
  row-gap: 1.5rem;
}

.gap-y-8{
  row-gap: 2rem;
}

.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.self-start{
  align-self: flex-start;
}

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

.justify-self-start{
  justify-self: start;
}

.overflow-auto{
  overflow: auto;
}

.overflow-hidden{
  overflow: hidden;
}

.overflow-x-auto{
  overflow-x: auto;
}

.whitespace-nowrap{
  white-space: nowrap;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-3xl{
  border-radius: 1.5rem;
}

.rounded-\[48px\]{
  border-radius: 48px;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.border{
  border-width: 1px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-t{
  border-top-width: 1px;
}

.border-none{
  border-style: none;
}

.border-border-primary{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

.\!bg-gray-200{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity)) !important;
}

.bg-background-primary{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}

.bg-gray-500{
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity));
}

.bg-neutral-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.bg-neutral-lighter{
  --tw-bg-opacity: 1;
  background-color: rgb(204 204 204 / var(--tw-bg-opacity));
}

.bg-transparent{
  background-color: transparent;
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-transparent{
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-background-primary{
  --tw-gradient-to: #ffffff var(--tw-gradient-to-position);
}

.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}

.p-0{
  padding: 0px;
}

.p-0\.5{
  padding: 0.125rem;
}

.p-16{
  padding: 4rem;
}

.p-2{
  padding: 0.5rem;
}

.p-4{
  padding: 1rem;
}

.px-40{
  padding-left: 10rem;
  padding-right: 10rem;
}

.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-\[5\%\]{
  padding-left: 5%;
  padding-right: 5%;
}

.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pb-16{
  padding-bottom: 4rem;
}

.pb-2{
  padding-bottom: 0.5rem;
}

.pb-4{
  padding-bottom: 1rem;
}

.pb-8{
  padding-bottom: 2rem;
}

.pl-0{
  padding-left: 0px;
}

.pl-4{
  padding-left: 1rem;
}

.pl-5{
  padding-left: 1.25rem;
}

.pl-8{
  padding-left: 2rem;
}

.pl-\[0\.5rem\]{
  padding-left: 0.5rem;
}

.pr-0{
  padding-right: 0px;
}

.pr-12{
  padding-right: 3rem;
}

.pr-4{
  padding-right: 1rem;
}

.pr-8{
  padding-right: 2rem;
}

.pt-10{
  padding-top: 2.5rem;
}

.pt-16{
  padding-top: 4rem;
}

.pt-2{
  padding-top: 0.5rem;
}

.pt-3{
  padding-top: 0.75rem;
}

.pt-4{
  padding-top: 1rem;
}

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

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

.text-5xl{
  font-size: 2.25rem;
  line-height: 1.2;
}

.text-md{
  font-size: 1.125rem;
  line-height: 1.5;
}

.text-sm{
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-xs{
  font-size: 0.75rem;
  line-height: 1.5;
}

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

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

.font-semibold{
  font-weight: 600;
}

.uppercase{
  text-transform: uppercase;
}

.leading-relaxed{
  line-height: 1.625;
}

.leading-tight{
  line-height: 1.25;
}

.tracking-wider{
  letter-spacing: 0.05em;
}

.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}

.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}

.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}

.opacity-0{
  opacity: 0;
}

.opacity-100{
  opacity: 1;
}

.shadow-\[0_0_0_8px_transparent\]{
  --tw-shadow: 0 0 0 8px transparent;
  --tw-shadow-colored: 0 0 0 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300{
  transition-duration: 300ms;
}

@keyframes enter{
  from{
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}

@keyframes exit{
  to{
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}

.duration-300{
  animation-duration: 300ms;
}

.running{
  animation-play-state: running;
}

.\[grid-area\:2\/1\/3\/2\]{
  grid-area: 2/1/3/2;
}

.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity));
}

@media (min-width: 480px){
  .sm\:grid-cols-\[1fr_max-content\]{
    grid-template-columns: 1fr max-content;
  }

  .sm\:gap-12{
    gap: 3rem;
  }

  .sm\:gap-y-12{
    row-gap: 3rem;
  }

  .sm\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:pl-24{
    padding-left: 6rem;
  }

  .sm\:pr-24{
    padding-right: 6rem;
  }
}

@media (min-width: 768px){
  .md\:sticky{
    position: sticky;
  }

  .md\:top-20{
    top: 5rem;
  }

  .md\:z-auto{
    z-index: auto;
  }

  .md\:order-none{
    order: 0;
  }

  .md\:-ml-24{
    margin-left: -6rem;
  }

  .md\:mb-0{
    margin-bottom: 0px;
  }

  .md\:mb-18{
    margin-bottom: 4.5rem;
  }

  .md\:mb-4{
    margin-bottom: 1rem;
  }

  .md\:mb-6{
    margin-bottom: 1.5rem;
  }

  .md\:ml-0{
    margin-left: 0px;
  }

  .md\:ml-10{
    margin-left: 2.5rem;
  }

  .md\:ml-8{
    margin-left: 2rem;
  }

  .md\:mt-0{
    margin-top: 0px;
  }

  .md\:mt-8{
    margin-top: 2rem;
  }

  .md\:block{
    display: block;
  }

  .md\:min-h-18{
    min-height: 4.5rem;
  }

  .md\:w-1\/3{
    width: 33.333333%;
  }

  .md\:w-2\/5{
    width: 40%;
  }

  .md\:w-24{
    width: 6rem;
  }

  .md\:w-3\/5{
    width: 60%;
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-\[1fr_max-content\]{
    grid-template-columns: 1fr max-content;
  }

  .md\:flex-row{
    flex-direction: row;
  }

  .md\:items-start{
    align-items: flex-start;
  }

  .md\:items-end{
    align-items: flex-end;
  }

  .md\:items-center{
    align-items: center;
  }

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

  .md\:gap-24{
    gap: 6rem;
  }

  .md\:gap-8{
    gap: 2rem;
  }

  .md\:gap-x-12{
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .md\:gap-x-20{
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .md\:gap-x-8{
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .md\:gap-y-16{
    row-gap: 4rem;
  }

  .md\:gap-y-20{
    row-gap: 5rem;
  }

  .md\:gap-y-4{
    row-gap: 1rem;
  }

  .md\:justify-self-center{
    justify-self: center;
  }

  .md\:p-16{
    padding: 4rem;
  }

  .md\:p-2{
    padding: 0.5rem;
  }

  .md\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:py-18{
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .md\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:pl-16{
    padding-left: 4rem;
  }

  .md\:pl-8{
    padding-left: 2rem;
  }

  .md\:pr-4{
    padding-right: 1rem;
  }

  .md\:pr-8{
    padding-right: 2rem;
  }

  .md\:text-7xl{
    font-size: 2.75rem;
    line-height: 1.2;
  }

  .md\:text-lg{
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .md\:text-md{
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .md\:leading-\[1\.3\]{
    line-height: 1.3;
  }

  .md\:\[grid-area\:auto\]{
    grid-area: auto;
  }
}

@media (min-width: 992px){
  .lg\:absolute{
    position: absolute;
  }

  .lg\:-ml-32{
    margin-left: -8rem;
  }

  .lg\:mb-20{
    margin-bottom: 5rem;
  }

  .lg\:ml-10{
    margin-left: 2.5rem;
  }

  .lg\:mt-0{
    margin-top: 0px;
  }

  .lg\:flex{
    display: flex;
  }

  .lg\:hidden{
    display: none;
  }

  .lg\:w-1\/2{
    width: 50%;
  }

  .lg\:w-1\/3{
    width: 33.333333%;
  }

  .lg\:w-2\/5{
    width: 40%;
  }

  .lg\:w-32{
    width: 8rem;
  }

  .lg\:w-\[calc\(50\%-1\.5rem\)\]{
    width: calc(50% - 1.5rem);
  }

  .lg\:w-auto{
    width: auto;
  }

  .lg\:w-screen{
    width: 100vw;
  }

  .lg\:flex-1{
    flex: 1 1 0%;
  }

  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:flex-row{
    flex-direction: row;
  }

  .lg\:gap-2{
    gap: 0.5rem;
  }

  .lg\:gap-32{
    gap: 8rem;
  }

  .lg\:gap-x-12{
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .lg\:gap-x-20{
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .lg\:gap-y-0{
    row-gap: 0px;
  }

  .lg\:border-b{
    border-bottom-width: 1px;
  }

  .lg\:border-border-primary{
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
  }

  .lg\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:px-\[5\%\]{
    padding-left: 5%;
    padding-right: 5%;
  }

  .lg\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:py-28{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .lg\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .lg\:pr-8{
    padding-right: 2rem;
  }

  .lg\:text-8xl{
    font-size: 3rem;
    line-height: 1.2;
  }

  .lg\:\[--height-close\:auto\]{
    --height-close: auto;
  }
}