@charset "UTF-8";/*!
 * 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 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

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

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

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

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

*, ::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:  ;
}/*
! tailwindcss v3.4.17 | 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: #ebeef3; /* 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 */
  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]) {
  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::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #d1d7e0; /* 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]:where(:not([hidden="until-found"])) {
  display: none;
}[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}::-webkit-datetime-edit{
  display: inline-flex;
}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}select{
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  print-color-adjust: exact;
}[multiple],[size]:where(select:not([size="1"])){
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  print-color-adjust: unset;
}[type='checkbox'],[type='radio']{
  appearance: none;
  padding: 0;
  print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}[type='checkbox']{
  border-radius: 0px;
}[type='radio']{
  border-radius: 100%;
}[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e");
}@media (forced-colors: active) {[type='checkbox']:checked{
    appearance: auto;
  }
}[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e");
}@media (forced-colors: active) {[type='radio']:checked{
    appearance: auto;
  }
}[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}@media (forced-colors: active) {[type='checkbox']:indeterminate{
    appearance: auto;
  }
}[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}[type='file']{
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}[type='file']:focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}.tw-sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}.tw-pointer-events-none{
  pointer-events: none;
}.\!tw-absolute{
  position: absolute !important;
}.tw-absolute{
  position: absolute;
}.tw-relative{
  position: relative;
}.tw-sticky{
  position: sticky;
}.tw-inset-0{
  inset: 0px;
}.tw-bottom-0{
  bottom: 0px;
}.tw-left-0{
  left: 0px;
}.tw-right-0{
  right: 0px;
}.tw-right-6{
  right: 1.5rem;
}.tw-top-0{
  top: 0px;
}.tw-top-\[2\.7rem\]{
  top: 2.7rem;
}.tw-z-\[2\]{
  z-index: 2;
}.tw-col-span-1{
  grid-column: span 1 / span 1;
}.tw-col-span-2{
  grid-column: span 2 / span 2;
}.tw-col-span-3{
  grid-column: span 3 / span 3;
}.tw-col-span-4{
  grid-column: span 4 / span 4;
}.tw-float-right{
  float: right;
}.\!tw-m-0{
  margin: 0px !important;
}.tw-m-0{
  margin: 0px;
}.tw-m-1{
  margin: 0.25rem;
}.tw-m-6{
  margin: 1.5rem;
}.tw-m-auto{
  margin: auto;
}.tw-mx-6{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}.tw-mx-\[2\.1875rem\]{
  margin-left: 2.1875rem;
  margin-right: 2.1875rem;
}.tw-mx-auto{
  margin-left: auto;
  margin-right: auto;
}.tw-my-0{
  margin-top: 0px;
  margin-bottom: 0px;
}.\!tw-mb-4{
  margin-bottom: 1rem !important;
}.\!tw-mt-4{
  margin-top: 1rem !important;
}.\!tw-mt-8{
  margin-top: 2rem !important;
}.-tw-mb-5{
  margin-bottom: -1.25rem;
}.tw--mb-6{
  margin-bottom: -1.5rem;
}.tw--mr-1{
  margin-right: -0.25rem;
}.tw--mt-4{
  margin-top: -1rem;
}.tw-mb-0{
  margin-bottom: 0px;
}.tw-mb-0\.5{
  margin-bottom: 0.125rem;
}.tw-mb-1{
  margin-bottom: 0.25rem;
}.tw-mb-10{
  margin-bottom: 2.5rem;
}.tw-mb-12{
  margin-bottom: 3rem;
}.tw-mb-2{
  margin-bottom: 0.5rem;
}.tw-mb-3{
  margin-bottom: 0.75rem;
}.tw-mb-32{
  margin-bottom: 8rem;
}.tw-mb-4{
  margin-bottom: 1rem;
}.tw-mb-5{
  margin-bottom: 1.25rem;
}.tw-mb-6{
  margin-bottom: 1.5rem;
}.tw-mb-8{
  margin-bottom: 2rem;
}.tw-mb-\[0\.5rem\]{
  margin-bottom: 0.5rem;
}.tw-mb-\[1\.25rem\]{
  margin-bottom: 1.25rem;
}.tw-ml-1{
  margin-left: 0.25rem;
}.tw-ml-2{
  margin-left: 0.5rem;
}.tw-ml-3{
  margin-left: 0.75rem;
}.tw-ml-4{
  margin-left: 1rem;
}.tw-ml-5{
  margin-left: 1.25rem;
}.tw-ml-6{
  margin-left: 1.5rem;
}.tw-ml-\[2rem\]{
  margin-left: 2rem;
}.tw-ml-auto{
  margin-left: auto;
}.tw-mr-0{
  margin-right: 0px;
}.tw-mr-1{
  margin-right: 0.25rem;
}.tw-mr-10{
  margin-right: 2.5rem;
}.tw-mr-2{
  margin-right: 0.5rem;
}.tw-mr-3{
  margin-right: 0.75rem;
}.tw-mr-4{
  margin-right: 1rem;
}.tw-mr-6{
  margin-right: 1.5rem;
}.tw-mr-64{
  margin-right: 16rem;
}.tw-mr-8{
  margin-right: 2rem;
}.tw-mt-1{
  margin-top: 0.25rem;
}.tw-mt-12{
  margin-top: 3rem;
}.tw-mt-16{
  margin-top: 4rem;
}.tw-mt-2{
  margin-top: 0.5rem;
}.tw-mt-3{
  margin-top: 0.75rem;
}.tw-mt-4{
  margin-top: 1rem;
}.tw-mt-6{
  margin-top: 1.5rem;
}.tw-mt-8{
  margin-top: 2rem;
}.tw-mt-\[\.625rem\]{
  margin-top: .625rem;
}.tw-mt-\[2rem\]{
  margin-top: 2rem;
}.tw-block{
  display: block;
}.tw-inline-block{
  display: inline-block;
}.tw-inline{
  display: inline;
}.\!tw-flex{
  display: flex !important;
}.tw-flex{
  display: flex;
}.tw-inline-flex{
  display: inline-flex;
}.tw-grid{
  display: grid;
}.tw-hidden{
  display: none;
}.\!tw-h-4{
  height: 1rem !important;
}.\!tw-h-6{
  height: 1.5rem !important;
}.\!tw-h-8{
  height: 2rem !important;
}.\!tw-h-auto{
  height: auto !important;
}.\!tw-h-full{
  height: 100% !important;
}.tw-h-2\.5{
  height: 0.625rem;
}.tw-h-3{
  height: 0.75rem;
}.tw-h-32{
  height: 8rem;
}.tw-h-5{
  height: 1.25rem;
}.tw-h-6{
  height: 1.5rem;
}.tw-h-\[1\.125rem\]{
  height: 1.125rem;
}.tw-h-\[1\.3125rem\]{
  height: 1.3125rem;
}.tw-h-\[1\.56rem\]{
  height: 1.56rem;
}.tw-h-\[10px\]{
  height: 10px;
}.tw-h-\[2\.75rem\]{
  height: 2.75rem;
}.tw-h-\[600px\]{
  height: 600px;
}.tw-h-\[8rem\]{
  height: 8rem;
}.tw-h-full{
  height: 100%;
}.tw-h-screen{
  height: 100vh;
}.\!tw-min-h-0{
  min-height: 0px !important;
}.tw-min-h-10{
  min-height: 2.5rem;
}.tw-min-h-40{
  min-height: 10rem;
}.tw-min-h-\[1\.25rem\]{
  min-height: 1.25rem;
}.tw-min-h-\[100vh\]{
  min-height: 100vh;
}.tw-min-h-\[120px\]{
  min-height: 120px;
}.tw-min-h-\[18rem\]{
  min-height: 18rem;
}.tw-min-h-\[20rem\]{
  min-height: 20rem;
}.\!tw-w-4{
  width: 1rem !important;
}.\!tw-w-6{
  width: 1.5rem !important;
}.\!tw-w-8{
  width: 2rem !important;
}.\!tw-w-auto{
  width: auto !important;
}.tw-w-1\/2{
  width: 50%;
}.tw-w-1\/4{
  width: 25%;
}.tw-w-1\/5{
  width: 20%;
}.tw-w-2\/5{
  width: 40%;
}.tw-w-24{
  width: 6rem;
}.tw-w-3{
  width: 0.75rem;
}.tw-w-3\/6{
  width: 50%;
}.tw-w-48{
  width: 12rem;
}.tw-w-5{
  width: 1.25rem;
}.tw-w-6{
  width: 1.5rem;
}.tw-w-64{
  width: 16rem;
}.tw-w-72{
  width: 18rem;
}.tw-w-\[1\.125rem\]{
  width: 1.125rem;
}.tw-w-\[10px\]{
  width: 10px;
}.tw-w-\[11\.25rem\]{
  width: 11.25rem;
}.tw-w-\[34\.3125rem\]{
  width: 34.3125rem;
}.tw-w-\[640px\]{
  width: 640px;
}.tw-w-\[762px\]{
  width: 762px;
}.tw-w-\[9\.375rem\]{
  width: 9.375rem;
}.tw-w-\[9\.75rem\]{
  width: 9.75rem;
}.tw-w-\[calc\(100\%_-_var\(--resp-panel-w\)\)\]{
  width: calc(100% - var(--resp-panel-w));
}.tw-w-fit{
  width: fit-content;
}.tw-w-full{
  width: 100%;
}.tw-w-max{
  width: max-content;
}.tw-min-w-14{
  min-width: 3.5rem;
}.tw-min-w-\[--resp-panel-w\]{
  min-width: var(--resp-panel-w);
}.tw-min-w-\[2in\]{
  min-width: 2in;
}.tw-min-w-\[320px\]{
  min-width: 320px;
}.tw-min-w-\[600px\]{
  min-width: 600px;
}.tw-min-w-\[640px\]{
  min-width: 640px;
}.tw-min-w-fit{
  min-width: fit-content;
}.tw-max-w-0{
  max-width: 0px;
}.tw-max-w-2xl{
  max-width: 42rem;
}.tw-max-w-4xl{
  max-width: 56rem;
}.tw-max-w-7xl{
  max-width: 80rem;
}.tw-max-w-lg{
  max-width: 32rem;
}.tw-max-w-xl{
  max-width: 36rem;
}.tw-flex-1{
  flex: 1 1 0%;
}.tw-flex-\[1_0_0\]{
  flex: 1 0 0;
}.\!tw-shrink{
  flex-shrink: 1 !important;
}.\!tw-shrink-0{
  flex-shrink: 0 !important;
}.tw-shrink-0{
  flex-shrink: 0;
}.tw-flex-grow{
  flex-grow: 1;
}.\!tw-grow{
  flex-grow: 1 !important;
}.\!tw-grow-0{
  flex-grow: 0 !important;
}.tw-grow{
  flex-grow: 1;
}.tw-grow-0{
  flex-grow: 0;
}.\!tw-basis-auto{
  flex-basis: auto !important;
}.tw-basis-0{
  flex-basis: 0px;
}.tw-basis-2{
  flex-basis: 0.5rem;
}.tw-basis-\[--resp-panel-w\]{
  flex-basis: var(--resp-panel-w);
}.tw-basis-auto{
  flex-basis: auto;
}.\!tw-cursor-auto{
  cursor: auto !important;
}.tw-cursor-default{
  cursor: default;
}.tw-cursor-not-allowed{
  cursor: not-allowed;
}.tw-cursor-pointer{
  cursor: pointer;
}.tw-resize-none{
  resize: none;
}.tw-list-disc{
  list-style-type: disc;
}.tw-auto-cols-fr{
  grid-auto-columns: minmax(0, 1fr);
}.tw-grid-flow-col{
  grid-auto-flow: column;
}.tw-grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}.tw-grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}.tw-grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}.tw-grid-cols-6{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}.tw-grid-rows-1{
  grid-template-rows: repeat(1, minmax(0, 1fr));
}.tw-flex-row{
  flex-direction: row;
}.\!tw-flex-col{
  flex-direction: column !important;
}.tw-flex-col{
  flex-direction: column;
}.tw-flex-wrap{
  flex-wrap: wrap;
}.tw-content-center{
  align-content: center;
}.tw-items-start{
  align-items: flex-start;
}.tw-items-end{
  align-items: flex-end;
}.tw-items-center{
  align-items: center;
}.tw-items-stretch{
  align-items: stretch;
}.tw-justify-start{
  justify-content: flex-start;
}.tw-justify-end{
  justify-content: flex-end;
}.tw-justify-center{
  justify-content: center;
}.tw-justify-between{
  justify-content: space-between;
}.\!tw-gap-1{
  gap: 0.25rem !important;
}.tw-gap-1{
  gap: 0.25rem;
}.tw-gap-2{
  gap: 0.5rem;
}.tw-gap-3{
  gap: 0.75rem;
}.tw-gap-4{
  gap: 1rem;
}.tw-gap-5{
  gap: 1.25rem;
}.tw-gap-6{
  gap: 1.5rem;
}.tw-gap-8{
  gap: 2rem;
}.tw-gap-\[0\.1875rem\]{
  gap: 0.1875rem;
}.tw-gap-\[0\.375rem\]{
  gap: 0.375rem;
}.tw-gap-\[0\.38rem\]{
  gap: 0.38rem;
}.tw-gap-\[0\.5625rem\]{
  gap: 0.5625rem;
}.tw-gap-\[0\.625rem\]{
  gap: 0.625rem;
}.tw-gap-\[0\.75rem\]{
  gap: 0.75rem;
}.tw-gap-\[1\.0625rem\]{
  gap: 1.0625rem;
}.tw-gap-\[1\.125rem\]{
  gap: 1.125rem;
}.tw-gap-\[1\.625rem\]{
  gap: 1.625rem;
}.tw-gap-\[16px\]{
  gap: 16px;
}.tw-gap-\[2rem\]{
  gap: 2rem;
}.tw-gap-\[9px\]{
  gap: 9px;
}.tw-gap-x-4{
  column-gap: 1rem;
}.tw-gap-x-8{
  column-gap: 2rem;
}.tw-gap-y-8{
  row-gap: 2rem;
}.tw-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)));
}.tw-space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}.tw-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));
}.tw-space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}.tw-divide-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
}.tw-self-start{
  align-self: flex-start;
}.tw-self-center{
  align-self: center;
}.tw-self-stretch{
  align-self: stretch;
}.tw-overflow-auto{
  overflow: auto;
}.\!tw-overflow-y-auto{
  overflow-y: auto !important;
}.tw-overflow-y-auto{
  overflow-y: auto;
}.tw-overflow-x-hidden{
  overflow-x: hidden;
}.\!tw-overflow-y-clip{
  overflow-y: clip !important;
}.\!tw-overscroll-y-contain{
  overscroll-behavior-y: contain !important;
}.tw-overscroll-y-contain{
  overscroll-behavior-y: contain;
}.tw-truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}.tw-text-ellipsis{
  text-overflow: ellipsis;
}.tw-whitespace-nowrap{
  white-space: nowrap;
}.tw-whitespace-pre{
  white-space: pre;
}.tw-break-words{
  overflow-wrap: break-word;
}.tw-rounded{
  border-radius: 0.25rem;
}.tw-rounded-3xl{
  border-radius: 1.5rem;
}.tw-rounded-\[0\.1875rem\]{
  border-radius: 0.1875rem;
}.tw-rounded-\[3px\]{
  border-radius: 3px;
}.tw-rounded-full{
  border-radius: 9999px;
}.tw-rounded-lg{
  border-radius: 0.5rem;
}.tw-rounded-md{
  border-radius: 0.375rem;
}.tw-rounded-xl{
  border-radius: 12px;
}.tw-rounded-l-md{
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}.tw-rounded-r-md{
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}.tw-rounded-bl-md{
  border-bottom-left-radius: 0.375rem;
}.tw-rounded-bl-none{
  border-bottom-left-radius: 0px;
}.tw-rounded-br-none{
  border-bottom-right-radius: 0px;
}.tw-rounded-tl-\[0\.1875rem\]{
  border-top-left-radius: 0.1875rem;
}.tw-rounded-tr-\[0\.1875rem\]{
  border-top-right-radius: 0.1875rem;
}.tw-border{
  border-width: 1px;
}.tw-border-0{
  border-width: 0px;
}.tw-border-2{
  border-width: 2px;
}.tw-border-y-2{
  border-top-width: 2px;
  border-bottom-width: 2px;
}.tw-border-b{
  border-bottom-width: 1px;
}.tw-border-b-2{
  border-bottom-width: 2px;
}.tw-border-l{
  border-left-width: 1px;
}.tw-border-r-2{
  border-right-width: 2px;
}.tw-border-t{
  border-top-width: 1px;
}.tw-border-t-4{
  border-top-width: 4px;
}.tw-border-solid{
  border-style: solid;
}.tw-border-hidden{
  border-style: hidden;
}.\!tw-border-none{
  border-style: none !important;
}.tw-border-none{
  border-style: none;
}.tw-border-\[\#0091EB\]{
  --tw-border-opacity: 1;
  border-color: rgb(0 145 235 / var(--tw-border-opacity, 1));
}.tw-border-\[\#D1D7E0\]{
  --tw-border-opacity: 1;
  border-color: rgb(209 215 224 / var(--tw-border-opacity, 1));
}.tw-border-\[--curr-crit-color\]{
  border-color: var(--curr-crit-color);
}.tw-border-\[rgba\(70\,73\,77\,0\.60\)\]{
  border-color: rgba(70,73,77,0.60);
}.tw-border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}.tw-border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(249 250 252 / var(--tw-border-opacity, 1));
}.tw-border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(235 238 243 / var(--tw-border-opacity, 1));
}.tw-border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}.tw-border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgb(209 215 224 / var(--tw-border-opacity, 1));
}.tw-border-gray-500{
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}.tw-border-green-200{
  --tw-border-opacity: 1;
  border-color: rgb(102 255 204 / var(--tw-border-opacity, 1));
}.tw-border-green-300{
  --tw-border-opacity: 1;
  border-color: rgb(0 230 195 / var(--tw-border-opacity, 1));
}.tw-border-purple-900{
  --tw-border-opacity: 1;
  border-color: rgb(88 28 135 / var(--tw-border-opacity, 1));
}.tw-border-red-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}.tw-border-teal-500{
  --tw-border-opacity: 1;
  border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
}.tw-border-teal-600{
  --tw-border-opacity: 1;
  border-color: rgb(0 128 167 / var(--tw-border-opacity, 1));
}.tw-border-transparent{
  border-color: transparent;
}.\!tw-border-t-gray-400{
  --tw-border-opacity: 1 !important;
  border-top-color: rgb(209 215 224 / var(--tw-border-opacity, 1)) !important;
}.tw-border-opacity-0{
  --tw-border-opacity: 0;
}.\!tw-bg-transparent{
  background-color: transparent !important;
}.tw-bg-\[\#AF1214\]{
  --tw-bg-opacity: 1;
  background-color: rgb(175 18 20 / var(--tw-bg-opacity, 1));
}.tw-bg-\[\#E01719\]{
  --tw-bg-opacity: 1;
  background-color: rgb(224 23 25 / var(--tw-bg-opacity, 1));
}.tw-bg-\[\#f6f6f6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
}.tw-bg-\[\#fff\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}.tw-bg-\[--curr-crit-color\]{
  background-color: var(--curr-crit-color);
}.tw-bg-danger-600{
  --tw-bg-opacity: 1;
  background-color: rgb(207 23 54 / var(--tw-bg-opacity, 1));
}.tw-bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 252 / var(--tw-bg-opacity, 1));
}.tw-bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(235 238 243 / var(--tw-bg-opacity, 1));
}.tw-bg-gray-400{
  --tw-bg-opacity: 1;
  background-color: rgb(209 215 224 / var(--tw-bg-opacity, 1));
}.tw-bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}.tw-bg-gray-600\/\[\.75\]{
  background-color: rgb(106 117 133 / .75);
}.tw-bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(242 249 241 / var(--tw-bg-opacity, 1));
}.tw-bg-green-200{
  --tw-bg-opacity: 1;
  background-color: rgb(102 255 204 / var(--tw-bg-opacity, 1));
}.tw-bg-green-300{
  --tw-bg-opacity: 1;
  background-color: rgb(0 230 195 / var(--tw-bg-opacity, 1));
}.tw-bg-info-100{
  --tw-bg-opacity: 1;
  background-color: rgb(244 247 250 / var(--tw-bg-opacity, 1));
}.tw-bg-info-c-info-light-5{
  --tw-bg-opacity: 1;
  background-color: rgb(242 250 254 / var(--tw-bg-opacity, 1));
}.tw-bg-lime-400{
  --tw-bg-opacity: 1;
  background-color: rgb(163 230 53 / var(--tw-bg-opacity, 1));
}.tw-bg-orange-200{
  --tw-bg-opacity: 1;
  background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
}.tw-bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}.tw-bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}.tw-bg-red-300{
  --tw-bg-opacity: 1;
  background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
}.tw-bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}.tw-bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgb(207 23 54 / var(--tw-bg-opacity, 1));
}.tw-bg-slate-200{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}.tw-bg-teal-600{
  --tw-bg-opacity: 1;
  background-color: rgb(0 128 167 / var(--tw-bg-opacity, 1));
}.tw-bg-transparent{
  background-color: transparent;
}.tw-bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}.tw-bg-yellow-300{
  --tw-bg-opacity: 1;
  background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
}.tw-bg-yellow-500{
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}.tw-stroke-1{
  stroke-width: 1;
}.\!tw-p-0{
  padding: 0px !important;
}.\!tw-p-6{
  padding: 1.5rem !important;
}.\!tw-p-\[5px\]{
  padding: 5px !important;
}.tw-p-12{
  padding: 3rem;
}.tw-p-2{
  padding: 0.5rem;
}.tw-p-3{
  padding: 0.75rem;
}.tw-p-4{
  padding: 1rem;
}.tw-p-5{
  padding: 1.25rem;
}.tw-p-6{
  padding: 1.5rem;
}.tw-p-\[11px_30px_9px_30px\]{
  padding: 11px 30px 9px 30px;
}.tw-p-\[16px\]{
  padding: 16px;
}.tw-p-\[24px\]{
  padding: 24px;
}.\!tw-px-\[12px\]{
  padding-left: 12px !important;
  padding-right: 12px !important;
}.\!tw-py-\[6px\]{
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}.tw-px-0{
  padding-left: 0px;
  padding-right: 0px;
}.tw-px-0\.5{
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}.tw-px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}.tw-px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}.tw-px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}.tw-px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}.tw-px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}.tw-px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}.tw-px-\[1rem\]{
  padding-left: 1rem;
  padding-right: 1rem;
}.tw-px-\[2\.1875rem\]{
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}.tw-py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}.tw-py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}.tw-py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}.tw-py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}.tw-py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}.tw-py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}.tw-py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}.tw-py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}.tw-py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}.tw-py-\[1\.125rem\]{
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}.tw-py-\[1\.5rem\]{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}.tw-py-\[5px\]{
  padding-top: 5px;
  padding-bottom: 5px;
}.tw-py-\[7px\]{
  padding-top: 7px;
  padding-bottom: 7px;
}.\!tw-pb-0{
  padding-bottom: 0px !important;
}.tw-pb-0{
  padding-bottom: 0px;
}.tw-pb-2{
  padding-bottom: 0.5rem;
}.tw-pb-4{
  padding-bottom: 1rem;
}.tw-pb-6{
  padding-bottom: 1.5rem;
}.tw-pb-\[0\.0625rem\]{
  padding-bottom: 0.0625rem;
}.tw-pb-\[0\.25rem\]{
  padding-bottom: 0.25rem;
}.tw-pb-\[0\.3125rem\]{
  padding-bottom: 0.3125rem;
}.tw-pb-\[0\.75rem\]{
  padding-bottom: 0.75rem;
}.tw-pb-\[0\.875rem\]{
  padding-bottom: 0.875rem;
}.tw-pb-\[1\.125rem\]{
  padding-bottom: 1.125rem;
}.tw-pb-\[1\.1875rem\]{
  padding-bottom: 1.1875rem;
}.tw-pb-\[1\.5rem\]{
  padding-bottom: 1.5rem;
}.tw-pb-\[3rem\]{
  padding-bottom: 3rem;
}.tw-pl-0{
  padding-left: 0px;
}.tw-pl-1{
  padding-left: 0.25rem;
}.tw-pl-12{
  padding-left: 3rem;
}.tw-pl-2{
  padding-left: 0.5rem;
}.tw-pl-4{
  padding-left: 1rem;
}.tw-pl-5{
  padding-left: 1.25rem;
}.tw-pl-6{
  padding-left: 1.5rem;
}.tw-pl-\[0\.6875rem\]{
  padding-left: 0.6875rem;
}.tw-pl-\[1\.1875rem\]{
  padding-left: 1.1875rem;
}.tw-pl-\[2\.1875rem\]{
  padding-left: 2.1875rem;
}.tw-pr-0{
  padding-right: 0px;
}.tw-pr-1{
  padding-right: 0.25rem;
}.tw-pr-12{
  padding-right: 3rem;
}.tw-pr-2{
  padding-right: 0.5rem;
}.tw-pr-6{
  padding-right: 1.5rem;
}.tw-pr-7{
  padding-right: 1.75rem;
}.tw-pr-\[0\.4375rem\]{
  padding-right: 0.4375rem;
}.tw-pr-\[2\.1875rem\]{
  padding-right: 2.1875rem;
}.tw-pt-0{
  padding-top: 0px;
}.tw-pt-1{
  padding-top: 0.25rem;
}.tw-pt-2{
  padding-top: 0.5rem;
}.tw-pt-4{
  padding-top: 1rem;
}.tw-pt-5{
  padding-top: 1.25rem;
}.tw-pt-6{
  padding-top: 1.5rem;
}.tw-pt-\[0\.25rem\]{
  padding-top: 0.25rem;
}.tw-pt-\[0\.5rem\]{
  padding-top: 0.5rem;
}.tw-pt-\[0\.75rem\]{
  padding-top: 0.75rem;
}.tw-pt-\[0\.875rem\]{
  padding-top: 0.875rem;
}.tw-pt-\[1\.5rem\]{
  padding-top: 1.5rem;
}.tw-pt-\[1rem\]{
  padding-top: 1rem;
}.tw-pt-\[3\.75rem\]{
  padding-top: 3.75rem;
}.tw-text-left{
  text-align: left;
}.\!tw-text-center{
  text-align: center !important;
}.tw-text-center{
  text-align: center;
}.tw-text-right{
  text-align: right;
}.tw-indent-4{
  text-indent: 1rem;
}.tw-align-baseline{
  vertical-align: baseline;
}.tw-align-top{
  vertical-align: top;
}.tw-font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}.tw-font-sans{
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}.\!tw-text-base{
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}.tw-text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}.tw-text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}.tw-text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}.tw-text-\[0\.9em\]{
  font-size: 0.9em;
}.tw-text-\[1\.125rem\]{
  font-size: 1.125rem;
}.tw-text-\[12px\]\/\[19\.2px\]{
  font-size: 12px;
  line-height: 19.2px;
}.tw-text-\[14px\]\/\[18px\]{
  font-size: 14px;
  line-height: 18px;
}.tw-text-\[15px\]\/\[24px\]{
  font-size: 15px;
  line-height: 24px;
}.tw-text-\[16px\]\/\[18\.75px\]{
  font-size: 16px;
  line-height: 18.75px;
}.tw-text-\[172px\]{
  font-size: 172px;
}.tw-text-\[18px\]{
  font-size: 18px;
}.tw-text-\[18px\]\/\[22\.5px\]{
  font-size: 18px;
  line-height: 22.5px;
}.tw-text-\[30px\]\/\[36px\]{
  font-size: 30px;
  line-height: 36px;
}.tw-text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}.tw-text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}.tw-text-lg\/\[22\.5px\]{
  font-size: 1.125rem;
  line-height: 22.5px;
}.tw-text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}.tw-text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}.tw-text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}.\!tw-font-normal{
  font-weight: 400 !important;
}.tw-font-black{
  font-weight: 900;
}.tw-font-bold{
  font-weight: 700;
}.tw-font-extralight{
  font-weight: 200;
}.tw-font-light{
  font-weight: 300;
}.tw-font-medium{
  font-weight: 500;
}.tw-font-normal{
  font-weight: 400;
}.tw-font-semibold{
  font-weight: 600;
}.tw-uppercase{
  text-transform: uppercase;
}.tw-italic{
  font-style: italic;
}.tw-leading-6{
  line-height: 1.5rem;
}.tw-leading-8{
  line-height: 2rem;
}.tw-leading-\[1\.1875rem\]{
  line-height: 1.1875rem;
}.tw-leading-\[1\.45\]{
  line-height: 1.45;
}.tw-leading-\[1\.5625rem\]{
  line-height: 1.5625rem;
}.tw-leading-\[1\.6875rem\]{
  line-height: 1.6875rem;
}.tw-leading-\[1\.7\]{
  line-height: 1.7;
}.tw-leading-\[1\.875rem\]{
  line-height: 1.875rem;
}.tw-leading-\[10px\]{
  line-height: 10px;
}.tw-leading-\[170\%\]{
  line-height: 170%;
}.tw-leading-\[20px\]{
  line-height: 20px;
}.tw-leading-\[24px\]{
  line-height: 24px;
}.tw-leading-loose{
  line-height: 2;
}.tw-leading-none{
  line-height: 1;
}.tw-leading-tight{
  line-height: 1.25;
}.tw-tracking-\[\.005em\]{
  letter-spacing: .005em;
}.tw-tracking-\[\.00625em\]{
  letter-spacing: .00625em;
}.tw-tracking-\[0\.00625rem\]{
  letter-spacing: 0.00625rem;
}.tw-tracking-\[0\.07px\]{
  letter-spacing: 0.07px;
}.tw-tracking-\[1px\]{
  letter-spacing: 1px;
}.tw-text-\[\#007395\]{
  --tw-text-opacity: 1;
  color: rgb(0 115 149 / var(--tw-text-opacity, 1));
}.tw-text-\[\#272A2D\]{
  --tw-text-opacity: 1;
  color: rgb(39 42 45 / var(--tw-text-opacity, 1));
}.tw-text-\[\#46494D\]{
  --tw-text-opacity: 1;
  color: rgb(70 73 77 / var(--tw-text-opacity, 1));
}.tw-text-\[\#FFF\]{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.tw-text-\[--curr-crit-color-text\]{
  color: var(--curr-crit-color-text);
}.tw-text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}.tw-text-danger-600{
  --tw-text-opacity: 1;
  color: rgb(207 23 54 / var(--tw-text-opacity, 1));
}.tw-text-danger-800{
  --tw-text-opacity: 1;
  color: rgb(178 29 54 / var(--tw-text-opacity, 1));
}.tw-text-error-c-error-dark-3{
  --tw-text-opacity: 1;
  color: rgb(135 70 0 / var(--tw-text-opacity, 1));
}.tw-text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}.tw-text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(106 117 133 / var(--tw-text-opacity, 1));
}.tw-text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}.tw-text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(68 77 89 / var(--tw-text-opacity, 1));
}.tw-text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(32 37 44 / var(--tw-text-opacity, 1));
}.tw-text-green-700{
  --tw-text-opacity: 1;
  color: rgb(0 112 95 / var(--tw-text-opacity, 1));
}.tw-text-info-600{
  --tw-text-opacity: 1;
  color: rgb(35 117 199 / var(--tw-text-opacity, 1));
}.tw-text-neutral-c-neutral{
  --tw-text-opacity: 1;
  color: rgb(70 73 77 / var(--tw-text-opacity, 1));
}.tw-text-neutral-c-neutral-light-4{
  --tw-text-opacity: 1;
  color: rgb(218 219 219 / var(--tw-text-opacity, 1));
}.tw-text-orange-700{
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}.tw-text-purple-600{
  --tw-text-opacity: 1;
  color: rgb(105 92 255 / var(--tw-text-opacity, 1));
}.tw-text-red-600{
  --tw-text-opacity: 1;
  color: rgb(207 23 54 / var(--tw-text-opacity, 1));
}.tw-text-red-700{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}.tw-text-red-c-brand-dark-1{
  --tw-text-opacity: 1;
  color: rgb(175 18 20 / var(--tw-text-opacity, 1));
}.tw-text-success-600{
  --tw-text-opacity: 1;
  color: rgb(23 137 0 / var(--tw-text-opacity, 1));
}.tw-text-teal-600{
  --tw-text-opacity: 1;
  color: rgb(0 128 167 / var(--tw-text-opacity, 1));
}.tw-text-teal-700{
  --tw-text-opacity: 1;
  color: rgb(0 102 133 / var(--tw-text-opacity, 1));
}.tw-text-teal-800{
  --tw-text-opacity: 1;
  color: rgb(0 79 104 / var(--tw-text-opacity, 1));
}.tw-text-text-paragraph{
  --tw-text-opacity: 1;
  color: rgb(39 42 45 / var(--tw-text-opacity, 1));
}.tw-text-text-standard-headings{
  --tw-text-opacity: 1;
  color: rgb(39 42 45 / var(--tw-text-opacity, 1));
}.tw-text-transparent{
  color: transparent;
}.tw-text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.tw-underline{
  text-decoration-line: underline;
}.tw-line-through{
  text-decoration-line: line-through;
}.tw-opacity-0{
  opacity: 0;
}.\!tw-shadow-none{
  --tw-shadow: 0 0 #0000 !important;
  --tw-shadow-colored: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}.tw-shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.tw-shadow-\[0_1px_4px_-0px_rgba\(43\,50\,59\,0\.10\)\]{
  --tw-shadow: 0 1px 4px -0px rgba(43,50,59,0.10);
  --tw-shadow-colored: 0 1px 4px -0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.tw-shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.tw-shadow-none{
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.tw-shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.tw-ring-1{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}.tw-ring-gray-900\/5{
  --tw-ring-color: rgb(32 37 44 / 0.05);
}.tw-transition-\[background-color\]{
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.tw-transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.tw-transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.tw-duration-150{
  transition-duration: 150ms;
}.tw-duration-200{
  transition-duration: 200ms;
}.tw-ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}.\[--curr-crit-color-text\:var\(--danger-800\)\]{
  --curr-crit-color-text: var(--danger-800);
}.\[--curr-crit-color-text\:var\(--gold-800\)\]{
  --curr-crit-color-text: var(--gold-800);
}.\[--curr-crit-color-text\:var\(--gray-900\)\]{
  --curr-crit-color-text: var(--gray-900);
}.\[--curr-crit-color-text\:var\(--green-800\)\]{
  --curr-crit-color-text: var(--green-800);
}.\[--curr-crit-color-text\:var\(--info-600\)\]{
  --curr-crit-color-text: var(--info-600);
}.\[--curr-crit-color-text\:var\(--purple-800\)\]{
  --curr-crit-color-text: var(--purple-800);
}.\[--curr-crit-color\:var\(--danger-600\)\]{
  --curr-crit-color: var(--danger-600);
}.\[--curr-crit-color\:var\(--gold-300\)\]{
  --curr-crit-color: var(--gold-300);
}.\[--curr-crit-color\:var\(--gold-500\)\]{
  --curr-crit-color: var(--gold-500);
}.\[--curr-crit-color\:var\(--green-300\)\]{
  --curr-crit-color: var(--green-300);
}.\[--curr-crit-color\:var\(--info-600\)\]{
  --curr-crit-color: var(--info-600);
}.\[--curr-crit-color\:var\(--purple-800\)\]{
  --curr-crit-color: var(--purple-800);
}.\[--resp-panel-w\:360px\]{
  --resp-panel-w: 360px;
}:root{--teal: #09a8d9;--success: hsl(110, 90%, 34.21%);--info: hsl(210, 63%, 51.4%);--info-600: hsl(210, 70%, 46%);--warning: hsl(30, 90%, 42.85%);--danger: hsl(350, 72%, 50.5%);--danger-600: hsl(350, 80%, 45%);--danger-800: hsl(350, 72%, 40.5%);--gray: #a0a8b4;--gray-900: #20252c;--purple: hsl(245, 100%, 75%);--purple-800: hsl(245, 55%, 50%);--blue: hsl(209, 89%, 55%);--green-300: hsl(171, 100%, 45%);--green: hsl(171, 100%, 40%);--green-800: hsl(171, 100%, 17%);--gold-300: hsl(45, 100%, 62%);--gold: hsl(35, 100%, 50%);--gold-500: hsl(35, 100%, 50%);--gold-800: hsl(22, 100%, 27%)}@font-face{font-family:"Arial";src:url("https://cdn.corvusinsurance.com/images/Arial-07d53b5b4d43b671764d7075be494019.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:"Arial";src:url("https://cdn.corvusinsurance.com/images/Arial_Italic-fc5a615cbac741096cb2f74d2551184e.ttf") format("truetype");font-weight:normal;font-style:italic}@font-face{font-family:"Arial";src:url("https://cdn.corvusinsurance.com/images/Arial_Bold-142301adf4e0699237f9e11a77761d0d.ttf") format("truetype");font-weight:bold;font-style:normal}@font-face{font-family:"Arial";src:url("https://cdn.corvusinsurance.com/images/Arial_Bold_Italic-f04bc834e3de7d027aaae44396cbcf2a.ttf") format("truetype");font-weight:bold;font-style:italic}*,*::before,*::after{box-sizing:border-box}*::before,*::after{display:inline}html{font-family:sans-serif;line-height:1.2;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:rgba(0,0,0,0)}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;text-align:left}body ::-webkit-scrollbar{-webkit-appearance:none;background-color:rgba(160,168,180,.1);width:.5rem}body ::-webkit-scrollbar-thumb{border-radius:.25rem;background-color:rgba(32,37,44,.3);-webkit-box-shadow:0 0 1px hsla(0,0%,100%,.5)}[tabindex="-1"]:focus{outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong,dt{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:#08f;text-decoration:none;background-color:rgba(0,0,0,0);-webkit-text-decoration-skip:objects}a:hover{color:#06b;text-decoration:none}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):hover,a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}pre,code,kbd,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none;max-width:100%}svg{overflow:hidden}svg:not(:root){overflow:visible}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#666;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{box-sizing:border-box;padding:0}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}input[type=range]{background-color:rgba(0,0,0,0);margin:.5rem 0;width:100%;-webkit-appearance:none}input[type=range]:focus{outline:none}input[type=range]:focus::-webkit-slider-runnable-track{background:#006685}input[type=range]:focus::-ms-fill-lower{background:#006685}input[type=range]:focus::-ms-fill-upper{background:#d1d7e0}input[type=range]::-webkit-slider-runnable-track{background:#d1d7e0;border:0;border-radius:.125rem;width:100%;height:.25rem;cursor:pointer}input[type=range]::-webkit-slider-thumb{margin-top:-0.5rem;width:1.5rem;height:1.5rem;background:#fff;border:1px solid #d1d7e0;border-radius:50%;cursor:pointer;-webkit-appearance:none}input[type=range]::-moz-range-progress{background-color:#0080a7}input[type=range]::-moz-range-track{background:#d1d7e0;border:0;border-radius:.125rem;width:100%;height:.25rem;cursor:pointer}input[type=range]::-moz-range-thumb{width:1.5rem;height:1.5rem;background:#fff;border:1px solid #d1d7e0;border-radius:50%;cursor:pointer}input[type=range]::-ms-track{background:rgba(0,0,0,0);border-color:rgba(0,0,0,0);border-width:.75rem 0;color:rgba(0,0,0,0);width:100%;height:.25rem;cursor:pointer}input[type=range]::-ms-fill-lower{background:#0080a7;border:0;border-radius:.125rem}input[type=range]::-ms-fill-upper{background:#d1d7e0;border:0;border-radius:.125rem}input[type=range]::-ms-thumb{width:1.5rem;height:1.5rem;background:#fff;border:1px solid #d1d7e0;border-radius:50%;cursor:pointer;margin-top:0}@supports(-ms-ime-align: auto){input[type=range]{margin:0}}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}html{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-smoothing:antialiased;text-rendering:optimizeLegibility}body{color:#444d59;font-family:"Open Sans",sans-serif;font-size:1rem;font-weight:400;line-height:1.5;margin-bottom:1rem;margin:0}h1{color:#20252c;font-family:"Rubik",sans-serif;font-size:2.75rem;font-weight:400;letter-spacing:-0.035em;line-height:1.2;margin:0}h2{color:#20252c;font-family:"Rubik",sans-serif;font-size:1.875rem;font-weight:400;line-height:1.2;margin:0}h3{color:#20252c;font-size:1.375rem;font-weight:600;line-height:1.2;margin:0}h4{font-size:.875rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase}h5{font-size:.75rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase}h6{font-size:.625rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase}p{font-family:"Open Sans",sans-serif;font-size:1rem;font-weight:400;line-height:1.5;margin-bottom:1rem}a{color:#0080a7}a:hover{color:#006685}ol,ul{margin:0;padding:0}.list-type-none{list-style-type:none}.blockquote{font-size:.875rem;padding-left:1rem;border-left:10px solid #d1d7e0}.text-accent{color:#0080a7}.icon{display:inline-block;height:1em;width:1em;stroke-width:0;stroke:currentColor;fill:currentColor}.icon--with-text{height:1.3333333333em;width:1.3333333333em;line-height:1;margin-right:.25rem;vertical-align:middle}.icon--small{height:.75em;width:.75em}.icon--large{height:1.5em;width:1.5em}.icon--extra-large{height:2.5rem;width:2.5rem}.net-dil-learning-center{width:8rem}.calendly{color:#0080a7;font-weight:600;line-height:1.2;text-align:center}.calendly:hover{color:#006685}.calendly .icon-calendar{height:2.25rem;width:2.25rem;display:block;margin:0 auto}.is-loading{animation:loading 1.2s ease-in-out infinite}.is-loading.page.icon-refresh{fill:#0080a7;height:2.25rem;width:2.25rem;margin:0 auto;display:block}@keyframes loading{0%{opacity:1;transform:rotate(0deg)}50%{opacity:.4}100%{opacity:1;transform:rotate(360deg)}}.button{border:1px solid rgba(0,0,0,0);background-color:#0080a7;border-radius:3px;color:#fff;font-family:"Open Sans",sans-serif;font-weight:600;padding:1rem 1.5rem;transition:all 200ms ease-in-out;cursor:pointer;font-size:inherit;white-space:nowrap;text-align:center}.button:focus,.button:hover{background-color:#006685;color:#fff}.button--loading{opacity:.5}.button--loading:disabled{pointer-events:none}.button--x-small{padding:.25rem .5rem;font-size:.875rem}.button--chat{display:flex;align-items:center;font-size:1rem;padding:.25rem;padding-bottom:0;border-radius:30px;position:fixed;right:.5rem;bottom:1rem;z-index:11}.button--small{padding:.5rem 1rem}.button--large{padding-left:2rem;padding-right:2rem}.button--block{display:block;width:100%}.button--inverse{border:1px solid #0080a7;background-color:#fff;color:#006685}.button--inverse:hover{background-color:rgb(239.565,247.4519461078,249.855);color:#006685}.button--bottom-right{position:absolute;bottom:24px;right:24px}.button--de-emphasize{border:1px solid #d1d7e0;background-color:rgba(0,0,0,0);color:#444d59}.button--de-emphasize:focus,.button--de-emphasize:hover{background-color:#f9fafc;border-color:#a0a8b4;color:#444d59}.button--right{border-bottom-left-radius:0;border-top-left-radius:0}.button--success{background-color:hsl(110,100%,26.9%)}.button--success:hover{background-color:hsl(110,90%,24.21%)}.button--success:disabled:hover{background-color:hsl(110,100%,26.9%)}.button--success.button--inverse{background-color:rgba(0,0,0,0);border:1px solid hsl(110,100%,26.9%);color:hsl(110,100%,26.9%)}.button--success.button--inverse:hover{background-color:hsl(110,50%,95.614%);border-color:hsl(110,90%,24.21%);color:hsl(110,90%,24.21%)}.button--success.button--inverse.disabled:hover,.button--success.button--inverse:disabled:hover{background-color:rgba(0,0,0,0);border-color:hsl(110,100%,26.9%);color:hsl(110,100%,26.9%)}.button--error{background-color:hsl(350,80%,45%)}.button--error:hover{background-color:hsl(350,72%,40.5%)}.button--error:disabled:hover{background-color:hsl(350,80%,45%)}.button--error.button--inverse{background-color:rgba(0,0,0,0);border:1px solid hsl(350,80%,45%);color:hsl(350,80%,45%)}.button--error.button--inverse:hover{background-color:hsl(350,40%,96.7%);border-color:hsl(350,72%,40.5%);color:hsl(350,72%,40.5%)}.button--error.button--inverse.disabled:hover,.button--error.button--inverse:disabled:hover{background-color:rgba(0,0,0,0);border-color:hsl(350,80%,45%);color:hsl(350,80%,45%)}.button--warning{background-color:hsl(30,100%,36.5%)}.button--warning:hover{background-color:hsl(30,90%,32.85%)}.button--warning:disabled:hover{background-color:hsl(30,100%,36.5%)}.button--warning.button--inverse{background-color:rgba(0,0,0,0);border:1px solid hsl(30,100%,36.5%);color:hsl(30,100%,36.5%)}.button--warning.button--inverse:hover{background-color:hsl(30,50%,96.19%);border-color:hsl(30,90%,32.85%);color:hsl(30,90%,32.85%)}.button--warning.button--inverse.disabled:hover,.button--warning.button--inverse:disabled:hover{background-color:rgba(0,0,0,0);border-color:hsl(30,100%,36.5%);color:hsl(30,100%,36.5%)}.button--info{background-color:hsl(210,70%,46%)}.button--info:hover{background-color:hsl(210,63%,41.4%)}.button--info:disabled:hover{background-color:hsl(210,70%,46%)}.button--info.button--inverse{background-color:rgba(0,0,0,0);border:1px solid hsl(210,70%,46%);color:hsl(210,70%,46%)}.button--info.button--inverse:hover{background-color:hsl(210,35%,96.76%);border-color:hsl(210,63%,41.4%);color:hsl(210,63%,41.4%)}.button--info.button--inverse.disabled:hover,.button--info.button--inverse:disabled:hover{background-color:rgba(0,0,0,0);border-color:hsl(210,70%,46%);color:hsl(210,70%,46%)}.button--accent{background-color:#0080a7}.button--accent:hover{background-color:#006685}.button--accent:disabled:hover{background-color:#0080a7}.button--accent.button--inverse{background-color:rgba(0,0,0,0);border:1px solid #0080a7;color:#0080a7}.button--accent.button--inverse:hover{background-color:rgb(239.565,247.4519461078,249.855);border-color:#006685;color:#006685}.button--accent.button--inverse.disabled:hover,.button--accent.button--inverse:disabled:hover{background-color:rgba(0,0,0,0);border-color:#0080a7;color:#0080a7}.button--locked{background-color:#a0a8b4}.button--locked:hover{background-color:#6a7585}.button--locked:disabled:hover{background-color:#a0a8b4}.button--locked.button--inverse{background-color:rgba(0,0,0,0);border:1px solid #a0a8b4;color:#a0a8b4}.button--locked.button--inverse:hover{background-color:#f9fafc;border-color:#6a7585;color:#6a7585}.button--locked.button--inverse.disabled:hover,.button--locked.button--inverse:disabled:hover{background-color:rgba(0,0,0,0);border-color:#a0a8b4;color:#a0a8b4}.button--neutral{background-color:#a0a8b4}.button--neutral:hover{background-color:#6a7585}.button--neutral:disabled:hover{background-color:#a0a8b4}.button--neutral.button--inverse{background-color:rgba(0,0,0,0);border:1px solid #a0a8b4;color:#a0a8b4}.button--neutral.button--inverse:hover{background-color:#f9fafc;border-color:#6a7585;color:#6a7585}.button--neutral.button--inverse.disabled:hover,.button--neutral.button--inverse:disabled:hover{background-color:rgba(0,0,0,0);border-color:#a0a8b4;color:#a0a8b4}.button--black{color:#fff;background-color:#20252c}.button--black:hover{background-color:#20252c}button:focus,.button:focus{outline:none}button.icon-only,.button.icon-only{border:0;background-color:rgba(0,0,0,0);color:#a0a8b4;padding:0}button.icon-only:hover,.button.icon-only:hover{color:#6a7585}button.icon-only.primary,.button.icon-only.primary{color:#0080a7}button.icon-only.primary:hover,.button.icon-only.primary:hover{color:#006685}button.icon-only .icon,.button.icon-only .icon{margin-right:0}button.icon-only.success,.button.icon-only.success{color:hsl(110,100%,26.9%);background-color:rgba(0,0,0,0)}button.icon-only.success:hover,.button.icon-only.success:hover{color:hsl(110,90%,24.21%);background-color:rgba(0,0,0,0)}button.icon-only.success:disabled:hover,.button.icon-only.success:disabled:hover{color:hsl(110,100%,26.9%);background-color:rgba(0,0,0,0)}button.icon-only.error,.button.icon-only.error{color:hsl(350,80%,45%);background-color:rgba(0,0,0,0)}button.icon-only.error:hover,.button.icon-only.error:hover{color:hsl(350,72%,40.5%);background-color:rgba(0,0,0,0)}button.icon-only.error:disabled:hover,.button.icon-only.error:disabled:hover{color:hsl(350,80%,45%);background-color:rgba(0,0,0,0)}button.icon-only.warning,.button.icon-only.warning{color:hsl(30,100%,36.5%);background-color:rgba(0,0,0,0)}button.icon-only.warning:hover,.button.icon-only.warning:hover{color:hsl(30,90%,32.85%);background-color:rgba(0,0,0,0)}button.icon-only.warning:disabled:hover,.button.icon-only.warning:disabled:hover{color:hsl(30,100%,36.5%);background-color:rgba(0,0,0,0)}button.icon-only.info,.button.icon-only.info{color:hsl(210,70%,46%);background-color:rgba(0,0,0,0)}button.icon-only.info:hover,.button.icon-only.info:hover{color:hsl(210,63%,41.4%);background-color:rgba(0,0,0,0)}button.icon-only.info:disabled:hover,.button.icon-only.info:disabled:hover{color:hsl(210,70%,46%);background-color:rgba(0,0,0,0)}button.icon-only.accent,.button.icon-only.accent{color:#0080a7;background-color:rgba(0,0,0,0)}button.icon-only.accent:hover,.button.icon-only.accent:hover{color:#006685;background-color:rgba(0,0,0,0)}button.icon-only.accent:disabled:hover,.button.icon-only.accent:disabled:hover{color:#0080a7;background-color:rgba(0,0,0,0)}button.icon-only.locked,.button.icon-only.locked{color:#a0a8b4;background-color:rgba(0,0,0,0)}button.icon-only.locked:hover,.button.icon-only.locked:hover{color:#6a7585;background-color:rgba(0,0,0,0)}button.icon-only.locked:disabled:hover,.button.icon-only.locked:disabled:hover{color:#a0a8b4;background-color:rgba(0,0,0,0)}button.icon-only.neutral,.button.icon-only.neutral{color:#a0a8b4;background-color:rgba(0,0,0,0)}button.icon-only.neutral:hover,.button.icon-only.neutral:hover{color:#6a7585;background-color:rgba(0,0,0,0)}button.icon-only.neutral:disabled:hover,.button.icon-only.neutral:disabled:hover{color:#a0a8b4;background-color:rgba(0,0,0,0)}button.de-emphasize,.button.de-emphasize{border:1px solid #d1d7e0;background-color:rgba(0,0,0,0);color:#444d59}button.de-emphasize:focus,button.de-emphasize:hover,.button.de-emphasize:focus,.button.de-emphasize:hover{background-color:#f9fafc;border-color:#a0a8b4;color:#444d59}button.de-emphasize.link,.button.de-emphasize.link{border-left:0;border-right:0;border-top:0}button.de-emphasize.no-border,.button.de-emphasize.no-border{border:0}button.de-emphasize.light,.button.de-emphasize.light{color:#a0a8b4}button.de-emphasize.light:hover,.button.de-emphasize.light:hover{color:#6a7585;background-color:rgba(0,0,0,0)}button.expand,button.collapse,.button.expand,.button.collapse{font-size:.875rem;letter-spacing:.05em;position:relative;text-transform:uppercase}button.expand::after,button.collapse::after,.button.expand::after,.button.collapse::after{height:1.5rem;width:1.5rem;margin-left:.25rem;display:inline-block;vertical-align:bottom;opacity:.5}button.expand::after,.button.expand::after{content:url("https://cdn.corvusinsurance.com/images/expand-b15a8123a43f7e6cb4b69c72fc20afde.svg")}button.collapse::after,.button.collapse::after{content:url("https://cdn.corvusinsurance.com/images/collapse-853d11b30dcd8dfcd05f93608999db95.svg")}button .icon,.button .icon{height:1.3333333333em;width:1.3333333333em;line-height:1;margin-right:.25rem;vertical-align:middle}button .icon--large,.button .icon--large{margin:0 auto .5rem auto;display:block;height:4rem;width:4rem}.button.disabled,.button:disabled{opacity:.5;pointer-events:none}a.button{display:inline-block}.link-button{background:none;border:none;padding:0;color:#0080a7;text-decoration:none;cursor:pointer;float:right}.file-uploader__label,.link{border:0;border-bottom:1px solid #0080a7;background-color:rgba(0,0,0,0);border-radius:0;color:#006685;font-weight:400;transition:background-color color 200ms ease-in-out;padding:0 1px;cursor:pointer}.file-uploader__label:hover,.link:hover,.file-uploader__label:focus,.link:focus{color:#006685;background-color:rgb(239.565,247.4519461078,249.855)}.link.fw700{font-weight:700}.link.iconify{border-bottom:0;color:#0080a7}.link.iconify:hover,.link.iconify:focus{background-color:rgba(0,0,0,0);color:#006685}.link.iconify svg{pointer-events:none}.link.inline-bold{color:#444d59;font-weight:600}.link+.link{margin-left:1.5rem}.link.small{font-size:.875rem;padding:0 1px}.link.de-emphasize{border-color:#d1d7e0;color:#6a7585}.link.de-emphasize:focus,.link.de-emphasize:hover{background-color:#ebeef3}.link.success{background-color:rgba(0,0,0,0);color:hsl(110,100%,26.9%);border-bottom-color:hsl(110,100%,26.9%)}.link.success:hover{background-color:rgba(0,0,0,0);color:hsl(110,90%,24.21%);border-bottom-color:hsl(110,90%,24.21%)}.link.success:disabled:hover{background-color:rgba(0,0,0,0);color:hsl(110,100%,26.9%);border-bottom-color:hsl(110,100%,26.9%)}.link.error{background-color:rgba(0,0,0,0);color:hsl(350,80%,45%);border-bottom-color:hsl(350,80%,45%)}.link.error:hover{background-color:rgba(0,0,0,0);color:hsl(350,72%,40.5%);border-bottom-color:hsl(350,72%,40.5%)}.link.error:disabled:hover{background-color:rgba(0,0,0,0);color:hsl(350,80%,45%);border-bottom-color:hsl(350,80%,45%)}.link.warning{background-color:rgba(0,0,0,0);color:hsl(30,100%,36.5%);border-bottom-color:hsl(30,100%,36.5%)}.link.warning:hover{background-color:rgba(0,0,0,0);color:hsl(30,90%,32.85%);border-bottom-color:hsl(30,90%,32.85%)}.link.warning:disabled:hover{background-color:rgba(0,0,0,0);color:hsl(30,100%,36.5%);border-bottom-color:hsl(30,100%,36.5%)}.link.info{background-color:rgba(0,0,0,0);color:hsl(210,70%,46%);border-bottom-color:hsl(210,70%,46%)}.link.info:hover{background-color:rgba(0,0,0,0);color:hsl(210,63%,41.4%);border-bottom-color:hsl(210,63%,41.4%)}.link.info:disabled:hover{background-color:rgba(0,0,0,0);color:hsl(210,70%,46%);border-bottom-color:hsl(210,70%,46%)}.link.accent{background-color:rgba(0,0,0,0);color:#0080a7;border-bottom-color:#0080a7}.link.accent:hover{background-color:rgba(0,0,0,0);color:#006685;border-bottom-color:#006685}.link.accent:disabled:hover{background-color:rgba(0,0,0,0);color:#0080a7;border-bottom-color:#0080a7}.link.locked{background-color:rgba(0,0,0,0);color:#a0a8b4;border-bottom-color:#a0a8b4}.link.locked:hover{background-color:rgba(0,0,0,0);color:#6a7585;border-bottom-color:#6a7585}.link.locked:disabled:hover{background-color:rgba(0,0,0,0);color:#a0a8b4;border-bottom-color:#a0a8b4}.link.neutral{background-color:rgba(0,0,0,0);color:#a0a8b4;border-bottom-color:#a0a8b4}.link.neutral:hover{background-color:rgba(0,0,0,0);color:#6a7585;border-bottom-color:#6a7585}.link.neutral:disabled:hover{background-color:rgba(0,0,0,0);color:#a0a8b4;border-bottom-color:#a0a8b4}.product-lines{margin-bottom:2rem;display:flex;align-items:stretch}.product-lines button{position:relative;flex:1 0 21rem;padding-left:2rem;padding-right:2rem;white-space:normal;flex-direction:column;justify-content:flex-start;align-items:flex-start}.product-lines button.loading .icon-refresh{position:absolute;left:1rem}.product-lines button:nth-last-child(n+2){margin-right:1.5rem}.product-lines .button--de-emphasize{text-align:left;padding:1.5rem;background-color:#fff}.product-lines .button--de-emphasize div{font-weight:400;min-height:4.5rem}.product-lines h3{margin-bottom:1rem}.product-lines--old button{align-items:center}.coverage-select{row-gap:1.5rem;flex-wrap:wrap}@media screen and (min-width: 30rem)and (max-width: 64rem){.product-lines button{flex:1 0 18rem}}@media screen and (max-width: 30rem){.product-lines button{margin-bottom:0 0 1.5rem 0;flex:1;white-space:nowrap}button,.button{white-space:normal}}.max-link .link{max-width:20rem;overflow:hidden;text-overflow:ellipsis}.max-link .teolink{max-width:30rem;overflow:hidden;text-overflow:ellipsis}.elm-select-input-wrapper,.dropdown-roles,.form__group .radio__group,[type=color],[type=date],[type=datetime],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],input:not([type]),textarea,select,.input,div.form__control{border:1px solid #d1d7e0;border-radius:3px;background-color:#fff;color:#444d59;padding:1rem 1.5rem;width:100%;transition:border-color 200ms ease-in-out;-webkit-appearance:none;outline:0;box-shadow:0 1px .25rem rgba(32,37,44,.1)}[type=color]:hover,[type=date]:hover,[type=datetime]:hover,[type=datetime-local]:hover,[type=email]:hover,[type=month]:hover,[type=number]:hover,[type=password]:hover,[type=search]:hover,[type=tel]:hover,[type=text]:hover,[type=time]:hover,[type=url]:hover,[type=week]:hover,input:not([type]):hover,textarea:hover,select:hover,.input:hover,div.form__control:hover{border-color:#a0a8b4}[type=color]:focus,[type=date]:focus,[type=datetime]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,input:not([type]):focus,textarea:focus,select:focus,.input:focus,div.form__control:focus{border-color:#a0a8b4;box-shadow:inset 0 1px .25rem rgba(32,37,44,.1)}[type=color]:disabled,[type=color].disabled,[type=date]:disabled,[type=date].disabled,[type=datetime]:disabled,[type=datetime].disabled,[type=datetime-local]:disabled,[type=datetime-local].disabled,[type=email]:disabled,[type=email].disabled,[type=month]:disabled,[type=month].disabled,[type=number]:disabled,[type=number].disabled,[type=password]:disabled,[type=password].disabled,[type=search]:disabled,[type=search].disabled,[type=tel]:disabled,[type=tel].disabled,[type=text]:disabled,[type=text].disabled,[type=time]:disabled,[type=time].disabled,[type=url]:disabled,[type=url].disabled,[type=week]:disabled,[type=week].disabled,input:not([type]):disabled,input:not([type]).disabled,textarea:disabled,textarea.disabled,select:disabled,select.disabled,.input:disabled,.input.disabled,div.form__control:disabled,div.form__control.disabled{background-color:#f9fafc;border-color:#d1d7e0;color:#6a7585;cursor:not-allowed;pointer-events:none}[type=color]:invalid,[type=date]:invalid,[type=datetime]:invalid,[type=datetime-local]:invalid,[type=email]:invalid,[type=month]:invalid,[type=number]:invalid,[type=password]:invalid,[type=search]:invalid,[type=tel]:invalid,[type=text]:invalid,[type=time]:invalid,[type=url]:invalid,[type=week]:invalid,input:not([type]):invalid,textarea:invalid,select:invalid,.input:invalid,div.form__control:invalid{box-shadow:0 1px .25rem rgba(32,37,44,.1)}[type=color] .small,[type=date] .small,[type=datetime] .small,[type=datetime-local] .small,[type=email] .small,[type=month] .small,[type=number] .small,[type=password] .small,[type=search] .small,[type=tel] .small,[type=text] .small,[type=time] .small,[type=url] .small,[type=week] .small,input:not([type]) .small,textarea .small,select .small,.input .small,div.form__control .small{padding:.5rem 1rem}[type=color].success,[type=date].success,[type=datetime].success,[type=datetime-local].success,[type=email].success,[type=month].success,[type=number].success,[type=password].success,[type=search].success,[type=tel].success,[type=text].success,[type=time].success,[type=url].success,[type=week].success,input:not([type]).success,textarea.success,select.success,.input.success,div.form__control.success{border-color:hsl(110,100%,26.9%);color:hsl(110,90%,24.21%)}[type=color].error,[type=date].error,[type=datetime].error,[type=datetime-local].error,[type=email].error,[type=month].error,[type=number].error,[type=password].error,[type=search].error,[type=tel].error,[type=text].error,[type=time].error,[type=url].error,[type=week].error,input:not([type]).error,textarea.error,select.error,.input.error,div.form__control.error{border-color:hsl(350,80%,45%);color:hsl(350,72%,40.5%)}[type=color].warning,[type=date].warning,[type=datetime].warning,[type=datetime-local].warning,[type=email].warning,[type=month].warning,[type=number].warning,[type=password].warning,[type=search].warning,[type=tel].warning,[type=text].warning,[type=time].warning,[type=url].warning,[type=week].warning,input:not([type]).warning,textarea.warning,select.warning,.input.warning,div.form__control.warning{border-color:hsl(30,100%,36.5%);color:hsl(30,90%,32.85%)}[type=color].info,[type=date].info,[type=datetime].info,[type=datetime-local].info,[type=email].info,[type=month].info,[type=number].info,[type=password].info,[type=search].info,[type=tel].info,[type=text].info,[type=time].info,[type=url].info,[type=week].info,input:not([type]).info,textarea.info,select.info,.input.info,div.form__control.info{border-color:hsl(210,70%,46%);color:hsl(210,63%,41.4%)}[type=color].accent,[type=date].accent,[type=datetime].accent,[type=datetime-local].accent,[type=email].accent,[type=month].accent,[type=number].accent,[type=password].accent,[type=search].accent,[type=tel].accent,[type=text].accent,[type=time].accent,[type=url].accent,[type=week].accent,input:not([type]).accent,textarea.accent,select.accent,.input.accent,div.form__control.accent{border-color:#0080a7;color:#006685}[type=color].locked,[type=date].locked,[type=datetime].locked,[type=datetime-local].locked,[type=email].locked,[type=month].locked,[type=number].locked,[type=password].locked,[type=search].locked,[type=tel].locked,[type=text].locked,[type=time].locked,[type=url].locked,[type=week].locked,input:not([type]).locked,textarea.locked,select.locked,.input.locked,div.form__control.locked{border-color:#a0a8b4;color:#6a7585}[type=color].neutral,[type=date].neutral,[type=datetime].neutral,[type=datetime-local].neutral,[type=email].neutral,[type=month].neutral,[type=number].neutral,[type=password].neutral,[type=search].neutral,[type=tel].neutral,[type=text].neutral,[type=time].neutral,[type=url].neutral,[type=week].neutral,input:not([type]).neutral,textarea.neutral,select.neutral,.input.neutral,div.form__control.neutral{border-color:#a0a8b4;color:#6a7585}[type=color]::-webkit-input-placeholder,[type=date]::-webkit-input-placeholder,[type=datetime]::-webkit-input-placeholder,[type=datetime-local]::-webkit-input-placeholder,[type=email]::-webkit-input-placeholder,[type=month]::-webkit-input-placeholder,[type=number]::-webkit-input-placeholder,[type=password]::-webkit-input-placeholder,[type=search]::-webkit-input-placeholder,[type=tel]::-webkit-input-placeholder,[type=text]::-webkit-input-placeholder,[type=time]::-webkit-input-placeholder,[type=url]::-webkit-input-placeholder,[type=week]::-webkit-input-placeholder,input:not([type])::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#6a7585;font-weight:300;opacity:1}[type=color]::-moz-placeholder,[type=date]::-moz-placeholder,[type=datetime]::-moz-placeholder,[type=datetime-local]::-moz-placeholder,[type=email]::-moz-placeholder,[type=month]::-moz-placeholder,[type=number]::-moz-placeholder,[type=password]::-moz-placeholder,[type=search]::-moz-placeholder,[type=tel]::-moz-placeholder,[type=text]::-moz-placeholder,[type=time]::-moz-placeholder,[type=url]::-moz-placeholder,[type=week]::-moz-placeholder,input:not([type])::-moz-placeholder,textarea::-moz-placeholder{color:#6a7585;font-weight:300;opacity:1}[type=color]:-ms-input-placeholder,[type=date]:-ms-input-placeholder,[type=datetime]:-ms-input-placeholder,[type=datetime-local]:-ms-input-placeholder,[type=email]:-ms-input-placeholder,[type=month]:-ms-input-placeholder,[type=number]:-ms-input-placeholder,[type=password]:-ms-input-placeholder,[type=search]:-ms-input-placeholder,[type=tel]:-ms-input-placeholder,[type=text]:-ms-input-placeholder,[type=time]:-ms-input-placeholder,[type=url]:-ms-input-placeholder,[type=week]:-ms-input-placeholder,input:not([type]):-ms-input-placeholder,textarea:-ms-input-placeholder{color:#6a7585;font-weight:300;opacity:1}[type=color]::-ms-input-placeholder,[type=date]::-ms-input-placeholder,[type=datetime]::-ms-input-placeholder,[type=datetime-local]::-ms-input-placeholder,[type=email]::-ms-input-placeholder,[type=month]::-ms-input-placeholder,[type=number]::-ms-input-placeholder,[type=password]::-ms-input-placeholder,[type=search]::-ms-input-placeholder,[type=tel]::-ms-input-placeholder,[type=text]::-ms-input-placeholder,[type=time]::-ms-input-placeholder,[type=url]::-ms-input-placeholder,[type=week]::-ms-input-placeholder,input:not([type])::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#6a7585;font-weight:300;opacity:1}[type=color]::placeholder,[type=date]::placeholder,[type=datetime]::placeholder,[type=datetime-local]::placeholder,[type=email]::placeholder,[type=month]::placeholder,[type=number]::placeholder,[type=password]::placeholder,[type=search]::placeholder,[type=tel]::placeholder,[type=text]::placeholder,[type=time]::placeholder,[type=url]::placeholder,[type=week]::placeholder,input:not([type])::placeholder,textarea::placeholder{color:#6a7585;font-weight:300;opacity:1}textarea{line-height:1.5;padding:1rem 1.5rem;min-height:9rem;resize:vertical}textarea.textarea--large{min-height:16rem}textarea.textarea--small{min-height:3rem}textarea.success{border-color:hsl(110,100%,26.9%)}textarea.error{border-color:hsl(350,80%,45%)}textarea.warning{border-color:hsl(30,100%,36.5%)}textarea.info{border-color:hsl(210,70%,46%)}textarea.accent{border-color:#0080a7}textarea.locked{border-color:#a0a8b4}textarea.neutral{border-color:#a0a8b4}.input-tds{border-radius:.1875rem;border:1px solid rgba(70,73,77,.6);background:#fff;height:2.75rem;padding:.0625rem 0rem .0625rem .8125rem}.input-tds.input-tds--error{border:2px solid #ef7a00;box-shadow:6px 0px 0px 0px #ef7a00 inset;padding-left:.75rem}.select-wrapper{position:relative;width:100%}.select-wrapper::after{border-left:1px solid #d1d7e0;background-color:#f9fafc;border-bottom-right-radius:3px;border-top-right-radius:3px;transition:border-color 200ms ease-in-out;position:absolute;top:1px;right:1px;bottom:1px;padding:1rem .75rem;pointer-events:none;width:3rem;display:block;content:url("https://cdn.corvusinsurance.com/images/chevron-down-1b1be5a1cc24b4c6a7c17489b8ed33fb.svg")}.select-wrapper:hover::after{border-color:#a0a8b4}.select-wrapper.select--single-option::after{content:none}.select-wrapper.select--no-arrow::after{content:none}.select-wrapper.select--no-arrow select{background:none;background-color:#f9fafc}.select-wrapper select{padding-right:3rem}.select-wrapper select::-ms-expand{display:none}.select--tag{position:relative;line-height:0;max-width:50%}.select--tag::after{content:url("https://cdn.corvusinsurance.com/images/chevron-down-1b1be5a1cc24b4c6a7c17489b8ed33fb.svg");height:1rem;width:1rem;position:absolute;top:50%;right:.25rem;background-color:rgb(239.565,247.4519461078,249.855);pointer-events:none;transform:translateY(-50%)}.select--tag select{background-color:rgb(239.565,247.4519461078,249.855);border:1px solid #0080a7;color:#006685;font-size:.75rem;font-weight:600;line-height:1;padding:.125rem 1rem .125rem .25rem;text-transform:uppercase}.select--tag select:hover{border-color:#006685;color:#006685}.select--tag select::-ms-expand{display:none}.select--tag select option{text-transform:none}select{cursor:pointer}select:-moz-focusring,select::-moz-focus-inner{color:rgba(0,0,0,0) !important;text-shadow:0 0 0 #000 !important}select.empty{color:#6a7585}select option{color:#444d59}select option:not(:checked){color:#444d59}select option:disabled{background-color:#f9fafc}.form-message{border-radius:3px;font-size:.875rem;font-weight:600;margin-top:.5rem;margin-right:1rem;padding:.25rem .5rem;display:none}.form-message.success{background-color:hsl(110,50%,95.614%);border:1px solid hsl(110,90%,34.21%);color:hsl(110,100%,26.9%);display:inline-block}.form-message.error{background-color:hsl(350,40%,96.7%);border:1px solid hsl(350,72%,50.5%);color:hsl(350,80%,45%);display:inline-block}.form-message.warning{background-color:hsl(30,50%,96.19%);border:1px solid hsl(30,90%,42.85%);color:hsl(30,100%,36.5%);display:inline-block}.form-message.info{background-color:hsl(210,35%,96.76%);border:1px solid hsl(210,63%,51.4%);color:hsl(210,70%,46%);display:inline-block}.form-message.accent{background-color:rgb(239.565,247.4519461078,249.855);border:1px solid #09a8d9;color:#0080a7;display:inline-block}.form-message.locked{background-color:#f9fafc;border:1px solid #d1d7e0;color:#a0a8b4;display:inline-block}.form-message.neutral{background-color:#f9fafc;border:1px solid #d1d7e0;color:#a0a8b4;display:inline-block}.text-form label{margin-bottom:.5rem;font-size:.875rem;font-weight:600;display:block}.text-form label.inline{font-size:1rem;font-weight:400;display:inline-block}.form-control{padding-top:.5rem;padding-bottom:.5rem}.form-control.success [type=text],.form-control.success [type=password],.form-control.success [type=email],.form-control.success [type=tel]{border-color:hsl(110,100%,26.9%)}.form-control.success label{color:hsl(110,100%,26.9%)}.form-control.error [type=text],.form-control.error [type=password],.form-control.error [type=email],.form-control.error [type=tel]{border-color:hsl(350,80%,45%)}.form-control.error label{color:hsl(350,80%,45%)}.form-control.warning [type=text],.form-control.warning [type=password],.form-control.warning [type=email],.form-control.warning [type=tel]{border-color:hsl(30,100%,36.5%)}.form-control.warning label{color:hsl(30,100%,36.5%)}.form-control.info [type=text],.form-control.info [type=password],.form-control.info [type=email],.form-control.info [type=tel]{border-color:hsl(210,70%,46%)}.form-control.info label{color:hsl(210,70%,46%)}.form-control.accent [type=text],.form-control.accent [type=password],.form-control.accent [type=email],.form-control.accent [type=tel]{border-color:#0080a7}.form-control.accent label{color:#0080a7}.form-control.locked [type=text],.form-control.locked [type=password],.form-control.locked [type=email],.form-control.locked [type=tel]{border-color:#a0a8b4}.form-control.locked label{color:#a0a8b4}.form-control.neutral [type=text],.form-control.neutral [type=password],.form-control.neutral [type=email],.form-control.neutral [type=tel]{border-color:#a0a8b4}.form-control.neutral label{color:#a0a8b4}.form-control--max-width{max-width:20rem}.message-upload-combo{display:flex}.message-upload-combo__left{flex-basis:40%}.message-upload-combo__message{border-bottom-right-radius:0;border-top-right-radius:0;border-right:0;height:100%;resize:none}.message-upload-combo__right{display:flex;flex-direction:column;flex-basis:60%}.message-upload-combo__right__submit{border-bottom-right-radius:0;border-bottom-left-radius:0}.message-upload-combo__right .file-uploader__form:first-child{border-top-left-radius:0}.message-upload-combo__right .file-uploader__form:last-child{border-bottom-left-radius:0}.message-upload-combo__right .file-uploader__form:nth-last-child(n+2){border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:0;border-top-left-radius:0;box-shadow:none}@media screen and (max-width: 30rem){.message-upload-combo{flex-direction:column}}#tria-selected:not(:checked)+label[for]{color:rgba(0,0,0,0)}.percentage-input{display:block;position:relative}.percentage-input__input{text-align:right;padding-right:2rem}.percentage-input::after{content:"%";padding-top:1rem;padding-bottom:1rem;position:absolute;top:1px;right:1rem}form.ac-billing{display:flex}.ac-billing{display:flex}.ac-billing__field{width:40%}.ac-billing__field input{width:calc(100% - 1.5rem)}.ac-billing__field.error{background-color:hsl(350,40%,96.7%);outline-color:hsl(350,40%,96.7%);position:relative}.ac-billing__email{flex-grow:1}.ac-billing__email input{width:calc(100% - 1.5rem)}.ac-billing__vertical{display:flex;flex-direction:column;gap:1.5rem}.ac-billing__vertical.error{background-color:hsl(350,40%,96.7%);outline-color:hsl(350,40%,96.7%);position:relative}.ac-billing__errors{margin-top:.5rem}.ac-billing__ph{flex-basis:50%}.ac-billing__ph input,.ac-billing__ph .alert{width:calc(100% - 1.5rem)}.ac-billing__ph .alert{margin-top:1rem}.ac-billing__buttons{text-align:right}.ac-billing__buttons .button{margin-left:1rem;padding-left:2rem;padding-right:2rem}.ac-billing__buttons-flex{display:flex;align-items:flex-end;gap:1rem}textarea.form__control{display:block;min-height:6.5rem}textarea.textarea--markup{height:40rem;font-family:"IBM Plex Mono",monospace}.add-client-contact-form{width:100%;padding-bottom:1.5rem}.form .add-client-contact-form{padding:0;background-color:rgba(0,0,0,0);border:0;box-shadow:none}.form{border:1px solid #d1d7e0;background-color:#ebeef3;border-radius:12px;box-shadow:inset 0 1px .25rem rgba(32,37,44,.1);padding:2rem}.form.error{border-color:hsl(350,80%,45%);background-color:hsl(350,40%,96.7%)}.form.success{border-color:hsl(110,100%,26.9%);background-color:hsl(110,50%,95.614%)}.form.success span{color:hsl(110,100%,26.9%)}@media screen and (max-width: 30rem){.form{padding:1rem}}.form__section{display:flex;flex-wrap:wrap;margin-right:-1.5rem;position:relative;margin-bottom:1.5rem}.form__section::after{content:"";border-bottom:1px solid #d1d7e0;height:0;position:absolute;right:-0.5rem;bottom:0;left:-2rem}.form__section:last-child{margin-bottom:-1rem}.form__section:last-child::after{content:none}.form__section--view-only::after{content:none}.form__section .target-premium-calc__heading{margin-bottom:1.5rem}.form__section .target-premium-calc__heading .target-premium-calc__title{font-size:1rem;font-weight:bold;color:#444d59}.form__section .target-premium-calc__input{display:flex;margin-bottom:.5rem}.form__section .target-premium-calc .radio__group{border:0;box-shadow:none;background:unset;padding-left:0}.form__section .target-premium-calc .radio__group .radio{margin-right:0;padding-right:0;white-space:nowrap}.form__section--agreements .form__column:nth-last-child(-n+3){flex:2}.form__section--agreements .form__column:last-child{flex:3}.form__section--agreements .form__column:first-child{flex:11}.form__section--agreements .form__column:nth-last-child(4){flex:7}.form__section--agreements .form__column:nth-last-child(n+2) .form__control,.form__section--agreements .form__column:nth-last-child(n+2) .select-wrapper select{border-right:0}.form__section--agreements .form__column__3:first-child{flex:9}.form__section--agreements .options__overview{display:flex;padding:1rem 1.5rem 0;background-color:#fff;border:1px solid #d1d7e0;border-bottom:0}.form__section--agreements .options__list{display:flex;padding:0 1.5rem 1rem;background-color:#fff;border:1px solid #d1d7e0;border-top:0}.form__section--agreements .options__list-item{flex:1;max-width:50%;margin-right:1.5rem}.form__section--agreements .options__list-item:last-child{margin-right:0}.form__section--agreements .options__list-item .form__control{border-radius:3px}.form__section--agreements .options__label{font-size:.75rem;font-weight:600;letter-spacing:.05em;line-height:1.2;margin:0;text-transform:uppercase;margin-bottom:0}.form__section--agreements .form__control,.form__section--agreements .select-wrapper select{border-radius:0}.form__section--agreements .form__row{padding-right:1.5rem}.form__section--agreements .form__group{display:flex;width:100%;margin-bottom:-1px}.form__section--agreements .form__group.options{display:block}.form__section--agreements .form__group .form__label{background-color:#fff;border-top:1px solid #d1d7e0;border-bottom:1px solid #d1d7e0;border-left:1px solid #d1d7e0;font-family:"Open Sans",sans-serif;font-size:1rem;font-weight:400;line-height:1.5;margin-bottom:1rem;letter-spacing:normal;margin-bottom:0;padding:1rem 1.5rem;text-transform:none}.form__section--agreements .form__group .form__control{border-right:0}.form__section--agreements .form__group:nth-child(2) :first-child .form__label{border-top-left-radius:3px}.form__section--agreements .form__group:nth-child(2) :last-child .form__label,.form__section--agreements .form__group:nth-child(2) :last-child .form__control{border-top-right-radius:3px}.form__section--agreements .form__group:last-child{margin-bottom:1.5rem}.form__section--agreements .form__group:last-child :first-child .form__label{border-bottom-left-radius:3px}.form__section--agreements .form__group:last-child :last-child .form__label,.form__section--agreements .form__group:last-child :last-child .form__control{border-bottom-right-radius:3px}.form__section--agreements .form__group :last-child .form__label,.form__section--agreements .form__group :last-child .form__control{border-right:1px solid #d1d7e0}.form__section--subjectivities .form__list{margin-right:0}.form__section--subjectivities .form__row--labels{padding-left:1.5rem;padding-right:1.5rem}.form__section--subjectivities .form__row--labels .form__column:first-of-type{width:1.5rem}.form__section--subjectivities .item{display:flex}.form__section--subjectivities .item--add :nth-child(n+2){border-bottom-left-radius:0;border-top-left-radius:0}.form__section--subjectivities .item--add :nth-last-child(n+2){border-bottom-right-radius:0;border-top-right-radius:0;border-right:0}.form__section--subjectivities .item--add .radio__group{flex-wrap:nowrap;width:auto;white-space:nowrap}.form__section--subjectivities .item--edit{padding:0}.form__section--subjectivities .item--edit .radio__group{border:0;box-shadow:none;flex-direction:column;margin-right:1.5rem;padding:1rem 0 1rem 1.5rem;width:7.5rem}.form__section--subjectivities .item--edit .radio__group .radio{margin-right:0;padding-right:0;white-space:nowrap}.form__section--subjectivities .item--edit .form__control{flex:1;margin-right:1.5rem;border-radius:0;border-top:0;border-bottom:0}.form__section--subjectivities .item--edit .item__buttons{display:flex;flex-direction:column;align-items:stretch;margin:1rem 1.5rem 1rem 0;width:8rem}.form__section--subjectivities .item--edit .item__buttons .button:nth-last-child(n+2){margin-bottom:.5rem}.form__section--subjectivities .item--received{background-color:#f9fafc;color:#6a7585}.form__section--subjectivities .form__column{margin-left:1.5rem}.form__section--subjectivities .form__column:first-child{margin-left:0}.form__section--subjectivities .form__column:first-child button:disabled{color:rgb(232.9375,235.1875,238.5625);cursor:default}.form__section--subjectivities .form__column:nth-child(2){margin-left:1.5rem;width:6rem;white-space:nowrap}.form__section--subjectivities .form__column:nth-child(3){flex:1}.form__section--subjectivities .form__column:nth-child(4){min-width:4.5rem}.form__section--subjectivities .form__column:nth-child(5){min-width:2rem;text-align:center}.form__section--subjectivities .form__column .toggle-switch{line-height:1.5}.form__section--subjectivities .form__column .toggle-switch label[for],.form__section--subjectivities .form__column .toggle-switch span{margin-bottom:1rem}.form__section .form__control--split{display:flex}.form__section .form__control--split :first-child{border-bottom-right-radius:0;border-top-right-radius:0;border-right:0}.form__section .form__control--split :last-child{border-bottom-left-radius:0;border-top-left-radius:0;border-left:0}.form__section--address .form__group{flex:1;margin-right:-1px}.form__section--address .form__group:first-child .form__control,.form__section--address .form__group:first-child .form-control input{border-bottom-left-radius:3px;border-top-left-radius:3px}.form__section--address .form__group:last-child{flex:0;margin-right:0}.form__section--address .form__group:last-child .form__control,.form__section--address .form__group:last-child .form-control input{border-bottom-right-radius:3px;border-top-right-radius:3px;min-width:7rem}.form__section--address .form__group:nth-last-child(n+2){padding-right:0}.form__section--address .form__control,.form__section--address .form-control input{border-radius:0;position:relative}.form__section--address .form__control:hover,.form__section--address .form__control:focus,.form__section--address .form-control input:hover,.form__section--address .form-control input:focus{z-index:1}.form__section--low{display:flex;align-items:flex-end}.form__footer{background-color:#fff;border-bottom-left-radius:12px;border-bottom-right-radius:12px;margin:-1.5rem -2rem -2rem -2rem;padding:1.5rem}.form__row{display:flex;margin-right:-1.5rem;width:100%}.form__row:last-child{margin-bottom:-1rem}.form__row--pair{outline:1rem solid rgba(0,0,0,0);flex-wrap:wrap;margin-bottom:1.5rem}.form__row--pair:last-of-type{margin-bottom:0}.form__row--pair .form__group:nth-child(2){padding-right:0}.form__row--pair .form__group--close{margin-right:0;padding-left:1rem}.form__row--error-message{color:hsl(350,80%,45%);font-size:.875rem;font-style:italic;font-weight:300}.form__row--error{background-color:hsl(350,40%,96.7%);outline-color:hsl(350,40%,96.7%);position:relative}.form__row--error .form__label{color:hsl(350,80%,45%)}.form__row--error button.icon-only{color:hsl(350,80%,45%);opacity:.5}.form__row--error button.icon-only:hover{opacity:.75}.form__row--error .pair-error-msg{flex-basis:100%;color:hsl(350,80%,45%);font-size:.875rem;font-style:italic;font-weight:300;margin-top:-0.5rem}.form__group{margin-bottom:1.5rem;padding-right:1.5rem;position:relative}.form__group .form-control{padding:0}.form__group .auto-result{margin-bottom:0}.form__group .permission-editor__with-clickable{margin-bottom:0;min-width:10rem}.form__group--half{flex-basis:50%;max-width:50%}.form__group--quarter{flex-basis:25%;max-width:25%}.form__group--three-quarters{flex-basis:75%;max-width:75%}.form__group--third{flex-basis:33.33%;max-width:33.33%}.form__group--two-thirds{flex-basis:66.66%;max-width:66.66%}.form__group--full{flex-basis:100%;max-width:100%}.form__group--single{flex:1}.form__group--double{flex:2}.form__group--triple{flex:3}.form__group--options{flex:1;max-width:50%}.form__group--close{margin-right:1.5rem;padding-right:0;color:#6a7585;align-self:flex-end;line-height:3.5rem;cursor:pointer}.form__group--close .icon{font-size:1.375rem}.form__group .radio__group{padding:.5rem 1rem}.form__group .radio__group--tight{padding-left:.5rem;padding-right:.5rem}.form__group .radio__group--tight>.radio,.form__group .radio__group--tight>.checkbox{margin-right:0}.form__group .radio__group--normal{background-color:rgba(0,0,0,0);border:0;box-shadow:none}.step .form__group .radio__group{background-color:rgba(0,0,0,0);border:0;padding:0;box-shadow:none}.form__group .toggle-switch span,.form__group .toggle-switch label{display:inline-block;margin-bottom:0}.form__group .elm-datepicker--container,.form__group .elm-datepicker--input{width:100%;min-width:16rem}.form__group .form__control+.button--append{position:absolute;right:1.5rem;height:3.5rem;width:3.5rem}.form__group .form__control+.button--append .icon{height:1.5rem;width:1.5rem}.form__group--none{color:#a0a8b4}.form__group--top{border-left:5px solid hsl(171,100%,45%);font-weight:600;padding-left:5px}.form__columns{display:flex;margin-right:-2rem}.form__list{background-color:#fff;border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative;list-style-type:none;margin-right:2rem}.form__list--third{border:1px solid #d1d7e0;border-radius:3px;flex-basis:33.33%;max-width:33.33%}.form__list-item{border-bottom:1px solid #d1d7e0;padding:1rem 1.5rem;position:relative}.form__list-item:last-child{border-bottom:0}.form__list-item--code{font-family:"IBM Plex Mono",monospace}.form__list-item .endorsement__overview{display:flex;justify-content:flex-end}.form__list-item .endorsement__overview:first-child .endorsement__limit:last-child .form__control{border-top-right-radius:3px}.form__list-item .endorsement__overview:last-child .endorsement__limit:last-child .form__control{border-bottom-right-radius:3px}.form__list-item .endorsement__overview .link{margin-left:.5rem;margin-right:.5rem}.form__list-item .endorsement__overview .link:nth-last-child(-n+2){margin-right:-0.5rem}.form__list-item .endorsement__title{flex:1}.form__list-item .endorsement--multi-field{display:flex;flex-wrap:wrap;justify-content:flex-end;flex-basis:66.66%;max-width:66.66%}.form__list-item .endorsement--multi-field .endorsement__field{min-width:calc(50% - 1.5rem)}.form__list-item .endorsement--multi-field .endorsement__field:nth-last-child(n+2){margin-bottom:1.5rem}.form__list-item .endorsement--multi-field .endorsement__field--large{min-width:calc(100% - 1.5rem)}.form__list-item .endorsement--multi-field .endorsement__field--deletable{display:flex;align-items:center;flex-wrap:wrap}.form__list-item .endorsement--multi-field .endorsement__field--deletable .form__label{flex:1 0 100%}.form__list-item .endorsement--multi-field .endorsement__field--deletable .alert{right:5%}.form__list-item .endorsement--multi-field .endorsement__field--deletable .form__control{flex:1}.form__list-item .endorsement--midterm-multi-field{display:flex;flex-wrap:wrap;justify-content:flex-start;flex-basis:66.66%;max-width:66.66%}.form__list-item .endorsement--midterm-multi-field .endorsement__field{min-width:calc(50% - 1.5rem)}.form__list-item .endorsement--midterm-multi-field .endorsement__field:nth-last-child(n+2){margin-bottom:1.5rem}.form__list-item .endorsement--midterm-multi-field .endorsement__field--large{min-width:calc(100% - 1.5rem)}.form__list-item .endorsement--midterm-multi-field .endorsement__field--return__premium{margin-left:1.5rem}.form__list-item .endorsement--midterm-multi-field .endorsement__field--manuscript__premium{flex-basis:100%;max-width:100%;min-width:calc(66% - 1.5rem)}.form__list-item .endorsement--midterm-multi-field .endorsement__field--manuscript__field{min-width:calc(66% - 1.5rem)}.form__list-item .endorsement--midterm-multi-field .endorsement__field--tool-tip{background-image:url("https://cdn.corvusinsurance.com/images/info-290413627b2b613916d482295d327dfc.svg");height:1.25rem;width:1.25rem}.form__list-item .endorsement__limit{flex-basis:calc(33.33% + 1.5rem);max-width:calc(33.33% + 1.5rem);margin:calc(-1px - 1rem) calc(-1px - 1.5rem) calc(-1px - 1rem) 0}.form__list-item .endorsement__limit .form__control{border-radius:0;position:relative}.form__list-item .endorsement__limit .form__control:hover,.form__list-item .endorsement__limit .form__control:focus{z-index:1}.form__list-item .endorsement__field{display:inline-block;position:relative;flex-basis:33.33%;max-width:33.33%;margin-left:1.5rem}.form__list-item .endorsement__field--large{flex-basis:66.66%;max-width:66.66%}.form__list-item .endorsement__field .alert{position:absolute;right:0;bottom:0;border:0;background-color:rgba(0,0,0,0);margin-bottom:.5875rem;pointer-events:none}.form__list-item .endorsement__close{position:absolute;top:1rem;right:-2rem}.form__list-item .endorsement__options{display:flex;padding-top:2rem}.form__list-item .endorsement__options .form__group{flex:1;max-width:50%;margin-bottom:0}.form__list-item .endorsement__options .form__group:last-child{margin-right:0}.form__list-item .endorsement__address-group{margin-left:1.5rem;margin-bottom:2rem}.form__list-item .item__title{flex:1}.form__list-item .item__close{position:absolute;top:1rem;right:-2rem}.form__label{font-size:.75rem;font-weight:600;letter-spacing:.05em;line-height:1.2;margin:0;text-transform:uppercase;display:block;margin-bottom:.25rem}.form__label--required::after{content:" *"/"";color:#0080a7}.step .form__label{display:inline-block}.form__label .muted{font-weight:400;margin-left:.25rem;color:#6a7585;letter-spacing:normal;text-transform:none}.form__label .dropdown,.form__label .link{font-weight:400;letter-spacing:normal;float:right}.form__label .link{font-size:1rem;text-transform:none}.form__label.success{color:hsl(110,90%,24.21%)}.form__label.error{color:hsl(350,72%,40.5%)}.form__label.warning{color:hsl(30,90%,32.85%)}.form__label.info{color:hsl(210,63%,41.4%)}.form__label.accent{color:#006685}.form__label.locked{color:#6a7585}.form__label.neutral{color:#6a7585}.form__subgroup{margin-top:.5rem}.form__subgroup .form__label{font-weight:400}.form__optional .radio__group:nth-last-child(n+2){border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:0}.form__optional .form__details .form__control{border-top-left-radius:0;border-top-right-radius:0}.form__value,.form .toggle-switch{line-height:3.5rem}.input-error-div{height:1rem;color:hsl(350,80%,45%);font-size:.75rem;margin-bottom:-0.5rem}div .revenue-band-dropdown-header::before{content:"$50M+ Revenue or $500M+ AUM only:";font-weight:600;display:block;height:2em}.security-alert-form--char-count{position:absolute;bottom:1.5rem;right:.25rem;color:#6a7585}.security-alert-form--message{resize:none;min-height:6rem}.judgment-input--updated #judgment-other.form__control{border-color:#6a7585;font-weight:bold}.quote_option_label{font-size:.75rem;color:#006685;font-weight:bold}.phasing-plan-table{margin-bottom:0;position:static}.subjectivity_tester .form__section{margin-right:0}.subjectivity_tester .form__section::after{border-bottom:0}.subjectivity_tester .form__section:last-child{margin-bottom:0rem}button.submission-comprehension{background-color:hsl(245,100%,68%);display:inline-flex}button.submission-comprehension:hover,button.submission-comprehension:focus,button.submission-comprehension:active{background-color:hsl(245,55%,50%)}button.submission-comprehension span.submission-comprehension-icon{position:relative;right:.4em}button.submission-comprehension span.submission-comprehension-icon svg{fill:#fff}div.submission-comprehension-enabled{position:relative}div.submission-comprehension-enabled span.submission-comprehension-icon{position:absolute;top:.8em;left:1em;z-index:1}div.submission-comprehension-enabled span.submission-comprehension-icon svg{fill:#a0a8b4}div.submission-comprehension-enabled .tool-tip-a11y-trigger .tool-tip-a11y--top{background-color:hsl(245,80%,60%);display:flex;width:20em}div.submission-comprehension-enabled .tool-tip-a11y-trigger .tool-tip-a11y--top::before,div.submission-comprehension-enabled .tool-tip-a11y-trigger .tool-tip-a11y--top::after{border-style:solid;height:0;width:0;border-color:hsl(245,80%,60%) rgba(0,0,0,0) rgba(0,0,0,0);border-width:.375rem .375rem 0}div.submission-comprehension-enabled .tool-tip-a11y-trigger .tool-tip-a11y--top svg{fill:#fff;width:16px;margin-right:1em}div.submission-comprehension-enabled:focus-within span.submission-comprehension-icon svg{opacity:.5}div.submission-comprehension-enabled:focus-within span.submission-comprehension-icon .tool-tip-a11y--top svg{opacity:1}div.submission-comprehension-enabled input,div.submission-comprehension-enabled select,div.submission-comprehension-enabled textarea{border:2px solid #d1d7e0}div.submission-comprehension-enabled input:hover,div.submission-comprehension-enabled input:focus,div.submission-comprehension-enabled input:active,div.submission-comprehension-enabled select:hover,div.submission-comprehension-enabled select:focus,div.submission-comprehension-enabled select:active,div.submission-comprehension-enabled textarea:hover,div.submission-comprehension-enabled textarea:focus,div.submission-comprehension-enabled textarea:active{border-color:#a0a8b4}div.submission-comprehension-enabled input{padding-left:3em}div.submission-comprehension-enabled select{padding-left:3.5em}div.submission-comprehension-equal span.submission-comprehension-icon svg{fill:hsl(245,100%,68%)}div.submission-comprehension-equal input,div.submission-comprehension-equal select,div.submission-comprehension-equal textarea{border:2px solid hsl(245,100%,90%);color:hsl(245,80%,60%)}div.submission-comprehension-equal input:hover,div.submission-comprehension-equal input:focus,div.submission-comprehension-equal input:active,div.submission-comprehension-equal select:hover,div.submission-comprehension-equal select:focus,div.submission-comprehension-equal select:active,div.submission-comprehension-equal textarea:hover,div.submission-comprehension-equal textarea:focus,div.submission-comprehension-equal textarea:active{border-color:hsl(245,100%,83%)}div.submission-comprehension-nob{position:relative}div.submission-comprehension-nob span.submission-comprehension-icon{position:absolute;top:.8em;left:1em;z-index:1}div.submission-comprehension-nob span.submission-comprehension-icon svg{fill:hsl(245,100%,68%)}div.submission-comprehension-nob .tool-tip-a11y-trigger .tool-tip-a11y--top{background-color:hsl(245,80%,60%);display:flex;width:20em}div.submission-comprehension-nob .tool-tip-a11y-trigger .tool-tip-a11y--top::before,div.submission-comprehension-nob .tool-tip-a11y-trigger .tool-tip-a11y--top::after{border-style:solid;height:0;width:0;border-color:hsl(245,80%,60%) rgba(0,0,0,0) rgba(0,0,0,0);border-width:.375rem .375rem 0}div.submission-comprehension-nob .tool-tip-a11y-trigger .tool-tip-a11y--top svg{fill:#fff;width:16px;margin-right:1em}div.submission-comprehension-nob:focus-within span.submission-comprehension-icon svg{opacity:.5}div.submission-comprehension-nob:focus-within span.submission-comprehension-icon .tool-tip-a11y--top svg{opacity:1}div.submission-comprehension-nob input,div.submission-comprehension-nob select,div.submission-comprehension-nob textarea{border:2px solid #d1d7e0}div.submission-comprehension-nob input:hover,div.submission-comprehension-nob input:focus,div.submission-comprehension-nob input:active,div.submission-comprehension-nob select:hover,div.submission-comprehension-nob select:focus,div.submission-comprehension-nob select:active,div.submission-comprehension-nob textarea:hover,div.submission-comprehension-nob textarea:focus,div.submission-comprehension-nob textarea:active{border-color:#a0a8b4}div.submission-comprehension-nob input{padding-left:3em}div.submission-comprehension-nob select{padding-left:3.5em}div.submission-comprehension-nob-gray-icon span.submission-comprehension-icon svg{fill:#a0a8b4}div.submission-comprehension-nob-purple-text input,div.submission-comprehension-nob-purple-text select,div.submission-comprehension-nob-purple-text textarea{border:2px solid hsl(245,100%,90%);color:hsl(245,80%,60%)}div.submission-comprehension-nob-purple-text input:hover,div.submission-comprehension-nob-purple-text input:focus,div.submission-comprehension-nob-purple-text input:active,div.submission-comprehension-nob-purple-text select:hover,div.submission-comprehension-nob-purple-text select:focus,div.submission-comprehension-nob-purple-text select:active,div.submission-comprehension-nob-purple-text textarea:hover,div.submission-comprehension-nob-purple-text textarea:focus,div.submission-comprehension-nob-purple-text textarea:active{border-color:hsl(245,100%,83%)}.checkbox input,.radio input{border:0;clip:rect(1px, 1px, 1px, 1px);clip-path:inset(100%);height:1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px !important}.checkbox input:focus+label .checkbox__icon,.checkbox input:focus+label .radio__icon,.radio input:focus+label .checkbox__icon,.radio input:focus+label .radio__icon{fill:#444d59;filter:drop-shadow(0 3px 0 rgba(160, 168, 180, 0.1))}.checkbox input:disabled+label,.radio input:disabled+label{color:#6a7585;cursor:not-allowed}.checkbox input:disabled+label svg,.radio input:disabled+label svg{opacity:.5}.checkbox input.light+label .radio__icon,.radio input.light+label .radio__icon{fill:#fff}.checkbox__icon,.radio__icon{height:1.5rem;width:1.5rem;transition:fill 200ms ease-in-out;margin-right:.125rem;fill:#6a7585}.checkbox__icon .checked,.checkbox__icon .indeterminate,.radio__icon .checked,.radio__icon .indeterminate{transition:fill-opacity 200ms ease-in-out;fill-opacity:0}.checkbox label,.radio label{cursor:pointer;display:flex;align-items:center;margin-bottom:0}.checkbox label:hover .checkbox__icon,.checkbox label:hover .radio__icon,.radio label:hover .checkbox__icon,.radio label:hover .radio__icon{fill:#444d59}.radio input:checked+label svg .checked{fill:#0080a7;fill-opacity:1}.radio input:checked+label svg .unchecked{fill:#6a7585}.radio input:checked.light+label svg .checked{fill:#fff}.radio input:checked.light+label svg .unchecked{fill:#fff}.checkbox input:checked+label svg .checked,.checkbox input:indeterminate+label svg .indeterminate{fill:#0080a7;fill-opacity:1}.radio__group,.checkbox__group{display:flex;flex-wrap:wrap}.radio__group .radio,.radio__group .checkbox,.checkbox__group .radio,.checkbox__group .checkbox{margin-right:.5rem}.radio__group .radio:last-child,.radio__group .checkbox:last-child,.checkbox__group .radio:last-child,.checkbox__group .checkbox:last-child{margin-right:0}.radio__group .radio label[for],.radio__group .checkbox label[for],.checkbox__group .radio label[for],.checkbox__group .checkbox label[for]{padding:.5rem;padding-left:0;margin-bottom:0}.radio__group--vertical,.checkbox__group--vertical{display:block}.radio__group--vertical .radio,.radio__group--vertical .checkbox,.checkbox__group--vertical .radio,.checkbox__group--vertical .checkbox{margin-right:0}.radio__group--vciso{margin-top:1rem;padding-left:1rem;border-left:1px solid #444d59}.table{border-collapse:collapse;border-spacing:0;width:100%}.table th{border-bottom:1px solid #d1d7e0;font-size:.75rem;font-weight:600;letter-spacing:.05em;line-height:1.2;margin:0;text-transform:uppercase;padding-bottom:1rem;text-align:left}.table th:first-child{padding-left:.25rem}.table th:last-child{padding-right:.25rem}.table th:last-child:not(:only-child){text-align:right}.table td{border-bottom:1px solid #d1d7e0;padding-top:1.5rem;padding-bottom:1.5rem}.table td:first-child{padding-left:.25rem}.table td:last-child{padding-right:.25rem}.table td:last-child:not(:only-child){text-align:right}body{background-color:#f9fafc;margin:0;min-height:100vh}.container{margin-left:auto;margin-right:auto;max-width:75rem}main{border-bottom-left-radius:3px;border-bottom-right-radius:3px;margin-bottom:3rem;display:block}@media(max-width: 700px){main{padding-left:1rem;padding-right:1rem}}@media screen and (max-width: 60rem){main{margin-bottom:0;border-radius:0}}.coverholders .section-title{margin-bottom:1.5rem}.section-title{margin-bottom:2rem}.page-section{margin-bottom:3rem}.page-section.tight{margin-bottom:2rem}.page-section:last-child{margin-bottom:0}.page-section--collapsed{padding:.5rem 0;margin-bottom:1.5rem;display:flex;justify-content:space-between;align-items:center}.page-section--collapsed .section-title{color:#6a7585;margin:0}.page-section--toggle{cursor:pointer}.page-section--toggle:hover .page-section__expander{color:#444d59}.page-section--expanded{padding:.5rem 0;margin-bottom:3rem;display:flex;justify-content:space-between}.page-section--expanded .page-section--toggle{margin-bottom:2rem}.page-section--expanded .section-title{margin:0}.page-section__expander{border:0;background-color:rgba(0,0,0,0);color:#6a7585;font-size:.75rem;padding:0;transition:all 200ms ease-in-out;text-transform:uppercase;display:flex}.page-section__expander:hover,.page-section__expander:focus{background-color:#fff;color:#444d59}.page-section__expander:focus{outline:none}.page-section__expander__icon.icon{margin-left:.25rem;height:1rem;width:1rem}.page-section--expanded~*{height:auto;opacity:1;max-height:100%}.page-section--collapsed~*{height:auto;max-height:0;overflow:hidden;opacity:0;padding-top:0 !important;padding-bottom:0 !important}.page-section--expanded.animated~*,.page-section--collapsed.animated~*{transition:max-height 400ms ease-in-out,opacity 400ms ease-in-out}.resources__docs{padding:1.5rem}.resources__docs:nth-last-child(n+2){border-bottom:1px solid #d1d7e0}.resources__underwriters{padding-left:1.5rem;padding-right:1.5rem;margin-left:-1.5rem;margin-right:-1.5rem}.resources__underwriters:nth-last-child(n+2){border-bottom:1px solid #d1d7e0;margin-bottom:2rem;padding-bottom:2rem}.resources__team{box-shadow:0 1px .25rem rgba(32,37,44,.1) !important;background-color:#fff !important;border-radius:12px !important;border:0 !important}#oldBrowser{background-color:hsl(210,63%,41.4%);box-shadow:0 2px 1rem rgba(32,37,44,.1);color:hsl(210,35%,96.76%);font-size:.875rem;padding:1rem 1.5rem;position:relative;top:-2.5rem;text-align:center}#oldBrowser a{color:#fff;font-weight:600}#oldBrowser a:hover{color:hsl(210,35%,96.76%);text-decoration:underline}hr{border:0;border-bottom:1px solid #d1d7e0;margin-bottom:3rem}div.policyholder-role-modal{max-width:52.5rem}hr.policyholder-role-modal--hr{border:0;border-bottom:1px solid #d1d7e0;width:53rem;margin-left:-7%;margin-bottom:0;padding-top:1rem}label.policyholder-role-modal--radio{align-items:unset}label.policyholder-role-modal--radio svg.radio__icon{margin-right:.25rem}.impersonation.alert{display:block;border-radius:0;border-top:0;border-left:0;border-right:0;box-shadow:0 1px .25rem rgba(32,37,44,.1);margin-bottom:0;text-align:center}.license{text-align:center;margin-bottom:3rem;color:#6a7585;font-size:.875rem}@supports(position: sticky){.impersonation.alert{position:sticky;top:0;z-index:21}}.accordion{background-color:#fff;border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative}.accordion__header{display:flex;align-items:center;cursor:pointer;border-radius:12px;width:100%}.accordion__header:focus-visible{outline:2px solid #000}.accordion__title{flex:1;font-size:1rem;font-weight:bold;padding:1.5rem;transition:background-color 200ms}.accordion__icon{align-items:center;border-top-right-radius:12px;color:#6a7585;display:flex;font-size:1.875rem;justify-content:center;line-height:0;padding:1.5rem;text-align:center;transition:color 200ms,background-color 200ms;width:12.5rem}.accordion__icon .icon{transition:transform 200ms}.accordion__body{padding:0 1.5rem 1.5rem}.accordion--expanded .accordion__header{border-bottom-left-radius:0;border-bottom-right-radius:0}.accordion--expanded .accordion__icon .icon{transform:rotate(180deg)}.feature-flag-user{color:#006685;background-color:rgb(239.565,247.4519461078,249.855);width:260px;border:#006685 1px solid;border-radius:3px}.feature-flag-user .user-email{color:#444d59;text-overflow:ellipsis;overflow:hidden}.feature-flag-user .user-button{float:right}.feature-flag-user--pending{color:#fff;background-color:#004f68;border:rgb(239.565,247.4519461078,249.855) 1px solid}.feature-flag-user--pending .user-email{color:#d1d7e0}.saves-changes .errors{color:hsl(350,80%,45%)}.advanced-search{position:relative}.advanced-search--open{z-index:10}.advanced-search--open .advanced-search__input{border-bottom-left-radius:0;border-bottom-right-radius:0}.advanced-search--open .advanced-search__results{opacity:1;max-height:calc(100vh - 30rem)}.advanced-search__input{padding-left:3rem;background-image:url("https://cdn.corvusinsurance.com/images/search-28c598ef6846abdf194b67a9abde8b3d.svg");background-position:.5rem center;background-repeat:no-repeat;background-size:2rem 2rem}.advanced-search__input.disabled{background-color:#f9fafc;border-color:#d1d7e0;color:#6a7585}.advanced-search__clear{padding:1rem;line-height:1;border:0;position:absolute;top:calc(50% - 1.6rem);right:0;cursor:pointer}.advanced-search__clear.coverholder-search{top:revert;color:#6a7585}.advanced-search__clear:hover{background-color:rgba(0,0,0,0)}.advanced-search__clear:hover .icon{fill:#a0a8b4}.advanced-search__clear .icon{fill:#d1d7e0;transition:fill 200ms ease-in-out}.advanced-search__results{border:1px solid #d1d7e0;border-top:0;background-color:#fff;border-bottom-left-radius:3px;border-bottom-right-radius:3px;box-shadow:0 4px 2.5rem rgba(32,37,44,.1);list-style-type:none;max-height:0;opacity:0;overflow:auto;position:absolute;top:100%;transition:max-height 200ms,opacity 200ms;width:100%}.advanced-search__result{border-bottom:1px solid #d1d7e0}.advanced-search__result .advanced-search__result{border-bottom:0}.advanced-search__result .advanced-search__result .advanced-search__link{padding-left:3rem}.advanced-search__link{transition:all 200ms ease-in-out;border:1px solid rgba(0,0,0,0);padding:1rem 2rem 1rem 1.5rem;border-left-width:.25rem;border-right-width:.25rem;line-height:1.25;text-align:left;display:block;width:100%;white-space:normal;position:relative;cursor:pointer}.advanced-search__link.coverholder-search::after{content:none}.advanced-search__link::after{transition:opacity 200ms ease-in-out;color:#0080a7;content:"➔";position:absolute;top:calc(50% - .625rem);right:.5rem;opacity:0}.advanced-search__link:hover,.advanced-search__link:focus{background-color:rgb(239.565,247.4519461078,249.855);outline:none}.advanced-search__link:hover::after,.advanced-search__link:focus::after{opacity:1}.advanced-search__link:hover .advanced-search__text,.advanced-search__link:focus .advanced-search__text{color:inherit}.advanced-search__link .tag{display:inline-block;vertical-align:middle}.advanced-search__inert{transition:all 200ms ease-in-out;border:1px solid rgba(0,0,0,0);padding:1rem 2rem 1rem 1.5rem;border-left-width:.25rem;border-right-width:.25rem;line-height:1.25;text-align:left;display:block;width:100%;white-space:normal;position:relative}.advanced-search__text{transition:color 200ms ease-in-out;color:#444d59;margin-right:.5rem;vertical-align:middle}.advanced-search__subtext{color:#6a7585;margin-right:.5rem}.advanced-search__subtext::before{content:" - "}.advanced-search__selected-result{border:1px solid #d1d7e0;border-radius:3px;background-color:#fff;color:#444d59;padding:1rem 1.5rem;position:relative}.advanced-search__client-qrs{list-style-type:none}.begin-submission .advanced-search__input{background-image:none;padding-left:1.5rem}.begin-submission .advanced-search__result{border-bottom:0}.begin-submission .advanced-search__link{padding-top:.5rem;padding-bottom:.5rem}.begin-submission .advanced-search__link:hover,.begin-submission .advanced-search__link:focus{border-color:rgba(0,0,0,0)}.begin-submission .advanced-search__link:hover .advanced-search__text,.begin-submission .advanced-search__link:focus .advanced-search__text{color:#006685}@media screen and (max-width: 30rem){.header .advanced-search{margin-bottom:.5rem;width:100%}}.affinity-group{background-color:#fff;min-height:100vh}.affinity-group a{transition:200ms all}.affinity-group p,.affinity-group li{font-size:1.375rem}.affinity-group strong{font-weight:600}.affinity-group__nav{background-color:hsla(0,0%,100%,.9);border-bottom:1px solid #d1d7e0;box-shadow:0 4px 2.5rem rgba(32,37,44,.1);position:sticky;top:0;z-index:1}.affinity-group__nav-list{display:flex;list-style-type:none;margin-bottom:0;padding-left:0}.affinity-group__nav-link{padding:1.5rem 2rem;display:inline-block;cursor:pointer;color:#0080a7}.affinity-group__nav-link:hover{color:#006685}.affinity-group__logo{display:block;margin:3rem auto;max-height:16rem;max-width:32rem;object-fit:contain;width:80%}.affinity-group__header{background:#003557;color:#fff;padding:4rem 0}.affinity-group__header .affinity-group__container{display:flex;flex-direction:column;align-items:center}.affinity-group__header .affinity-group__button{background-color:rgb(239.565,247.4519461078,249.855);border-radius:3px;box-shadow:0 0 1rem rgba(32,37,44,.5);color:#0080a7;display:inline-block;font-size:1.375rem;padding:2rem 3rem;margin:0 auto;cursor:pointer}.affinity-group__header .affinity-group__button:hover,.affinity-group__header .affinity-group__button:active{background-color:#fff;color:#0080a7}.affinity-group__page-header,.affinity-group__subheader{color:#fff;font-weight:300;line-height:1;margin-bottom:3rem;text-align:center;text-shadow:0 0 1rem rgba(32,37,44,.5)}.affinity-group__page-header{font-size:2.75rem}.affinity-group__subheader{font-size:1.875rem}.affinity-group__container{margin:0 auto;max-width:75rem;padding:2rem}.affinity-group__container--small{padding-left:2rem;padding-right:2rem;margin:0 auto;max-width:50rem}.affinity-group__section{margin-top:-4rem;padding-top:4rem}.affinity-group__section .affinity-group__container{border-bottom:1px solid #d1d7e0;color:#444d59;padding:4rem 0}.affinity-group__section:last-child{margin-bottom:0}.affinity-group__section-header{font-size:1.875rem;font-weight:600;margin-bottom:1.5rem;text-align:center}.affinity-group__highlight-list{list-style-type:none;display:flex;flex-wrap:wrap;justify-content:space-evenly}.affinity-group__highlight-item{max-width:33.3333333333%;min-width:25rem;padding:1.5rem;text-align:center}.affinity-group__highlight-big{font-size:2.75rem;color:hsl(30,100%,36.5%)}.affinity-group__highlight-big .icon{fill:#0080a7}.affinity-group__highlight-small{font-size:1.375rem}.affinity-group__highlight-small strong{display:block}.affinity-group__bullets{list-style-type:none;margin:3rem}.affinity-group__bullets li{position:relative;margin-bottom:1.5rem}.affinity-group__bullets li::before{content:url("https://cdn.corvusinsurance.com/images/check-circle-a1abca134c28663304903c7c29f23cc6.svg");position:absolute;top:.125rem;left:-2rem;height:1.5rem;width:1.5rem}.affinity-group__form{background-color:rgb(239.565,247.4519461078,249.855);color:#444d59;padding:4rem 2rem}.affinity-group__form .affinity-group__section-header{color:#0080a7}.affinity-group__form .form__group{min-width:15rem;margin:0 auto 1.5rem;padding:0}.affinity-group__form label{display:block;font-size:1rem;margin-bottom:0}.affinity-group__form .address{display:flex}.affinity-group__form .address__field{flex:2;margin:0 .5rem}.affinity-group__form .address__field:first-child{margin-left:0}.affinity-group__form .address__field:last-child{flex:1;margin-right:0}.affinity-group__form .button--block{margin:0 auto 1.5rem}.affinity-group__footer{color:#6a7585;padding:0 1.5rem;text-align:center}.affinity-group__footer p{font-size:.75rem;margin:0}.affinity-group__footer img{max-width:10rem;width:80%;height:auto;display:inline-block;margin-bottom:2rem}.affinity-group__footer .notice{margin-top:3rem;margin-bottom:3rem;color:#6a7585;font-size:.75rem;text-align:left}@media screen and (max-width: 60rem){.affinity-group__form .address{flex-direction:column}.affinity-group__form .address__field{margin:0 0 .5rem}}.alert-intake-header{background-color:#fff;border:1px solid #d1d7e0;border-top:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px;margin-bottom:3rem;padding:2rem;box-shadow:0 0 1.25rem rgba(68,77,89,.15)}.template-picker{margin:.5rem 0px;padding:.5rem 1rem;width:fit-content}.broker-alert-form .form__group .broker-alert-field{min-height:5em}.broker-alert-form .form__group .broker-alert-conclusion{min-height:3.5em}.stat-section{color:#6a7585}.stat-view-card{width:380px;max-width:380px;min-height:130px;margin:12px 24px 0 0}.stat-view-card .stat-view-card-body{min-height:130px;display:flex;flex-direction:row;justify-content:center;align-items:center}.stat-view-card .stat-view-card-body .stat-view-card-cnt{margin:0;padding-right:12px;width:120px;min-width:120px;text-align:right}.stat-view-card .stat-view-card-body .stat-view-card-text{margin:0;padding-left:12px;padding-right:10px;width:260px;min-width:260px;color:#444d59}.header-tabs{display:flex;margin-bottom:-2rem;padding-bottom:1rem}.header-tabs .header-tabs__link{color:#444d59;background-color:rgba(0,0,0,0);border:0;border-bottom:.25rem solid rgba(0,0,0,0);padding:.5rem 1.5rem;margin-right:.5rem;transition:all 200ms}.header-tabs .header-tabs__link:hover,.header-tabs .header-tabs__link--active,.header-tabs .header-tabs__link:focus{color:#0080a7;border-bottom-color:#0080a7}.header-tabs__coming-soon-link{color:#444d59;background-color:rgba(0,0,0,0);border:0;border-bottom:.25rem solid rgba(0,0,0,0);padding:.5rem 1.5rem;margin-right:.5rem;transition:all 200ms}.alert-submission-progress-bar{margin-left:3rem;margin-right:5rem}.alert-submission-progress-bar .progress.accent{background-color:#a0a8b4;height:4px}.alert-submission-progress-bar .progress.accent .progress__bar{background-color:#0080a7}.alert-submission-progress-text{display:flex;justify-content:space-between;margin:.625rem 2.5rem .625rem .5rem}.circle-text-container{display:flex;flex-direction:column;align-items:center}.circle-icon{margin-top:-1.75rem;height:2rem;width:2rem;z-index:0}.circle-icon--current,.circle-icon--complete,.circle-icon--incomplete{background-position:center;background-repeat:no-repeat;background-size:24px}.circle-icon--current{background-image:url("https://cdn.corvusinsurance.com/images/circle-current-state-1c96f0a40af5f05d5efa0c07af201e9e.svg")}.circle-icon--complete{background-image:url("https://cdn.corvusinsurance.com/images/circle-complete-state-5e25a4ac14229811472e1b66c9e21eb0.svg")}.circle-icon--incomplete{background-image:url("https://cdn.corvusinsurance.com/images/circle-incomplete-state-299bc9237b35cc61a4f9a116384ce68d.svg")}.card-creation-form{background-color:#fff}.card-creation-form .aac-title--header{background-color:#d1d7e0;border-top-left-radius:6px;border-top-right-radius:6px}.card-creation-form .aac-title--content{background-color:#f9fafc}.card-creation-form .aac-title--content #card-title{width:50%}.card-creation-form .aac-finding--header,.card-creation-form .aac-potential-impact--header,.card-creation-form .aac-next-steps--header{background-color:#d1d7e0;border-top-left-radius:6px;border-top-right-radius:6px}.card-creation-form .aac-finding--content,.card-creation-form .aac-potential-impact--content,.card-creation-form .aac-next-steps--content{background-color:#ebeef3}.card-creation-form .aac-dynamic-content-type--header{font-size:.75rem}.card-creation-form .aac-dynamic-content-type--footer{font-size:.75rem}.card-creation-form .aac-markdown-guide{font-size:.75rem}.card-creation-form .aac-markdown-guide--headings,.card-creation-form .aac-markdown-guide--text,.card-creation-form .aac-markdown-guide--list,.card-creation-form .aac-markdown-guide--link{background-color:#fff;flex:1 1 0;border-radius:6px;padding:1rem}.card-creation-form .aac-step--header{background-color:hsl(245,55%,50%);color:#fff}.card-creation-form .aac-step--content{background-color:#fff}.card-creation-form .aac-step .icon-trash-icon{width:1.5rem;height:1.5rem;fill:#0080a7}.card-creation-form .aac-step .icon-trash-icon:hover{cursor:pointer}.threats-back-button{color:#0080a7;cursor:pointer;font-weight:600;margin-bottom:.5rem}.create-alerts{background-color:#fff;border-color:#ebeef3;border:1px solid #d1d7e0;border-radius:3px;font-weight:600}.alert-tab{color:#444d59;background-color:rgba(0,0,0,0);border:0;border-bottom:.25rem solid #0080a7;padding:.5rem 6rem;margin-right:.5rem;transition:all 200ms;color:#0080a7;font-weight:600}.alert{background-position:1rem center;background-repeat:no-repeat;background-size:1.5rem 1.5rem;border:1px solid #d1d7e0;border-radius:3px;display:inline-block;padding:1rem}.alert.alert--small{padding:.5rem 1rem}.alert.alert--phx{border:none;border-radius:3px;width:100%;background:#fffcf2;box-shadow:6px 0px 0px 0px #f7c800 inset}.alert.alert--additional-domains{border:none;border-radius:3px;width:100%;background:#fffcf2;box-shadow:6px 0px 0px 0px #f7c800 inset;display:flex;justify-content:space-between;gap:1.0625rem;align-items:center}.alert.alert--xs{padding:.25rem .5rem}.alert.alert--block{display:block}.alert.alert--success{background-color:hsl(110,50%,95.614%);border-color:hsl(110,90%,34.21%);color:hsl(110,90%,24.21%);padding-left:3rem}.alert.alert--success.alert--small{padding-left:2.25rem;background-position:.5rem center}.alert.alert--success.alert--xs{padding-left:.5rem;background-image:none}.alert.alert--success .link{border-color:hsl(110,100%,26.9%);color:hsl(110,100%,26.9%);transition:background-color 200ms ease-in-out}.alert.alert--success .link:hover{background-color:hsla(110,75%,63.45%,.25)}.alert.alert--success button.alert__dismiss .closeX__icon{color:hsl(110,90%,34.21%)}.alert.alert--success button.alert__dismiss:hover{background-color:hsla(110,75%,63.45%,.25)}.alert.alert--error{background-color:hsl(350,40%,96.7%);border-color:hsl(350,72%,50.5%);color:hsl(350,72%,40.5%);padding-left:3rem}.alert.alert--error.alert--small{padding-left:2.25rem;background-position:.5rem center}.alert.alert--error.alert--xs{padding-left:.5rem;background-image:none}.alert.alert--error .link{border-color:hsl(350,80%,45%);color:hsl(350,80%,45%);transition:background-color 200ms ease-in-out}.alert.alert--error .link:hover{background-color:hsla(350,60%,72.5%,.25)}.alert.alert--error button.alert__dismiss .closeX__icon{color:hsl(350,72%,50.5%)}.alert.alert--error button.alert__dismiss:hover{background-color:hsla(350,60%,72.5%,.25)}.alert.alert--warning{background-color:hsl(30,50%,96.19%);border-color:hsl(30,90%,42.85%);color:hsl(30,90%,32.85%);padding-left:3rem}.alert.alert--warning.alert--small{padding-left:2.25rem;background-position:.5rem center}.alert.alert--warning.alert--xs{padding-left:.5rem;background-image:none}.alert.alert--warning .link{border-color:hsl(30,100%,36.5%);color:hsl(30,100%,36.5%);transition:background-color 200ms ease-in-out}.alert.alert--warning .link:hover{background-color:hsla(30,75%,68.25%,.25)}.alert.alert--warning button.alert__dismiss .closeX__icon{color:hsl(30,90%,42.85%)}.alert.alert--warning button.alert__dismiss:hover{background-color:hsla(30,75%,68.25%,.25)}.alert.alert--info{background-color:hsl(210,35%,96.76%);border-color:hsl(210,63%,51.4%);color:hsl(210,63%,41.4%);padding-left:3rem}.alert.alert--info.alert--small{padding-left:2.25rem;background-position:.5rem center}.alert.alert--info.alert--xs{padding-left:.5rem;background-image:none}.alert.alert--info .link{border-color:hsl(210,70%,46%);color:hsl(210,70%,46%);transition:background-color 200ms ease-in-out}.alert.alert--info .link:hover{background-color:hsla(210,52.5%,73%,.25)}.alert.alert--info button.alert__dismiss .closeX__icon{color:hsl(210,63%,51.4%)}.alert.alert--info button.alert__dismiss:hover{background-color:hsla(210,52.5%,73%,.25)}.alert.alert--accent{background-color:rgb(239.565,247.4519461078,249.855);border-color:#09a8d9;color:#006685;padding-left:3rem}.alert.alert--accent.alert--small{padding-left:2.25rem;background-position:.5rem center}.alert.alert--accent.alert--xs{padding-left:.5rem;background-image:none}.alert.alert--accent .link{border-color:#0080a7;color:#0080a7;transition:background-color 200ms ease-in-out}.alert.alert--accent .link:hover{background-color:rgba(73,207,247,.25)}.alert.alert--accent button.alert__dismiss .closeX__icon{color:#09a8d9}.alert.alert--accent button.alert__dismiss:hover{background-color:rgba(73,207,247,.25)}.alert.alert--locked{background-color:#f9fafc;border-color:#d1d7e0;color:#6a7585;padding-left:3rem}.alert.alert--locked.alert--small{padding-left:2.25rem;background-position:.5rem center}.alert.alert--locked.alert--xs{padding-left:.5rem;background-image:none}.alert.alert--locked .link{border-color:#a0a8b4;color:#a0a8b4;transition:background-color 200ms ease-in-out}.alert.alert--locked .link:hover{background-color:rgba(235,238,243,.25)}.alert.alert--locked button.alert__dismiss .closeX__icon{color:#d1d7e0}.alert.alert--locked button.alert__dismiss:hover{background-color:rgba(235,238,243,.25)}.alert.alert--neutral{background-color:#f9fafc;border-color:#d1d7e0;color:#6a7585;padding-left:3rem}.alert.alert--neutral.alert--small{padding-left:2.25rem;background-position:.5rem center}.alert.alert--neutral.alert--xs{padding-left:.5rem;background-image:none}.alert.alert--neutral .link{border-color:#a0a8b4;color:#a0a8b4;transition:background-color 200ms ease-in-out}.alert.alert--neutral .link:hover{background-color:rgba(235,238,243,.25)}.alert.alert--neutral button.alert__dismiss .closeX__icon{color:#d1d7e0}.alert.alert--neutral button.alert__dismiss:hover{background-color:rgba(235,238,243,.25)}.alert .link+.link{margin-left:0}.alert.alert--success{background-image:url("https://cdn.corvusinsurance.com/images/check-circle-a1abca134c28663304903c7c29f23cc6.svg")}.alert.alert--warning{background-image:url("https://cdn.corvusinsurance.com/images/flag-b73562dfbd43e24136a52e56349d4918.svg")}.alert.alert--error{background-image:url("https://cdn.corvusinsurance.com/images/warning-d4c5dca77b861922978b2a13dbdcfcf2.svg")}.alert.alert--info{background-image:url("https://cdn.corvusinsurance.com/images/info-290413627b2b613916d482295d327dfc.svg")}.alert p{line-height:1.2;margin-top:0;margin-bottom:0}.alert-list .alert{border-radius:0;margin-top:-1px;display:block}.alert-list .alert:first-child{border-top-left-radius:3px;border-top-right-radius:3px;margin-top:0}.alert-list .alert:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.alert-toast{max-width:20rem;position:fixed;left:1em;bottom:1em;opacity:0;cursor:default;z-index:100;animation:fade-out 6s ease-out}@keyframes fade-out{0%{opacity:1}50%{opacity:1}100%{opacity:0}}.alert-error-tds{border-radius:.1875rem;background:#fef8f2;box-shadow:6px 0px 0px 0px #ef7a00 inset;color:#272a2d;display:flex;padding:1.25rem;justify-content:flex-end;align-items:flex-start;gap:1.0625rem;align-self:stretch}.alert-error-tds svg{color:#cc6900;width:1.5rem;height:1.5rem}.alert-success-tds{border-radius:.1875rem;background:#f4fbf7;box-shadow:6px 0px 0px 0px #27a555 inset;color:#272a2d;display:flex;padding:1.25rem;justify-content:flex-end;align-items:center;gap:1.0625rem;align-self:stretch}.alert-success-tds svg{color:#218d49;width:1.5rem;height:1.5rem}.api-docs-header{display:flex;align-items:center;padding:1rem 2.5rem;background-color:#fff;border-bottom:1px solid #ebeef3;width:100%;position:fixed}.api-docs-header .logo{height:3rem;width:11.7321428571rem;margin-right:1rem;opacity:1}.api-docs-header .logo .svg-logo{height:3rem;width:11.7321428571rem}.api-docs-header .title{border-left:1px solid #d1d7e0;padding-left:1rem;color:#6a7585;font-size:1.875rem;margin-right:auto}.api-docs-menu-and-content-container{display:flex}.api-docs-menu{margin-top:85px;padding:2rem;width:25%;position:fixed;overflow-y:scroll;color:#444d59;top:0;bottom:0}.api-docs-menu .icon-chevron-right,.api-docs-menu .icon-chevron-down{height:1.25rem;width:1.25rem}.api-docs-menu-section{padding:.5rem;color:#444d59;font-size:1rem;font-weight:600;text-transform:uppercase;width:100%;border-radius:3px}.api-docs-menu-section.active{color:#444d59;background-color:#ebeef3}.api-docs-menu-element{display:block;padding:.5rem .5rem .5rem 1rem;color:#6a7585;font-weight:600;font-size:.875rem;border-radius:3px}.api-docs-menu-element.active,.api-docs-menu-element:active,.api-docs-menu-element:hover{color:#444d59;background-color:#ebeef3}.api-docs-content{background-color:#fff;margin-top:85px;margin-left:25%;padding:2rem 3rem;line-height:1.7;width:75%;height:calc(100vh - 85px);overflow-y:scroll}.api-docs-content h2{font-weight:600;font-size:1.875rem;color:#20252c;margin-bottom:1.5rem}.api-docs-content h3{font-weight:600;font-size:1.375rem;color:#20252c;margin:3rem 0}.api-docs-content h4{font-weight:600;font-size:1.375rem;color:#20252c;padding:.5rem 0}.api-docs-content .subtitle-wrapper{margin-top:2rem;margin-bottom:2rem}.docs-view{padding-top:1.5rem;padding-bottom:1.5rem}.unordered-list{list-style-type:none;margin-bottom:1.5rem}.explanatory-point{margin-left:3rem;margin-top:.5rem}.italic-note{font-style:italic}.code{background-color:#f9fafc;padding:.125rem;margin:1.5rem 0;max-height:400px;overflow-y:scroll}.request-subtitle{margin:3rem 0;max-height:400px;overflow-y:scroll}.quote-text{font-weight:600;border-left:.25rem solid #d1d7e0;padding-left:1rem;font-size:1rem;color:#6a7585}.subtitle-description{padding-left:1.5rem;font-size:1rem;color:#6a7585}.subheader{font-size:1.375rem;color:#6a7585}.arrow{margin-right:.25rem;width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);display:inline-block;margin-bottom:2px}.arrow.up{border-bottom:5px solid hsl(110,90%,24.21%)}.arrow.down{border-top:5px solid hsl(350,72%,40.5%)}.auto-result{margin-bottom:1.5rem;align-items:center;display:flex;flex-direction:column;position:relative}.auto-result__input:nth-last-child(n+2){border-bottom-left-radius:0;border-bottom-right-radius:0}.auto-result__result{background-color:#fff;border-bottom-left-radius:3px;border-bottom-right-radius:3px;box-shadow:0 4px 2.5rem rgba(32,37,44,.1);z-index:10;position:absolute;top:100%;right:0;left:0;overflow:auto;max-height:20rem}.auto-result__result-row{border-top:1px solid rgba(0,0,0,0);border-right:1px solid #d1d7e0;border-bottom:1px solid #ebeef3;padding:1rem 1.5rem;display:flex;justify-content:space-between;align-items:center;color:inherit}.auto-result__result-row--clickable:hover,.auto-result__result-row--clickable.hover{box-shadow:inset 0 3px 0 rgba(0,128,167,.1);color:#0080a7;border-color:#09a8d9;cursor:pointer}.auto-result__result-row--clickable:hover .icon,.auto-result__result-row--clickable.hover .icon{opacity:1;left:.5rem}.auto-result__result-row--brokerage{border-left:.25rem solid hsl(110,100%,26.9%)}.auto-result__result-row--brokerage>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(110,100%,26.9%);color:#fff;background-color:hsl(110,100%,26.9%);margin-left:.5rem;margin-right:0;content:"Brokerage"}.auto-result__result-row--client{border-left:.25rem solid hsl(210,70%,46%)}.auto-result__result-row--broker{border-left:.25rem solid hsl(110,75%,63.45%)}.auto-result__result-row--broker>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(110,100%,26.9%);color:hsl(110,90%,24.21%);background-color:hsl(110,50%,95.614%);margin-left:.5rem;margin-right:0;content:"Broker"}.auto-result__result-row--buyer{border-left:.25rem solid hsl(210,52.5%,73%)}.auto-result__result-row--buyer>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(210,70%,46%);color:hsl(210,63%,41.4%);background-color:hsl(210,35%,96.76%);margin-left:.5rem;margin-right:0;content:"Insured"}.auto-result__result-row--user{border-left:.25rem solid hsl(210,52.5%,73%)}.auto-result__result-row--user>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(210,70%,46%);color:hsl(210,63%,41.4%);background-color:hsl(210,35%,96.76%);margin-left:.5rem;margin-right:0;content:"User"}.auto-result__result-row--policy-issued{border-left:.25rem solid hsl(110,100%,26.9%)}.auto-result__result-row--policy-issued>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(110,100%,26.9%);color:hsl(110,90%,24.21%);background-color:hsl(110,50%,95.614%);margin-left:.5rem;margin-right:0;content:"Policy - Active"}.auto-result__result-row--policy-bound{border-left:.25rem solid hsl(110,100%,26.9%)}.auto-result__result-row--policy-bound>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(110,100%,26.9%);color:hsl(110,90%,24.21%);background-color:hsl(110,50%,95.614%);margin-left:.5rem;margin-right:0;content:"Policy - Bound"}.auto-result__result-row--policy-expired{border-left:.25rem solid #6a7585}.auto-result__result-row--policy-expired>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;margin-left:.5rem;margin-right:0;content:"Policy - Expired"}.auto-result__result-row--policy-rescinded{border-left:.25rem solid hsl(350,80%,45%)}.auto-result__result-row--policy-rescinded>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(350,80%,45%);color:hsl(350,72%,40.5%);background-color:hsl(350,40%,96.7%);margin-left:.5rem;margin-right:0;content:"Policy - Rescinded"}.auto-result__result-row--policy-cancelled{border-left:.25rem solid hsl(350,80%,45%)}.auto-result__result-row--policy-cancelled>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(350,80%,45%);color:hsl(350,72%,40.5%);background-color:hsl(350,40%,96.7%);margin-left:.5rem;margin-right:0;content:"Policy - Cancelled"}.auto-result__result-row--policy-voided{border-left:.25rem solid hsl(350,80%,45%)}.auto-result__result-row--policy-voided>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(350,80%,45%);color:hsl(350,72%,40.5%);background-color:hsl(350,40%,96.7%);margin-left:.5rem;margin-right:0;content:"Policy - Voided"}.auto-result__result-row--quote-request{border-left:.25rem solid hsl(210,70%,46%)}.auto-result__result-row--quote-request>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(210,70%,46%);color:hsl(210,63%,41.4%);background-color:hsl(210,35%,96.76%);margin-left:.5rem;margin-right:0;content:"Submission"}.auto-result__result-row--uk-binder{border-left:.25rem solid hsl(210,70%,46%)}.auto-result__result-row--uk-binder>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(110,100%,26.9%);color:hsl(110,90%,24.21%);background-color:hsl(110,50%,95.614%);margin-left:.5rem;margin-right:0;content:"UK Binder"}.auto-result__result-row--uk-line-slip{border-left:.25rem solid hsl(210,70%,46%)}.auto-result__result-row--uk-line-slip>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(110,100%,26.9%);color:hsl(110,90%,24.21%);background-color:hsl(110,50%,95.614%);margin-left:.5rem;margin-right:0;content:"UK Line Slip"}.auto-result__result-row--uk-bulking-line-slip{border-left:.25rem solid hsl(210,70%,46%)}.auto-result__result-row--uk-bulking-line-slip>div::after{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase;border-color:hsl(110,100%,26.9%);color:hsl(110,90%,24.21%);background-color:hsl(110,50%,95.614%);margin-left:.5rem;margin-right:0;content:"UK Bulking Line Slip"}.auto-result__result-row .icon{color:#0080a7;opacity:0;position:relative;left:0;top:-0.25rem;transition:opacity 200ms,left 200ms}.auto-result__details{margin-right:1rem}.auto-result__extra{color:#6a7585;font-size:.875rem}.approval-header{font-size:22px;font-weight:bold;font-family:"Open Sans"}.branded{background:#003557;min-height:100vh;padding:2.5rem 0 0}.branded .content{min-height:calc(100vh - 6rem)}.branded .footer{height:48px;display:flex;justify-content:center}.branded .footer .spacer{padding:0 .25rem}.branded .footer--dark{color:#fff}.branded .footer--dark .anchor{color:#fff;text-decoration:underline;font-size:.875rem}.branded .footer .anchor{text-decoration:underline;font-size:.875rem}.branded__page-head{color:#fff;text-align:center;margin-bottom:3rem}.branded__broker-names{color:#fff;font-size:2rem;line-height:1.2;text-align:center;margin:0 auto 3rem;max-width:60rem}.branded .higg-crc{background-color:#fff;border-radius:2.5rem;box-shadow:0 2px 1rem rgba(32,37,44,.1);margin:0 auto 2.5rem;max-width:27rem;padding:1.5rem 2rem}.branded .higg-crc img{display:inline-block;width:100%}.branded__card{background-color:#fff;border-radius:3px;box-shadow:0 2px 1rem rgba(32,37,44,.1);margin:0 auto;max-width:27rem;padding:1.5rem;position:relative;z-index:1}.branded__card::after{content:"";display:table;clear:both}.staging .branded__card{border-bottom-left-radius:0;border-bottom-right-radius:0}.staging .branded__card::before{color:#fff;background-color:hsl(210,70%,46%);padding:.25rem;border-bottom-left-radius:3px;border-bottom-right-radius:3px;position:absolute;top:100%;right:0;left:0;font-size:.75rem;letter-spacing:.05em;text-align:center;text-transform:uppercase;content:"This is a Staging Environment"}.branded__card--double{display:flex;align-items:stretch;max-width:54rem;padding:0;color:#444d59}.branded__card--single{background-color:rgba(32,37,44,.15);color:#fff}.branded__card--single .branded__link{color:#fff}.branded__card--single .branded__link:focus,.branded__card--single .branded__link:hover{color:#fff}.branded__card--single .branded__button:active,.branded__card--single .branded__button:hover,.branded__card--single .branded__button:focus{background-color:#09a8d9;border-color:#0080a7}.branded__card--single .branded__button:active{box-shadow:inset 0 -0.25rem 0 rgba(0,128,167,.35)}.branded__card--single .branded__button:disabled{color:#fff;background-color:#0080a7;border-color:#0080a7;cursor:not-allowed;opacity:.65;pointer-events:none}.branded__card--single .branded__button .-warning{background-color:hsl(30,100%,36.5%)}.branded__card--single .branded__button .-warning:active,.branded__card--single .branded__button .-warning:hover,.branded__card--single .branded__button .-warning:focus{background-color:hsl(30,90%,42.85%);border-color:hsl(30,100%,36.5%)}.branded__card--single .branded__button .-warning:active{box-shadow:inset 0 -0.25rem 0 hsla(30,100%,36.5%,.35)}.branded__card--single .branded__button .-success{background-color:hsl(110,100%,26.9%)}.branded__card--single .branded__button .-success:active,.branded__card--single .branded__button .-success:hover,.branded__card--single .branded__button .-success:focus{background-color:hsl(110,90%,34.21%);border-color:hsl(110,100%,26.9%)}.branded__card--single .branded__button .-success:active{box-shadow:inset 0 -0.25rem 0 hsla(110,100%,26.9%,.35)}.branded__signin{flex:1;background-color:#fff;padding:2rem;border-bottom-left-radius:3px;border-top-left-radius:3px}.branded__title{letter-spacing:0;font-size:1.5rem;margin-bottom:1.5rem;color:#fff}.branded__client-name{display:block;padding:1rem;border:1px solid #d1d7e0;border-radius:3px;background-color:rgb(239.565,247.4519461078,249.855);font-size:.75rem;text-transform:uppercase;font-weight:600}.branded__success-check{font-size:2rem;line-height:3.66rem;display:inline-block;width:3rem;height:3rem;margin-left:auto;margin-right:auto;border-radius:100%;background-color:#49cff7;color:#fff}.branded .alert--branded{border:0;background-color:rgba(32,37,44,.1);color:#fff}.branded__form .alert{margin-top:.5rem;text-align:left}.branded__form-group{margin-bottom:1.25rem;text-align:left}.branded__form-group:last-child{margin-bottom:0}.branded__form-group .form-warning{margin-top:.75rem}.branded__label{font-size:.75rem;font-weight:600;letter-spacing:.05em;line-height:1.2;margin:0;text-transform:uppercase}.branded__input--code{font-size:1.875rem;font-weight:600;padding-top:.5rem;padding-bottom:.5rem;text-align:center;letter-spacing:1em}input#mfaInput.branded__input--code{-moz-appearance:textfield;appearance:textfield}input#mfaInput.branded__input--code::-webkit-outer-spin-button,input#mfaInput.branded__input--code::-webkit-inner-spin-button{-webkit-appearance:none;appearance:none;margin:0;display:none}.branded__input--code.settings{width:auto}.branded__action{color:#fff}.branded__button{margin-top:2rem;display:block;width:100%}.branded__button+.alert{display:block;margin-top:1rem}.branded__button-login{margin-top:2rem;display:block;width:100%}.branded__button-login+.alert{display:block;margin-top:1rem}.branded__links{display:flex;justify-content:space-between;margin-top:1rem}.branded__link{font-size:.75rem;transition:text-decoration 200ms}.branded__link:hover,.branded__link:focus,.branded__link:active{text-decoration:underline}.branded__link.-large{display:block;font-size:1rem;font-weight:600;text-decoration:underline}.branded__info{flex:1;background-color:#f9fafc;border-left:1px solid #ebeef3;padding:2rem;border-bottom-right-radius:3px;border-top-right-radius:3px}.branded__activate{flex:1;background-image:linear-gradient(135deg, #09a8d9, #0080a7);color:#fff;border-left:1px solid #ebeef3;padding:2rem;padding-bottom:1rem;border-bottom-right-radius:3px;border-top-right-radius:3px}.branded__activate h3{color:#fff}.branded__activate img{margin-left:5.75rem;margin-top:2.625rem}.branded__list{margin-left:3rem;margin-bottom:1.5rem;list-style-type:none}.branded__list li{position:relative}.branded__list li::before{content:url("https://cdn.corvusinsurance.com/images/check-accent-45ff9189a4d9a62f57299608cfa33241.svg");height:1.5rem;width:1.5rem;position:absolute;left:-2.5rem;top:0}.branded__footer{color:#fff;text-align:center;margin:3rem auto}.branded__footer .footer-logo{display:flex;justify-content:center;margin:auto}.branded.affiliate .branded__footer{margin-bottom:0;padding-bottom:2.5rem}.branded.affiliate .branded__footer .branded-footer-logo{margin:0 auto;display:flex;flex-direction:row;width:fit-content;height:fit-content}.branded.affiliate .branded__footer .branded-footer-logo img{width:10rem}.branded.affiliate .branded__footer .branded-footer-logo img+div{padding-left:.25rem}.branded__qr-code{background-color:#fff;border-bottom-right-radius:3px;border-top-right-radius:3px;width:18rem}.branded__qr-code:not(.settings){position:absolute;top:1.5rem;left:100%}.branded__qr-code.settings{margin-top:2rem}.branded__qr-code svg{width:100%;height:auto;display:block}.branded__mfa-link{font-size:.875rem;color:#6a7585;line-height:1.2;word-wrap:break-word;margin:0 1.5rem 1.5rem;text-align:center}.branded-new{min-height:100vh;padding:2.5rem 0 0}@media screen and (max-width: 56rem){.branded-new{padding-top:1rem;display:flex;flex-direction:column;justify-content:space-evenly}}.branded-new .footer{margin-top:1rem;height:3.5rem;font-size:1rem;line-height:1}@media screen and (max-width: 56rem){.branded-new .footer{height:2rem}}.branded-new .content{min-height:calc(100vh - 7rem);display:flex;flex-direction:column}@media screen and (max-width: 56rem){.branded-new .content{min-height:unset;display:block}}.branded-new .branded-logo{width:9.57rem;height:1.75rem;position:fixed;top:2.5rem;left:2.5rem}.staging .branded-new .branded-logo{width:10rem;height:2.9rem}.staging .branded-new .branded-logo svg.svg-logo.logo-white-staging{width:10rem;height:2.9rem}.branded-new .branded-logo svg.svg-logo{width:11.2rem;height:2.9rem}@media screen and (max-width: 56rem){.branded-new .branded-logo{position:static;margin:0 auto 1rem auto}}.branded-new .branded__card:not(.branded__card--double){margin-bottom:1.5rem;max-width:30rem;width:100%}.branded-new .branded__links{margin-top:1.5rem}.branded-new .branded__link{font-size:.875rem}@media screen and (max-width: 61rem){.branded-new.branded-cbt{padding-top:1rem;display:flex;flex-direction:column;justify-content:space-evenly}.branded-new.branded-cbt .footer{height:2rem}.branded-new.branded-cbt .content{min-height:unset;display:block}}.branded-new.branded-cbt .branded-logo{display:flex;flex-direction:column;width:fit-content;height:fit-content}.branded-new.branded-cbt .branded-logo img{width:12.5rem}@media screen and (max-width: 61rem){.branded-new.branded-cbt .branded-logo{position:static;margin:0 auto 1rem auto;flex-direction:row}.branded-new.branded-cbt .branded-logo img+div{padding-left:.25rem}}.breadcrumbs{padding-top:1rem;padding-bottom:1rem;margin-right:1rem;align-items:center;display:flex;overflow:hidden;flex:1}.breadcrumb{font-family:"Open Sans",sans-serif;letter-spacing:normal;line-height:1.5rem;display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal;flex-shrink:1;max-width:30rem}.breadcrumb:first-child,.breadcrumb:last-child{flex:none}.breadcrumb a{color:#fff;transition:all 200ms ease-in-out;border:1px solid rgba(0,0,0,0);font-size:.875rem;font-weight:600;margin:.2rem;padding:0 .2rem;opacity:.8;text-decoration:none;vertical-align:middle}.breadcrumb a>span{border-bottom:1px solid rgba(0,0,0,0)}.breadcrumb a:hover{opacity:1}.breadcrumb a:hover>span{border-color:#fff}.breadcrumb a:focus-visible{border-color:#fff;border-radius:3px;opacity:1;outline:none}.breadcrumb span{font-size:.875rem;font-weight:600}.breadcrumb.selected{color:#fff;opacity:1;vertical-align:middle}.breadcrumb.selected a{opacity:1}.breadcrumb:nth-child(n+2){min-width:3.25rem}.breadcrumb:nth-child(n+2)::before{height:1.5rem;width:1.5rem;margin-left:.25rem;margin-right:.25rem;content:url("https://cdn.corvusinsurance.com/images/chevron-right-2a40ff1ebfedcbf58db7a78a330f19c5.svg");opacity:.6;display:inline-block;vertical-align:middle}@media screen and (max-width: 30rem){.breadcrumbs{margin-right:.25rem}.breadcrumb:first-child{display:none}.breadcrumb:nth-child(2){min-width:1.75rem}.breadcrumb:nth-child(2)::before{content:none}}.card{background-color:#fff;border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative}.card .card{border:1px solid #d1d7e0;border-radius:6px;box-shadow:none}.card .claims-team{color:#6a7585;border-radius:12px;border:1px solid #d1d7e0}.card__header{border-bottom:1px solid #d1d7e0}.card__footer{border-top:1px solid #d1d7e0;padding:1.5rem}.card.-tight .card__header,.card.-tight .card__body,.card.-tight .card__footer{padding:1.5rem}.card.-super-tight .card__header,.card.-super-tight .card__body,.card.-super-tight .card__footer{padding:1rem}.card.-touching .card__header,.card.-touching .card__body,.card.-touching .card__footer{padding:0}.card.-loose .card__header,.card.-loose .card__body,.card.-loose .card__footer{padding:2rem}.card.-borderless{background-color:#f9fafc;box-shadow:none;border:none}.card.-borderless .card__header{border:none}.card.-borderless .card__body{border:none}.card.-borderless .card__footer{border:none}.card.-borderless-t{border-top-left-radius:0;border-top-right-radius:0}.dlp-recommendations .card{margin-bottom:2rem}.card--slip{padding-left:1rem;display:flex;align-items:center;margin-bottom:2rem}.card--selected-quote{background-color:#f9fafc}.card--has-status{position:relative}.card--has-status::after{border-bottom-left-radius:12px;border-top-left-radius:12px;position:absolute;top:0;bottom:0;left:0;background-color:#ebeef3;content:"";width:.5rem}.card--has-status svg{margin-right:1.5rem;height:1.5rem;width:1.5rem;fill:#d1d7e0}.card--has-status svg.teal-fill{fill:#0080a7}.card--has-status button svg{margin-right:.25rem;fill:#fff}.card--has-status.success::after{background-color:hsl(110,100%,26.9%)}.card--has-status.success svg.success{fill:hsl(110,100%,26.9%)}.card--has-status.error::after{background-color:hsl(350,80%,45%)}.card--has-status.error svg.error{fill:hsl(350,80%,45%)}.card--has-status.warning::after{background-color:hsl(30,100%,36.5%)}.card--has-status.warning svg.warning{fill:hsl(30,100%,36.5%)}.card--has-status.info::after{background-color:hsl(210,70%,46%)}.card--has-status.info svg.info{fill:hsl(210,70%,46%)}.card--has-status.accent::after{background-color:#0080a7}.card--has-status.accent svg.accent{fill:#0080a7}.card--has-status.locked::after{background-color:#a0a8b4}.card--has-status.locked svg.locked{fill:#a0a8b4}.card--has-status.neutral::after{background-color:#a0a8b4}.card--has-status.neutral svg.neutral{fill:#a0a8b4}.card--vciso{position:relative}.card--vciso::after{border-bottom-left-radius:12px;border-top-left-radius:12px;position:absolute;top:0;bottom:0;left:0;background-color:#ebeef3;content:"";width:.5rem}.card--vciso button svg{margin-right:.25rem;fill:#fff}.card--vciso.critical::after{background-color:hsl(245,55%,50%)}.card--vciso.critical svg.critical{fill:hsl(245,55%,50%)}.card--vciso.high::after{background-color:hsl(350,80%,45%)}.card--vciso.high svg.high{fill:hsl(350,80%,45%)}.card--vciso.high-score-impact::after{background-color:hsl(350,80%,45%)}.card--vciso.high-score-impact svg.high-score-impact{fill:hsl(350,80%,45%)}.card--vciso.high_score_impact::after{background-color:hsl(350,80%,45%)}.card--vciso.high_score_impact svg.high_score_impact{fill:hsl(350,80%,45%)}.card--vciso.medium::after{background-color:hsl(35,100%,50%)}.card--vciso.medium svg.medium{fill:hsl(35,100%,50%)}.card--vciso.medium-score-impact::after{background-color:hsl(35,100%,50%)}.card--vciso.medium-score-impact svg.medium-score-impact{fill:hsl(35,100%,50%)}.card--vciso.medium_score_impact::after{background-color:hsl(35,100%,50%)}.card--vciso.medium_score_impact svg.medium_score_impact{fill:hsl(35,100%,50%)}.card--vciso.low::after{background-color:hsl(45,100%,62%)}.card--vciso.low svg.low{fill:hsl(45,100%,62%)}.card--vciso.info::after{background-color:hsl(210,70%,46%)}.card--vciso.info svg.info{fill:hsl(210,70%,46%)}.card--vciso.critical-for-renewal::after{background-color:hsl(350,80%,45%)}.card--vciso.critical-for-renewal svg.critical-for-renewal{fill:hsl(350,80%,45%)}.card--vciso.may-impact-renewal::after{background-color:hsl(35,100%,50%)}.card--vciso.may-impact-renewal svg.may-impact-renewal{fill:hsl(35,100%,50%)}.card--vciso.best-practice::after{background-color:hsl(45,100%,62%)}.card--vciso.best-practice svg.best-practice{fill:hsl(45,100%,62%)}.card--vciso.best_practice::after{background-color:hsl(45,100%,62%)}.card--vciso.best_practice svg.best_practice{fill:hsl(45,100%,62%)}.card--vciso.complete::after{background-color:hsl(171,100%,45%)}.card--vciso.complete svg.complete{fill:hsl(171,100%,45%)}.card--vciso__text--critical{text-align:center;font-weight:600;width:12.5rem;color:hsl(245,55%,50%);padding:2rem 2rem 2rem 2rem}.card--vciso__text--high{text-align:center;font-weight:600;width:12.5rem;color:hsl(350,72%,40.5%);padding:2rem 2rem 2rem 2rem}.card--vciso__text--high-score-impact{text-align:center;font-weight:600;width:12.5rem;color:hsl(350,72%,40.5%);padding:2rem 2rem 2rem 2rem}.card--vciso__text--high_score_impact{text-align:center;font-weight:600;width:12.5rem;color:hsl(350,72%,40.5%);padding:2rem 2rem 2rem 2rem}.card--vciso__text--medium{text-align:center;font-weight:600;width:12.5rem;color:hsl(22,100%,27%);padding:2rem 2rem 2rem 2rem}.card--vciso__text--medium-score-impact{text-align:center;font-weight:600;width:12.5rem;color:hsl(22,100%,27%);padding:2rem 2rem 2rem 2rem}.card--vciso__text--medium_score_impact{text-align:center;font-weight:600;width:12.5rem;color:hsl(22,100%,27%);padding:2rem 2rem 2rem 2rem}.card--vciso__text--low{text-align:center;font-weight:600;width:12.5rem;color:#20252c;padding:2rem 2rem 2rem 2rem}.card--vciso__text--info{text-align:center;font-weight:600;width:12.5rem;color:hsl(210,70%,46%);padding:2rem 2rem 2rem 2rem}.card--vciso__text--critical-for-renewal{text-align:center;font-weight:600;width:12.5rem;color:hsl(350,80%,45%);padding:2rem 2rem 2rem 2rem}.card--vciso__text--may-impact-renewal{text-align:center;font-weight:600;width:12.5rem;color:hsl(22,100%,27%);padding:2rem 2rem 2rem 2rem}.card--vciso__text--best-practice{text-align:center;font-weight:600;width:12.5rem;color:#20252c;padding:2rem 2rem 2rem 2rem}.card--vciso__text--best_practice{text-align:center;font-weight:600;width:12.5rem;color:#20252c;padding:2rem 2rem 2rem 2rem}.card--vciso__text--complete{text-align:center;font-weight:600;width:12.5rem;color:hsl(171,100%,17%);padding:2rem 2rem 2rem 2rem}.card--aac{position:relative;background-color:hsl(245,80%,60%)}.card--aac::after{border-bottom-left-radius:12px;border-top-left-radius:12px;position:absolute;top:0;bottom:0;left:0;background-color:#ebeef3;content:"";width:.5rem}.card--aac svg{margin-right:1.5rem;height:1.5rem;width:1.5rem;fill:#d1d7e0}.card--aac button svg{margin-right:.25rem;fill:#fff}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.critical{fill:hsl(245,55%,50%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.high{fill:hsl(350,80%,45%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.high-score-impact{fill:hsl(350,80%,45%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.high_score_impact{fill:hsl(350,80%,45%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.medium{fill:hsl(35,100%,50%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.medium-score-impact{fill:hsl(35,100%,50%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.medium_score_impact{fill:hsl(35,100%,50%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.low{fill:hsl(45,100%,62%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.info{fill:hsl(210,70%,46%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.critical-for-renewal{fill:hsl(350,80%,45%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.may-impact-renewal{fill:hsl(35,100%,50%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.best-practice{fill:hsl(45,100%,62%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.best_practice{fill:hsl(45,100%,62%)}.card--aac::after{background-color:hsl(245,80%,60%)}.card--aac svg.complete{fill:hsl(171,100%,45%)}.card--options__add{display:flex;align-items:center}.card--options__add svg{height:1rem;width:1rem;fill:#0080a7}.card--bottomless{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.card__content{align-items:center;display:flex;justify-content:space-between}.card__content-main{align-items:center;display:flex;overflow:hidden}.card__content-meta{color:#6a7585}.card__content-meta *{display:inline-block}.card__content-meta time{margin-right:.5rem}.card__content-meta button{margin-left:.5rem}.card--like-input{padding:1rem 1.5rem;display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.card--triple .card__body--left{flex-basis:75%}.card--triple .card__body--right{border-left:1px solid #d1d7e0;display:flex;align-self:stretch;flex-basis:25%}.card.bg-confetti{background-image:url("https://cdn.corvusinsurance.com/images/bubbles-bg-19a7b4aceb67df9267ad0346f8ee50cb.gif");background-size:cover;text-shadow:0 0 .5rem #fff}.policyholder-overview{border-radius:6px;display:flex;flex-direction:column}.policyholder-overview__main-content{display:flex;flex-direction:column;flex-grow:1;padding:1.5rem}.policyholder-overview__main-content--extended{padding-bottom:2rem}.policyholder-overview__score-content{display:flex;flex-direction:column;height:8.25rem;justify-content:center}.policyholder-overview__questionnaire-progress-content{display:flex;gap:.25rem;flex-direction:column;height:8.25rem;justify-content:center}.policyholder-overview__recommended-actions-content{padding-bottom:1.25rem}.policyholder-overview__next-scan-content{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:1.5rem;align-self:stretch}.policyholder-overview__details{display:flex;flex-direction:column;flex-grow:1;font-size:.875rem;font-weight:400;justify-content:space-between;margin-top:1.5rem}.policyholder-overview__details svg.threshold-marker{display:inline-block}.policyholder-overview__progress-bar,.policyholder-overview__progress-bar--unstarted{align-items:center;background-color:#ebeef3;border-radius:3px;display:flex;height:inherit;justify-content:space-between;overflow:hidden;position:relative}.policyholder-overview__progress-bar--unstarted:hover{background-color:#d1d7e0;transition-duration:200ms}.policyholder-overview__progress-bar--unstarted:not(:hover){transition-duration:300ms}.policyholder-overview__progress-bar:hover .policyholder-overview__progress-inside,.policyholder-overview__progress-bar:hover .policyholder-overview__progress-inside--recommended_actions_card-complete,.policyholder-overview__progress-bar:hover .policyholder-overview__progress-inside--recommended_actions_card,.policyholder-overview__progress-bar:hover .policyholder-overview__progress-inside--rsa_card-complete,.policyholder-overview__progress-bar:hover .policyholder-overview__progress-inside--rsa_card,.policyholder-overview__progress-bar--unstarted:hover .policyholder-overview__progress-inside,.policyholder-overview__progress-bar--unstarted:hover .policyholder-overview__progress-inside--recommended_actions_card-complete,.policyholder-overview__progress-bar--unstarted:hover .policyholder-overview__progress-inside--recommended_actions_card,.policyholder-overview__progress-bar--unstarted:hover .policyholder-overview__progress-inside--rsa_card-complete,.policyholder-overview__progress-bar--unstarted:hover .policyholder-overview__progress-inside--rsa_card{background-color:#6ff;transition-duration:200ms}.policyholder-overview__progress-bar:not(:hover) .policyholder-overview__progress-inside,.policyholder-overview__progress-bar:not(:hover) .policyholder-overview__progress-inside--recommended_actions_card-complete,.policyholder-overview__progress-bar:not(:hover) .policyholder-overview__progress-inside--recommended_actions_card,.policyholder-overview__progress-bar:not(:hover) .policyholder-overview__progress-inside--rsa_card-complete,.policyholder-overview__progress-bar:not(:hover) .policyholder-overview__progress-inside--rsa_card,.policyholder-overview__progress-bar--unstarted:not(:hover) .policyholder-overview__progress-inside,.policyholder-overview__progress-bar--unstarted:not(:hover) .policyholder-overview__progress-inside--recommended_actions_card-complete,.policyholder-overview__progress-bar--unstarted:not(:hover) .policyholder-overview__progress-inside--recommended_actions_card,.policyholder-overview__progress-bar--unstarted:not(:hover) .policyholder-overview__progress-inside--rsa_card-complete,.policyholder-overview__progress-bar--unstarted:not(:hover) .policyholder-overview__progress-inside--rsa_card{transition-duration:300ms}.policyholder-overview__progress-bar__card_container:not(:last-child){margin:2rem}.policyholder-overview__progress-bar-text{display:flex;width:100%;color:#444d59;font-size:.875rem;font-weight:600;margin:1.5rem;z-index:1}.policyholder-overview__progress-bar-text-questionnaire-name{flex:1 1 0%;color:#111827}.policyholder-overview__progress-bar-text-percentage{font-weight:600;font-size:.875rem;line-height:1.25rem;color:#1f2937}.policyholder-overview__timer-bar,.policyholder-overview__timer-bar--renewal_card,.policyholder-overview__timer-bar--scan_card{animation-name:barOnLoad;animation-duration:400ms;animation-fill-mode:forwards;display:flex;justify-content:space-between;height:inherit;border-radius:3px;border:1px solid rgb(51,193.8,255);background-color:rgb(239.565,247.4519461078,249.855);border:1px solid rgb(239.565,247.4519461078,249.855);position:relative;overflow:hidden;align-items:center}.policyholder-overview__timer-bar--text{color:#444d59;font-size:.875rem;font-weight:600;margin:1.5rem;z-index:1}@keyframes barOnLoad{from{background-color:rgb(239.565,247.4519461078,249.855);border:1px solid rgb(239.565,247.4519461078,249.855)}to{background-color:#fff;border:1px solid rgb(51,193.8,255)}}.policyholder-overview__timer-bar--scan_card{animation-delay:1200ms}.policyholder-overview__timer-bar--renewal_card{animation-delay:1500ms}.policyholder-overview__timer-graphic,.policyholder-overview__timer-graphic--renewal_card,.policyholder-overview__timer-graphic--scan_card{animation-name:timerOnLoad;animation-duration:400ms;animation-fill-mode:forwards;position:absolute;top:-4.5px;right:3rem;opacity:0}@keyframes timerOnLoad{from{scale:.1}to{scale:1;opacity:1}}.policyholder-overview__timer-graphic--scan_card{animation-delay:1200ms}.policyholder-overview__timer-graphic--renewal_card{animation-delay:1500ms}.policyholder-overview__header{font-family:"Rubik",sans-serif;font-size:1rem;font-weight:400;color:#20252c;padding:1.5rem}.policyholder-overview__help-icon{fill:currentColor;color:hsl(209,89%,55%)}.policyholder-overview__annulus-marker{transform:rotate(-65deg);position:absolute}.policyholder-overview__score-background,.policyholder-overview__score-background-red,.policyholder-overview__score-background-yellow,.policyholder-overview__score-background-green{align-items:center;flex-flow:unset;border-radius:3px}.policyholder-overview__score-background-green{background:rgba(0,229,195,.1)}.policyholder-overview__score-background-yellow{background:rgba(255,207,63,.1)}.policyholder-overview__score-background-red{background:rgba(207,23,54,.1)}.policyholder-overview__progress-inside,.policyholder-overview__progress-inside--recommended_actions_card-complete,.policyholder-overview__progress-inside--recommended_actions_card,.policyholder-overview__progress-inside--rsa_card-complete,.policyholder-overview__progress-inside--rsa_card{position:absolute;top:0;bottom:0;left:0;animation:moveProgressRight 1200ms;animation-fill-mode:forwards;background-color:hsl(190,100%,75%);border-radius:3px;font-weight:600;font-size:.875rem;color:#20252c;display:flex;justify-content:left;align-items:center;opacity:0}.policyholder-overview__progress-inside--percent{align-self:right}@keyframes moveProgressRight{from{transform:translateX(-100%);opacity:0}to{transform:translateX(0);opacity:1}}.policyholder-overview__progress-inside--rsa_card{animation-delay:500ms}.policyholder-overview__progress-inside--rsa_card-complete{background-color:rgb(51,193.8,255);animation-delay:500ms}.policyholder-overview__progress-inside--recommended_actions_card{animation-delay:800ms}.policyholder-overview__progress-inside--recommended_actions_card-complete{background-color:rgb(51,193.8,255);animation-delay:800ms}.policyholder-overview__text{color:#20252c;font-weight:400;font-size:1rem;padding:.5rem 3rem}.policyholder-overview--small_grey_text,.policyholder-overview--small_grey_text--renewal_card,.policyholder-overview--small_grey_text--scan_card{animation-name:textLoad;animation-duration:200ms;animation-fill-mode:forwards;color:#6a7585;font-weight:400;font-size:.75rem;text-align:right;align-self:end;opacity:0}@keyframes textLoad{from{opacity:0}to{opacity:1}}.policyholder-overview--small_grey_text--scan_card{animation-delay:1200ms}.policyholder-overview--small_grey_text--renewal_card{animation-delay:1500ms}.policyholder-overview__small_text{color:#20252c;font-weight:400;font-size:.75rem;padding:0 0 2rem 4rem}.policyholder-overview__link{align-self:flex-end;display:flex;flex-direction:column;font-size:.875rem;margin-bottom:1.5rem;margin-top:1rem;padding-right:1.5rem;text-align:right;text-decoration:underline}.policyholder-overview__button{padding:.5rem 3rem}.policyholder-overview__graphic{padding:3.5rem 0 4rem 3rem}.appetite__card{padding:1.5rem;flex-basis:66.6666666667%;height:100%;margin-bottom:3.5rem;border-radius:12px;border:0;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.appetite{display:flex;flex:3;flex-wrap:wrap;padding-top:1.5rem}.appetite__header button{float:right}.appetite__header button .icon{margin-right:0}.appetite__contents{display:flex}.appetite__details{flex-basis:50%;text-align:center}.appetite__details .icon{fill:#0080a7;height:3rem;width:3rem;margin:0}.appetite__details p{padding-left:2rem;padding-right:2rem}.appetite__instructions{flex-basis:100%;margin-bottom:0;margin-top:1rem}.appetite__flight{border-left:1px solid #d1d7e0;padding-top:1.5rem;text-align:center;flex:1}.appetite__flight .icon{fill:#0080a7;height:3rem;width:3rem;margin:0}.appetite__flight p{padding-left:2rem;padding-right:2rem}.flight-card{margin-bottom:2rem}.flight-card .card__body{display:flex;border-radius:12px}.flight-card svg{fill:#0080a7;height:2.25rem;width:2.25rem}.flight-card .flight-enablement{flex:1}.referral-card{margin-top:2.5rem;text-align:center;border:0;box-shadow:0 1px .25rem rgba(32,37,44,.1);max-width:14.5rem;background-color:#fff;border-radius:12px}.referral-card__text-section{padding:1.5rem}.referral-card__title{font-weight:600;padding-bottom:1rem}.referral-card__description{color:#6a7585;font-size:1rem;padding-bottom:1rem}.referral-card a{text-decoration:underline;padding-bottom:.5rem}.onboarding{flex-basis:33.33333%;margin-left:3.5rem;height:100%;font-size:1rem;letter-spacing:.5%;line-height:150%;padding:1rem;border-radius:12px;border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.onboarding img{display:block;margin-right:auto;margin-left:auto;margin-top:1rem;margin-bottom:1rem}.onboarding__heading{color:#20252c;font-weight:600;margin-bottom:1rem}.onboarding__heading-finished{font-size:22px;line-height:140%;font-weight:600;text-align:center;padding-bottom:.5rem}.onboarding__task{border-bottom:1px solid #ebeef3;display:flex;justify-content:space-between}.onboarding__task-last{border-bottom:none;margin-bottom:0}.onboarding__task-title{color:#20252c;margin-top:1rem;margin-bottom:.375rem}.onboarding__task-subtitle{color:#444d59;font-size:.75rem;line-height:140%;margin-bottom:.5rem}.onboarding__content{color:#444d59;text-align:center;padding-top:.5rem;padding-right:2rem;padding-left:2rem}.onboarding__dismiss{color:#0080a7;font-weight:600;text-align:center;padding-top:.25rem;cursor:pointer}.onboarding__dismiss:hover{color:#006685}.onboarding__chevron{color:#0080a7;margin-top:1.5rem}.onboarding__check{color:hsl(245,100%,68%);height:1.5rem;width:1.5rem;vertical-align:bottom}.onboarding__completed{color:#6a7585}.onboarding__progress-bar{height:1rem;background-color:#ebeef3;border-radius:.5rem;position:relative;overflow:hidden}.onboarding__progress-inside{position:absolute;top:0;bottom:0;left:0;background-image:linear-gradient(to right, hsl(245, 100%, 90%), hsl(245, 100%, 68%));border-radius:.5rem}.onboarding__progress-inside--transparent{opacity:.4}.broker-settings-card{margin-top:1.5rem;padding:2.5rem;border:0;box-shadow:0 1px .25rem rgba(32,37,44,.1);background-color:#fff;border-radius:12px}.claims-resources-card{box-sizing:border-box;display:flex;flex-direction:column;align-items:flex-start;padding:3rem;width:768px;background-color:#fff;border:1px solid #d1d7e0;box-shadow:0 2px 1rem rgba(32,37,44,.1);border-radius:12px;flex:none;order:1;flex-grow:0}.claims-resources-card .card__body{gap:1rem}.claims-resources-card .card__body ul{display:flex;flex-direction:column;gap:.3em;line-height:1.6;letter-spacing:.005em;margin:0;list-style:none;padding:0 0 0 .54em}.claims-resources-card .card__body li{padding-left:1em}.claims-resources-card .card__body li::before{content:"•";float:left;margin-left:-1em}@media screen and (max-width: 30rem){.card__header,.card__body,.card__footer{padding:1rem}}.claims{display:flex;flex-direction:row}.claims__header-sub-text{color:#a0a8b4;display:block;font-size:.875rem;font-weight:600}.claims__at-a-glance li{width:10em;margin-right:0px !important;text-align:center;vertical-align:middle}.claims__main{display:flex;flex-direction:column;flex:3}.claims__main #see-all-claims,.claims__main #see-all-claims:hover{text-decoration:underline}.claims__status-container{display:flex;flex-direction:column;flex:1;width:100%;border-left:1px solid #d1d7e0}.claims__status-container--child{margin-left:2rem}.claims__status-container--current::after{content:"";display:block;border-bottom:1px solid #d1d7e0;width:100%;margin-top:2rem}.claims-team__container{border:1px solid #d1d7e0;border-bottom:none;padding-bottom:.5rem}.claims-team__container__body{margin-top:1.5rem;margin-bottom:1.5rem;display:flex}.claims-team__container:last-child{border-bottom:1px solid #d1d7e0}.claims-team .contact-info{text-align:left;padding-left:1rem}.claims-team .contact-info__headshot{margin-left:-0.5rem;margin-top:0;top:0;width:90px;height:90px}.claims-team__contact-icon{height:1.75em;width:1.75em;fill:#6a7585;text-decoration:none}.claims-form-inner{flex:7}.notes-form-wrap{flex:3;padding-left:1.5rem}.notes-form-wrap ul.admin-notes-list li{list-style-type:none;border:1px solid hsl(216,19.4805194805%,94.9019607843%);border-top:1px solid #fff;border-bottom:1px solid #ebeef3;background-color:#f9fafc;padding:1rem;font-size:.875rem}.notes-form-wrap ul.admin-notes-list li:first-of-type{border-top:1px solid hsl(216,19.4805194805%,94.9019607843%)}.notes-form-wrap ul.admin-notes-list li:last-of-type{border-bottom:1px solid hsl(216,19.4805194805%,94.9019607843%)}.exposure-types-form{padding:.5rem}.exposure-types-form--exposure-type{max-width:150px;margin-right:1rem}.exposure-types-form--exposure-date{max-width:256px;margin-right:1rem}.exposure-types-form--loss-reserve{max-width:115px;margin-right:1rem}.exposure-types-form--loss-paid{max-width:115px;margin-right:1rem}.exposure-types-form--expense-reserve{max-width:115px;margin-right:1rem}.exposure-types-form--expense-paid{max-width:115px;margin-right:1rem}.aggregate-claims__empty-icon{height:6em;width:6em;fill:#0080a7}.aggregate-claims__empty{display:flex;flex-direction:column;align-items:center;justify-content:center}.claim-status-tracker__image{padding:0;margin:0}.claim-status-tracker__image__received{content:url("https://cdn.corvusinsurance.com/images/claim-tracker-statusBar1-c88f0eb55719b3f689d18bb8e63d69a0.svg");width:793px}.claim-status-tracker__image__assignment_progress{content:url("https://cdn.corvusinsurance.com/images/claim-tracker-statusBar2-5bcd1d043675f718a68df82f22c7ebcf.svg");width:794px}.claim-status-tracker__image__letter_progress{content:url("https://cdn.corvusinsurance.com/images/claim-tracker-statusBar3-40f4f9d46f101562e120ca409eea29fc.svg");width:794px}.claim-status-tracker__image__letter_done{content:url("https://cdn.corvusinsurance.com/images/claim-tracker-statusBar4-df7c34adbcd9964123b1164532061d0f.svg");width:794px}.claim-status-tracker__image__closed{content:url("https://cdn.corvusinsurance.com/images/claim-tracker-statusBar5-fa511030ebdc707b8e03a0caf3bee74a.svg");width:792px}.claim-status-tracker__image__claim_process_static{content:url("https://cdn.corvusinsurance.com/images/claim-process-static-228b674b1bb9e46bf9913ef814fe62d8.svg");width:797px}.client-technology-overview__feedback{border-top:1px solid #d1d7e0;display:flex;align-items:center;box-sizing:content-box}.client-technology-overview__feedback button{display:flex;align-items:center;justify-content:center;width:1.25rem;height:1.25rem;border-radius:1.5px;color:#d1d7e0;transition:color .2s ease}.client-technology-overview__feedback button:first-of-type{margin:0 1rem}.client-technology-overview__feedback button:hover{color:#a0a8b4}.client-technology-overview__feedback button:focus-visible{outline:2px solid #000}.client-technology-overview__feedback button svg{stroke-width:2px;height:1.25rem;width:1.25rem}.client-technology-overview__feedback button.feedback-accepted-active{color:hsl(110,100%,26.9%)}.client-technology-overview__feedback button.feedback-rejected-active{color:hsl(350,80%,45%)}.collapsed-section{border-top:2px dotted #ebeef3;margin-top:2rem;padding-top:2rem}.collapsed-section .expand,.collapsed-section .collapse{flex:1}.confirm-bind{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.confirm-bind__logo{display:flex;justify-content:center;align-items:center;margin-bottom:3em}.confirm-bind__logo svg{transform:scale(1.2)}@media only screen and (max-width: 1199px){.confirm-bind__logo svg{transform:scale(1)}}.confirm-bind__logo img{width:10rem}.confirm-bind__copy{display:flex;flex-direction:column;justify-content:center;align-items:center;padding-bottom:1.5em}@media only screen and (min-width: 813px){.confirm-bind__copy{width:50%}}.confirm-bind__copy--error{height:60vh}.confirm-bind__copy h1{display:inline;font-size:1.875em;font-weight:400;margin-bottom:1.5rem;color:#20252c;text-align:center}.confirm-bind__copy h1 strong{font-weight:500}.confirm-bind__copy p{display:inline;font-size:1em;color:#444d59;text-align:center}.confirm-bind__table-container{max-height:40vh;overflow-y:auto;overflow-x:hidden;margin-bottom:1rem}@media only screen and (max-width: 1199px){.confirm-bind__table-container{display:none}}.confirm-bind__cards-container{margin:1em}@media only screen and (min-width: 1200px){.confirm-bind__cards-container{display:none}}.confirm-bind form{display:flex;flex-direction:column;align-items:center;justify-content:center}@media only screen and (min-width: 1200px){.confirm-bind form{min-width:82.75em}}@media only screen and (max-width: 1199px){.confirm-bind form{width:100%}}.confirm-bind form .confirm-bind__form-title{font-family:"Open Sans",sans-serif;font-weight:600;font-size:1.375em;color:#444d59;align-self:flex-start}@media only screen and (max-width: 1199px){.confirm-bind form .confirm-bind__form-title:first-of-type{display:none}}.confirm-bind form table{width:100%;border-collapse:separate;border-spacing:0 1em}.confirm-bind form table th,.confirm-bind form table td{padding-right:6.5em}.confirm-bind form table thead{position:sticky;top:0;background-color:#f9fafc}.confirm-bind form table thead th{font-size:.75rem;font-weight:600;letter-spacing:.05em;line-height:1.2;margin:0;text-transform:uppercase;font-size:.75em;padding:1em 0}.confirm-bind form table thead .tool-tip-a11y-trigger{transform:translate(0.25em)}.confirm-bind form table thead .tool-tip-a11y-trigger svg{fill:#0080a7;transform:scale(1.5)}@media(hover: hover)and (pointer: fine){.confirm-bind form table thead .tool-tip-a11y-trigger:hover .tool-tip-a11y--top{transform:translateX(1em) translateY(0.5em)}}.confirm-bind form table thead .tool-tip-a11y-trigger span:first-child:focus+.tool-tip-a11y--top{transform:translateX(1em) translateY(0.5em)}.confirm-bind form table thead .tool-tip-a11y-trigger .tool-tip-a11y--top{background-color:rgb(0,79.05,153);position:absolute;top:100%;right:50%;bottom:auto;left:auto;transform:translateX(1em) translateY(0.5em)}.confirm-bind form table thead .tool-tip-a11y-trigger .tool-tip-a11y--top::before,.confirm-bind form table thead .tool-tip-a11y-trigger .tool-tip-a11y--top::after{position:absolute;top:auto;right:1em;bottom:100%;left:auto;border-style:solid;height:0;width:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgb(0,79.05,153);border-width:0 .375rem .375rem;transform:translate(50%, 0)}.confirm-bind form table tbody tr{height:6.75em;margin:1em 0;background-color:#fff;border-radius:12px}.confirm-bind form table tbody tr .confirm-bind__option-label{padding-left:1em}.confirm-bind form table tbody tr td{border-color:rgba(0,0,0,0) #fff}.confirm-bind form table tbody tr td:first-child{padding-left:3em;border-radius:12px 0 0 12px}.confirm-bind form table tbody tr td:last-child{border-radius:0 12px 12px 0}.confirm-bind form .form__footer{display:flex;justify-content:space-between;align-items:center;background-color:#f9fafc;padding:1em;width:100%}@media only screen and (max-width: 1199px){.confirm-bind form .form__footer{justify-content:center}.confirm-bind form .form__footer button{display:none}.confirm-bind form .form__footer div{text-align:center}.confirm-bind form .form__footer svg{display:none}}.confirm-bind form .form__footer svg{fill:#0080a7;transform:scale(1.5);margin-left:.25em}.confirm-bind .bind-option{background-color:#fff;padding:3em;min-width:27em;box-shadow:0 1px .25rem rgba(32,37,44,.1);margin-bottom:3em}.confirm-bind .bind-option h2{font-family:"Open Sans",sans-serif;font-size:1.375em;font-weight:600;color:#444d59;margin-bottom:3em}.confirm-bind .bind-option__dates,.confirm-bind .bind-option__coverage{margin:1.5em 0}.confirm-bind .bind-option__coverage{margin-bottom:0}.confirm-bind .bind-option__data{display:flex;justify-content:space-between;margin:1.5em 0}.confirm-bind .bind-option__data:last-of-type{margin-bottom:0}.confirm-bind .bind-option__data-label{font-size:.75rem;font-weight:600;letter-spacing:.05em;line-height:1.2;margin:0;text-transform:uppercase;font-size:.875em}.confirm-bind .bind-option__data-label .checkbox{display:flex}.confirm-bind .bind-option .tool-tip-a11y--top{max-width:50vw;font-size:1em}.confirm-bind .bind-option__separator{width:100%;height:1px;background-color:#d1d7e0;margin:2em 0}.confirm-bind .bind-option__button{margin:2em 0 0;display:flex;justify-content:center}.confirm-bind .bind-option+.confirm-bind__copy p{margin-bottom:.5em}.connected-group__row,.connected-group__header{display:flex;align-items:center}.connected-group__item{flex:2}.connected-group__input{flex:2;margin-top:-1px;margin-right:-1px}.connected-group__input:active,.connected-group__input:focus,.connected-group__input:hover{z-index:1}.connected-group__input .form__control{border-radius:0}.connected-group__label{flex:1;margin-left:1rem}.connected-group__label label{margin-bottom:0}.connected-group__delete{margin-left:.5rem}.connected-group__row:nth-child(2) .connected-group__input:first-child .form__control{border-top-left-radius:3px}.connected-group__row:nth-child(2) .connected-group__input:nth-last-child(2) .form__control{border-top-right-radius:3px}.connected-group__row:last-child .connected-group__input:first-child .form__control{border-bottom-left-radius:3px}.connected-group__row:last-child .connected-group__input:nth-last-child(2) .form__control{border-bottom-right-radius:3px}.copy-link{display:flex}.copy-link__url-area{width:100%}.copy-link__action{margin-left:1rem}.corvus-black-page{padding:0 3rem}.corvus-black-page .btn-shiny{transition:.6s;overflow:hidden;position:relative}.corvus-black-page .btn-shiny::before{content:"";display:block;position:absolute;background:hsla(0,0%,100%,.75);width:60px;height:100%;left:0;top:0;opacity:.5;filter:blur(30px);transform:translateX(-100px) skewX(-15deg)}.corvus-black-page .btn-shiny::after{content:"";display:block;position:absolute;background:hsla(0,0%,100%,.4);width:30px;height:100%;left:30px;top:0;opacity:0;filter:blur(5px);transform:translateX(-100px) skewX(-15deg)}.corvus-black-page .btn-shiny:hover::before{transform:translateX(300px) skewX(-15deg);opacity:.6;transition:.7s}.corvus-black-page .btn-shiny:hover::after{transform:translateX(300px) skewX(-15deg);opacity:1;transition:.7s}.corvus-black-page--header{text-align:center}.corvus-black-page--header .introducing-logo span{color:#20252c;font-size:.9rem;font-weight:600;display:block;line-height:1;text-transform:uppercase}.corvus-black-page--header .introducing-logo .logo-corvus-black{display:block;height:2.5rem;margin:.25rem 0;width:100%;fill:#20252c}.corvus-black-page--header .introducing-logo .logo-corvus-black.-mini{height:1.75rem}.corvus-black-page--header h2{color:#20252c;font-size:2.25rem;font-weight:700}.corvus-black-page--header p{font-size:1.375rem}.corvus-black-page--header p b{color:#20252c;font-weight:600}.corvus-black-page--header a.back-link{display:block;text-align:left;font-weight:600}.corvus-black-page--header a.back-link:hover{text-decoration:underline}.corvus-black-page .corvus-black-service{border:0;border-top:7px solid #20252c;border-radius:3px;box-shadow:0 .125rem 1rem rgba(0,0,0,.15)}.corvus-black-page .corvus-black-service svg.logo-bird{width:100%;height:1.5rem;display:inline-block;margin-bottom:1.5rem}.corvus-black-page .corvus-black-service--title{font-size:1rem;font-weight:600;color:#20252c}.corvus-black-page .corvus-black-service--desc{font-size:.875rem;min-height:6em;padding-left:1rem;padding-right:1rem}.corvus-black-page .corvus-black-service--btn a.button{color:#fff;background-color:#20252c;border-radius:1.5rem}.corvus-black-page .corvus-black-service--btn a.button:hover,.corvus-black-page .corvus-black-service--btn a.button:focus{color:#fff;background-color:#20252c}.corvus-black-page .corvus-black-service--excitement{position:relative;padding-top:1.5rem}.corvus-black-page .corvus-black-service--excitement span{font-size:.75rem;font-weight:600;color:#20252c;display:block}.corvus-black-page .corvus-black-service--excitement::after{content:"";position:absolute;top:0;left:20%;right:20%;height:1px;background:linear-gradient(to right, rgba(32, 37, 44, 0), #20252c, rgba(32, 37, 44, 0))}.corvus-black-page .corvus-black-service--reactions button{color:#6a7585;background:rgba(0,0,0,0)}.corvus-black-page .corvus-black-service--reactions button:hover{color:#20252c}.corvus-black-page .corvus-black-service--reactions.selection-made button{color:#d1d7e0}.corvus-black-page .corvus-black-service--reactions.selection-made button.selected{color:#20252c}.corvus-black-page .corvus-black-service--idea{font-size:1rem;font-weight:600;color:#20252c;text-align:center;align-self:center}.corvus-black-page .corvus-black-service--idea a.button{color:#fff;background-color:#20252c;border-radius:1.5rem}.corvus-black-page .corvus-black-service--idea a.button:hover,.corvus-black-page .corvus-black-service--idea a.button:focus{color:#fff;background-color:#20252c}.corvus-black-page--mkt-desc{text-align:left;flex:3;padding:0 1.5rem 0 0}.corvus-black-page--mkt-desc h3{font-size:1.875rem;font-weight:400;color:#20252c}.corvus-black-page--mkt-desc b{font-weight:600;color:#20252c}.corvus-black-page--mkt-img{flex:2}.corvus-black-page--mkt-img img:not(.logo){border:1px solid #d1d7e0;box-shadow:0 .125rem 1rem rgba(0,0,0,.15)}.corvus-black-page--download{text-align:left;margin-bottom:3rem}.corvus-black-widget-wrap{position:relative}.corvus-black-widget-wrap img.corvus-black-logo{height:33px;width:auto;position:absolute;top:17.5px;left:1.5rem;z-index:1}.corvus-black-widget-wrap .page-section{border:0;padding:0;margin-bottom:0}.corvus-black-widget-wrap .page-section--expanded,.corvus-black-widget-wrap .page-section--collapsed{border:0;padding:0;margin-bottom:0;background-image:url("https://cdn.corvusinsurance.com/images/corvus-black-dots-strip-a66b0574940355a57be29982cc990c24.jpg");background-size:auto 100%;background-repeat:no-repeat;height:68px;background-color:#20252c;position:relative;transition:margin-left 200ms ease-in}.corvus-black-widget-wrap .page-section--expanded{margin-left:calc(-1*1.5rem)}.corvus-black-widget-wrap .page-section--expanded::before{content:"";position:absolute;bottom:-2.5rem;left:1.05rem;border-left:2rem solid #6a7585;border-right:0;border-bottom:2rem solid rgba(0,0,0,0);border-top:2rem solid rgba(0,0,0,0);transform:rotate(-45deg)}.corvus-black-widget-wrap .page-section .section-title{margin-left:300px;color:#fff}.corvus-black-widget-wrap .page-section .page-section__expander{color:#fff;margin-right:1rem}.corvus-black-widget-wrap .page-section .page-section__expander:hover,.corvus-black-widget-wrap .page-section .page-section__expander:focus{color:#fff;background:rgba(0,0,0,0)}.corvus-black-widget-wrap .corvus-black-page{padding:.5rem 1rem}.corvus-black-widget .corvus-black-widget-service{perspective:600px;width:160px;height:160px}.corvus-black-widget .corvus-black-widget-service--inner{position:relative;transform-style:preserve-3d;transition:transform .35s;width:160px;height:160px}.corvus-black-widget .corvus-black-widget-service--inner:hover{transform:rotateX(90deg)}.corvus-black-widget .corvus-black-widget-service--edge{position:absolute;width:160px;height:160px}.corvus-black-widget .corvus-black-widget-service--edge .corvus-black-service{font-size:.875rem;width:160px;height:160px;justify-content:center;display:flex;flex-direction:column;padding-left:1rem;padding-right:1rem}.corvus-black-widget .corvus-black-widget-service--edge.edge-front{background:#fff;transform:translate3d(0, 0, 80px)}.corvus-black-widget .corvus-black-widget-service--edge.edge-back{background:#ebeef3;transform:rotateY(180deg) translate3d(0, 0, 80px)}.corvus-black-widget .corvus-black-widget-service--edge.edge-left{background:#ebeef3;transform:rotateY(-90deg) translate3d(0, 0, 80px)}.corvus-black-widget .corvus-black-widget-service--edge.edge-right{background:#ebeef3;transform:rotateY(90deg) translate3d(0, 0, 80px)}.corvus-black-widget .corvus-black-widget-service--edge.edge-top{background:#ebeef3;transform:rotateX(90deg) translate3d(0, 0, 80px)}.corvus-black-widget .corvus-black-widget-service--edge.edge-bottom{background:#20252c;width:160px;height:160px;justify-content:center;display:flex;flex-direction:column;transform:rotateX(-90deg) translate3d(0, 0, 80px)}.corvus-black-widget .corvus-black-widget-service--edge.edge-bottom svg.logo-bird{width:100%;height:1.5rem;display:inline-block;margin-bottom:1.5rem;fill:#fff}.corvus-black-widget .corvus-black-widget-service--edge.edge-bottom .button{background-color:rgba(0,0,0,0);color:#fff;font-size:.75rem;border:2px solid #fff;border-radius:50px;padding-top:.5rem;padding-bottom:.5rem}.corvus-black-widget .corvus-black-widget-service--edge.edge-bottom .button:hover{background-color:#fff;color:#20252c}.corvus-black-widget--more{text-align:center;border-bottom:1px solid #d1d7e0;margin-bottom:1.25rem;padding-bottom:.3rem;font-style:italic}.corvus-black-widget--preview{font-size:.875rem}.corvus-black-widget--preview-img{padding:0 2rem}.corvus-black-widget--preview-img img{margin-bottom:1rem;border:1px solid #d1d7e0;box-shadow:0 .125rem 1rem rgba(0,0,0,.15)}.corvus-black-widget--preview p{font-size:.875rem}.corvus-black-widget--preview a{color:#0080a7;text-decoration:underline;cursor:pointer}.coverage-part:nth-child(n+2){border-top-left-radius:0;border-top-right-radius:0}.coverage-part:nth-last-child(n+2){border-bottom-left-radius:0;border-bottom-right-radius:0}.coverage-part:last-child .card__header{border-bottom:0}.coverage-part:last-child .card__body{border-top:1px solid #ebeef3;border-bottom-left-radius:12px;border-bottom-right-radius:12px}.coverage-part.card.-tight .card__header{border-bottom-color:#ebeef3;padding:0}.coverage-part__header+label{font-size:1rem;font-weight:600;padding:1.5rem;display:flex;justify-content:space-between}.coverage-part__header+label .checkbox__icon{order:2}.coverage-part__body{background-color:#ebeef3;box-shadow:inset 0 1px .25rem rgba(32,37,44,.1)}.feedback{width:100%}.feedback__tab{position:fixed;right:10rem;bottom:-1px;border-bottom-left-radius:0;border-bottom-right-radius:0;z-index:10}.feedback__input{height:12rem}.feedback__footer{margin-bottom:-1.5rem}.feedback__graphic{margin-bottom:-2.5rem}.feedback__success{color:#0080a7}.feedback__selection{background-color:#ebeef3;border-radius:50%;cursor:pointer;text-align:center;height:2.5rem;width:2.5rem;display:inline-block;margin-right:1.5rem;font-size:1.375rem;line-height:2.5rem;transition:background-color 200ms}.feedback__selection--selected{background-color:#0080a7}.customer-success-contact{text-align:center}.customer-success-contact-img{flex:1}.customer-success-contact-img img{border-radius:100%;max-width:8rem;margin-left:auto;margin-right:auto}.customer-success-contact-img b{display:block}.customer-success-contact-img span{display:block;font-size:.875rem}.customer-success-contact-img a{display:inline-block;font-size:.875rem}.customer-success-contact-txt{flex:3;background-color:#fff;border:1px solid #ebeef3;border-left:.25rem solid #0080a7;border-bottom-right-radius:12px;border-top-right-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative;text-align:left;padding:1.5rem 3rem;align-items:center}.customer-success-contact-txt h2{font-weight:700;color:#444d59}.customer-success-contact-txt p{font-size:1.375rem}.customer-success-contact-txt::before{position:absolute;top:6rem;left:-4px;border-style:solid;height:0;width:0;border-color:rgba(0,0,0,0) #0080a7 rgba(0,0,0,0) rgba(0,0,0,0);border-width:.875rem .875rem .875rem 0;transform:translate(-100%, -50%);content:""}.customer-success-contact-txt::after{position:absolute;top:6rem;left:0;border-style:solid;height:0;width:0;border-color:rgba(0,0,0,0) #fff rgba(0,0,0,0) rgba(0,0,0,0);border-width:.75rem .75rem .75rem 0;transform:translate(-100%, -50%);content:""}.datepicker-wrapper.disabled>.elm-datepicker--container::after{border-left:1px solid #d1d7e0;background-color:#f9fafc;border-bottom-right-radius:3px;border-top-right-radius:3px;transition:border-color 200ms ease-in-out;position:absolute;top:1px;right:1px;bottom:1px;padding:1rem .75rem;pointer-events:none;width:3rem;display:block;content:url("https://cdn.corvusinsurance.com/images/calendar-disabled-553cf12e41a1b97a5547dd27fdcf450d.svg")}.elm-datepicker--container{width:100%;min-width:16rem;display:inline-block;position:relative}.elm-datepicker--container::after{border-left:1px solid #d1d7e0;background-color:#f9fafc;border-bottom-right-radius:3px;border-top-right-radius:3px;transition:border-color 200ms ease-in-out;position:absolute;top:1px;right:1px;bottom:1px;padding:1rem .75rem;pointer-events:none;width:3rem;display:block;content:url("https://cdn.corvusinsurance.com/images/calendar-e1d2f09d1664f99ae0fd418ac650c31c.svg")}.elm-datepicker--container:hover::after{border-color:#a0a8b4}.elm-datepicker--input{padding-right:3rem;cursor:pointer;width:100%;min-width:16rem}.elm-datepicker--input:disabled{cursor:inherit}.elm-datepicker--picker{border:1px solid #0080a7;background-color:#fff;border-bottom-left-radius:3px;border-bottom-right-radius:3px;box-shadow:0 4px 2.5rem rgba(32,37,44,.1);z-index:11;position:absolute;top:100%;right:0;left:0;margin-top:-1px;text-align:center}.elm-datepicker--picker-header{color:#20252c;font-size:1.375rem;font-weight:600;line-height:1.2;margin:0;background-color:#ebeef3;padding:1rem .5rem .5rem .5rem;align-items:center;display:flex;justify-content:space-between}.elm-datepicker--prev,.elm-datepicker--next{padding:0 .5rem;border-radius:0;background-color:rgba(0,0,0,0);display:block;cursor:pointer}.elm-datepicker--prev:hover,.elm-datepicker--next:hover{background-color:rgba(0,0,0,0)}.elm-datepicker--prev:focus,.elm-datepicker--next:focus{background-color:rgba(0,0,0,0);outline:none}.elm-datepicker--prev{border-style:solid;height:0;width:0;border-color:rgba(0,0,0,0) #0080a7 rgba(0,0,0,0) rgba(0,0,0,0);border-width:.375rem .375rem .375rem 0}.elm-datepicker--prev:focus,.elm-datepicker--prev:hover{border-right-color:#006685}.elm-datepicker--next{border-style:solid;height:0;width:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #0080a7;border-width:.375rem 0 .375rem .375rem}.elm-datepicker--next:focus,.elm-datepicker--next:hover{border-left-color:#006685}.elm-datepicker--year{font-size:.75rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase;color:#444d59;margin-top:.25rem;display:block}.elm-datepicker--weekdays{font-size:.625rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase;background-color:#ebeef3;color:#444d59}.elm-datepicker--dow{border-bottom:1px solid #d1d7e0;padding-top:.5rem;padding-bottom:.5rem;width:3.125em}.elm-datepicker--row:last-child{border-bottom:0}.elm-datepicker--dow:last-of-type:not(:only-child),.elm-datepicker--day:last-of-type:not(:only-child){text-align:center}.elm-datepicker--day{color:#444d59;font-family:"Open Sans",sans-serif;font-size:.875rem;font-weight:600;padding:0;height:3.125em;width:3.125em;cursor:pointer}.elm-datepicker--day:hover{background-color:rgb(239.565,247.4519461078,249.855);color:#006685}.elm-datepicker--day.elm-datepicker--other-month{color:#444d59;font-weight:400}.elm-datepicker--day.elm-datepicker--today{color:#006685}.elm-datepicker--day.elm-datepicker--picked{background-color:#0080a7;color:#fff}.elm-datepicker--day.elm-datepicker--disabled{background-color:#f9fafc;color:#6a7585;cursor:default}.elm-datepicker--day.elm-datepicker--disabled:hover{background-color:#f9fafc}.datepicker--open .elm-datepicker--input,.datepicker--open .elm-datepicker--container::after{border-color:#0080a7;border-bottom-left-radius:0;border-bottom-right-radius:0}.datepicker-wrapper>.alert{margin-top:.5rem}.datepicker--absolute{position:relative;z-index:1}.datepicker--absolute .datepicker-wrapper{position:absolute;z-index:1}.datepicker--absolute .elm-datepicker--input{box-shadow:0 4px 2.5rem rgba(32,37,44,.1)}.datepicker--open-above>.elm-datepicker--picker{border:1px solid #0080a7;background-color:#fff;border-top-left-radius:3px;border-top-right-radius:3px;box-shadow:0 4px 2.5rem rgba(32,37,44,.1);z-index:11;position:absolute;right:0;bottom:100%;left:0;top:unset;margin-bottom:-1px;text-align:center}.datepicker--open .datepicker--open-above .elm-datepicker--input,.datepicker--open .datepicker--open-above .elm-datepicker--container::after{border-color:#0080a7;border-top-left-radius:0;border-top-right-radius:0}.datepicker-wrapper table{width:100%}.datepicker-wrapper.submission-comprehension span.submission-comprehension-icon{position:absolute;top:.8em;left:1em;z-index:1}.datepicker-wrapper.submission-comprehension.-equal .submission-comprehension-icon svg{fill:hsl(245,80%,60%)}.datepicker-wrapper.submission-comprehension.-equal .elm-datepicker--input{border:2px solid hsl(245,100%,90%);color:hsl(245,80%,60%)}.datepicker-wrapper.submission-comprehension.-equal .elm-datepicker--input:hover,.datepicker-wrapper.submission-comprehension.-equal .elm-datepicker--input:focus,.datepicker-wrapper.submission-comprehension.-equal .elm-datepicker--input:active{border-color:hsl(245,100%,83%)}.dlp-alerts section.page-section{max-width:600px;margin-bottom:1.5rem}.dlp-alerts section.page-section .page-section--toggle{background-color:hsl(350,72%,50.5%);border:0;margin:0}.dlp-alerts section.page-section h2{color:#fff;padding:1rem 1.5rem;font-size:.875rem}.dlp-alerts section.page-section button.page-section__expander{color:hsl(350,72%,50.5%) !important;background:rgba(0,0,0,0) !important}.dlp-alerts section.page-section button.page-section__expander svg{color:#fff !important;height:2rem;width:2rem}.dlp-alerts section.page-section button.page-section__expander:active,.dlp-alerts section.page-section button.page-section__expander:hover,.dlp-alerts section.page-section button.page-section__expander:focus{color:hsl(350,72%,50.5%) !important;background:rgba(0,0,0,0) !important}.dlp-alerts .dlp-alert{border:1px solid #d1d7e0;max-width:600px;margin-bottom:1.5rem}.dlp-alerts .dlp-alert-title{display:none;background-color:hsl(350,72%,50.5%);color:#fff;padding:1rem 1.5rem;font-size:.75rem}.dlp-alerts .dlp-alert-title h3{font-size:.875rem;font-weight:600}.dlp-alerts .dlp-alert-body{padding:1.5rem;font-size:.875rem}.dlp-alerts .dlp-alert-body h3{font-weight:600;border-top:1px solid #d1d7e0;padding-top:1rem;margin-top:1rem;margin-bottom:.5rem;font-size:.875rem}.dlp-alerts .dlp-alert-body h3:first-of-type{margin-top:0;border-top:0;padding-top:0}.dlp-alerts .dlp-alert-body ul,.dlp-alerts .dlp-alert-body ol{padding-left:1.5rem}.dlp-alerts .dlp-alert-body ul li,.dlp-alerts .dlp-alert-body ol li{padding-left:.5rem}.dlp-alerts .dlp-alert-body p{font-size:.875rem !important}.dlp-alerts .dlp-alert-body .vulnerability-detail{font-family:"IBM Plex Mono",monospace;color:hsl(350,72%,50.5%)}.dlp-alerts .dlp-alert-footer{background-color:#f9fafc;border-top:1px solid #d1d7e0;text-align:center;padding:1.5rem}.dlp-alerts .dlp-alert-footer p{font-size:.875rem !important;font-weight:600 !important}.dlp-annulus-gradient{height:10rem;width:10rem;background-color:#ebeef3;background-position:top center;border-radius:50%;position:relative}.dlp-annulus-gradient::before{font-size:4rem;line-height:7rem}.dlp-annulus-gradient--100::before{font-size:3.6rem}.dlp-annulus-gradient::before{position:absolute;top:15%;right:15%;bottom:15%;left:15%;border-radius:50%;background-color:#fff;color:#20252c;font-family:"Rubik",sans-serif;font-weight:400;letter-spacing:-0.04em;text-align:center;z-index:1}.dlp-annulus-gradient::after{content:"";display:block;width:15%;height:100%;margin:0 auto}@keyframes rotateClockwise--1{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.001 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.002 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.003 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.004 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.005 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.006 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.007 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.008 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.009 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.01 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--1{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 1%, #ebeef3 0 100%);animation-name:rotateClockwise--1;animation-duration:400ms}@keyframes rotateBall--1{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.01 * 1turn))}}.dlp-annulus-gradient--1::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--1;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--1::before{content:"1"}@keyframes rotateClockwise--2{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.002 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.004 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.006 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.008 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.01 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.012 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.014 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.016 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.018 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.02 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--2{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 2%, #ebeef3 0 100%);animation-name:rotateClockwise--2;animation-duration:400ms}@keyframes rotateBall--2{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.02 * 1turn))}}.dlp-annulus-gradient--2::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--2;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--2::before{content:"2"}@keyframes rotateClockwise--3{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.003 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.006 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.009 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.012 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.015 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.018 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.021 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.024 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.027 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.03 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--3{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 3%, #ebeef3 0 100%);animation-name:rotateClockwise--3;animation-duration:400ms}@keyframes rotateBall--3{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.03 * 1turn))}}.dlp-annulus-gradient--3::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--3;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--3::before{content:"3"}@keyframes rotateClockwise--4{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.004 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.008 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.012 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.016 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.02 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.024 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.028 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.032 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.036 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.04 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--4{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 4%, #ebeef3 0 100%);animation-name:rotateClockwise--4;animation-duration:400ms}@keyframes rotateBall--4{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.04 * 1turn))}}.dlp-annulus-gradient--4::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--4;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--4::before{content:"4"}@keyframes rotateClockwise--5{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.005 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.01 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.015 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.02 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.025 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.03 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.035 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.04 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.045 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.05 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--5{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 5%, #ebeef3 0 100%);animation-name:rotateClockwise--5;animation-duration:400ms}@keyframes rotateBall--5{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.05 * 1turn))}}.dlp-annulus-gradient--5::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--5;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--5::before{content:"5"}@keyframes rotateClockwise--6{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.006 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.012 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.018 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.024 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.03 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.036 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.042 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.048 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.054 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.06 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--6{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 6%, #ebeef3 0 100%);animation-name:rotateClockwise--6;animation-duration:400ms}@keyframes rotateBall--6{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.06 * 1turn))}}.dlp-annulus-gradient--6::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--6;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--6::before{content:"6"}@keyframes rotateClockwise--7{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.007 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.014 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.021 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.028 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.035 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.042 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.049 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.056 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.063 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.07 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--7{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 7%, #ebeef3 0 100%);animation-name:rotateClockwise--7;animation-duration:400ms}@keyframes rotateBall--7{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.07 * 1turn))}}.dlp-annulus-gradient--7::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--7;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--7::before{content:"7"}@keyframes rotateClockwise--8{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.008 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.016 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.024 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.032 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.04 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.048 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.056 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.064 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.072 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.08 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--8{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 8%, #ebeef3 0 100%);animation-name:rotateClockwise--8;animation-duration:400ms}@keyframes rotateBall--8{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.08 * 1turn))}}.dlp-annulus-gradient--8::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--8;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--8::before{content:"8"}@keyframes rotateClockwise--9{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.009 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.018 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.027 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.036 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.045 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.054 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.063 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.072 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.081 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.09 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--9{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 9%, #ebeef3 0 100%);animation-name:rotateClockwise--9;animation-duration:400ms}@keyframes rotateBall--9{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.09 * 1turn))}}.dlp-annulus-gradient--9::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--9;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--9::before{content:"9"}@keyframes rotateClockwise--10{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.01 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.02 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.03 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.04 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.05 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.06 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.07 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.08 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.09 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.1 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--10{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 10%, #ebeef3 0 100%);animation-name:rotateClockwise--10;animation-duration:400ms}@keyframes rotateBall--10{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.1 * 1turn))}}.dlp-annulus-gradient--10::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--10;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--10::before{content:"10"}@keyframes rotateClockwise--11{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.011 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.022 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.033 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.044 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.055 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.066 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.077 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.088 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.099 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.11 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--11{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 11%, #ebeef3 0 100%);animation-name:rotateClockwise--11;animation-duration:400ms}@keyframes rotateBall--11{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.11 * 1turn))}}.dlp-annulus-gradient--11::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--11;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--11::before{content:"11"}@keyframes rotateClockwise--12{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.012 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.024 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.036 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.048 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.06 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.072 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.084 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.096 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.108 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.12 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--12{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 12%, #ebeef3 0 100%);animation-name:rotateClockwise--12;animation-duration:400ms}@keyframes rotateBall--12{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.12 * 1turn))}}.dlp-annulus-gradient--12::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--12;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--12::before{content:"12"}@keyframes rotateClockwise--13{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.013 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.026 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.039 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.052 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.065 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.078 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.091 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.104 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.117 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.13 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--13{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 13%, #ebeef3 0 100%);animation-name:rotateClockwise--13;animation-duration:400ms}@keyframes rotateBall--13{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.13 * 1turn))}}.dlp-annulus-gradient--13::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--13;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--13::before{content:"13"}@keyframes rotateClockwise--14{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.014 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.028 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.042 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.056 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.07 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.084 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.098 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.112 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.126 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.14 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--14{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 14%, #ebeef3 0 100%);animation-name:rotateClockwise--14;animation-duration:400ms}@keyframes rotateBall--14{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.14 * 1turn))}}.dlp-annulus-gradient--14::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--14;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--14::before{content:"14"}@keyframes rotateClockwise--15{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.015 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.03 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.045 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.06 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.075 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.09 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.105 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.12 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.135 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.15 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--15{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 15%, #ebeef3 0 100%);animation-name:rotateClockwise--15;animation-duration:400ms}@keyframes rotateBall--15{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.15 * 1turn))}}.dlp-annulus-gradient--15::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--15;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--15::before{content:"15"}@keyframes rotateClockwise--16{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.016 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.032 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.048 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.064 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.08 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.096 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.112 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.128 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.144 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.16 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--16{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 16%, #ebeef3 0 100%);animation-name:rotateClockwise--16;animation-duration:400ms}@keyframes rotateBall--16{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.16 * 1turn))}}.dlp-annulus-gradient--16::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--16;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--16::before{content:"16"}@keyframes rotateClockwise--17{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.017 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.034 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.051 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.068 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.085 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.102 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.119 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.136 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.153 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.17 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--17{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 17%, #ebeef3 0 100%);animation-name:rotateClockwise--17;animation-duration:400ms}@keyframes rotateBall--17{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.17 * 1turn))}}.dlp-annulus-gradient--17::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--17;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--17::before{content:"17"}@keyframes rotateClockwise--18{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.018 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.036 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.054 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.072 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.09 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.108 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.126 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.144 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.162 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.18 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--18{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 18%, #ebeef3 0 100%);animation-name:rotateClockwise--18;animation-duration:400ms}@keyframes rotateBall--18{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.18 * 1turn))}}.dlp-annulus-gradient--18::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--18;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--18::before{content:"18"}@keyframes rotateClockwise--19{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.019 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.038 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.057 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.076 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.095 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.114 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.133 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.152 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.171 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.19 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--19{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 19%, #ebeef3 0 100%);animation-name:rotateClockwise--19;animation-duration:400ms}@keyframes rotateBall--19{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.19 * 1turn))}}.dlp-annulus-gradient--19::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--19;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--19::before{content:"19"}@keyframes rotateClockwise--20{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.02 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.04 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.06 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.08 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.1 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.12 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.14 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.16 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.18 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.2 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--20{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 20%, #ebeef3 0 100%);animation-name:rotateClockwise--20;animation-duration:400ms}@keyframes rotateBall--20{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.2 * 1turn))}}.dlp-annulus-gradient--20::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--20;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--20::before{content:"20"}@keyframes rotateClockwise--21{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.021 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.042 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.063 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.084 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.105 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.126 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.147 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.168 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.189 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.21 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--21{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 21%, #ebeef3 0 100%);animation-name:rotateClockwise--21;animation-duration:400ms}@keyframes rotateBall--21{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.21 * 1turn))}}.dlp-annulus-gradient--21::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--21;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--21::before{content:"21"}@keyframes rotateClockwise--22{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.022 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.044 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.066 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.088 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.11 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.132 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.154 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.176 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.198 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.22 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--22{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 22%, #ebeef3 0 100%);animation-name:rotateClockwise--22;animation-duration:400ms}@keyframes rotateBall--22{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.22 * 1turn))}}.dlp-annulus-gradient--22::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--22;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--22::before{content:"22"}@keyframes rotateClockwise--23{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.023 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.046 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.069 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.092 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.115 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.138 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.161 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.184 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.207 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.23 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--23{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 23%, #ebeef3 0 100%);animation-name:rotateClockwise--23;animation-duration:400ms}@keyframes rotateBall--23{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.23 * 1turn))}}.dlp-annulus-gradient--23::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--23;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--23::before{content:"23"}@keyframes rotateClockwise--24{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.024 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.048 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.072 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.096 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.12 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.144 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.168 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.192 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.216 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.24 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--24{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 24%, #ebeef3 0 100%);animation-name:rotateClockwise--24;animation-duration:400ms}@keyframes rotateBall--24{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.24 * 1turn))}}.dlp-annulus-gradient--24::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--24;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--24::before{content:"24"}@keyframes rotateClockwise--25{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.025 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.05 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.075 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.1 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.125 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.15 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.175 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.2 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.225 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.25 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--25{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 25%, #ebeef3 0 100%);animation-name:rotateClockwise--25;animation-duration:400ms}@keyframes rotateBall--25{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.25 * 1turn))}}.dlp-annulus-gradient--25::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--25;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--25::before{content:"25"}@keyframes rotateClockwise--26{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.026 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.052 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.078 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.104 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.13 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.156 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.182 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.208 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.234 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.26 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--26{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 26%, #ebeef3 0 100%);animation-name:rotateClockwise--26;animation-duration:400ms}@keyframes rotateBall--26{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.26 * 1turn))}}.dlp-annulus-gradient--26::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--26;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--26::before{content:"26"}@keyframes rotateClockwise--27{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.027 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.054 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.081 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.108 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.135 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.162 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.189 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.216 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.243 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.27 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--27{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 27%, #ebeef3 0 100%);animation-name:rotateClockwise--27;animation-duration:400ms}@keyframes rotateBall--27{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.27 * 1turn))}}.dlp-annulus-gradient--27::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--27;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--27::before{content:"27"}@keyframes rotateClockwise--28{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.028 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.056 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.084 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.112 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.14 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.168 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.196 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.224 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.252 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.28 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--28{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 28%, #ebeef3 0 100%);animation-name:rotateClockwise--28;animation-duration:400ms}@keyframes rotateBall--28{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.28 * 1turn))}}.dlp-annulus-gradient--28::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--28;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--28::before{content:"28"}@keyframes rotateClockwise--29{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.029 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.058 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.087 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.116 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.145 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.174 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.203 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.232 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.261 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.29 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--29{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 29%, #ebeef3 0 100%);animation-name:rotateClockwise--29;animation-duration:400ms}@keyframes rotateBall--29{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.29 * 1turn))}}.dlp-annulus-gradient--29::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--29;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--29::before{content:"29"}@keyframes rotateClockwise--30{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.03 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.06 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.09 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.12 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.15 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.18 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.21 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.24 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.27 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.3 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--30{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 30%, #ebeef3 0 100%);animation-name:rotateClockwise--30;animation-duration:400ms}@keyframes rotateBall--30{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.3 * 1turn))}}.dlp-annulus-gradient--30::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--30;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--30::before{content:"30"}@keyframes rotateClockwise--31{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.031 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.062 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.093 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.124 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.155 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.186 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.217 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.248 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.279 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.31 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--31{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 31%, #ebeef3 0 100%);animation-name:rotateClockwise--31;animation-duration:400ms}@keyframes rotateBall--31{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.31 * 1turn))}}.dlp-annulus-gradient--31::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--31;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--31::before{content:"31"}@keyframes rotateClockwise--32{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.032 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.064 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.096 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.128 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.16 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.192 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.224 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.256 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.288 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.32 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--32{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 32%, #ebeef3 0 100%);animation-name:rotateClockwise--32;animation-duration:400ms}@keyframes rotateBall--32{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.32 * 1turn))}}.dlp-annulus-gradient--32::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--32;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--32::before{content:"32"}@keyframes rotateClockwise--33{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.033 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.066 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.099 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.132 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.165 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.198 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.231 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.264 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.297 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.33 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--33{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 33%, #ebeef3 0 100%);animation-name:rotateClockwise--33;animation-duration:400ms}@keyframes rotateBall--33{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.33 * 1turn))}}.dlp-annulus-gradient--33::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--33;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--33::before{content:"33"}@keyframes rotateClockwise--34{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.034 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.068 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.102 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.136 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.17 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.204 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.238 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.272 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.306 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.34 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--34{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 34%, #ebeef3 0 100%);animation-name:rotateClockwise--34;animation-duration:400ms}@keyframes rotateBall--34{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.34 * 1turn))}}.dlp-annulus-gradient--34::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--34;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--34::before{content:"34"}@keyframes rotateClockwise--35{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.035 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.07 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.105 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.14 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.175 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.21 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.245 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.28 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.315 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.35 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--35{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 35%, #ebeef3 0 100%);animation-name:rotateClockwise--35;animation-duration:400ms}@keyframes rotateBall--35{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.35 * 1turn))}}.dlp-annulus-gradient--35::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--35;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--35::before{content:"35"}@keyframes rotateClockwise--36{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.036 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.072 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.108 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.144 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.18 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.216 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.252 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.288 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.324 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.36 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--36{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 36%, #ebeef3 0 100%);animation-name:rotateClockwise--36;animation-duration:400ms}@keyframes rotateBall--36{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.36 * 1turn))}}.dlp-annulus-gradient--36::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--36;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--36::before{content:"36"}@keyframes rotateClockwise--37{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.037 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.074 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.111 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.148 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.185 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.222 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.259 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.296 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.333 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.37 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--37{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 37%, #ebeef3 0 100%);animation-name:rotateClockwise--37;animation-duration:400ms}@keyframes rotateBall--37{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.37 * 1turn))}}.dlp-annulus-gradient--37::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--37;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--37::before{content:"37"}@keyframes rotateClockwise--38{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.038 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.076 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.114 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.152 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.19 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.228 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.266 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.304 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.342 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.38 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--38{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 38%, #ebeef3 0 100%);animation-name:rotateClockwise--38;animation-duration:400ms}@keyframes rotateBall--38{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.38 * 1turn))}}.dlp-annulus-gradient--38::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--38;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--38::before{content:"38"}@keyframes rotateClockwise--39{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.039 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.078 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.117 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.156 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.195 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.234 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.273 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.312 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.351 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.39 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--39{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 39%, #ebeef3 0 100%);animation-name:rotateClockwise--39;animation-duration:400ms}@keyframes rotateBall--39{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.39 * 1turn))}}.dlp-annulus-gradient--39::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--39;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--39::before{content:"39"}@keyframes rotateClockwise--40{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.04 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.08 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.12 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.16 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.2 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.24 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.28 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.32 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.36 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.4 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--40{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 40%, #ebeef3 0 100%);animation-name:rotateClockwise--40;animation-duration:400ms}@keyframes rotateBall--40{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.4 * 1turn))}}.dlp-annulus-gradient--40::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--40;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--40::before{content:"40"}@keyframes rotateClockwise--41{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.041 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.082 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.123 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.164 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.205 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.246 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.287 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.328 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.369 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.41 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--41{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 41%, #ebeef3 0 100%);animation-name:rotateClockwise--41;animation-duration:400ms}@keyframes rotateBall--41{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.41 * 1turn))}}.dlp-annulus-gradient--41::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--41;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--41::before{content:"41"}@keyframes rotateClockwise--42{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.042 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.084 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.126 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.168 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.21 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.252 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.294 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.336 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.378 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.42 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--42{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 42%, #ebeef3 0 100%);animation-name:rotateClockwise--42;animation-duration:400ms}@keyframes rotateBall--42{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.42 * 1turn))}}.dlp-annulus-gradient--42::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--42;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--42::before{content:"42"}@keyframes rotateClockwise--43{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.043 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.086 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.129 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.172 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.215 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.258 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.301 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.344 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.387 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.43 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--43{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 43%, #ebeef3 0 100%);animation-name:rotateClockwise--43;animation-duration:400ms}@keyframes rotateBall--43{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.43 * 1turn))}}.dlp-annulus-gradient--43::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--43;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--43::before{content:"43"}@keyframes rotateClockwise--44{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.044 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.088 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.132 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.176 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.22 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.264 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.308 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.352 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.396 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.44 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--44{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 44%, #ebeef3 0 100%);animation-name:rotateClockwise--44;animation-duration:400ms}@keyframes rotateBall--44{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.44 * 1turn))}}.dlp-annulus-gradient--44::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--44;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--44::before{content:"44"}@keyframes rotateClockwise--45{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.045 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.09 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.135 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.18 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.225 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.27 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.315 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.36 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.405 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.45 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--45{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 45%, #ebeef3 0 100%);animation-name:rotateClockwise--45;animation-duration:400ms}@keyframes rotateBall--45{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.45 * 1turn))}}.dlp-annulus-gradient--45::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--45;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--45::before{content:"45"}@keyframes rotateClockwise--46{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.046 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.092 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.138 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.184 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.23 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.276 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.322 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.368 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.414 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.46 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--46{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 46%, #ebeef3 0 100%);animation-name:rotateClockwise--46;animation-duration:400ms}@keyframes rotateBall--46{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.46 * 1turn))}}.dlp-annulus-gradient--46::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--46;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--46::before{content:"46"}@keyframes rotateClockwise--47{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.047 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.094 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.141 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.188 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.235 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.282 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.329 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.376 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.423 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.47 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--47{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 47%, #ebeef3 0 100%);animation-name:rotateClockwise--47;animation-duration:400ms}@keyframes rotateBall--47{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.47 * 1turn))}}.dlp-annulus-gradient--47::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--47;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--47::before{content:"47"}@keyframes rotateClockwise--48{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.048 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.096 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.144 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.192 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.24 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.288 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.336 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.384 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.432 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.48 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--48{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 48%, #ebeef3 0 100%);animation-name:rotateClockwise--48;animation-duration:400ms}@keyframes rotateBall--48{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.48 * 1turn))}}.dlp-annulus-gradient--48::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--48;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--48::before{content:"48"}@keyframes rotateClockwise--49{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.049 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.098 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.147 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.196 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.245 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.294 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.343 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.392 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.441 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.49 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--49{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 49%, #ebeef3 0 100%);animation-name:rotateClockwise--49;animation-duration:400ms}@keyframes rotateBall--49{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.49 * 1turn))}}.dlp-annulus-gradient--49::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--49;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--49::before{content:"49"}@keyframes rotateClockwise--50{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.05 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.1 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.15 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.2 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.25 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.3 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.35 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.4 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.45 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.5 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--50{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 50%, #ebeef3 0 100%);animation-name:rotateClockwise--50;animation-duration:400ms}@keyframes rotateBall--50{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.5 * 1turn))}}.dlp-annulus-gradient--50::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--50;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--50::before{content:"50"}@keyframes rotateClockwise--51{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.051 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.102 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.153 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.204 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.255 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.306 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.357 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.408 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.459 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.51 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--51{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 51%, #ebeef3 0 100%);animation-name:rotateClockwise--51;animation-duration:400ms}@keyframes rotateBall--51{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.51 * 1turn))}}.dlp-annulus-gradient--51::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--51;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--51::before{content:"51"}@keyframes rotateClockwise--52{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.052 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.104 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.156 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.208 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.26 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.312 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.364 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.416 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.468 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.52 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--52{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 52%, #ebeef3 0 100%);animation-name:rotateClockwise--52;animation-duration:400ms}@keyframes rotateBall--52{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.52 * 1turn))}}.dlp-annulus-gradient--52::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--52;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--52::before{content:"52"}@keyframes rotateClockwise--53{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.053 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.106 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.159 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.212 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.265 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.318 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.371 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.424 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.477 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.53 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--53{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 53%, #ebeef3 0 100%);animation-name:rotateClockwise--53;animation-duration:400ms}@keyframes rotateBall--53{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.53 * 1turn))}}.dlp-annulus-gradient--53::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--53;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--53::before{content:"53"}@keyframes rotateClockwise--54{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.054 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.108 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.162 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.216 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.27 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.324 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.378 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.432 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.486 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.54 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--54{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 54%, #ebeef3 0 100%);animation-name:rotateClockwise--54;animation-duration:400ms}@keyframes rotateBall--54{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.54 * 1turn))}}.dlp-annulus-gradient--54::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--54;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--54::before{content:"54"}@keyframes rotateClockwise--55{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.055 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.11 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.165 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.22 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.275 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.33 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.385 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.44 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.495 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.55 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--55{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 55%, #ebeef3 0 100%);animation-name:rotateClockwise--55;animation-duration:400ms}@keyframes rotateBall--55{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.55 * 1turn))}}.dlp-annulus-gradient--55::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--55;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--55::before{content:"55"}@keyframes rotateClockwise--56{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.056 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.112 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.168 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.224 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.28 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.336 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.392 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.448 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.504 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.56 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--56{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 56%, #ebeef3 0 100%);animation-name:rotateClockwise--56;animation-duration:400ms}@keyframes rotateBall--56{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.56 * 1turn))}}.dlp-annulus-gradient--56::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--56;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--56::before{content:"56"}@keyframes rotateClockwise--57{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.057 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.114 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.171 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.228 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.285 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.342 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.399 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.456 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.513 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.57 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--57{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 57%, #ebeef3 0 100%);animation-name:rotateClockwise--57;animation-duration:400ms}@keyframes rotateBall--57{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.57 * 1turn))}}.dlp-annulus-gradient--57::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--57;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--57::before{content:"57"}@keyframes rotateClockwise--58{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.058 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.116 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.174 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.232 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.29 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.348 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.406 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.464 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.522 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.58 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--58{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 58%, #ebeef3 0 100%);animation-name:rotateClockwise--58;animation-duration:400ms}@keyframes rotateBall--58{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.58 * 1turn))}}.dlp-annulus-gradient--58::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--58;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--58::before{content:"58"}@keyframes rotateClockwise--59{0%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.059 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.118 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.177 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.236 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.295 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.354 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.413 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.472 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.531 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) calc(0.59 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--59{background-image:conic-gradient(hsl(350, 60%, 72.5%) 0, hsl(350, 72%, 50.5%) 59%, #ebeef3 0 100%);animation-name:rotateClockwise--59;animation-duration:400ms}@keyframes rotateBall--59{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.59 * 1turn))}}.dlp-annulus-gradient--59::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(350, 72%, 50.5%) 100%, transparent);animation-name:rotateBall--59;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--59::before{content:"59"}@keyframes rotateClockwise--60{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.06 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.12 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.18 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.24 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.3 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.36 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.42 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.48 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.54 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.6 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--60{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 60%, #ebeef3 0 100%);animation-name:rotateClockwise--60;animation-duration:400ms}@keyframes rotateBall--60{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.6 * 1turn))}}.dlp-annulus-gradient--60::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--60;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--60::before{content:"60"}@keyframes rotateClockwise--61{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.061 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.122 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.183 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.244 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.305 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.366 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.427 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.488 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.549 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.61 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--61{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 61%, #ebeef3 0 100%);animation-name:rotateClockwise--61;animation-duration:400ms}@keyframes rotateBall--61{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.61 * 1turn))}}.dlp-annulus-gradient--61::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--61;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--61::before{content:"61"}@keyframes rotateClockwise--62{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.062 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.124 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.186 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.248 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.31 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.372 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.434 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.496 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.558 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.62 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--62{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 62%, #ebeef3 0 100%);animation-name:rotateClockwise--62;animation-duration:400ms}@keyframes rotateBall--62{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.62 * 1turn))}}.dlp-annulus-gradient--62::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--62;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--62::before{content:"62"}@keyframes rotateClockwise--63{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.063 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.126 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.189 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.252 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.315 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.378 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.441 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.504 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.567 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.63 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--63{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 63%, #ebeef3 0 100%);animation-name:rotateClockwise--63;animation-duration:400ms}@keyframes rotateBall--63{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.63 * 1turn))}}.dlp-annulus-gradient--63::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--63;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--63::before{content:"63"}@keyframes rotateClockwise--64{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.064 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.128 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.192 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.256 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.32 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.384 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.448 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.512 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.576 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.64 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--64{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 64%, #ebeef3 0 100%);animation-name:rotateClockwise--64;animation-duration:400ms}@keyframes rotateBall--64{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.64 * 1turn))}}.dlp-annulus-gradient--64::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--64;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--64::before{content:"64"}@keyframes rotateClockwise--65{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.065 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.13 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.195 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.26 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.325 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.39 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.455 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.52 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.585 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.65 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--65{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 65%, #ebeef3 0 100%);animation-name:rotateClockwise--65;animation-duration:400ms}@keyframes rotateBall--65{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.65 * 1turn))}}.dlp-annulus-gradient--65::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--65;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--65::before{content:"65"}@keyframes rotateClockwise--66{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.066 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.132 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.198 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.264 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.33 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.396 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.462 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.528 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.594 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.66 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--66{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 66%, #ebeef3 0 100%);animation-name:rotateClockwise--66;animation-duration:400ms}@keyframes rotateBall--66{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.66 * 1turn))}}.dlp-annulus-gradient--66::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--66;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--66::before{content:"66"}@keyframes rotateClockwise--67{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.067 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.134 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.201 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.268 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.335 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.402 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.469 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.536 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.603 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.67 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--67{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 67%, #ebeef3 0 100%);animation-name:rotateClockwise--67;animation-duration:400ms}@keyframes rotateBall--67{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.67 * 1turn))}}.dlp-annulus-gradient--67::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--67;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--67::before{content:"67"}@keyframes rotateClockwise--68{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.068 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.136 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.204 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.272 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.34 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.408 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.476 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.544 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.612 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.68 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--68{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 68%, #ebeef3 0 100%);animation-name:rotateClockwise--68;animation-duration:400ms}@keyframes rotateBall--68{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.68 * 1turn))}}.dlp-annulus-gradient--68::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--68;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--68::before{content:"68"}@keyframes rotateClockwise--69{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.069 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.138 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.207 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.276 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.345 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.414 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.483 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.552 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.621 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.69 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--69{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 69%, #ebeef3 0 100%);animation-name:rotateClockwise--69;animation-duration:400ms}@keyframes rotateBall--69{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.69 * 1turn))}}.dlp-annulus-gradient--69::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--69;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--69::before{content:"69"}@keyframes rotateClockwise--70{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.07 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.14 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.21 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.28 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.35 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.42 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.49 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.56 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.63 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.7 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--70{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 70%, #ebeef3 0 100%);animation-name:rotateClockwise--70;animation-duration:400ms}@keyframes rotateBall--70{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.7 * 1turn))}}.dlp-annulus-gradient--70::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--70;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--70::before{content:"70"}@keyframes rotateClockwise--71{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.071 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.142 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.213 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.284 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.355 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.426 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.497 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.568 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.639 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.71 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--71{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 71%, #ebeef3 0 100%);animation-name:rotateClockwise--71;animation-duration:400ms}@keyframes rotateBall--71{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.71 * 1turn))}}.dlp-annulus-gradient--71::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--71;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--71::before{content:"71"}@keyframes rotateClockwise--72{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.072 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.144 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.216 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.288 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.36 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.432 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.504 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.576 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.648 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.72 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--72{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 72%, #ebeef3 0 100%);animation-name:rotateClockwise--72;animation-duration:400ms}@keyframes rotateBall--72{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.72 * 1turn))}}.dlp-annulus-gradient--72::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--72;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--72::before{content:"72"}@keyframes rotateClockwise--73{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.073 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.146 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.219 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.292 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.365 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.438 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.511 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.584 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.657 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.73 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--73{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 73%, #ebeef3 0 100%);animation-name:rotateClockwise--73;animation-duration:400ms}@keyframes rotateBall--73{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.73 * 1turn))}}.dlp-annulus-gradient--73::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--73;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--73::before{content:"73"}@keyframes rotateClockwise--74{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.074 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.148 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.222 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.296 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.37 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.444 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.518 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.592 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.666 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.74 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--74{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 74%, #ebeef3 0 100%);animation-name:rotateClockwise--74;animation-duration:400ms}@keyframes rotateBall--74{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.74 * 1turn))}}.dlp-annulus-gradient--74::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--74;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--74::before{content:"74"}@keyframes rotateClockwise--75{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.075 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.15 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.225 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.3 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.375 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.45 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.525 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.6 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.675 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.75 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--75{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 75%, #ebeef3 0 100%);animation-name:rotateClockwise--75;animation-duration:400ms}@keyframes rotateBall--75{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.75 * 1turn))}}.dlp-annulus-gradient--75::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--75;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--75::before{content:"75"}@keyframes rotateClockwise--76{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.076 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.152 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.228 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.304 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.38 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.456 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.532 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.608 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.684 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.76 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--76{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 76%, #ebeef3 0 100%);animation-name:rotateClockwise--76;animation-duration:400ms}@keyframes rotateBall--76{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.76 * 1turn))}}.dlp-annulus-gradient--76::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--76;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--76::before{content:"76"}@keyframes rotateClockwise--77{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.077 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.154 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.231 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.308 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.385 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.462 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.539 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.616 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.693 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.77 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--77{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 77%, #ebeef3 0 100%);animation-name:rotateClockwise--77;animation-duration:400ms}@keyframes rotateBall--77{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.77 * 1turn))}}.dlp-annulus-gradient--77::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--77;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--77::before{content:"77"}@keyframes rotateClockwise--78{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.078 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.156 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.234 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.312 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.39 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.468 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.546 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.624 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.702 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.78 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--78{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 78%, #ebeef3 0 100%);animation-name:rotateClockwise--78;animation-duration:400ms}@keyframes rotateBall--78{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.78 * 1turn))}}.dlp-annulus-gradient--78::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--78;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--78::before{content:"78"}@keyframes rotateClockwise--79{0%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.079 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.158 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.237 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.316 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.395 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.474 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.553 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.632 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.711 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(35, 100%, 50%) calc(0.79 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--79{background-image:conic-gradient(hsl(55, 100%, 70%) 0, hsl(45, 100%, 62%) 79%, #ebeef3 0 100%);animation-name:rotateClockwise--79;animation-duration:400ms}@keyframes rotateBall--79{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.79 * 1turn))}}.dlp-annulus-gradient--79::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(45, 100%, 62%) 100%, transparent);animation-name:rotateBall--79;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--79::before{content:"79"}@keyframes rotateClockwise--80{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.08 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.16 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.24 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.32 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.4 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.48 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.56 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.64 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.72 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.8 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--80{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 80%, #ebeef3 0 100%);animation-name:rotateClockwise--80;animation-duration:400ms}@keyframes rotateBall--80{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.8 * 1turn))}}.dlp-annulus-gradient--80::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--80;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--80::before{content:"80"}@keyframes rotateClockwise--81{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.081 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.162 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.243 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.324 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.405 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.486 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.567 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.648 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.729 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.81 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--81{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 81%, #ebeef3 0 100%);animation-name:rotateClockwise--81;animation-duration:400ms}@keyframes rotateBall--81{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.81 * 1turn))}}.dlp-annulus-gradient--81::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--81;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--81::before{content:"81"}@keyframes rotateClockwise--82{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.082 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.164 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.246 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.328 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.41 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.492 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.574 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.656 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.738 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.82 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--82{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 82%, #ebeef3 0 100%);animation-name:rotateClockwise--82;animation-duration:400ms}@keyframes rotateBall--82{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.82 * 1turn))}}.dlp-annulus-gradient--82::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--82;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--82::before{content:"82"}@keyframes rotateClockwise--83{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.083 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.166 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.249 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.332 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.415 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.498 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.581 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.664 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.747 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.83 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--83{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 83%, #ebeef3 0 100%);animation-name:rotateClockwise--83;animation-duration:400ms}@keyframes rotateBall--83{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.83 * 1turn))}}.dlp-annulus-gradient--83::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--83;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--83::before{content:"83"}@keyframes rotateClockwise--84{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.084 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.168 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.252 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.336 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.42 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.504 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.588 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.672 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.756 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.84 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--84{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 84%, #ebeef3 0 100%);animation-name:rotateClockwise--84;animation-duration:400ms}@keyframes rotateBall--84{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.84 * 1turn))}}.dlp-annulus-gradient--84::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--84;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--84::before{content:"84"}@keyframes rotateClockwise--85{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.085 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.17 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.255 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.34 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.425 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.51 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.595 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.68 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.765 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.85 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--85{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 85%, #ebeef3 0 100%);animation-name:rotateClockwise--85;animation-duration:400ms}@keyframes rotateBall--85{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.85 * 1turn))}}.dlp-annulus-gradient--85::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--85;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--85::before{content:"85"}@keyframes rotateClockwise--86{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.086 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.172 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.258 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.344 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.43 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.516 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.602 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.688 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.774 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.86 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--86{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 86%, #ebeef3 0 100%);animation-name:rotateClockwise--86;animation-duration:400ms}@keyframes rotateBall--86{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.86 * 1turn))}}.dlp-annulus-gradient--86::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--86;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--86::before{content:"86"}@keyframes rotateClockwise--87{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.087 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.174 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.261 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.348 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.435 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.522 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.609 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.696 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.783 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.87 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--87{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 87%, #ebeef3 0 100%);animation-name:rotateClockwise--87;animation-duration:400ms}@keyframes rotateBall--87{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.87 * 1turn))}}.dlp-annulus-gradient--87::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--87;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--87::before{content:"87"}@keyframes rotateClockwise--88{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.088 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.176 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.264 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.352 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.44 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.528 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.616 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.704 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.792 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.88 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--88{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 88%, #ebeef3 0 100%);animation-name:rotateClockwise--88;animation-duration:400ms}@keyframes rotateBall--88{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.88 * 1turn))}}.dlp-annulus-gradient--88::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--88;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--88::before{content:"88"}@keyframes rotateClockwise--89{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.089 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.178 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.267 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.356 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.445 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.534 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.623 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.712 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.801 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.89 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--89{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 89%, #ebeef3 0 100%);animation-name:rotateClockwise--89;animation-duration:400ms}@keyframes rotateBall--89{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.89 * 1turn))}}.dlp-annulus-gradient--89::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--89;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--89::before{content:"89"}@keyframes rotateClockwise--90{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.09 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.18 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.27 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.36 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.45 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.54 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.63 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.72 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.81 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.9 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--90{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 90%, #ebeef3 0 100%);animation-name:rotateClockwise--90;animation-duration:400ms}@keyframes rotateBall--90{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.9 * 1turn))}}.dlp-annulus-gradient--90::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--90;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--90::before{content:"90"}@keyframes rotateClockwise--91{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.091 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.182 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.273 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.364 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.455 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.546 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.637 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.728 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.819 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.91 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--91{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 91%, #ebeef3 0 100%);animation-name:rotateClockwise--91;animation-duration:400ms}@keyframes rotateBall--91{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.91 * 1turn))}}.dlp-annulus-gradient--91::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--91;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--91::before{content:"91"}@keyframes rotateClockwise--92{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.092 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.184 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.276 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.368 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.46 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.552 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.644 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.736 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.828 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.92 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--92{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 92%, #ebeef3 0 100%);animation-name:rotateClockwise--92;animation-duration:400ms}@keyframes rotateBall--92{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.92 * 1turn))}}.dlp-annulus-gradient--92::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--92;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--92::before{content:"92"}@keyframes rotateClockwise--93{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.093 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.186 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.279 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.372 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.465 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.558 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.651 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.744 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.837 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.93 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--93{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 93%, #ebeef3 0 100%);animation-name:rotateClockwise--93;animation-duration:400ms}@keyframes rotateBall--93{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.93 * 1turn))}}.dlp-annulus-gradient--93::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--93;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--93::before{content:"93"}@keyframes rotateClockwise--94{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.094 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.188 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.282 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.376 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.47 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.564 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.658 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.752 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.846 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.94 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--94{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 94%, #ebeef3 0 100%);animation-name:rotateClockwise--94;animation-duration:400ms}@keyframes rotateBall--94{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.94 * 1turn))}}.dlp-annulus-gradient--94::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--94;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--94::before{content:"94"}@keyframes rotateClockwise--95{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.095 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.19 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.285 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.38 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.475 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.57 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.665 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.76 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.855 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.95 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--95{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 95%, #ebeef3 0 100%);animation-name:rotateClockwise--95;animation-duration:400ms}@keyframes rotateBall--95{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.95 * 1turn))}}.dlp-annulus-gradient--95::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--95;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--95::before{content:"95"}@keyframes rotateClockwise--96{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.096 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.192 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.288 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.384 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.48 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.576 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.672 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.768 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.864 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.96 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--96{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 96%, #ebeef3 0 100%);animation-name:rotateClockwise--96;animation-duration:400ms}@keyframes rotateBall--96{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.96 * 1turn))}}.dlp-annulus-gradient--96::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--96;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--96::before{content:"96"}@keyframes rotateClockwise--97{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.097 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.194 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.291 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.388 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.485 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.582 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.679 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.776 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.873 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.97 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--97{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 97%, #ebeef3 0 100%);animation-name:rotateClockwise--97;animation-duration:400ms}@keyframes rotateBall--97{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.97 * 1turn))}}.dlp-annulus-gradient--97::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--97;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--97::before{content:"97"}@keyframes rotateClockwise--98{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.098 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.196 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.294 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.392 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.49 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.588 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.686 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.784 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.882 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.98 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--98{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 98%, #ebeef3 0 100%);animation-name:rotateClockwise--98;animation-duration:400ms}@keyframes rotateBall--98{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.98 * 1turn))}}.dlp-annulus-gradient--98::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--98;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--98::before{content:"98"}@keyframes rotateClockwise--99{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.099 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.198 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.297 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.396 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.495 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.594 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.693 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.792 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.891 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.99 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--99{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 99%, #ebeef3 0 100%);animation-name:rotateClockwise--99;animation-duration:400ms}@keyframes rotateBall--99{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(0.99 * 1turn))}}.dlp-annulus-gradient--99::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--99;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--99::before{content:"99"}@keyframes rotateClockwise--100{0%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 0%, #ebeef3 0 0)}10%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.1 * 1turn), #ebeef3 0 100%)}20%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.2 * 1turn), #ebeef3 0 100%)}30%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.3 * 1turn), #ebeef3 0 100%)}40%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.4 * 1turn), #ebeef3 0 100%)}50%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.5 * 1turn), #ebeef3 0 100%)}60%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.6 * 1turn), #ebeef3 0 100%)}70%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.7 * 1turn), #ebeef3 0 100%)}80%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.8 * 1turn), #ebeef3 0 100%)}90%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(0.9 * 1turn), #ebeef3 0 100%)}100%{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) calc(1 * 1turn), #ebeef3 0 100%)}}.dlp-annulus-gradient--100{background-image:conic-gradient(hsl(160, 100%, 70%) 0, hsl(171, 100%, 40%) 100%, #ebeef3 0 100%);animation-name:rotateClockwise--100;animation-duration:400ms}@keyframes rotateBall--100{0%{opacity:0;transform:rotate(0)}100%{opacity:1;transform:rotate(calc(1 * 1turn))}}.dlp-annulus-gradient--100::after{background-image:radial-gradient(circle closest-side at center 7.5%, hsl(171, 100%, 40%) 100%, transparent);animation-name:rotateBall--100;animation-duration:400ms;animation-fill-mode:forwards;animation-timing-function:linear}.dlp-annulus-gradient--100::before{content:"100"}.dlp-annulus-gradient--small{height:2.5rem;width:2.5rem}.dlp-annulus-gradient--small::before{font-size:1rem;line-height:1.75rem}.dlp-annulus-gradient--small--100::before{font-size:.9rem}.table-list .dlp-annulus-gradient--small::before{padding-right:.1em}.dlp-annulus-gradient--medium-small{height:3.75rem;width:3.75rem}.dlp-annulus-gradient--medium-small::before{font-size:1.5rem;line-height:2.625rem}.dlp-annulus-gradient--medium-small--100::before{font-size:1.35rem}.dlp-annulus-gradient--medium{height:5rem;width:5rem}.dlp-annulus-gradient--medium::before{font-size:2rem;line-height:3.5rem}.dlp-annulus-gradient--medium--100::before{font-size:1.8rem}.dlp-annulus-gradient--medium-large{height:7.5rem;width:7.5rem}.dlp-annulus-gradient--medium-large::before{font-size:3rem;line-height:5.25rem}.dlp-annulus-gradient--medium-large--100::before{font-size:2.7rem}.dlp-annulus-gradient--ph-dashboard{height:9rem;width:9rem}.dlp-annulus-gradient--ph-dashboard::before{font-size:3.6rem;line-height:6.3rem}.dlp-annulus-gradient--ph-dashboard--100::before{font-size:3.24rem}.dlp-annulus-gradient--x-large{height:12.5rem;width:12.5rem}.dlp-annulus-gradient--x-large::before{font-size:5rem;line-height:8.75rem}.dlp-annulus-gradient--x-large--100::before{font-size:4.5rem}.dlp-annulus{position:relative}.dlp-annulus--abbreviated{margin-right:1.5rem}.dlp-annulus__values-container{position:absolute;top:0;right:0;bottom:0;left:0;align-items:center;display:flex;flex-direction:column;justify-content:center}.dlp-annulus__value--main{color:#444d59;font-size:5rem;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:300;line-height:1}.dlp-annulus--abbreviated .dlp-annulus__value--main{color:#20252c;font-size:2.5rem}.dlp-annulus--introduce .dlp-annulus__value--main{font-size:3.5rem}.dlp-annulus--tiny .dlp-annulus__value--main{font-weight:400;font-size:1.4rem}.dlp-annulus--header .dlp-annulus__value--main{font-weight:400;font-size:1.8rem}.dlp-annulus__value--remainder{color:#6a7585;font-size:.75rem;line-height:1}.dlp-annulus__path--main{fill:#0080a7}.dlp-annulus__path--remainder{fill:#ebeef3}.dlp-annulus.green .dlp-annulus__path--main{fill:#6bc048}svg.dlp__annulus{display:block;margin:0 auto}.dlp-hero{margin-bottom:3rem;display:flex;justify-content:space-between}.dlp-hero__meta-container{margin-left:2rem;flex:1}.dlp-hero__meta-container .values-container{align-items:center;display:flex;flex-direction:column}.dlp-hero__meta-container .value--main{color:#444d59;font-size:6.75rem;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:300;padding-top:1rem;line-height:1}.dlp-hero__meta-container .value--remainder{color:#6a7585;font-size:1rem}.dlp-mini__updated-delta{min-width:10.1875rem}.dlp-mini__updated-delta>span:last-child{margin-right:0;margin-left:.5rem}@media screen and (max-width: 30rem){.dlp-hero{display:block}}.tab-navigation--tabs{display:flex;margin-bottom:-2rem}.tab-navigation--tabs .tab-navigation__link{color:#444d59;background-color:rgba(0,0,0,0);border:0;border-bottom:.25rem solid rgba(0,0,0,0);padding:.5rem 1.5rem;margin-right:.5rem;transition:all 200ms}.tab-navigation--tabs .tab-navigation__link:hover,.tab-navigation--tabs .tab-navigation__link--active{color:#0080a7;border-bottom-color:#0080a7}.tab-navigation--tabs .tab-navigation__link--disabled{color:#a0a8b4}.tab-navigation--tabs .tab-navigation__link--disabled:hover{color:#a0a8b4;border-bottom-color:#fff}.tab-navigation .submission-comprehension-icon svg{fill:hsl(245,100%,68%)}.donations__container{border:1px solid #d1d7e0;border-radius:3px;padding:1.5rem}.donations__container--confetti{background-image:url("https://cdn.corvusinsurance.com/images/confetti-d79f26d3a7b0083ea21dca69d6b4a2bc.gif");background-size:cover;text-shadow:0 0 .5rem #fff}.donations__header{font-weight:600;font-size:1.375rem;margin-bottom:1.5rem}.donations__header .tag{margin:0 0 0 .25rem;vertical-align:middle}.donations__content-area{display:flex;justify-content:stretch}.donations__to-date{flex:1;border-right:1px solid #d1d7e0;margin-right:1.5rem;padding-right:1.5rem;display:flex;flex-direction:column;justify-content:center;align-items:center}.donations__dollars{color:#0080a7;font-size:2.75rem}.donations__dollars--gray{color:#6a7585}.donations__dollars-subtext{text-align:center;width:100%}.donations__progress{flex:5}.donations__progress-context{margin-bottom:1rem}.donations__progress-bar{border:1px solid #d1d7e0;border-radius:1rem;height:2rem;margin-bottom:1rem;position:relative;overflow:hidden}.donations__progress-bar--dashed{border-style:dashed;border-width:2px}.donations__progress-inside{position:absolute;top:0;bottom:0;left:0;background-image:linear-gradient(to right, #0080a7, #004f68);border-radius:1rem}.donations__progress-inside--transparent{opacity:.35}.donations__progress-milestones{display:flex;font-size:.875rem;justify-content:space-between;margin-bottom:.5rem}.donations__next-stage{font-size:.875rem;font-weight:600;text-align:right}.dropdown{z-index:1;position:relative;padding-bottom:.3125rem}.dropdown__container{border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);border:1px solid #d1d7e0;background-color:#fff;font-family:"Open Sans",sans-serif;font-size:1rem;font-weight:400;position:absolute;top:100%;right:0;transition:opacity 200ms ease-in-out;letter-spacing:normal;list-style-type:none;text-transform:none;opacity:1;visibility:visible}.dropdown__container::before{position:absolute;right:.5rem;bottom:100%;border-style:solid;height:0;width:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-width:0 .3125rem .3125rem;content:""}.dropdown__toggle{color:#6a7585;padding:0;background-color:rgba(0,0,0,0);border:0;cursor:pointer}.fonts-loaded .dropdown__toggle{font-family:inherit}.dropdown__toggle.error{color:hsl(350,80%,45%)}.dropdown__toggle.error::after{border-top-color:hsl(350,80%,45%)}.dropdown__toggle.success{color:hsl(110,100%,26.9%)}.dropdown__toggle.success::after{border-top-color:hsl(110,100%,26.9%)}.dropdown__toggle.warning{color:hsl(30,100%,36.5%)}.dropdown__toggle.warning::after{border-top-color:hsl(30,100%,36.5%)}.dropdown__toggle:hover{background-color:rgba(0,0,0,0)}.dropdown__toggle::after{border-style:solid;height:0;width:0;border-color:#6a7585 rgba(0,0,0,0) rgba(0,0,0,0);border-width:.25rem .25rem 0;margin:0 .75rem .125rem .25rem;content:"";display:inline-block}.dropdown__item:not(:last-of-type){border-bottom:1px solid #d1d7e0}.dropdown__link,.dropdown__option{border-bottom:0;color:#444d59;margin:0;padding:1rem 1.5rem;transition:all 200ms ease-in-out;display:block;text-decoration:none;white-space:nowrap}.dropdown__link:hover,.dropdown__option:hover{color:#006685;background-color:rgb(239.565,247.4519461078,249.855);cursor:pointer}.dropdown--small{text-align:right}.dropdown--small .dropdown__container{font-size:.875rem}.dropdown--small .dropdown__container::before{border-bottom-color:#d1d7e0}.dropdown--small .dropdown__item{border-bottom:0;margin:0}.dropdown--small .dropdown__link,.dropdown--small .dropdown__option{padding:.25rem 1rem}.dropdown-roles{text-align:left;border:1px solid #d1d7e0;border-radius:3px;background-color:#fff;color:#444d59;padding:0;transition:border-color 200ms ease-in-out;-webkit-appearance:none;outline:0;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative;width:100%}.dropdown-roles .dropdown__container{font-size:.875rem;border:1px solid #d1d7e0;border-radius:3px;background-color:#fff;color:#444d59;padding:0;width:100%;transition:border-color 200ms ease-in-out;-webkit-appearance:none;outline:0;box-shadow:0 1px .25rem rgba(32,37,44,.1);margin-top:.5rem}.dropdown-roles .dropdown__container::before{border-bottom-color:#d1d7e0}.dropdown-roles .dropdown__item{border-bottom:0;margin-top:0}.dropdown-roles__toggle{color:#6a7585;padding:1rem 1.5rem;background-color:rgba(0,0,0,0);border:0;cursor:pointer}.fonts-loaded .dropdown-roles__toggle{font-family:inherit}.dropdown-roles__toggle.error{color:hsl(350,80%,45%)}.dropdown-roles__toggle.error::after{border-top-color:hsl(350,80%,45%)}.dropdown-roles__toggle.success{color:hsl(110,100%,26.9%)}.dropdown-roles__toggle.success::after{border-top-color:hsl(110,100%,26.9%)}.dropdown-roles__toggle.warning{color:hsl(30,100%,36.5%)}.dropdown-roles__toggle.warning::after{border-top-color:hsl(30,100%,36.5%)}.dropdown-roles__toggle:hover{background-color:rgba(0,0,0,0)}.dropdown-roles .role-title{margin-bottom:.5rem;font-size:.875rem;font-weight:bold;line-height:1.15;color:#004f68}.dropdown-roles .role-description{font-size:.75rem;line-height:1.35;color:#0080a7;white-space:normal}.dropdown-roles:hover{border-color:#a0a8b4}.dropdown-roles:focus{border-color:#a0a8b4;box-shadow:inset 0 1px .25rem rgba(32,37,44,.1)}.dropdown-roles:disabled,.dropdown-roles.disabled{background-color:#f9fafc;border-color:#d1d7e0;color:#6a7585;cursor:not-allowed;pointer-events:none}.dropdown-roles:invalid{box-shadow:0 1px .25rem rgba(32,37,44,.1)}.dropdown-roles .small{padding:.5rem 1rem}.dropdown-roles.success{border-color:hsl(110,100%,26.9%);color:hsl(110,90%,24.21%)}.dropdown-roles.error{border-color:hsl(350,80%,45%);color:hsl(350,72%,40.5%)}.dropdown-roles.warning{border-color:hsl(30,100%,36.5%);color:hsl(30,90%,32.85%)}.dropdown-roles.info{border-color:hsl(210,70%,46%);color:hsl(210,63%,41.4%)}.dropdown-roles.accent{border-color:#0080a7;color:#006685}.dropdown-roles.locked{border-color:#a0a8b4;color:#6a7585}.dropdown-roles.neutral{border-color:#a0a8b4;color:#6a7585}.dropdown-roles:-moz-focusring,.dropdown-roles::-moz-focus-inner{color:rgba(0,0,0,0) !important;text-shadow:0 0 0 #000 !important}.dropdown-roles.empty{color:#6a7585}.dropdown-roles option{color:#444d59}.dropdown-roles option:not(:checked){color:#444d59}.dropdown-roles option:disabled{background-color:#f9fafc}.dropdown-roles::after{border-left:1px solid #d1d7e0;background-color:#f9fafc;border-bottom-right-radius:3px;border-top-right-radius:3px;transition:border-color 200ms ease-in-out;position:absolute;top:1px;right:1px;bottom:1px;padding:1rem .75rem;pointer-events:none;width:3rem;display:block;content:url("https://cdn.corvusinsurance.com/images/chevron-down-1b1be5a1cc24b4c6a7c17489b8ed33fb.svg")}.dropdown-roles:hover::after{border-color:#a0a8b4}.elm-select{position:relative}.elm-select .elm-select-input{box-shadow:none;padding:0;width:auto}.elm-select .elm-select-input:focus{box-shadow:none}.elm-select-menu{background-color:#fff;border:1px solid #d1d7e0;border-top:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px;box-shadow:0 1px .25rem rgba(32,37,44,.1);max-height:30rem;overflow:auto;width:100%}.elm-select-item{padding:.5rem 1.5rem;border-bottom:1px solid #d1d7e0}.elm-select-item:last-child{border-bottom:0}.elm-select-item:hover,.elm-select-item:focus{background-color:rgb(239.565,247.4519461078,249.855);color:#0080a7}.elm-select-input-control:nth-last-child(n+2) .elm-select-input-wrapper{border-color:#a0a8b4;box-shadow:inset 0 1px .25rem rgba(32,37,44,.1);border-bottom-left-radius:0;border-bottom-right-radius:0}.file-uploader__form{border:1px solid #d1d7e0;background-color:#ebeef3;border-radius:3px;clear:both;box-shadow:inset 0 1px .25rem rgba(32,37,44,.1);transition:border-color 200ms ease-in-out;min-height:12.5rem;position:relative;display:flex;flex-direction:column;align-items:center;overflow:hidden}.file-uploader__form.single-file{min-height:0}.invoice .file-uploader__form{min-height:0;border-top-left-radius:0;border-top-right-radius:0;margin-bottom:1rem}.file-uploader__form.logo{min-height:0rem}.file-uploader__form.hovering{border-color:#0080a7}.file-uploader__form.hovering .table{transform:translateY(-100%);pointer-events:none}.file-uploader__form.hovering .file-uploader__instructions{pointer-events:none}.file-uploader__form .table{transition:transform 200ms ease-in-out;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.file-uploader__form .quote-options{padding:2rem 2rem .5rem 2rem;width:100%}.file-uploader__form .quote-options .card{margin-bottom:1.5rem}.file-uploader.docx-templates{position:relative}.file-uploader.docx-templates .section-title{margin:0px}.file-uploader.docx-templates h2{padding-top:.5rem;padding-bottom:.5rem}.file-uploader.docx-templates .form{padding:1.5rem;margin-top:2rem;padding-top:2rem;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-left-radius:0;border-bottom-right-radius:0}.file-uploader.docx-templates .form .form__group{position:relative;flex-basis:100%;max-width:100%;display:flex}.file-uploader.docx-templates .form .group-third{margin-bottom:1.5rem;padding-right:1.5rem;position:relative;flex-basis:33.33%;max-width:33.33%}.file-uploader.docx-templates .form .group-half{margin-bottom:1.5rem;padding-right:1.5rem;position:relative;flex-basis:50%;max-width:50%}.file-uploader.hovering{border-color:#0080a7}.error .file-uploader{border-color:hsl(350,80%,45%);background-color:hsl(350,40%,96.7%)}.file-uploader__files{border-bottom:1px solid #d1d7e0;max-height:20rem;overflow-y:auto;width:100%}.file-uploader__files.logo{border-bottom:none}.file-uploader__icon{height:3.75rem;width:3.75rem;margin-top:auto;fill:#a0a8b4}.file-uploader__icon.-small{margin-top:0;margin-right:.25rem;height:1.5rem;width:1.5rem}.file-uploader__instructions{padding-top:1rem;padding-bottom:1rem;text-align:center;white-space:nowrap;margin:auto;display:flex;align-items:center}.file-uploader__label{margin-bottom:0;margin-left:.25rem;white-space:nowrap}.file-uploader__text{color:#444d59}.file-uploader__delete{color:#444d59;height:1.25rem;width:1.25rem;vertical-align:-0.25em;cursor:pointer}.file-uploader__delete.-deleting{cursor:default;animation:fade .5s alternate infinite}@keyframes fade{from{color:#444d59}to{color:#d1d7e0}}.getting-started{display:flex;flex-direction:row;margin-bottom:3.5rem}.global-nav{position:absolute;top:1.5rem;right:1.5rem}.global-nav__item{margin-left:.25rem;display:inline-flex}.global-nav__link{color:#fff;cursor:pointer;font-size:.875rem;padding:.25rem .5rem;align-items:center;display:flex;text-decoration:none}.global-nav__link:hover{color:#fff}.global-nav__link:hover .global-nav__link-text{border-color:#ebeef3}.global-nav__link:hover .global-nav__icon{opacity:1}.global-nav .dropdown{padding-bottom:0}.global-nav .dropdown .global-nav__link:hover .global-nav__link-text{border-color:rgba(0,0,0,0)}.global-nav .dropdown .global-nav__link::after{margin-left:.5rem;border-style:solid;height:0;width:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-width:.3125rem .3125rem 0;content:""}.global-nav__link-text{border-bottom:1px solid rgba(0,0,0,0);transition:border-color 200ms ease-in-out}.global-nav__icon{margin-right:.5rem;height:1.5rem;width:1.5rem;opacity:.9}.global-nav__new-tag{align-self:flex-end}.global-nav__new-tag span.tag{margin-left:.5rem;margin-right:0px}@media screen and (max-width: 30rem){.global-nav{position:absolute;top:.5rem;right:.5rem}.global-nav__link{padding-left:.25rem;padding-right:.25rem}.global-nav__link-text{display:none}.global-nav__icon{margin-right:0}}.grid{display:-ms-grid;display:grid;margin:0 -1.5rem -1.5rem 0}.grid--submission{flex:1;-ms-grid-columns:auto [3];grid-template-columns:repeat(3, auto)}.grid--submission .grid__cell:nth-child(3n+1){-ms-grid-column:1}.grid--submission .grid__cell:nth-child(1){-ms-grid-row:1}.grid--submission .grid__cell:nth-child(4){-ms-grid-row:2}.grid--submission .grid__cell:nth-child(7){-ms-grid-row:3}.grid--submission .grid__cell:nth-child(3n+2){-ms-grid-column:2}.grid--submission .grid__cell:nth-child(2){-ms-grid-row:1}.grid--submission .grid__cell:nth-child(5){-ms-grid-row:2}.grid--submission .grid__cell:nth-child(8){-ms-grid-row:3}.grid--submission .grid__cell:nth-child(3n+3){-ms-grid-column:3}.grid--submission .grid__cell:nth-child(3){-ms-grid-row:1}.grid--submission .grid__cell:nth-child(6){-ms-grid-row:2}.grid--submission .grid__cell:nth-child(9){-ms-grid-row:3}.grid__cell{margin-right:1.5rem;margin-bottom:1.5rem}.grid__cell-label{color:#444d59;font-size:.75rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase;margin-bottom:.25rem;display:block}.grid__cell-field{display:block}.grid__ph-dashboard{display:grid;grid-auto-flow:column;grid-auto-columns:1fr;gap:2rem;margin:2rem 0;min-width:min-content}.grid__nob-dashboard{margin:1rem 0 0 1rem;grid-template-columns:repeat(2, max-content)}.grid__nob-dashboard .toggle-switch{margin:0 0 1rem 1rem}.header{background:#003557;box-shadow:0 1px .25rem rgba(32,37,44,.1);padding-top:2.5rem;position:relative}.header__logo{color:#fff;margin:0 auto 2.5rem auto;height:2.5570776256rem;width:10rem;transition:opacity 200ms ease-in-out;display:block;opacity:.9}.header__logo:hover{color:#fff;opacity:1}.header--nav{border-top-left-radius:3px;border-top-right-radius:3px;padding-left:3rem;padding-right:3rem;background-color:hsla(0,0%,100%,.1);display:flex;align-items:center;min-height:3.5rem}@media(max-width: 700px){.header--nav{padding-left:1.5rem;padding-right:1.5rem}}.header .container--admin{margin-bottom:0}.header__uw-contact-info{background-color:#f9fafc}@supports(position: sticky){.header{z-index:10;opacity:.95;position:sticky;top:-7rem;will-change:transform}}.logo-corvus,.logo-staging,.logo-white,.logo-white-staging{height:2.5570776256rem;width:10rem}@media screen and (max-width: 60rem){.header__logo{margin-left:3rem;margin-top:-1rem}}@media screen and (max-width: 30rem){.header{padding-top:1rem;position:relative;top:auto}.header__logo{margin-left:1rem;margin-bottom:1.5rem;margin-top:0}.header--nav{flex-wrap:wrap}}.header-echelon{display:flex;align-items:center;padding:1rem 2.5rem;background-color:#fff;border-bottom:1px solid #ebeef3;border-top:.25rem solid #0080a7}.header-echelon .header__logo{height:3rem;width:11.7321428571rem;margin:0 auto 0 0;opacity:1}.header-echelon .header__logo .svg-logo{height:3rem;width:11.7321428571rem}.header-echelon .advanced-search{margin:0 2.5rem}.header-echelon .advanced-search__input{background-color:#f9fafc;box-shadow:none;border-radius:1.5rem;border:1px solid #ebeef3;padding-left:4rem;padding-right:1.5rem;height:3rem;width:25rem;background-position-x:1.5rem;background-size:1.25rem 1.25rem}.header-echelon .advanced-search__input.coverholder-search{border-color:#a0a8b4}.header-echelon .advanced-search__results{margin-top:calc(1px + 1rem);padding-bottom:1rem;padding-top:1rem;box-shadow:0 1px .25rem rgba(32,37,44,.1) !important;border:0 !important}.header-echelon .advanced-search__result{border-bottom:1px solid #ebeef3}.header-echelon .advanced-search__result:last-child{border-bottom:0}.header-echelon .advanced-search__result .advanced-search__result .advanced-search__link{padding-left:3rem}.header-echelon .advanced-search__link{padding:.5rem 1.5rem}.header-echelon .global-nav{position:static}.header-echelon .global-nav__link{color:#444d59;font-size:1rem;padding-left:0}.header-echelon .global-nav__icon{content:url("https://cdn.corvusinsurance.com/images/chevron-down-1b1be5a1cc24b4c6a7c17489b8ed33fb.svg");height:1.25rem;width:1.25rem}.header-echelon .global-nav .dropdown{margin-left:0}.header-echelon .global-nav .dropdown .global-nav__link::after{border:0;content:url("https://cdn.corvusinsurance.com/images/chevron-down-1b1be5a1cc24b4c6a7c17489b8ed33fb.svg");height:1.25rem;width:1.25rem;margin-left:.5rem}.header-echelon .global-nav .dropdown__item{border-bottom:0;margin-bottom:.5rem}.header-echelon .global-nav .dropdown__item:last-child{margin-bottom:0}.header-echelon .global-nav .dropdown__link,.header-echelon .global-nav .dropdown__option{font-size:.875rem;padding:.5rem 2rem;width:100%;text-align:left;cursor:pointer;line-height:1.5rem}.header-echelon .global-nav .dropdown__container{left:0;margin-top:1rem;padding:1rem 0;border:0;box-shadow:0 2px 1rem rgba(32,37,44,.1)}.header-echelon .global-nav .dropdown__container::before{content:none}.header-echelon .global-nav .dropdown details>summary{list-style:none}.header-echelon .global-nav .dropdown details>summary::-webkit-details-marker{display:none}.header-echelon .global-nav .dropdown details[open] summary::before{content:"";width:100vw;height:100vh;position:fixed;top:0;left:0;cursor:auto}.header-echelon-ph{display:flex;align-items:center;padding:1rem 2.5rem;background-color:#fff;border-bottom:1px solid #ebeef3;border-top:.25rem solid #0080a7}.header-echelon-ph .header__logo{height:3rem;width:11.7321428571rem;margin:0 auto 0 0;opacity:1}.header-echelon-ph .header__logo .svg-logo{height:3rem;width:11.7321428571rem}.header-echelon-ph .global-nav{position:static}.header-echelon-ph .global-nav__link{color:#444d59;font-size:1rem;padding-left:0}.header-echelon-ph .global-nav__icon{content:url("https://cdn.corvusinsurance.com/images/chevron-down-1b1be5a1cc24b4c6a7c17489b8ed33fb.svg");height:1.25rem;width:1.25rem}.header-echelon-ph .global-nav .dropdown{margin-left:0}.header-echelon-ph .global-nav .dropdown .global-nav__link::after{border:0;content:url("https://cdn.corvusinsurance.com/images/chevron-down-1b1be5a1cc24b4c6a7c17489b8ed33fb.svg");height:1.25rem;width:1.25rem;margin-left:.5rem}.header-echelon-ph .global-nav .dropdown__item{border-bottom:0;margin-bottom:.5rem}.header-echelon-ph .global-nav .dropdown__item:last-child{margin-bottom:0}.header-echelon-ph .global-nav .dropdown__link,.header-echelon-ph .global-nav .dropdown__option{font-size:.875rem;padding:.5rem 2rem;width:100%;text-align:left;cursor:pointer;line-height:1.5rem}.header-echelon-ph .global-nav .dropdown__container{left:0;margin-top:1rem;padding:1rem 0;border:0;box-shadow:0 2px 1rem rgba(32,37,44,.1)}.header-echelon-ph .global-nav .dropdown__container::before{content:none}.smart-suggestion{color:#0080a7;font-weight:600}.beta{font-weight:600}.industry-prediction{background-color:rgb(239.565,247.4519461078,249.855);padding:1rem;display:flex;align-items:center}.unpredicted{padding:1rem}.industry-text{margin-right:.5rem}.inline-form{align-items:center;display:flex}.inline-form input,.inline-form .select-wrapper,.inline-form button{width:auto}.inline-form input:nth-last-child(n+2),.inline-form .select-wrapper:nth-last-child(n+2),.inline-form button:nth-last-child(n+2){margin-right:1.5rem}.inline-form.success{border-color:hsl(110,100%,26.9%)}.inline-form.error{border-color:hsl(350,80%,45%)}.inline-form.warning{border-color:hsl(30,100%,36.5%)}.inline-form.info{border-color:hsl(210,70%,46%)}.inline-form.accent{border-color:#0080a7}.inline-form.locked{border-color:#a0a8b4}.inline-form.neutral{border-color:#a0a8b4}@media screen and (max-width: 30rem){.inline-form{flex-wrap:wrap;justify-content:center}.inline-form input:nth-last-child(n+2),.inline-form .select-wrapper:nth-last-child(n+2),.inline-form button:nth-last-child(n+2){margin-right:0;margin-bottom:1rem;width:100%}}.markdown-preview{border:1px solid #d1d7e0;background-color:#fff;padding:1.5rem}.needs-more-info{background-position:1rem center;background-repeat:no-repeat;background-size:1.5rem 1.5rem;border:1px solid #d1d7e0;border-radius:3px;display:inline-block;width:100%;padding:1rem;background-color:hsl(30,50%,96.19%);border-color:hsl(30,100%,36.5%);color:hsl(30,100%,36.5%);padding-left:3rem}.needs-more-info h4{font-size:1rem;font-weight:bold;color:hsl(30,90%,32.85%);text-transform:uppercase}.needs-more-info p{line-height:1.2;margin-top:0;margin-bottom:0;white-space:pre-wrap}.needs-more-info .icon-container{position:relative}.needs-more-info .icon-email{position:absolute;left:-2.25rem;top:0;height:1.75rem;width:1.5rem}.needs-more-info .icon-chevron{position:absolute;right:0;top:0;height:1.75rem;width:1.5rem}.meta-list{list-style:none}.meta-list h5{margin-bottom:.5rem}.page-header .meta-list{text-align:right}.page-header .meta-list li{margin-left:3rem;margin-right:0}.page-header .meta-list .tag{text-align:left}.meta-list.meta-header{color:#20252c;line-height:1;border-bottom:1px solid #d1d7e0;display:flex;padding:1.5rem 1.5rem;font-weight:400;font-family:"Rubik",sans-serif}.meta-list--quote-fields{display:flex;align-items:flex-start}.meta-list--quote-fields li{width:25%}.meta-list--quote-fields li:nth-last-child(n+2){margin-right:1.5rem}.meta-list--quote-notes{margin-top:1.5rem}.meta-list--quote-notes li{width:100%;margin-right:0 !important}.meta-list--quote-notes textarea{min-height:0}.meta-list--horizontal{display:flex}.meta-list--horizontal li{margin-right:2rem}.meta-list--horizontal.justify-between li:last-child{margin-right:0}.meta-list--vertical li{margin-bottom:1rem}.meta-list--segmented{background-color:#fff;border:1px solid #d1d7e0;border-radius:3px;margin-bottom:2rem;display:flex}.meta-list--segmented li{padding:1.5rem 1rem;flex-grow:1}.meta-list--segmented li:nth-child(n+2){border-left:1px solid #d1d7e0}.meta-list--segmented-policy-meta{border:1px solid #d1d7e0;border-radius:3px;display:flex}.meta-list--segmented-policy-meta li{flex-grow:1;padding:1.5rem 1rem;width:8rem}.meta-list--segmented-policy-meta li:nth-child(n+2){border-left:1px solid #d1d7e0}.meta-list--environment-overview-meta{display:flex}.meta-list--environment-overview-meta h5{font-size:.875rem;color:#6a7585;margin:0;padding-bottom:1rem}.meta-list--environment-overview-meta span{padding-top:1rem;color:#20252c}.meta-list--environment-overview-meta li{flex-grow:1;padding:1.5rem 1.5rem;width:8rem}.meta-list--environment-overview-meta li:nth-child(n+2){border-left:1px solid #d1d7e0}.meta-list--broker-message__message p:first-child{margin-top:0}.meta-list--client-brokerage-link{flex:2;max-width:95%;display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.meta-list.date-tria li{flex:1;margin-left:1.5rem;margin-right:1.5rem}.meta-list.date-tria li:first-child{margin-left:0}.meta-list.date-tria li:last-child{margin-right:0}.meta-list.detail-info{border-radius:12px}.meta-list.detail-info li{margin-left:1.5rem;margin-right:1.5rem;border:none}.meta-list.detail-info h5{color:#6a7585}.meta-list.date-tria label,.meta-list .option-tria label{margin-bottom:0px}@media screen and (max-width: 30rem){.meta-list--horizontal{flex-wrap:wrap}}.mfa-setup__card{background-color:#fff;height:auto;max-width:30rem;width:100%;margin:auto auto;border-radius:6px;padding:2rem;color:#20252c;font-family:"Open Sans",sans-serif;font-size:.875rem;font-style:normal;font-weight:400}.mfa-setup__card .modal.modal__container{display:flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer}.mfa-setup__step-label{display:flex;padding:1rem;justify-content:center;align-items:center;gap:.5rem;align-self:stretch;color:#20252c}h1.mfa-setup__header{margin:0;font-family:"Rubik",sans-serif;font-size:1.375rem;font-weight:400;color:#20252c;padding:1rem;text-align:center;line-height:1.2;letter-spacing:-0.11px}.mfa-setup__step-description{color:#20252c;text-align:left;font-size:.875rem;font-style:normal;font-weight:400;line-height:1.275rem;padding:1rem}.mfa-setup__overlay-button{display:flex;justify-content:space-between;width:100%;border:.5px solid #a0a8b4;background-color:#fff;color:hsl(210,70%,46%);border-radius:3px;font-family:"Open Sans",sans-serif;font-weight:600;font-size:.875rem;text-decoration:underline;padding:1rem 1rem;align-items:center;cursor:pointer}.mfa-setup__footer{display:flex;justify-content:space-between}.mfa-setup__footer-button{color:#0080a7;font-size:.875rem;letter-spacing:.00438rem;line-height:1.4875rem}.mfa-setup__footer-button:hover{color:#006685}.mfa-setup__footer-button a:hover{color:#006685}.mfa-setup__svg{display:flex;justify-content:center;padding:2rem 1rem}.mfa-setup__cube{width:1rem;height:1rem}.mfa-setup__cube--gray{background-color:#d1d7e0}.mfa-setup__cube--light-green{background-color:#6fc}.mfa-setup__cube--green{background-color:rgb(0,204,173.4)}.mfa-setup__cube--dark-green{background-color:hsl(171,100%,22%)}.mfa-setup__progress-status-section{display:flex;flex-direction:column;gap:1rem}.mfa-setup__message-gradient{display:flex;flex-direction:column;justify-content:center;align-items:center;align-self:stretch;text-align:center;background:linear-gradient(90deg, rgba(134, 124, 255, 0.1) 0%, rgba(102, 255, 204, 0.1) 100%);border-radius:6px;gap:2rem;padding:40px 1.5rem;font-size:.875rem;color:#20252c;line-height:170%;letter-spacing:.07px}.mfa-setup__next-step-button{margin-bottom:1.5rem;margin-top:1.5rem;width:100%}.mfa-setup__locate-qr-code-icon{color:#444d59;display:flex;padding:2rem 1rem;justify-content:center;align-items:center;align-self:stretch}.mfa-setup__locate-qr-code-desc{font-size:.875rem;font-weight:400;line-height:1.275rem;text-align:left;padding:1rem}.mfa-setup__locate-qr-code-example-box{align-items:center;align-self:stretch;border:.5px solid #a0a8b4;border-radius:.1875rem;display:flex;gap:.25rem;padding:1rem;color:#20252c;width:100%}.mfa-setup__locate-qr-code-example-link{color:hsl(210,70%,46%);flex:1 0 0;font-size:.875rem;font-weight:600;line-height:1.275rem;text-decoration-line:underline}.mfa-setup__locate-qr-code-example-click-icon{align-items:center;color:rgb(0,79.05,153);display:flex;padding:.25rem .4375rem .375rem .1875rem}.mfa-setup__locate-qr-code-last-step-desc{align-items:flex-start;align-self:stretch;color:#20252c;display:flex;font-size:.875rem;font-weight:400;gap:.5rem;line-height:1.275rem;padding:1rem}.mfa-setup__scan-qr-code-url-box{border:.5px solid #a0a8b4;border-radius:.1875rem;display:flex;flex-direction:column;gap:1rem;margin-top:1rem;padding:1rem;text-align:left;font-size:.875rem;font-weight:400;line-height:1.275rem;color:#20252c}.mfa-setup__scan-qr-code-url-box .uri-and-button{display:flex;gap:.5rem;font-size:.75rem;line-height:150%}.mfa-setup__scan-qr-code-url-box .uri-and-button .code-uri{flex:1 0 0;padding:.5rem;border-radius:3px;background-color:#f9fafc;color:#444d59;overflow:hidden;text-wrap:nowrap;text-overflow:ellipsis}.mfa-setup__scan-qr-code-entry-instructions{padding:1rem;text-align:left;font-size:.875rem;font-weight:400;line-height:1.275rem;color:#20252c}.mfa-setup__modal-body{position:relative;margin:1rem !important;max-width:unset !important;border-radius:3px !important;background:#006685 !important;gap:3rem !important;cursor:auto}.mfa-setup__modal-header{color:#f9fafc;text-align:center;font-family:"Rubik",sans-serif;font-size:1.875rem;font-weight:400;line-height:132%;letter-spacing:-0.15px;margin-bottom:2rem}.mfa-setup__recommended-apps{padding:2rem 4rem;color:#f9fafc;text-align:center;font-family:"Open Sans";font-size:1.375rem;font-weight:400;line-height:200%;border-radius:3px;background:#006685}.mfa-setup__scan-screenshots{width:100%;display:inline-flex;align-items:flex-start;gap:4rem;flex-wrap:wrap;justify-content:center}.mfa-setup__modal-close{position:absolute;top:0;right:0;padding:1rem 1rem .5rem .5rem;color:#f9fafc;cursor:pointer}.modal{background-color:rgba(32,37,44,.75);z-index:11;position:fixed;top:0;left:0;width:100%;height:100%;overflow:auto}.modal--light{background-color:rgba(106,117,133,.75)}.modal--lighter{background-color:rgba(0,0,0,.3)}.modal--dark{background-color:rgba(32,37,44,.8);transition-duration:2000ms;transition-property:opacity}.modal--transparent{background-color:rgba(0,0,0,0)}.modal--centered{display:flex;align-items:center;justify-content:center}.modal--full-fixed-margins{width:100%;height:100%;padding:3rem 4rem}.modal__content{background-color:#ebeef3;border-radius:3px;padding:1.5rem;margin:6rem auto 0 auto;overflow-x:hidden}.modal__content--report-bind-data{min-width:41.25rem;background-color:#fff}.modal__content--duplicates{background-color:#fff;margin-top:8rem;padding:0rem}.modal__content--environment{background-color:#fff;padding:0;font-family:"Open Sans",sans-serif;font-size:1rem;font-weight:400;line-height:1.2}.modal__content--environment .modal__header{padding:.75rem 1.25rem}.modal__content--environment .modal__header .closeX__icon{color:#a0a8b4}.modal__content--environment .modal__main{width:40rem}.modal__content--environment .modal__footer--small{padding:1.25rem;border-top:1px solid #d1d7e0}.modal__content--onboarding{background-color:#fff;border-radius:12px !important}.modal__content--underwriting-rule{background-color:#fff;font-family:"Open Sans",sans-serif;font-size:.875rem;font-weight:400}.modal__content--rating-engine-confirmation{background-color:#fff;border-radius:12px !important}.modal__content--rating-engine-confirmation .review__changes{position:relative;overflow-y:scroll;max-height:60vh;padding:1em}.modal__content--impressions{background-color:#fff;padding:0}.modal__content--impressions .modal__main{padding:0;font-weight:600;margin-top:.5rem}.modal__content--impressions .modal__main .percentage-input{flex-basis:20%;max-width:20%}.modal__content--impressions .modal__close{margin-left:4.5rem}.modal__content--impressions .radio__section{font-weight:400;padding-left:1.5rem;margin-bottom:1.5rem}.modal__content--impressions .form__group{padding-left:1.5rem}.modal__content--fit-content{width:fit-content;max-width:100%}.modal__content--full{max-width:95%}.modal__content--no-margin{width:100%;height:100%;margin:0;padding:0;background-color:rgba(0,0,0,0);overflow:hidden}.modal__content--no-margin .modal__main{padding:0;height:100%}.modal__content--large{max-width:65rem}.modal__content--medium{max-width:40rem}.modal__content--small{max-width:25rem}.modal__content--tight{padding:0;max-width:48rem}.modal__content--tight .modal__header{border-bottom:0;padding-left:2rem}.modal__content--tight .modal__header h2{padding-top:2rem;font-family:"Open Sans",sans-serif;font-weight:400}.modal__content--tight .modal__close{padding:1rem;font-size:1.875rem}.modal__content--tight .modal__main{padding:2rem}.modal--centered .modal__content{margin:0}.modal__header{padding-left:1.5rem;border-bottom:1px solid #d1d7e0}.modal__footer{border-top:1px solid #d1d7e0;padding:1.5rem;text-align:right}.modal__footer--small{padding-bottom:.25rem}.modal__main{padding:1.5rem}.modal__main img{max-width:100%}.modal__close{margin:1.5rem 1rem;background-color:rgba(0,0,0,0);color:#a0a8b4;line-height:1;border:0}.modal__close:hover,.modal__close:focus{background-color:rgba(0,0,0,0);color:#6a7585;text-decoration:none;cursor:pointer}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.modal .fade-in{animation-duration:200ms;animation-fill-mode:both;animation-name:fadeIn}@keyframes fadeInRight{from{opacity:0;transform:translateX(200px)}to{opacity:1;transform:translateX(0)}}.modal .fade-in-right{animation-duration:.6s;animation-fill-mode:both;animation-name:fadeInRight}@keyframes fadeInLeft{from{opacity:0;transform:translateX(-200px)}to{opacity:1;transform:translateX(0)}}.modal .fade-in-left{animation-duration:.6s;animation-fill-mode:both;animation-name:fadeInLeft}@keyframes fadeInRight2{from{opacity:0;transform:translateX(200px)}to{opacity:1;transform:translateX(0)}}.modal .fade-in-right-2{animation-duration:.6s;animation-fill-mode:both;animation-name:fadeInRight2}@keyframes fadeInLeft2{from{opacity:0;transform:translateX(-200px)}to{opacity:1;transform:translateX(0)}}.modal .fade-in-left-2{animation-duration:.6s;animation-fill-mode:both;animation-name:fadeInLeft2}@keyframes smallToLarge{from{height:508px}to{height:593px}}.modal .small-to-large{animation-duration:.6s;animation-fill-mode:both;animation-name:smallToLarge}span.modalized{position:static}span.modalized>span.modal.modal__container{display:inline-block}span.modalized>:not(:first-child){z-index:12}.opt-in__agreement-link-w{display:flex}.opt-in__download-icon{height:1.5rem;width:1.5rem;fill:#0080a7}.opt-in__benefits{margin-left:1.5rem}.opt-in__benefits li{margin-bottom:.5rem}.opt-in__sign-url{border:1px solid #6a7585;padding:1rem;background-color:#fff;margin-top:0;margin-right:1.5rem;overflow-x:scroll;min-height:inherit;height:3.5rem;resize:none;-ms-overflow-style:-ms-autohiding-scrollbar;white-space:nowrap}.opt-in__copy{min-width:11rem}.opt-in__or-spacer{margin-top:2rem;z-index:1;position:relative;text-align:center;text-transform:uppercase}.opt-in__or-spacer::after{border-bottom:1px solid #6a7585;position:absolute;top:50%;right:0;left:0;z-index:-1;content:"";display:block}.opt-in__or-spacer>span{background-color:#fff;padding-left:.25rem;padding-right:.25rem}.option-detail.table{background-color:rgba(0,0,0,0)}.option-detail__label{font-size:.75rem;font-weight:600;letter-spacing:.05em;line-height:1.2;margin:0;text-transform:uppercase;width:100%;text-align:right;padding:0 1rem 0 0;border:0}.option-detail__date,.option-detail__currency,.option-detail__number{border:0;font-size:1.875rem;font-weight:600;padding:0;white-space:nowrap}.option-detail__date{color:#0080a7}.option-detail__total .option-detail__currency,.option-detail__total .option-detail__number{color:#0080a7}.select-option{flex:1;padding:1.5rem}.select-option+.select-option{padding-top:0}.quote__bind-modal .modal__content,.quote__bind-modal .modal__main{padding:0}.quote__bind-modal .modal__close{visibility:hidden}.quote__bind-modal .option-detail__date{min-width:11rem}.quote__bind-modal .option-detail__currency{min-width:2rem}.quote__bind-modal .option-detail__number{min-width:9rem}.quote__bind-modal .select-option{padding-left:2rem;padding-right:2rem}.overlay{position:absolute;top:0;right:0;bottom:0;left:0;z-index:10;align-items:center;background:hsla(0,0%,100%,.8);display:flex;flex-direction:column}.overlay__box{border:1px solid #a0a8b4;background-color:#fff;border-radius:3px;box-shadow:0 1px .25rem rgba(32,37,44,.1);padding-top:2rem 2rem 1rem 2rem;position:fixed;top:50%;transform:translateY(-50%)}@supports(position: sticky){.overlay__box{padding:1rem;position:sticky;top:3rem;transform:none}}.page-header{border-bottom:1px solid #d1d7e0;margin-bottom:3rem;align-items:flex-end;display:flex;padding-bottom:3rem;position:relative}.page-header.darker-line{border-bottom-color:#a0a8b4}.page-header--has-subheader{align-items:flex-start;flex-direction:column;overflow:hidden;max-width:100%}.page-header--has-subheader .subheader-link{color:#006685;letter-spacing:.02em;text-decoration:underline;text-transform:none}.page-header--has-subheader .subheader-link:hover{color:#004f68}.page-header--has-description p{margin-top:2rem;margin-bottom:0}.page-header__title{flex:2 1 auto;display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.page-header__meta{margin-left:3rem;text-align:right}.page-header__fields{text-align:right}.page-header__fields>span:nth-last-child(n+2){display:block}.page-header__logo{position:absolute;right:-4px;bottom:-2px}.page-header__logo img{height:90px}.page-header__fields__score{display:flex;align-items:center;position:relative;top:1rem;cursor:pointer}.page-header__fields__score .dlp-annulus--header{margin-left:.5rem}.page-header__fields__dlp>span:not(.tag){margin-bottom:.25rem;font-size:.875rem;display:block}.page-header__fields__dlp>span:last-child{margin-bottom:0}.page-header__fields__dlp .tag{margin-right:0}.broker-view{max-width:65%}.contact-info{text-align:right}.contact-info>span:nth-last-child(n+2){display:block}.contact-info,.contact-info__headshot{margin-top:-1rem;position:relative;top:1rem}.contact-info__headshot{margin-left:.5rem;border-radius:50%;height:75px;width:75px}.faq-contact-info{margin-top:-1rem;top:1rem;display:flex;flex-direction:column;align-items:center}.faq-contact-info__headshot{height:125px;width:125px;max-width:initial}.bottom-subheader{color:#6a7585}.bottom-subheader--text{color:#a0a8b4;letter-spacing:normal;text-transform:none}@media screen and (max-width: 30rem){.page-header__logo{display:none}.page-header{flex-wrap:wrap}.page-header__title{flex-basis:100%}.page-header__fields{margin-left:auto}.contact-info{margin-bottom:3rem;margin-top:0;order:2;text-align:left}.contact-info__headshot{margin-right:.5rem;margin-left:0;margin-top:0;order:1}}.phases{counter-reset:phase;list-style-type:none}.phases.submission{counter-increment:phase}.phase:not(:last-of-type){padding-bottom:3rem}.flex--steps .step{flex:1;margin-left:1rem;margin-right:1rem;max-width:none}.flex--steps .step:first-child{margin-left:0}.flex--steps .step:last-child{margin-right:0}.phase{counter-increment:phase;padding-left:3.25rem;position:relative}.phase.submission{padding-left:2rem}.phase.submission .phase__title h2{font-family:"Open Sans",sans-serif;font-weight:400;color:#0080a7}.phase.submission .phase__title h2::before{content:counter(phase) ". "}.phase.submission .steps{margin-left:1rem}.phase.submission .step__title,.phase.submission .sub-step__title{font-family:"Open Sans",sans-serif;font-weight:400;font-size:1.375rem}.step .phase.submission:not(:last-of-type){padding-bottom:1.5rem}.phase.submission .sub-step,.phase.submission .step{font-weight:600}.phase.submission::before{display:none}.phase.submission::after{content:none !important}.phase::before{color:#20252c;font-size:1.375rem;font-weight:600;line-height:1.2;margin:0;position:absolute;top:0;left:0;height:2.25rem;width:2.25rem;background-color:#0080a7;color:#fff;content:counter(phase);z-index:2;align-items:center;border-radius:50%;display:flex;justify-content:center}.phase:not(:last-of-type)::after{position:absolute;top:0;left:1.0625rem;height:100%;width:.125rem;z-index:1;background-image:url("https://cdn.corvusinsurance.com/images/vertical-dotted-line-0c5e3648a904b51e3884f867f6f5655c.svg");content:"";display:block}.phase--collapsed{padding-bottom:.5rem}.phase__title{padding:1rem;padding-top:0;display:flex}.phase__title--collapsed{color:#6a7585;border-bottom:1px solid #d1d7e0;padding-bottom:.5rem;margin-bottom:0}.phase__title h2{flex-grow:2}.phase__expander{background-color:rgba(0,0,0,0);color:#6a7585;font-size:.75rem;padding-right:0;padding-top:.5rem;transition:color 200ms ease-in-out;text-transform:uppercase;display:flex}.phase__expander:hover{background-color:#fff;color:#444d59}.phase__expander:focus{outline:none}.phase__expander__icon{margin-left:.5rem;height:.75rem;width:.5rem;fill:currentColor}.steps{counter-reset:step;list-style-type:none}.steps .limits-deductibles{padding-bottom:3rem;display:flex;justify-content:space-between}.step{counter-increment:step;padding:1.5rem 1rem;position:relative;margin-bottom:.5rem;max-width:66.6666666667%}.step.error{background-color:hsl(350,40%,96.7%)}.step.error::before,.step.error .step__title,.step.error .step__title .required-indicator{color:hsl(350,80%,45%)}.step__title{margin-top:.25rem;margin-bottom:1rem;font-size:1rem;line-height:1.5}.step__title::before{font-size:1rem;content:counter(phase) "." counter(step) " - "}.step__title .required-indicator{color:#0080a7}.step__title .required-indicator::after{content:" *"}.step::after{font-size:.875rem;position:absolute;font-style:italic;font-weight:300;top:.25rem;right:.5rem;opacity:0;transition:opacity 200ms ease-in-out}.step:hover::after{opacity:1}.step--required{transition:background-color 200ms ease-in-out}.step--required:not(.error):hover{background-color:rgb(239.565,247.4519461078,249.855)}.step--required::after{content:"Required";color:#0080a7}.step--required.error::after{color:hsl(350,80%,45%);opacity:1}.step--optional{transition:background-color 200ms ease-in-out}.step--optional:hover{background-color:#f9fafc}.step--optional::after{content:"Optional";color:#a0a8b4}.step .page-section--collapsed{margin-bottom:0}.sub-steps{counter-reset:sub-step;list-style-type:none;padding-left:1rem}.sub-step{counter-increment:sub-step;margin-top:1.5rem;margin-bottom:1.5rem}.sub-step__title{color:#20252c;font-weight:600;margin:0;margin-bottom:1rem;font-size:1rem;line-height:1.5}.sub-step:first-child{margin-top:.5rem}.sub-step:last-child{margin-bottom:0}.sub-step:nth-child(n+2){margin-left:2rem}.step__list-answers{margin-left:1.5rem;margin-top:.5rem;list-style-type:none}@media screen and (max-width: 30rem){.steps .limits-deductibles{display:block}.steps .limits-deductibles>div:first-child{margin-right:0;margin-bottom:3rem}.phase{padding-left:3rem}}ol.upper-alpha{list-style-type:upper-alpha;padding-left:1.5rem}.survey-intro-left{flex:5}.intro-text{padding-bottom:1rem}.survey-intro-right{flex:3;display:flex;align-items:center;justify-content:center}.survey-intro-img{height:auto;width:70%;padding-bottom:1rem}.phases-small{counter-reset:phase;list-style-type:none}.phase-small__not-current{counter-increment:phase;padding-bottom:1rem;padding-left:2rem;position:relative;font-family:"Open Sans",sans-serif;font-weight:400;font-size:.875rem}.phase-small__not-current::before{background-color:#fff;border-color:#0080a7;border-radius:3px;border-width:1px;border-style:solid;color:#0080a7;color:#20252c;line-height:1.2;margin:0;position:absolute;top:0;left:0;height:1rem;width:1rem;content:counter(phase);z-index:2;align-items:center;border-radius:50%;display:flex;justify-content:center;font-weight:400;font-size:.75rem}.phase-small__not-current:not(:last-of-type)::after{position:absolute;top:0;left:.4375rem;height:100%;width:.125rem;z-index:1;background-image:url("https://cdn.corvusinsurance.com/images/vertical-dotted-line-0c5e3648a904b51e3884f867f6f5655c.svg");content:"";display:block}.phase-small__not-current:hover{text-decoration:underline;cursor:pointer}.phase-small__current{counter-increment:phase;padding-bottom:1rem;padding-left:2rem;position:relative;font-family:"Open Sans",sans-serif;font-weight:400;font-size:.875rem}.phase-small__current::before{background-color:#0080a7;color:#fff;color:#20252c;line-height:1.2;margin:0;position:absolute;top:0;left:0;height:1rem;width:1rem;content:counter(phase);z-index:2;align-items:center;border-radius:50%;display:flex;justify-content:center;font-weight:400;font-size:.875rem}.phase-small__current:not(:last-of-type)::after{position:absolute;top:0;left:.4375rem;height:100%;width:.125rem;z-index:1;background-image:url("https://cdn.corvusinsurance.com/images/vertical-dotted-line-0c5e3648a904b51e3884f867f6f5655c.svg");content:"";display:block}.policyholder-need-help{display:flex;flex-direction:column;padding:1.5rem;width:22rem;background:#fff;box-shadow:0 1px .25rem rgba(32,37,44,.1);border-radius:12px;margin:2rem 0 3.5rem 3rem}.policyholder-need-help__title{font-weight:600;color:#20252c}.policyholder-need-help__text{left:1.5rem;line-height:150%;align-items:center;color:#6a7585;align-self:stretch;flex-grow:0;margin:1.5rem 0px}.policyholder-news{display:flex;flex-direction:column;padding:1.5rem;width:22rem;background:#fff;box-shadow:0 1px .25rem rgba(32,37,44,.1);border-radius:12px;margin:2rem 0 3.5rem 3rem}.policyholder-news__info_icon_container{padding:1.5rem 0 0 0}.policyholder-news__row{display:flex;flex-direction:row}.policyholder-news__image{height:2.5rem;margin:1.5rem 0rem 0rem 0rem;padding:0rem 1.5rem 0rem 0rem}.policyholder-news__image__1{content:url("https://cdn.corvusinsurance.com/images/shield1-ab1b6ffe3ad55b835aca16a2a7956376.svg")}.policyholder-news__image__2{content:url("https://cdn.corvusinsurance.com/images/shield2-af9b4ec8605ad74b82f814d03597e18d.svg")}.policyholder-news__image__3{content:url("https://cdn.corvusinsurance.com/images/shield3-6e51c64efd44e3011b993e809a9e5c8f.svg")}.policyholder-news__image__4{content:url("https://cdn.corvusinsurance.com/images/shield4-5ba072cbb597cb3f0f758e15b89a5e0a.svg")}.policyholder-news__image__5{content:url("https://cdn.corvusinsurance.com/images/shield5-9b6f59c8c21817242544739e3a93cfb5.svg")}.policyholder-news__title{font-weight:600;color:#20252c;margin:0rem 0rem 0rem 0rem}.policyholder-news__text{height:2.5rem;left:1.5rem;color:#6a7585;margin:1.5rem 0 0 1rem}.inline-checkbox{display:inline-flex}.preview-link{margin-left:1rem}.preview-icon{content:url("https://cdn.corvusinsurance.com/images/preview-d11be8feb93d35e599ca66c07e15e5be.svg");height:1rem;vertical-align:middle}.preview-text{font-size:.75rem}.progress{background-color:#ebeef3;border-radius:3px;height:.375rem;position:relative;overflow:hidden}.progress__bar{background-color:#a0a8b4;position:absolute;top:0;bottom:0;left:0}.dlp-hero .progress__bar{animation:moveRight 1200ms}.file__progress .progress__bar{background-color:#0080a7}.progress.success{background-color:hsl(110,72.3214285714%,79.532%)}.progress.success .progress__bar{background-color:hsl(110,90%,34.21%)}.progress.error{background-color:hsl(350,57.8571428571%,84.6%)}.progress.error .progress__bar{background-color:hsl(350,72%,50.5%)}.progress.warning{background-color:hsl(30,72.3214285714%,82.22%)}.progress.warning .progress__bar{background-color:hsl(30,90%,42.85%)}.progress.info{background-color:hsl(210,50.625%,84.88%)}.progress.info .progress__bar{background-color:hsl(210,63%,51.4%)}.progress.accent{background-color:rgb(156.2825,227.2259730539,248.4275)}.progress.accent .progress__bar{background-color:#09a8d9}.progress.locked{background-color:rgb(242,244,247.5)}.progress.locked .progress__bar{background-color:#d1d7e0}.progress.neutral{background-color:rgb(242,244,247.5)}.progress.neutral .progress__bar{background-color:#d1d7e0}@keyframes moveRight{from{transform:translateX(-100%)}to{transform:translateX(0)}}.quotes{list-style:none}.quotes .card{min-height:6rem}.quotes .svg-file{margin-right:.5rem;height:1.5rem;width:1.5rem;fill:#0080a7}.quote{margin-bottom:2rem}.quote__actions--selected{color:#0080a7}.quote__actions--unselected{color:#444d59;font-size:.875rem}.quoted-text{margin-top:1rem;display:flex}.quoted-text__icon{height:3.75rem;width:3.75rem;fill:#6a7585}.quoted-text__message{color:#444d59;margin-left:.25rem;flex:1;max-height:25rem;overflow:auto;white-space:pre-wrap}.ransomware__card{background-color:#fff;position:relative;display:flex;border-radius:12px;border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.ransomware__form{flex:1;padding:1.5rem 0 0 1.5rem;border-right:1px solid #d1d7e0}.ransomware__content{flex:2}.ransomware__content--empty{padding:6rem}.ransomware__content--empty .ransomware__img{margin:0 auto;padding:2rem}.ransomware__cost-sample{padding:2rem;border-bottom:1px solid #d1d7e0}.ransomware__industry-example{padding:2rem;border-bottom:1px solid #d1d7e0}.ransomware__img{padding-left:2rem}.ransomware__number{color:#0080a7;font-size:2.75rem}.ransomware__empty-text{font-size:1.875rem;line-height:1.2;margin:0 3rem}.ransomware__buttons-broker{margin-top:1.5rem;margin-right:1.5rem;text-align:right}.ransomware__buttons-nonbroker{text-align:left;margin-top:1.5rem;margin-right:1.5rem;margin-left:1.5rem}.ransomware__message{font-weight:600;margin-bottom:1rem}.recommendations__tag{color:#6a7585}.recommendations__body-header{margin-bottom:.25rem}.recommendations__body-description{margin-bottom:2rem}.recommendations--policyholder{display:flex;padding:1.5rem 0 1.5rem .5rem;margin-bottom:3rem}.recommendations--policyholder:hover .recommendations__text{color:#444d59}.recommendations--policyholder:hover .icon-chevron-right{transform:translateX(0.5rem)}.recommendations--policyholder svg{margin:0}.recommendations--policyholder .recommendations__icon-container{width:7.5rem}.recommendations--policyholder .recommendations__icon-container:last-child{align-self:center}.recommendations--policyholder .recommendations__icon{display:block;margin:0 auto}.recommendations--policyholder .recommendations__icon.icon-info{fill:hsl(210,70%,46%)}.recommendations--policyholder .recommendations__icon.icon-chevron-right{fill:#0080a7;transition:transform 200ms}.recommendations--policyholder .recommendations__content{flex:1}.recommendations--policyholder .recommendations__header{color:#20252c;font-weight:600;margin-bottom:.5rem}.recommendations--policyholder .recommendations__text{color:#6a7585;font-size:.875rem;transition:color 200ms}.recommendations__modal-expander-svg{padding:3rem;display:flex;flex-direction:column;align-self:stretch;justify-content:center;align-items:center;color:#004f68}.recommendations__response-header{font-size:1rem;line-height:1.5rem;font-weight:600;color:#004f68}.recommendations__submit-buttons{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(0, 1fr);gap:1rem;position:sticky;bottom:0;padding-bottom:1.5rem;padding-top:1rem;background-color:#ebeef3}.recommendations__radio-buttons{display:flex;flex-direction:column;gap:.5rem;padding-left:.5rem;padding-right:.5rem}.recommendations__text-area{min-height:176px;border:none;padding:1rem;font-size:.875rem;line-height:1.7;color:#20252c}.broker-settings-section{margin-bottom:3rem}.broker-settings-section h2{margin-bottom:1rem;color:#20252c}.broker-settings-section .setting-option{display:flex;margin-bottom:.5rem}.broker-settings-section .setting-option-description{margin-top:.5rem;margin-left:1.5rem}.broker-settings-section .setting-option-description .text{margin-left:.5rem}.broker-settings-section .setting-option-description .icon{height:1.5rem;width:1.5rem;vertical-align:middle}.broker-settings-section .setting-warning{margin-top:.5rem;font-weight:600}.settings-message{margin:.5rem 7.5rem .5rem 2rem}.settings-question{margin:.5rem 0 .5rem 2rem}.settings-question,.settings-message{align-items:center;background:rgb(239.565,247.4519461078,249.855);border-radius:3px;display:flex;padding:.5rem 1rem}.settings-question__icon,.settings-message__icon{content:url("https://cdn.corvusinsurance.com/images/contact-support-65e3679cb5e47bbf5eeff293184a97aa.svg");height:1.5rem;width:1.5rem}.settings-question__text,.settings-message__text{font-size:.875rem;flex:1;margin:0 1.5rem}.settings-question__answer,.settings-message__answer{border-radius:3px;border:1px solid rgba(0,0,0,0);color:#0080a7;cursor:pointer;padding:.25rem .5rem}.settings-question__answer:hover,.settings-message__answer:hover{background-color:#fff;border-color:#0080a7;color:#006685}.settings-question__answer:first-child,.settings-message__answer:first-child{margin-right:.5rem}.settings-question__answer--selected,.settings-message__answer--selected{background:#0080a7;color:#fff}.settings-question__answer--selected:hover,.settings-message__answer--selected:hover{background:#0080a7;border-color:rgba(0,0,0,0);color:#fff}.settings-save-message{min-height:3.75rem}.donation-radio-description{padding-left:2.25rem}.has-side-nav{display:flex}.has-side-nav--broker-bird .has-side-nav__content{position:relative}.has-side-nav--broker-bird .has-side-nav__content::after{content:url("https://cdn.corvusinsurance.com/images/BirdBackground-b70133eb7f7273af2476291996d76c41.svg");position:absolute;top:-8rem;right:-7rem;z-index:-1}.has-side-nav--ph-bird .has-side-nav__content{position:relative}.has-side-nav--ph-bird .has-side-nav__content::after{content:url("https://cdn.corvusinsurance.com/images/BirdBackground-b70133eb7f7273af2476291996d76c41.svg");position:absolute;top:-8rem;right:0;z-index:-1}.has-side-nav__menu{flex:0 1 auto;padding-left:2rem;padding-right:2rem;padding-top:2.5rem;border-right:1px solid #ebeef3}@supports(position: sticky){.has-side-nav__ph-menu{align-self:flex-start;position:sticky;top:.5rem;height:100vh;overflow-y:auto;min-width:min-content}.has-side-nav__ph-menu .side-nav__section{max-width:13.5rem}}.has-side-nav__main{flex:1;padding:2.5rem}.has-side-nav__content{max-width:75rem;margin:0 auto 2rem;border-radius:12px}.has-side-nav__content__75{max-width:56.25rem}.has-side-nav__content__75__89{max-width:50rem}.has-side-nav__footer{font-size:.875rem;margin-bottom:2rem;text-align:center}.has-side-nav__footer a,.has-side-nav__footer span{color:#6a7585}.side-nav--admin{width:16.7321428571rem}.side-nav__section{list-style-type:none;margin-bottom:1.5rem}.side-nav__item{margin-bottom:.5rem;padding-left:1rem}.side-nav__link{cursor:pointer;padding:.5rem 0;color:#444d59;display:block}.side-nav__link:hover{color:#20252c;text-decoration:underline}.side-nav__link--active{color:#444d59;font-weight:600}.side-nav__group--header{color:#6a7585;font-size:.75rem;font-weight:600}.side-nav__group--links{padding-left:1rem}.side-nav__group--links__badge{background-color:hsl(245,80%,60%);color:#fff;border-radius:50%;width:1.5em;height:1.5em;padding:0 .5em .75em .5em;margin-top:.75em;margin-left:.5em}.has-side-nav-ph{display:flex}@supports(position: sticky){.has-side-nav-ph__menu{flex:0 1 auto;padding-left:2rem;padding-right:2rem;padding-top:2.5rem;border-right:1px solid #ebeef3;align-self:flex-start;position:sticky;top:.5rem;height:100vh;overflow-y:auto;min-width:min-content}.has-side-nav-ph__menu .side-nav-ph__section{max-width:13.5rem}}.has-side-nav-ph__main{flex:1;padding-left:2.5rem;padding-right:2.5rem;padding-top:2.5rem}.has-side-nav-ph__content{max-width:75rem;margin:0 auto 2rem;border-radius:12px}.has-side-nav-ph__content__75{max-width:56.25rem}.has-side-nav-ph__content__75__89{max-width:50rem}.has-side-nav-ph__footer{font-size:.875rem;margin-bottom:2rem;text-align:center}.has-side-nav-ph__footer a,.has-side-nav-ph__footer span{color:#6a7585}.side-nav-ph__section{list-style-type:none;margin-bottom:1.5rem}.side-nav-ph__item{display:flex;margin-bottom:.5rem;padding-left:1rem}.side-nav-ph__link{cursor:pointer;padding:.5rem 0;color:#444d59;display:block}.side-nav-ph__link:hover{color:#20252c;text-decoration:underline}.side-nav-ph__link--active{color:#444d59;font-weight:600}.side-nav-ph__group--links__badge{background-color:hsl(245,80%,60%);color:#fff;border-radius:50%;width:1.5em;height:1.5em;padding:0 .5em .75em .5em;margin-top:.75em;margin-left:.5em}.sub-nav--tabs{margin-top:2rem;display:flex}.sub-nav--tabs .sub-nav__link{color:#444d59;background-color:rgba(0,0,0,0);border:0;border-bottom:.25rem solid rgba(0,0,0,0);padding:.5rem 1rem;margin-right:.25rem;transition:all 200ms}.sub-nav--tabs .sub-nav__link:hover{color:#0080a7;border-bottom-color:#0080a7}.sub-nav--tabs .sub-nav__link--active{border-bottom-color:#0080a7}.page-header.header--with-sub-nav{background-color:#fff;display:block}.container--admin .page-header.header--with-sub-nav{padding-bottom:0}.container--admin .page-header.header--with-sub-nav.header--reduced-m-b{margin-bottom:1rem}.has-side-nav__main .page-header.header--with-sub-nav{margin-top:-2.5rem;padding:2rem 2rem 0}.page-header.header--with-sub-nav.header--with-activity-panel{margin-top:0}.page-header.header--without-sub-nav{background-color:#fff;display:block}.has-side-nav__main .page-header.header--without-sub-nav{margin-top:-2.5rem;padding:2rem}.has-side-nav__content .submission-page-with-expanded-activity-panel{left:unset;right:0px;width:calc(100vw - 16.7321428571rem)}.has-side-nav__content .submission-page-with-collapsed-activity-panel{left:unset;right:0px;width:calc(100vw - 16.7321428571rem)}.has-side-nav-and-notes{padding:0rem}.has-side-nav-and-notes .has-side-nav__content{margin:1rem 0rem 0rem 0rem;max-width:100%}@supports(position: sticky){.header--with-sub-nav{position:sticky;top:-4.25rem;z-index:10}.header--with-sub-nav.header--with-duplicate-alert{top:-10rem;z-index:11}.header--with-sub-nav.header--tall{top:-10.25rem}.header--with-sub-nav.header--small{top:-1.25rem}.header--with-sub-nav.header--with-activity-panel{top:-11rem}.header--with-sub-nav.header--with-activity-panel.header--with-duplicate-alert{top:-17rem}}.surplus-lines{display:flex;justify-content:center;align-items:center;flex-direction:column}.surplus-lines__header{display:flex;align-items:center;flex-direction:column}.surplus-lines__body{max-width:75rem;padding-bottom:6rem}.surplus-lines__card{padding-top:3rem;width:50rem}.surplus-lines__card-body{padding-left:1rem;padding-right:3rem}.surplus-lines__card-body p{margin:0}.surplus-lines__logo{padding:3rem}.surplus-lines__section{padding-top:1.5rem}.surplus-lines__submit-button{padding:0 3rem}.table-list-form{width:100%}.table-list-form__inputs{display:flex}.table-list-form__name{flex-basis:30%}.table-list-form__name input{width:calc(100% - 1.5rem)}.table-list-form__email{flex-grow:1}.table-list-form__email input{width:calc(100% - 1.5rem)}.table-list-form__title input{width:calc(100% - 1.5rem)}.table-list-form__buttons{text-align:right}.table-list-form__buttons .button{margin-left:1rem;padding-left:2rem;padding-right:2rem}.table-list-form__buttons-flex{display:flex;align-items:flex-end}.table-list-form__errors{margin-top:.5rem}.table-list-form__add{display:flex;align-items:center}.table-list-form__add svg{height:1.5rem;width:1.5rem;fill:#0080a7}.table-list-form__ph{flex-basis:50%}.table-list-form__ph input,.table-list-form__ph .alert{width:calc(100% - 1.5rem)}.table-list-form__ph .alert{margin-top:1rem}@media screen and (max-width: 30rem){.table-list-form__inputs{flex-wrap:wrap;overflow:hidden}.table-list-form__add{width:calc(100vw - 2rem)}.table-list-form__name,.table-list-form__email,.table-list-form__buttons{margin-bottom:.5rem;flex-basis:100%}}.table-list{background-color:#fff;border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.table-list .table-list{border:0;border-radius:0}.table-list__header,.table-list__footer{border-bottom:1px solid #d1d7e0;padding:1rem;display:flex}.table-list__header--claim-payments{padding-left:2.5rem;padding-right:2.5rem;gap:1rem;justify-content:space-between}.table-list__row{border-bottom:1px solid #ebeef3;transition:color 100ms ease-in-out;padding-left:1rem;padding-right:1rem;z-index:0;align-items:center;display:flex;position:relative}.table-list__row:last-child{border-bottom:0}.table-list__row--claim-payments{padding-left:2.5rem;padding-right:2.5rem;align-items:flex-start;gap:1rem;justify-content:space-between}.table-list__row--claim-payments:last-child{border-top:1px solid #d1d7e0}.table-list__row--claim-payments:last-child .table-list__column-0{font-weight:600}.table-list__row .missing::before{content:"No name provided";color:#6a7585;font-style:italic}.table-list__row--simple{padding-top:1.5rem;padding-bottom:1.5rem}.table-list__row--clickable{border-bottom:1px solid #ebeef3;transition:color 100ms ease-in-out;z-index:0;align-items:center;display:flex;position:relative}.table-list__row--clickable::after{border:1px solid #d1d7e0;background-color:#f9fafc;border-radius:3px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:absolute;top:-1px;right:-1.5rem;bottom:-1px;left:-1.5rem;transition:opacity 100ms ease-in-out;z-index:-1;content:"";opacity:0;display:block}.table-list__row--clickable:hover{color:#0080a7;cursor:pointer}.table-list__row--clickable:hover::after{opacity:1}.table-list__row--clickable:hover .table-list__link{color:#0080a7}.table-list__column--annulus{margin-top:-12px;margin-bottom:-13px}.table-list__link{padding-top:1.5rem;padding-bottom:1.5rem;color:inherit;display:flex;flex-grow:1;align-items:center}.table-list__link:hover{color:#0080a7}.table-list__link--skinny{padding-top:.5rem;padding-bottom:.5rem}.table-list--has-clients,.table-list--has-underlying-policies{padding-bottom:1px}.table-list--has-clients .table-list,.table-list--has-underlying-policies .table-list{border-radius:12px;border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.table-list--has-clients .table-list__column-0,.table-list--has-underlying-policies .table-list__column-0{flex-basis:45%;padding-right:1rem}.table-list--has-clients .table-list__column-1,.table-list--has-underlying-policies .table-list__column-1{flex-basis:30%;text-align:left}.table-list--has-clients .table-list__column-2,.table-list--has-underlying-policies .table-list__column-2{flex-basis:20%;text-align:center}.table-list--has-clients .table-list__column-3,.table-list--has-underlying-policies .table-list__column-3{flex-basis:20%;text-align:center}.table-list--has-clients a.table-list__link,.table-list--has-underlying-policies a.table-list__link{padding:0}.table-list--has-clients .client-name,.table-list--has-underlying-policies .client-name{display:block;line-height:1.2;padding-top:1.5rem;padding-bottom:1.5rem}.table-list--has-clients .brokerage-name,.table-list--has-underlying-policies .brokerage-name{display:inline-block;margin-right:.25rem;color:#a0a8b4;font-weight:400;font-size:.875rem;line-height:1;padding-bottom:.5rem}.table-list--has-clients .affiliate-client .client-name,.table-list--has-underlying-policies .affiliate-client .client-name{padding-bottom:0}.table-list--has-clients .row,.table-list--has-underlying-policies .row{font-weight:600;font-size:1rem}.table-list--has-clients .row-total,.table-list--has-underlying-policies .row-total{color:#0080a7}.table-list--has-renewal-clients{padding-bottom:1px}.table-list--has-renewal-clients .table-list{border-radius:12px;border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.table-list--has-renewal-clients .table-list__column-0{flex-basis:45%;padding-right:1rem}.table-list--has-renewal-clients .table-list__column-1{flex-basis:30%;text-align:center}.table-list--has-renewal-clients .table-list__column-2{flex-basis:20%;text-align:center}.table-list--has-renewal-clients .table-list__column-3{flex-basis:20%;text-align:center}.table-list--has-renewal-clients a.table-list__link{padding:0}.table-list--has-renewal-clients .client-name{display:block;line-height:1.2;padding-top:1.5rem;padding-bottom:1.5rem}.table-list--has-renewal-clients .brokerage-name{display:inline-block;margin-right:.25rem;color:#a0a8b4;font-weight:400;font-size:.875rem;line-height:1;padding-bottom:.5rem}.table-list--has-renewal-clients .affiliate-client .client-name{padding-bottom:0}.table-list--has-renewal-clients .row{font-weight:600;font-size:1rem}.table-list--has-renewal-clients .row-total{color:#0080a7}.table-list--has-quotes-in-progress .table-list{border-radius:12px;border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.table-list--has-quotes-in-progress .table-list__column-0,.table-list--has-quotes-in-progress .table-list__column-1,.table-list--has-quotes-in-progress .table-list__column-4{flex-basis:20%}.table-list--has-quotes-in-progress .table-list__column-2{flex-basis:25%;text-align:right}.table-list--has-quotes-in-progress .table-list__column-3{flex-basis:15%;text-align:center}.table-list--has-quotes-in-progress .table-list__column-4{text-align:right}.table-list--has-client-policies{padding-bottom:1px}.table-list--has-client-policies .table-list{border-radius:12px;border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.table-list--has-client-policies .table-list__column-0{flex-basis:40%}.table-list--has-client-policies .table-list__column-1{flex-basis:20%;text-align:right}.table-list--has-client-policies .table-list__column-2{flex-basis:20%;text-align:center}.table-list--has-client-policies .table-list__column-3{flex-basis:20%;text-align:right}.table-list--has-admin-policyholder-contacts{padding-bottom:1px}.table-list--has-admin-policyholder-contacts .table-list{border-radius:12px;border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.table-list--has-admin-policyholder-contacts .table-list__column-0{flex-basis:40%}.table-list--has-admin-policyholder-contacts .table-list__column-1{flex-basis:30%;text-align:center}.table-list--has-admin-policyholder-contacts .table-list__column-2{flex-basis:30%;text-align:right}.table-list--has-client-claims,.table-list--has-admin-client-claims{padding-bottom:1px}.table-list--has-client-claims .table-list,.table-list--has-admin-client-claims .table-list{border-radius:12px;border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.table-list--has-client-claims .table-list__column-0,.table-list--has-admin-client-claims .table-list__column-0{flex-basis:30%}.table-list--has-client-claims .table-list__column-1,.table-list--has-admin-client-claims .table-list__column-1{flex-basis:20%;text-align:right}.table-list--has-client-claims .table-list__column-2,.table-list--has-admin-client-claims .table-list__column-2{flex-basis:10%;text-align:right}.table-list--has-client-claims .table-list__column-3,.table-list--has-admin-client-claims .table-list__column-3{flex-basis:20%;text-align:right}.table-list--has-client-claims .table-list__column-4,.table-list--has-admin-client-claims .table-list__column-4{flex-basis:20%;text-align:right}.table-list--has-ph-manage-claims{padding-bottom:1px}.table-list--has-ph-manage-claims .table-list{border-radius:12px;border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.table-list--has-ph-manage-claims .table-list__column-0{flex-basis:25%;text-align:center}.table-list--has-ph-manage-claims .table-list__column-1{flex-basis:25%;text-align:center}.table-list--has-ph-manage-claims .table-list__column-2{flex-basis:25%;text-align:center}.table-list--has-ph-manage-claims .table-list__column-3{flex-basis:25%;text-align:center}.table-list--has-claim-admin-exposures .table-list__column-0{flex-basis:4%}.table-list--has-claim-admin-exposures .table-list__column-1{flex-basis:20%}.table-list--has-claim-admin-exposures .table-list__column-2{flex-basis:16%}.table-list--has-claim-admin-exposures .table-list__column-3{flex-basis:10%;text-align:right}.table-list--has-claim-admin-exposures .table-list__column-4{flex-basis:10%;text-align:right}.table-list--has-claim-admin-exposures .table-list__column-5{flex-basis:10%;text-align:right}.table-list--has-claim-admin-exposures .table-list__column-6{flex-basis:10%;text-align:right}.table-list--has-claim-admin-exposures .table-list__column-7{flex-basis:16%;text-align:right}.table-list--has-claim-admin-exposures .table-list__column-8{flex-basis:6%;text-align:right}.table-list--has-claim-payments{border:1px solid #d1d7e0}.table-list--has-claim-payments .table-list{border-radius:inherit}.table-list--has-claim-payments .table-list__header h5{color:#6a7585}.table-list--has-claim-payments .table-list__column-0{flex-basis:43%}.table-list--has-claim-payments .table-list__column-1{flex-basis:19%;text-align:right}.table-list--has-claim-payments .table-list__column-2{flex-basis:6%}.table-list--has-claim-payments .table-list__column-3{flex-basis:16%}.table-list--has-claim-payments .table-list__column-4{flex-basis:16%}.table-list--has-claim-payments .table-list__column-3.number-text{font-size:1rem}.table-list--has-claim-payments .table-list__column-4.number-text{font-size:1rem}.table-list--has-uw-brokerage-action-items .table-list__column-0,.table-list--has-uw-brokerage-action-items .table-list__column-1,.table-list--has-uw-brokerage-action-items .table-list__column-2,.table-list--has-uw-brokerage-action-items .table-list__column-3,.table-list--has-uw-brokerage-action-items .table-list__column-4{flex-basis:20%}.table-list--has-uw-brokerage-action-items .table-list__column-3,.table-list--has-uw-brokerage-action-items .table-list__column-4{text-align:right}.table-list--has-uw-brokerage-clients .table-list__column-0{flex-grow:1}.table-list--has-uw-brokerage-clients .table-list__column-1{flex-basis:40%}.table-list--has-uw-brokerage-clients .table-list__column-2{flex-basis:20%;text-align:right}.table-list--has-account-benchmarking-bound .table-list__header{align-items:center}.table-list--has-account-benchmarking-bound .table-list__column-0{flex-basis:16%;padding-right:.25em}.table-list--has-account-benchmarking-bound .table-list__column-1{flex-basis:16%;padding-right:.25em}.table-list--has-account-benchmarking-bound .table-list__column-2{flex-basis:12%;padding-right:.25em}.table-list--has-account-benchmarking-bound .table-list__column-3{flex-basis:8%}.table-list--has-account-benchmarking-bound .table-list__column-4{flex-basis:8%}.table-list--has-account-benchmarking-bound .table-list__column-5{flex-basis:4%;text-align:center}.table-list--has-account-benchmarking-bound .table-list__column-6{flex-basis:10%;text-align:center}.table-list--has-account-benchmarking-bound .table-list__column-7{flex-basis:8%;text-align:center}.table-list--has-account-benchmarking-bound .table-list__column-8{flex-basis:6%;text-align:center;padding-right:.25em}.table-list--has-account-benchmarking-bound .table-list__column-9{flex-basis:6%;text-align:center}.table-list--has-account-benchmarking-bound .table-list__column-10{flex-basis:6%;text-align:center}.table-list--has-account-benchmarking-quoted .table-list__header{align-items:center}.table-list--has-account-benchmarking-quoted .table-list__column-0{flex-basis:16%;padding-right:.25em}.table-list--has-account-benchmarking-quoted .table-list__column-1{flex-basis:22%;padding-right:.25em}.table-list--has-account-benchmarking-quoted .table-list__column-2{flex-basis:12%;padding-right:.25em}.table-list--has-account-benchmarking-quoted .table-list__column-3{flex-basis:8%}.table-list--has-account-benchmarking-quoted .table-list__column-4{flex-basis:8%}.table-list--has-account-benchmarking-quoted .table-list__column-5{flex-basis:4%;text-align:center}.table-list--has-account-benchmarking-quoted .table-list__column-6{flex-basis:10%;text-align:center}.table-list--has-account-benchmarking-quoted .table-list__column-7{flex-basis:8%;text-align:center}.table-list--has-account-benchmarking-quoted .table-list__column-8{flex-basis:6%;text-align:center;padding-right:.25em}.table-list--has-account-benchmarking-quoted .table-list__column-9{flex-basis:6%;text-align:center}.table-list--has-broker-action-items .table-list{border-radius:12px;border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.table-list--has-broker-action-items .table-list__column-0{flex-basis:25%}.table-list--has-broker-action-items .table-list__column-1{flex-basis:25%}.table-list--has-broker-action-items .table-list__column-2{flex-basis:20%;text-align:right}.table-list--has-broker-action-items .table-list__column-3{flex-basis:20%;text-align:center}.table-list--has-broker-action-items .table-list__column-4{flex-basis:10%;text-align:right}.table-list--has-buyer-policy-list .table-list__column-0,.table-list--has-admin-brokerage-clients .table-list__column-0,.table-list--has-uw-policies .table-list__column-0,.table-list--has-uw-closed-quotes .table-list__column-0,.table-list--has-broker-closed-quotes .table-list__column-0{flex-grow:1}.table-list--has-buyer-policy-list .table-list__column-1,.table-list--has-admin-brokerage-clients .table-list__column-1,.table-list--has-uw-policies .table-list__column-1,.table-list--has-uw-closed-quotes .table-list__column-1,.table-list--has-broker-closed-quotes .table-list__column-1{flex-basis:40%}.table-list--has-buyer-policy-list .table-list__column-2,.table-list--has-admin-brokerage-clients .table-list__column-2,.table-list--has-uw-policies .table-list__column-2,.table-list--has-uw-closed-quotes .table-list__column-2,.table-list--has-broker-closed-quotes .table-list__column-2{flex-basis:20%;text-align:right}.table-list--has-subjectivity-definition-list{box-shadow:none}.table-list--has-subjectivity-definition-list .table-list__header{background-color:#ebeef3;border:none}.table-list--has-subjectivity-definition-list .table-list__column-0{flex-basis:20%}.table-list--has-subjectivity-definition-list .table-list__column-1{flex-basis:60%;flex-grow:1}.table-list--has-subjectivity-definition-list .table-list__column-2{flex-basis:10%;display:block;position:relative;text-align:center;margin-left:0;margin-right:auto}.table-list--has-subjectivity-definition-list .table-list__column-2 .edit-icon{width:2rem;height:2rem}.table-list--has-subjectivity-definition-list .table-list__column-3{flex-basis:10%;margin-bottom:1rem}.table-list--has-security-alerts-list{box-shadow:none}.table-list--has-security-alerts-list .table-list__header{background-color:#fff;border:none}.table-list--has-security-alerts-list .table-list__column-0{flex-basis:80%;flex-grow:1;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.table-list--has-security-alerts-list .table-list__column-1{flex-basis:10%;display:block;position:relative;text-align:center;margin-left:0;margin-right:auto}.table-list--has-security-alerts-list .table-list__column-1 .edit-icon{width:2rem;height:2rem}.table-list--has-security-alerts-list .table-list__column-2{flex-basis:10%;text-align:center}.table-list--has-security-alerts-list .alert-message{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-top:0;font-weight:400}.table-list--has-policyholder-full-reports .table-list__column-0{flex-grow:1}.table-list--has-policyholder-full-reports .table-list__column-1{flex-basis:20%;text-align:right}.table-list--has-riskcapitalpartner-aggregate-table{box-shadow:none}.table-list--has-riskcapitalpartner-aggregate-table ul{max-height:454px;overflow-y:auto}.table-list--has-riskcapitalpartner-aggregate-table .table-list{box-shadow:none}.table-list--has-riskcapitalpartner-aggregate-table .table-list__header{color:#20252c;background-color:#f9fafc;border:none;padding:1rem}.table-list--has-riskcapitalpartner-aggregate-table .table-list__header h5{line-height:1rem}.table-list--has-riskcapitalpartner-aggregate-table .table-list__footer{background-color:#f9fafc;font-weight:600;color:#444d59;border:none;padding:1rem}.table-list--has-riskcapitalpartner-aggregate-table .table-list__footer h5{line-height:1rem;font-size:.875rem}.table-list--has-riskcapitalpartner-aggregate-table .table-list li{font-size:.875rem;color:#444d59;padding:1rem;line-height:1rem}.table-list--has-riskcapitalpartner-aggregate-table .table-list__column-0{flex-basis:14%}.table-list--has-riskcapitalpartner-aggregate-table .table-list__column-1,.table-list--has-riskcapitalpartner-aggregate-table .table-list__column-2,.table-list--has-riskcapitalpartner-aggregate-table .table-list__column-3,.table-list--has-riskcapitalpartner-aggregate-table .table-list__column-4,.table-list--has-riskcapitalpartner-aggregate-table .table-list__column-5,.table-list--has-riskcapitalpartner-aggregate-table .table-list__column-6{flex-basis:14%;text-align:right}.table-list--has-policyholder-software-patching-findings-table .table-list__column-0{flex-basis:35%;text-align:left;white-space:pre-line;overflow-wrap:anywhere;padding-right:1rem}.table-list--has-policyholder-software-patching-findings-table .table-list__column-1,.table-list--has-policyholder-software-patching-findings-table .table-list__column-2{flex-basis:15%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-software-patching-findings-table .table-list__column-3{flex-basis:15%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-software-patching-findings-table .table-list__column-4{flex-basis:20%;text-align:left;white-space:pre-line}.table-list--has-policyholder-domain-hijacking-table .table-list__column-0{flex-basis:35%;text-align:left;white-space:pre-line;word-break:break-all;padding-right:1rem}.table-list--has-policyholder-domain-hijacking-table .table-list__column-1{flex-basis:65%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-pixel-software-table .table-list__column-0{flex-basis:50%;text-align:left;white-space:pre-line;overflow-wrap:anywhere;padding-right:1rem}.table-list--has-policyholder-pixel-software-table .table-list__column-1{flex-basis:50%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-remote-access-findings-table .table-list__column-0{flex-basis:40%;text-align:left;white-space:pre-line;overflow-wrap:anywhere;padding-right:1rem}.table-list--has-policyholder-remote-access-findings-table .table-list__column-1{flex-basis:20%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-remote-access-findings-table .table-list__column-2{flex-basis:20%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-remote-access-findings-table .table-list__column-3{flex-basis:20%;text-align:left;white-space:pre-line}.table-list--has-policyholder-certificate_best_practices-findings-table .table-list__column-0{flex-basis:35%;text-align:left;white-space:pre-line;overflow-wrap:anywhere;padding-right:1rem}.table-list--has-policyholder-certificate_best_practices-findings-table .table-list__column-1{flex-basis:20%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-certificate_best_practices-findings-table .table-list__column-2{flex-basis:45%;text-align:left}.table-list--has-policyholder-popular-domains-table .table-list__column-0{flex-basis:40%;word-break:break-all;padding-right:1rem}.table-list--has-policyholder-popular-domains-table .table-list__column-1{flex-basis:30%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-popular-domains-table .table-list__column-2{flex-basis:30%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-email-domains-findings-table .table-list__column-0,.table-list--has-policyholder-email-provider-table .table-list__column-0{flex-basis:25%;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-email-domains-findings-table .table-list__column-1,.table-list--has-policyholder-email-provider-table .table-list__column-1{flex-basis:30%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-email-domains-findings-table .table-list__column-2,.table-list--has-policyholder-email-provider-table .table-list__column-2{flex-basis:45%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-protocol-findings-table .table-list__column-0{flex-basis:40%;word-break:break-all;padding-right:1rem}.table-list--has-policyholder-protocol-findings-table .table-list__column-1{flex-basis:25%;word-break:break-all;padding-right:1rem}.table-list--has-policyholder-protocol-findings-table .table-list__column-2{flex-basis:35%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-cve-findings-table .table-list__column-0{flex-basis:40%;padding-right:1rem;word-break:break-all;white-space:pre-line}.table-list--has-policyholder-cve-findings-table .table-list__column-1{flex-basis:30%;padding-right:1rem;word-break:break-all}.table-list--has-policyholder-cve-findings-table .table-list__column-2{flex-basis:30%;text-align:left;padding-right:1rem;word-break:break-word;white-space:pre-line}.table-list--has-policyholder-dedicated-servers-table .table-list__column-0{flex-basis:50%;word-break:break-all;padding-right:1rem}.table-list--has-policyholder-dedicated-servers-table .table-list__column-1{flex-basis:30%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-dedicated-servers-table .table-list__column-2{flex-basis:50%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-risky-uncategorized-software-table .table-list__column-0{flex-basis:35%;word-break:break-all;padding-right:1rem}.table-list--has-policyholder-risky-uncategorized-software-table .table-list__column-1{flex-basis:20%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-risky-uncategorized-software-table .table-list__column-2{flex-basis:45%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-vpn-table .table-list__column-0{flex-basis:40%;word-break:break-all;padding-right:1rem}.table-list--has-policyholder-vpn-table .table-list__column-1{flex-basis:25%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-vpn-table .table-list__column-2{flex-basis:35%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-http-security-headers-table .table-list__column-0{flex-basis:40%;word-break:break-all;padding-right:1rem}.table-list--has-policyholder-http-security-headers-table .table-list__column-1{flex-basis:30%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-policyholder-http-security-headers-table .table-list__column-2{flex-basis:30%;text-align:left;white-space:pre-line;padding-right:1rem}.table-list--has-scan-report-table .table-list__column-0{flex-basis:50%;word-break:break-all;padding-right:1rem}.table-list--has-scan-report-table .table-list__column-1{flex-basis:30%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-scan-report-table .table-list__column-2{flex-basis:50%;text-align:left;word-break:break-word;padding-right:1rem}.table-list--has-admin-brokers .table-list__column-0{flex-grow:1}.table-list--has-admin-brokers .table-list__column-1{flex-basis:50%}.table-list--has-admin-brokers .table-list__column-2{flex-basis:15%;text-align:right}.table-list--has-admin-client-submissions .table-list__column-0{flex-grow:1}.table-list--has-admin-client-submissions .table-list__column-1{flex-basis:30%}.table-list--has-admin-client-submissions .table-list__column-2{flex-basis:30%;text-align:right}.table-list--has-admin-feature-flags .table-list__column-0{flex-basis:25%;flex-shrink:0}.table-list--has-admin-feature-flags .table-list__column-1{flex-grow:1}.table-list--has-admin-internal-alerting .threat-row-container{padding:1.5rem 0;width:100%}.table-list--has-admin-internal-alerting .table-list__column-0{flex-basis:40%;flex-shrink:0}.table-list--has-admin-internal-alerting .table-list__column-1{flex-basis:15%;flex-grow:0}.table-list--has-admin-internal-alerting .table-list__column-2{flex-basis:10%;flex-grow:0}.table-list--has-admin-internal-alerting .table-list__column-3{flex-basis:14%;flex-grow:0}.table-list--has-admin-internal-alerting .table-list__column-4{flex-grow:1}.table-list--has-coverholder-reported-binds{box-shadow:none}.table-list--has-coverholder-reported-binds .table-list{border:1px solid #d1d7e0;border-radius:6px}.table-list--has-coverholder-reported-binds .table-list__header{background-color:#f9fafc;border:0}.table-list--has-coverholder-reported-binds .table-list__column-0{flex-basis:25%;flex-shrink:0}.table-list--has-coverholder-reported-binds .table-list__column-1{flex-basis:25%;flex-grow:0}.table-list--has-coverholder-reported-binds .table-list__column-2{flex-basis:25%;flex-grow:0}.table-list--has-coverholder-reported-binds .table-list__column-3{flex-basis:12%;flex-grow:0}.table-list--has-coverholder-reported-binds .table-list__column-4{flex-grow:1}.table-list--has-coverholder-score-table{font-weight:400;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.table-list--has-coverholder-score-table .table-list{border:.25pt solid #ebeef3;border-bottom-left-radius:6px;border-bottom-right-radius:6px}.table-list--has-coverholder-score-table .table-list__header{font-weight:600;border-bottom:none}.table-list--has-coverholder-score-table .table-list__column-0{flex-basis:50%;flex-shrink:0}.table-list--has-coverholder-score-table .table-list__column-1{flex-basis:25%;flex-grow:0;display:flex;justify-content:center}.table-list--has-coverholder-score-table .table-list__column-2{flex-basis:25%;flex-grow:0;text-align:center}.table-list--has-client-broker-team .table-list{border-radius:12px;border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.table-list--has-client-broker-team .table-list__column-0{flex-basis:30%}.table-list--has-client-broker-team .table-list__column-1{flex-grow:1}.table-list--has-client-broker-team .table-list__column-2{text-align:right}.table-list--has-client-broker-team .table-list__row--custom{padding-top:.5rem;padding-bottom:.5rem}.table-list--has-broker-quote-subjectivities .table-list__column-0{flex-basis:60%}.table-list--has-broker-quote-subjectivities .table-list__column-1{flex-basis:20%;text-align:center}.table-list--has-broker-quote-subjectivities .table-list__column-2{flex-basis:20%;text-align:center}.table-list--has-admin-lossrun-uploads-list .table-list__column-0{flex-basis:10%}.table-list--has-admin-lossrun-uploads-list .table-list__column-1{flex-basis:80%;text-align:center}.table-list--has-admin-lossrun-uploads-list .table-list__column-2{flex-basis:20%;text-align:center}.table-list--has-admin-client-policies .table-list__column-0{flex-grow:1}.table-list--has-admin-client-policies .table-list__column-1{flex-basis:30%}.table-list--has-admin-client-policies .table-list__column-2{flex-basis:30%}.table-list--has-admin-client-policies .table-list__column-3{flex-basis:30%;text-align:right}.table-list--has-admin-client-eu-policies .table-list__column-0{flex-basis:12%}.table-list--has-admin-client-eu-policies .table-list__column-1{flex-basis:25%}.table-list--has-admin-client-eu-policies .table-list__column-2{flex-basis:19%}.table-list--has-admin-client-eu-policies .table-list__column-3{flex-basis:20%}.table-list--has-admin-client-eu-policies .table-list__column-4{flex-basis:17%}.table-list--has-admin-client-eu-policies .table-list__column-5{flex-basis:7%}.table-list--has-admin-client-risk-advisory-insights{border:1px solid #d1d7e0;border-radius:0;box-shadow:none;background-color:#f9fafc}.table-list--has-admin-client-risk-advisory-insights .table-list{display:flex;flex-direction:column;justify-content:space-around;box-shadow:none}.table-list--has-admin-client-risk-advisory-insights .table-list__header h5{color:#20252c}.table-list--has-admin-client-risk-advisory-insights .table-list__column-0{padding:0 .5rem;width:160px}.table-list--has-admin-client-risk-advisory-insights .table-list__column-1{padding:0 .5rem;width:160px}.table-list--has-admin-client-risk-advisory-insights .table-list__column-2{padding:0 .5rem;width:160px}.table-list--has-admin-client-risk-advisory-insights .table-list__column-3{flex-basis:60%;flex-grow:1}.table-list--has-admin-client-risk-advisory-insights .table-list__column-4{padding:0 .5rem;width:160px;text-align:center}.table-list--has-admin-client-risk-advisory-insights .table-list__row{box-shadow:none}.table-list--has-admin-client-risk-advisory-insights .table-list__row--clickable .table-list__link .number-text{font-size:1rem;font-weight:400;color:#20252c !important}.table-list--has-admin-client-risk-advisory-insights .table-list__row--clickable .table-list__link .table-list__column-3{color:#20252c !important}.table-list--has-admin-client-risk-advisory-insights .table-list__row--clickable .table-list__link .table-list__column-4{color:#20252c !important}.table-list--has-admin-endorsement-templates .table-list__column-0{flex-grow:1}.table-list--has-admin-endorsement-templates .table-list__column-1{flex-basis:50%}.table-list--has-admin-endorsement-templates .table-list__column-2{flex-basis:30%;text-align:right}.table-list--has-admin-endorsement-templates-with-country .table-list__column-0{flex-grow:1;flex-basis:15%;text-align:left}.table-list--has-admin-endorsement-templates-with-country .table-list__column-1{flex-basis:50%;text-align:center}.table-list--has-admin-endorsement-templates-with-country .table-list__column-2{flex-basis:20%;text-align:center}.table-list--has-admin-endorsement-templates-with-country .table-list__column-3{flex-basis:20%;text-align:center}.table-list--has-buyer-policy-list .table-list__column-0{flex-grow:1}.table-list--has-admin-claims-list .table-list__column-0{flex-basis:8%}.table-list--has-admin-claims-list .table-list__column-1{flex-basis:12%}.table-list--has-admin-claims-list .table-list__column-2{flex-basis:15%}.table-list--has-admin-claims-list .table-list__column-3{flex-basis:25%}.table-list--has-admin-claims-list .table-list__column-4{flex-basis:20%}.table-list--has-admin-claims-list .table-list__column-5{flex-basis:15%}.table-list--has-admin-claims-list .table-list__column-6{flex-basis:5%}.table-list--has-aggregate-claims .table-list__column-0{flex-basis:30%}.table-list--has-aggregate-claims .table-list__column-1{flex-basis:20%}.table-list--has-aggregate-claims .table-list__column-2{flex-basis:15%}.table-list--has-aggregate-claims .table-list__column-3{flex-basis:10%}.table-list--has-aggregate-claims .table-list__column-4{flex-basis:15%}.table-list--has-aggregate-claims .table-list__column-5{flex-basis:15%}.table-list--has--flight-list-table .table-list__column-0{flex-basis:70%}.table-list--has--flight-list-table .table-list__column-1,.table-list--has--flight-list-table .table-list__column-2{flex-grow:1}.claim-payments .page-section .section-title{margin-bottom:0}policyholder-findings-table,.table-list--has-policyholder-software-patching-findings-table,.table-list--has-policyholder-domain-hijacking-table,.table-list--has-policyholder-pixel-software-table,.table-list--has-policyholder-remote-access-findings-table,.table-list--has-policyholder-certificate_best_practices-findings-table,.table-list--has-policyholder-popular-domains-table,.table-list--has-policyholder-email-domains-findings-table,.table-list--has-policyholder-email-provider-table,.table-list--has-policyholder-protocol-findings-table,.table-list--has-policyholder-cve-findings-table,.table-list--has-policyholder-dedicated-servers-table,.table-list--has-policyholder-risky-uncategorized-software-table,.table-list--has-policyholder-vpn-table,.table-list--has-policyholder-http-security-headers-table,.table-list--has-scan-report-table{box-shadow:none;border:1px solid #d1d7e0;border-radius:0}policyholder-findings-table .table-list,.table-list--has-policyholder-software-patching-findings-table .table-list,.table-list--has-policyholder-domain-hijacking-table .table-list,.table-list--has-policyholder-pixel-software-table .table-list,.table-list--has-policyholder-remote-access-findings-table .table-list,.table-list--has-policyholder-certificate_best_practices-findings-table .table-list,.table-list--has-policyholder-popular-domains-table .table-list,.table-list--has-policyholder-email-domains-findings-table .table-list,.table-list--has-policyholder-email-provider-table .table-list,.table-list--has-policyholder-protocol-findings-table .table-list,.table-list--has-policyholder-cve-findings-table .table-list,.table-list--has-policyholder-dedicated-servers-table .table-list,.table-list--has-policyholder-risky-uncategorized-software-table .table-list,.table-list--has-policyholder-vpn-table .table-list,.table-list--has-policyholder-http-security-headers-table .table-list,.table-list--has-scan-report-table .table-list{box-shadow:none;border-radius:0}policyholder-findings-table .table-list__header,.table-list--has-policyholder-software-patching-findings-table .table-list__header,.table-list--has-policyholder-domain-hijacking-table .table-list__header,.table-list--has-policyholder-pixel-software-table .table-list__header,.table-list--has-policyholder-remote-access-findings-table .table-list__header,.table-list--has-policyholder-certificate_best_practices-findings-table .table-list__header,.table-list--has-policyholder-popular-domains-table .table-list__header,.table-list--has-policyholder-email-domains-findings-table .table-list__header,.table-list--has-policyholder-email-provider-table .table-list__header,.table-list--has-policyholder-protocol-findings-table .table-list__header,.table-list--has-policyholder-cve-findings-table .table-list__header,.table-list--has-policyholder-dedicated-servers-table .table-list__header,.table-list--has-policyholder-risky-uncategorized-software-table .table-list__header,.table-list--has-policyholder-vpn-table .table-list__header,.table-list--has-policyholder-http-security-headers-table .table-list__header,.table-list--has-scan-report-table .table-list__header{color:#20252c;background-color:#f9fafc;padding:1rem;align-items:center}policyholder-findings-table .table-list__header h5,.table-list--has-policyholder-software-patching-findings-table .table-list__header h5,.table-list--has-policyholder-domain-hijacking-table .table-list__header h5,.table-list--has-policyholder-pixel-software-table .table-list__header h5,.table-list--has-policyholder-remote-access-findings-table .table-list__header h5,.table-list--has-policyholder-certificate_best_practices-findings-table .table-list__header h5,.table-list--has-policyholder-popular-domains-table .table-list__header h5,.table-list--has-policyholder-email-domains-findings-table .table-list__header h5,.table-list--has-policyholder-email-provider-table .table-list__header h5,.table-list--has-policyholder-protocol-findings-table .table-list__header h5,.table-list--has-policyholder-cve-findings-table .table-list__header h5,.table-list--has-policyholder-dedicated-servers-table .table-list__header h5,.table-list--has-policyholder-risky-uncategorized-software-table .table-list__header h5,.table-list--has-policyholder-vpn-table .table-list__header h5,.table-list--has-policyholder-http-security-headers-table .table-list__header h5,.table-list--has-scan-report-table .table-list__header h5{line-height:1rem}policyholder-findings-table .table-list li,.table-list--has-policyholder-software-patching-findings-table .table-list li,.table-list--has-policyholder-domain-hijacking-table .table-list li,.table-list--has-policyholder-pixel-software-table .table-list li,.table-list--has-policyholder-remote-access-findings-table .table-list li,.table-list--has-policyholder-certificate_best_practices-findings-table .table-list li,.table-list--has-policyholder-popular-domains-table .table-list li,.table-list--has-policyholder-email-domains-findings-table .table-list li,.table-list--has-policyholder-email-provider-table .table-list li,.table-list--has-policyholder-protocol-findings-table .table-list li,.table-list--has-policyholder-cve-findings-table .table-list li,.table-list--has-policyholder-dedicated-servers-table .table-list li,.table-list--has-policyholder-risky-uncategorized-software-table .table-list li,.table-list--has-policyholder-vpn-table .table-list li,.table-list--has-policyholder-http-security-headers-table .table-list li,.table-list--has-scan-report-table .table-list li{font-size:.875rem;color:hsl(350,80%,45%);font-weight:bold;padding:1rem;line-height:20px}policyholder-findings-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-software-patching-findings-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-domain-hijacking-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-pixel-software-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-remote-access-findings-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-certificate_best_practices-findings-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-popular-domains-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-email-domains-findings-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-email-provider-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-protocol-findings-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-cve-findings-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-dedicated-servers-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-risky-uncategorized-software-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-vpn-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-policyholder-http-security-headers-table .policyholder-findings-table--with-finding-status .table-list__column-0,.table-list--has-scan-report-table .policyholder-findings-table--with-finding-status .table-list__column-0{padding-left:3rem}.table-list__row--policyholder-software-patching-findings-table .table-list__column-4 ul{list-style-type:disc}.table-list__row--policyholder-software-patching-findings-table .table-list__column-4 ul li{padding:0 0 0 1em;color:#006685}.table-list__row--policyholder-software-patching-findings-table .table-list__column-4 ul li a{margin-left:-1.2em;font-weight:600}.table-list__row--policyholder-software-patching-findings-table .table-list__column-4 ul li:not(:last-child){margin-bottom:.5rem}@media screen and (max-width: 30rem){.table-list__header{display:none}.table-list__row,.table-list__link{flex-wrap:wrap;overflow:hidden}.table-list--has-broker-action-items .table-list__column-0,.table-list--has-broker-action-items .table-list__column-1,.table-list--has-quotes-in-progress .table-list__column-0,.table-list--has-clients .table-list__column-0{margin-bottom:.5rem;flex-basis:100%}.table-list--has-clients .table-list__column-1,.table-list--has-clients .table-list__column-2,.table-list--has-clients .table-list__column-3,.table-list--has-quotes-in-progress .table-list__column-1,.table-list--has-quotes-in-progress .table-list__column-2,.table-list--has-quotes-in-progress .table-list__column-3{flex-basis:33.3%}.table-list--has-broker-action-items .table-list__column-2,.table-list--has-broker-action-items .table-list__column-3,.table-list--has-broker-action-items .table-list__column-4{flex-basis:33.3%}.table-list--has-clients .table-list__column-1,.table-list--has-broker-action-items .table-list__column-2{text-align:left}}.table{background-color:#fff}.table--top-margin{margin-top:2rem}.table--sticky-header th{position:sticky;top:0;background-color:#fff;padding-top:1rem;padding-bottom:1rem;z-index:1}.table--sticky-header td span.tag{margin-right:1.5rem}.table--horizontal-padding td:first-child,.table--horizontal-padding th:first-child{padding-left:1.5rem}.table--horizontal-padding td:last-child,.table--horizontal-padding th:last-child{padding-right:1.5rem}.table--with-border{border-collapse:separate}.table--with-border th{border:0}.table--with-border tr:first-child td{border-top:1px solid #d1d7e0}.table--with-border tr:first-child td:first-child{border-top-left-radius:3px}.table--with-border tr:first-child td:last-child{border-top-right-radius:3px}.table--with-border tr:last-child td:first-child{border-bottom-left-radius:3px}.table--with-border tr:last-child td:last-child{border-bottom-right-radius:3px}.table--with-border td{border-bottom:1px solid #d1d7e0}.table--with-border td:first-child{border-left:1px solid #d1d7e0}.table--with-border td:last-child{border-right:1px solid #d1d7e0}.table--with-status th:nth-last-of-type(2){text-align:right;width:25%}.table--with-status td:nth-last-of-type(2):not(:only-child){text-align:right}.table--insured-contacts{margin-bottom:1.5rem}.table--insured-contacts th:last-of-type,.table--insured-contacts td:last-of-type{text-align:left}.table--insured-contacts__name{width:30%}.table--action-items-brokerage-detail th:nth-last-of-type(3){width:30%}.table--action-items-brokerage-detail td{width:20%}.table--action-items-dash th:nth-last-of-type(2){text-align:right}.table--action-items-dash td{width:20%}.table__row--clickable{border-bottom:1px solid #d1d7e0;transition:color 100ms ease-in-out;z-index:0;position:relative}.table__row--clickable:hover{color:#006685;background-image:linear-gradient(to bottom, #f9fafc, #ebeef3 99%, #d1d7e0 99%);cursor:pointer}.table__cell--icon{width:3rem}.table__cell--icon svg{height:1.5rem;width:1.5rem;fill:#6a7585}.success .table__cell--icon svg{fill:hsl(110,100%,26.9%)}.error .table__cell--icon svg{fill:hsl(350,80%,45%)}.warning .table__cell--icon svg{fill:hsl(30,100%,36.5%)}.info .table__cell--icon svg{fill:hsl(210,70%,46%)}.accent .table__cell--icon svg{fill:#0080a7}.locked .table__cell--icon svg{fill:#a0a8b4}.neutral .table__cell--icon svg{fill:#a0a8b4}.table__cell--name{width:50%}.table__cell--number{color:#444d59;font-size:.875rem;white-space:nowrap}.table--insured-contacts{border:1px solid #d1d7e0}.table--insured-contacts th{padding-top:1rem}.table--insured-contacts td:first-child,.table--insured-contacts th:first-child{padding-left:1rem}.table--insight-alerts th{padding:.5rem 0}.table--insight-alerts td{padding:1rem 0}.table--insight-alerts td:last-child{color:hsl(350,80%,45%)}.table--insight-alerts thead{border:1px solid hsl(350,80%,45%)}.table--insight-alerts thead td{background-color:hsl(350,80%,45%);color:#fff;font-weight:600}.table--insight-alerts tbody{border:1px solid #d1d7e0}.table--insight-alerts tbody th,.table--insight-alerts tbody td{text-align:left !important;width:50%}.table--underwriting-rule-modal{border:1px solid #d1d7e0;border-radius:6px;border-collapse:separate;box-sizing:border-box;border-spacing:1px}.table--underwriting-rule-modal th{background-color:#f9fafc;padding-top:1.5rem;padding-bottom:1.5rem}.table--underwriting-rule-modal th+th,.table--underwriting-rule-modal td+td{border-left:1px solid #d1d7e0}.table--underwriting-rule-modal th,.table--underwriting-rule-modal td{width:33.33%;padding-left:1rem}.table--underwriting-rule-modal tbody td{color:#6a7585}.table--underwriting-rule-modal th:last-child:not(:only-child),.table--underwriting-rule-modal td:last-child:not(:only-child){text-align:left}.table--underwriting-rule-modal th:first-child:not(:only-child),.table--underwriting-rule-modal td:first-child:not(:only-child){padding-left:1rem}.table--underwriting-rule-modal tr:last-child td{border-bottom:0}.table--duplicates-modal{border:1px solid #d1d7e0;border-bottom:0px;border-radius:6px;border-spacing:0;border-collapse:separate}.table--duplicates-modal th:first-child{border-top-left-radius:6px}.table--duplicates-modal th:last-child{border-top-right-radius:6px}.table--duplicates-modal td{padding:0px}.table--duplicates-modal td a{padding:1.5rem 0 1.5rem 0;color:#444d59}.table--duplicates-modal tr:last-child td:first-child{border-bottom-left-radius:6px}.table--duplicates-modal tr:last-child td:last-child{border-bottom-right-radius:6px}.table--api-docs tr td:last-child:not(:only-child){text-align:left}.table--api-docs tr td:first-child{font-weight:600;width:200px}.tabs{display:flex}.tabs__option{background-color:#fff;border:1px solid #0080a7;color:#006685;cursor:pointer;flex:1;font-weight:600;padding:1rem 1.5rem;transition:all 200ms ease-in-out;text-align:center}.tabs__option:hover{background-color:rgb(239.565,247.4519461078,249.855)}.tabs__option--selected{background-color:#0080a7;color:#fff;cursor:inherit}.tabs__option--selected:hover{background-color:#0080a7}.tabs__option:first-child{border-bottom-left-radius:3px;border-top-left-radius:3px}.tabs__option:last-child{border-bottom-right-radius:3px;border-top-right-radius:3px}.tabs__option+.tabs__option{border-left-width:0}.tab__container{display:flex}.tab__container .tab{background-color:#ebeef3;border:1px solid rgba(0,0,0,0);border-top-width:.25rem;cursor:pointer;border-top-left-radius:3px;border-top-right-radius:3px;padding:.5rem;margin-right:1rem;transition:all 200ms}.tab__container .tab:hover{color:#0080a7}.tab__container .tab--active{background-color:#fff;border-color:#d1d7e0;border-top-color:#0080a7;border-bottom-color:#fff;color:#0080a7;cursor:default;margin-bottom:-1px}.tab-section{border:1px solid #d1d7e0;padding:2rem;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.security-tab__card{align-items:center;border:1px solid #d1d7e0;border-radius:12px;display:flex;margin-bottom:3rem}.security-tab__card--banner{border:1px solid #d1d7e0;box-shadow:none}.security-tab__card--action{border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1);display:block;margin-bottom:1.5rem}.security-tab__markdown p{font-size:inherit;line-height:inherit}.security-tab__markdown a{text-decoration:underline}.security-tab__radio svg{margin-right:.25rem}.security-tab__image{padding:1.5rem;min-width:12rem;text-align:center}.security-tab__recommendation{max-width:2.5rem;font-weight:500}.security-tab__shield{max-width:4rem}.security-tab__info{padding:1.5rem}.security-tab__aside{align-self:stretch;padding:1.5rem;background-color:#444d59;text-align:center}.security-tab__aside h3{color:#fff;font-size:1rem}.security-tab__aside a.button div{font-size:.875rem;font-weight:400}.security-tab__table{border:1px solid #d1d7e0;width:100%}.security-tab__table td{border:1px solid #d1d7e0;color:hsl(350,72%,50.5%);padding:1.5rem;text-align:left !important}.security-tab__table th{border:1px solid #d1d7e0;padding:1.5rem;text-align:left !important}.security-tab__table th:first-of-type{width:25%}.security-tab__header{align-items:center;border-radius:12px;cursor:pointer;display:flex;flex-direction:row}.security-tab__header:hover{color:#20252c;background-color:#ebeef3}.security-tab__title{flex:1;padding:1.5rem 1.5rem 1.5rem 0}.security-tab__criticality--critical{color:hsl(245,55%,50%)}.security-tab__criticality--critical .square__icon{fill:hsl(245,55%,50%);margin:0 0 .5rem 0}.security-tab__criticality--high{color:hsl(350,80%,45%)}.security-tab__criticality--high .square__icon{fill:hsl(350,80%,45%);margin:0 0 .5rem 0}.security-tab__criticality--high-score-impact{color:hsl(350,80%,45%)}.security-tab__criticality--high-score-impact .square__icon{fill:hsl(350,80%,45%);margin:0 0 .5rem 0}.security-tab__criticality--high_score_impact{color:hsl(350,80%,45%)}.security-tab__criticality--high_score_impact .square__icon{fill:hsl(350,80%,45%);margin:0 0 .5rem 0}.security-tab__criticality--medium{color:hsl(35,100%,50%)}.security-tab__criticality--medium .square__icon{fill:hsl(35,100%,50%);margin:0 0 .5rem 0}.security-tab__criticality--medium-score-impact{color:hsl(35,100%,50%)}.security-tab__criticality--medium-score-impact .square__icon{fill:hsl(35,100%,50%);margin:0 0 .5rem 0}.security-tab__criticality--medium_score_impact{color:hsl(35,100%,50%)}.security-tab__criticality--medium_score_impact .square__icon{fill:hsl(35,100%,50%);margin:0 0 .5rem 0}.security-tab__criticality--low{color:hsl(45,100%,62%)}.security-tab__criticality--low .square__icon{fill:hsl(45,100%,62%);margin:0 0 .5rem 0}.security-tab__criticality--info{color:hsl(210,70%,46%)}.security-tab__criticality--info .square__icon{fill:hsl(210,70%,46%);margin:0 0 .5rem 0}.security-tab__criticality--critical-for-renewal{color:hsl(350,80%,45%)}.security-tab__criticality--critical-for-renewal .square__icon{fill:hsl(350,80%,45%);margin:0 0 .5rem 0}.security-tab__criticality--may-impact-renewal{color:hsl(35,100%,50%)}.security-tab__criticality--may-impact-renewal .square__icon{fill:hsl(35,100%,50%);margin:0 0 .5rem 0}.security-tab__criticality--best-practice{color:hsl(45,100%,62%)}.security-tab__criticality--best-practice .square__icon{fill:hsl(45,100%,62%);margin:0 0 .5rem 0}.security-tab__criticality--best_practice{color:hsl(45,100%,62%)}.security-tab__criticality--best_practice .square__icon{fill:hsl(45,100%,62%);margin:0 0 .5rem 0}.security-tab__criticality--complete{color:hsl(171,100%,45%)}.security-tab__criticality--complete .square__icon{fill:hsl(171,100%,45%);margin:0 0 .5rem 0}.security-tab__icon svg{fill:#20252c;height:2rem;margin-right:0;text-align:center;transition:transform 200ms ease;width:12.5rem}.security-tab--expanded .security-tab__header:hover{color:#20252c;background-color:#ebeef3}.security-tab--expanded .security-tab__body{margin-left:12rem;padding:0 2rem 2rem 0}.security-tab--expanded .security-tab__icon .icon{transform:rotate(180deg);transition:transform 200ms ease}.security-tab-new--expanded{background-color:#ebeef3}.security-tab-new--expanded .recommendations_step__header{margin-bottom:.5rem;padding:.5rem 1rem;font-size:.875rem;font-weight:600}.security-tab-new--expanded .recommendations_step__title{padding:.5rem 1rem 0 1rem;font-size:.875rem;font-weight:400}.security-tab-new--expanded .recommendations_step__description{padding:.5rem 1rem}.security-tab-new--expanded .recommendations_step__description ol,.security-tab-new--expanded .recommendations_step__description ul{padding:0 0 .5rem 1.5rem}.security-tab-new--expanded .recommendations_step__description ol{list-style-type:lower-alpha}.security-tab-new--expanded .recommendations_step__description .security-tab__markdown p{margin-bottom:.5rem}.security-tab-new--expanded .recommendations_step__description .security-tab__markdown p:last-child{margin-bottom:0}.security-tab-new--expanded .recommendations_step__description:empty{padding-bottom:0}.security-tab-new--expanded .recommendations_step__container>:last-child{margin-bottom:.5rem}.smart-tab__card{align-items:center;border:1px solid #d1d7e0;border-radius:6px;display:flex;margin-bottom:3rem}.smart-tab__card--banner{border:1px solid #d1d7e0;box-shadow:none}.smart-tab__card--action{border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1);display:block;margin-bottom:.5rem}.smart-tab__header{align-items:center;border-radius:6px;cursor:pointer;display:flex;flex-direction:row;background-color:#cfe;border-color:#cfe;border-width:1px;font-family:"Rubik",sans-serif;color:#20252c}.smart-tab__header:hover{border-color:hsl(171,100%,27%) !important;border:solid;border-width:1px;text-decoration-line:underline}.smart-tab__header--sec-adv{background-color:hsl(35,100%,90%);border-color:hsl(35,100%,90%)}.smart-tab__header--sec-adv:hover{border-color:hsl(35,100%,50%) !important}.smart-tab__title{flex:1;padding:1.5rem 1.5rem 1.5rem 0}.smart-tab__icon svg{fill:hsl(171,100%,17%);height:2rem;margin-right:0;text-align:center;transition:transform 200ms ease;width:6.25rem}.smart-tab--expanded .smart-tab__header{border-bottom-left-radius:0;border-bottom-right-radius:0;border:solid;border-bottom-style:none;border-width:1px;border-color:hsl(171,100%,27%)}.smart-tab--expanded .smart-tab__header--sec-adv{border-color:hsl(35,100%,50%)}.smart-tab--expanded .smart-tab__body{padding-bottom:1.5rem;border:solid;border-top-style:none;border-color:hsl(171,100%,27%);border-width:1px;border-bottom-left-radius:6px;border-bottom-right-radius:6px;background-color:#fff;overflow:hidden}.smart-tab--expanded .smart-tab__body--sec-adv{border-color:hsl(35,100%,50%)}.smart-tab--expanded .smart-tab__icon .icon{transform:rotate(180deg);transition:transform 200ms ease}.tab-list{margin-left:5px;margin-bottom:1.5rem;display:flex}.tab-list .tab{display:inline-block;padding:3px 5px;margin:7px 9px 0;cursor:pointer}.tab-list .tab:hover{color:#0080a7}.tab-list .tab.active{color:#0080a7;border-bottom:2px solid #0080a7;font-weight:bold}.submissions-table-tab,.product-lines-header-tab{display:flex}.submissions-table-tab__link,.product-lines-header-tab__link{color:#444d59;background-color:rgba(0,0,0,0);border:0;border-bottom:.25rem solid rgba(0,0,0,0);padding:.5rem 1.5rem;margin-right:.5rem;transition:all 200ms}.submissions-table-tab__link:hover,.submissions-table-tab__link--active,.product-lines-header-tab__link:hover,.product-lines-header-tab__link--active{color:#0080a7;border-bottom-color:#0080a7}.submissions-table-tab__link--disabled,.product-lines-header-tab__link--disabled{color:#a0a8b4}.submissions-table-tab__link--disabled:hover,.product-lines-header-tab__link--disabled:hover{color:#a0a8b4;border-bottom-color:#fff}.alert-tab__card{align-items:center;border:1px solid #d1d7e0;border-radius:12px;display:flex;margin-bottom:3rem}.alert-tab__card--banner{border:1px solid #d1d7e0;box-shadow:none}.alert-tab__card--action{border:none;box-shadow:0 1px .25rem rgba(32,37,44,.1);display:block;margin-bottom:1.5rem}.alert-tab__markdown a{text-decoration:underline}.alert-tab__radio svg{margin-right:.25rem}.alert-tab__radio-group-completed{background-color:#ebeef3}.alert-tab__image{padding:1.5rem;min-width:12rem;text-align:center}.alert-tab__recommendation{max-width:2.5rem;font-weight:500}.alert-tab__info{padding:1.5rem}.alert-tab__header{align-items:center;border-radius:12px;cursor:pointer;display:flex;flex-direction:row;padding:.5rem}.alert-tab__header:hover{color:hsl(245,55%,50%);background-color:hsl(245,55%,50%)}.alert-tab__header--completed{align-items:center;border-radius:12px;cursor:pointer;display:flex;flex-direction:row;padding:.5rem}.alert-tab__header--completed:hover{color:#20252c;background-color:#ebeef3}.alert-tab__title{flex:1;padding:1.5rem 1.5rem 1.5rem 0}.alert-tab__title--text{color:#fff}.alert-tab__tag{border-color:hsl(350,80%,45%);color:#fff;background-color:hsl(350,80%,45%) !important}.alert-tab__icon svg{fill:#fff;height:2rem;margin-right:0;text-align:center;transition:transform 200ms ease;width:12.5rem}.alert-tab__icon--text{color:#fff}.alert-tab__icon--warning svg{fill:#fff;height:2rem;margin-right:0;text-align:center;transition:none;width:12.5rem}.alert-tab__icon--completed svg{fill:#20252c;height:2rem;margin-right:0;text-align:center;transition:transform 200ms ease;width:12.5rem}.alert-tab__finding>div,.alert-tab__potential_impact>div,.alert-tab__next_steps>div{font-family:"Open Sans",sans-serif;font-size:1rem;line-height:1.5;margin-bottom:1rem;color:#fff}.alert-tab__finding--header,.alert-tab__potential_impact--header,.alert-tab__next_steps--header{font-weight:bolder}.alert-tab__dynamic_content--header{font-family:"Open Sans",sans-serif;font-size:1rem;line-height:1.5;margin-bottom:1rem;color:#fff}.alert-tab__dynamic_content--card{height:3rem;display:flex;align-items:center;background-color:#fff;border-color:#000;border:1px;border-style:solid;padding:1em}.alert-tab__dynamic_content--text{color:hsl(350,80%,45%)}.alert-tab__action-card-step--header{background-color:hsl(245,55%,50%);color:#fff;padding:.5rem 1rem}.alert-tab__action-card-step--text{background-color:#fff}.alert-tab__action-card-step--radio{background-color:#fff}.alert-tab--expanded{background-color:hsl(245,100%,90%)}.alert-tab--expanded .alert-tab__header:hover{color:hsl(245,100%,83%);background-color:hsl(245,100%,83%)}.alert-tab--expanded .alert-tab__body{margin-left:12rem;padding:0 2rem 2rem 0}.alert-tab--expanded .alert-tab__completed--body{margin-left:12rem;padding:0 2rem 2rem 0}.alert-tab--expanded .alert-tab__title--text{color:#20252c}.alert-tab--expanded .alert-tab__finding>div,.alert-tab--expanded .alert-tab__potential_impact>div,.alert-tab--expanded .alert-tab__next_steps>div{color:#20252c}.alert-tab--expanded .alert-tab__dynamic_content--header{color:#20252c}.alert-tab--expanded .alert-tab__icon .icon{transform:rotate(180deg);transition:transform 200ms ease}.alert-tab--expanded .alert-tab__icon svg{fill:hsl(245,55%,50%)}.alert-tab--expanded .alert-tab__icon--text{color:hsl(245,55%,50%)}.alert-tab--expanded .alert-tab__icon--warning svg{fill:hsl(245,55%,50%)}.alert-tab--expanded--completed{background-color:#fff}.alert-tab-new--expanded .alert-tab__title--text{color:#20252c}.alert-tab-new--expanded .alert-tab__finding>div,.alert-tab-new--expanded .alert-tab__potential_impact>div,.alert-tab-new--expanded .alert-tab__next_steps>div{color:#20252c}.alert-tab-new--expanded .alert-tab__finding--text,.alert-tab-new--expanded .alert-tab__potential_impact--text,.alert-tab-new--expanded .alert-tab__next_steps--text{font-size:.875rem;line-height:1.7}.alert-tab-new--expanded .alert-tab__finding--text>p,.alert-tab-new--expanded .alert-tab__potential_impact--text>p,.alert-tab-new--expanded .alert-tab__next_steps--text>p{font-size:inherit;line-height:inherit}.alert-tab-new--expanded .alert-tab__dynamic_content--header{color:#20252c}.alert-tab-new--expanded .alert-tab__action-card-step--header{border-top-left-radius:3px;border-top-right-radius:3px;background-color:hsl(245,55%,50%);padding:.5rem 1rem;font-weight:600;color:#fff}.alert-tab-new--expanded .alert-tab__action-card-step--text{background-color:#fff;font-size:.875rem}.alert-tab-new--expanded .alert-tab__action-card-step--radio{background-color:#fff}.alert-tab-new--expanded .alert-tab__action-card-step--body>:not(:first-child):not(:last-child){border-left:1px solid hsl(245,55%,50%);border-right:1px solid hsl(245,55%,50%)}.alert-tab-new--expanded .alert-tab__action-card-step--body>:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-left:1px solid hsl(245,55%,50%);border-right:1px solid hsl(245,55%,50%);border-bottom:1px solid hsl(245,55%,50%)}.alert-tab-new--expanded .alert-tab__markdown p{font-size:inherit;line-height:inherit}.alert-tab-new--expanded .alert-tab__markdown>p:last-child{margin-bottom:0}.tag{font-family:"Open Sans",sans-serif;margin-bottom:1rem;background-color:#fff;border-style:solid;border-width:1px;border-radius:3px;font-size:.75rem;font-weight:600;letter-spacing:normal;line-height:1;margin-right:1rem;margin-bottom:0;display:inline-block;padding:.125rem .25rem;text-transform:uppercase}.tag--success{border-color:hsl(110,100%,26.9%);color:hsl(110,90%,24.21%);background-color:hsl(110,50%,95.614%)}.tag--success.tag--fill{border-color:hsl(110,100%,26.9%);color:#fff;background-color:hsl(110,100%,26.9%)}.tag--warning{border-color:hsl(30,100%,36.5%);color:hsl(30,90%,32.85%);background-color:hsl(30,50%,96.19%)}.tag--warning.tag--fill{border-color:hsl(30,100%,36.5%);color:#fff;background-color:hsl(30,100%,36.5%)}.tag--info{border-color:hsl(210,70%,46%);color:hsl(210,63%,41.4%);background-color:hsl(210,35%,96.76%)}.tag--info.tag--fill{border-color:hsl(210,70%,46%);color:#fff;background-color:hsl(210,70%,46%)}.tag--error{border-color:hsl(350,80%,45%);color:hsl(350,72%,40.5%);background-color:hsl(350,40%,96.7%)}.tag--error.tag--fill{border-color:hsl(350,80%,45%);color:#fff;background-color:hsl(350,80%,45%)}.tag--accent{border-color:#0080a7;color:#006685;background-color:rgb(239.565,247.4519461078,249.855)}.tag--accent.tag--fill{border-color:#0080a7;color:#fff;background-color:#0080a7}.tag--de-emphasize{border-color:#a0a8b4;color:#6a7585;background-color:#f9fafc}.tag--de-emphasize.tag--fill{border-color:#a0a8b4;color:#fff;background-color:#a0a8b4}.tag--locked{border-color:#6a7585;color:#f9fafc;background-color:#f9fafc}.tag--locked.tag--fill{border-color:#6a7585;color:#fff;background-color:#6a7585}.tag--submission-comprehension{border-color:hsl(245,100%,68%);color:hsl(245,55%,50%);background-color:hsl(245,80%,95%)}.tag--submission-comprehension.tag--fill{border-color:hsl(245,100%,68%);color:#fff;background-color:hsl(245,100%,68%)}a.tag--success{transition:all 200ms ease-in-out}a.tag--success:hover{color:#fff;background-color:hsl(110,100%,26.9%)}a.tag--warning{transition:all 200ms ease-in-out}a.tag--warning:hover{color:#fff;background-color:hsl(30,100%,36.5%)}a.tag--info{transition:all 200ms ease-in-out}a.tag--info:hover{color:#fff;background-color:hsl(210,70%,46%)}a.tag--error{transition:all 200ms ease-in-out}a.tag--error:hover{color:#fff;background-color:hsl(350,80%,45%)}a.tag--accent{transition:all 200ms ease-in-out}a.tag--accent:hover{color:#fff;background-color:#0080a7}a.tag--de-emphasize{transition:all 200ms ease-in-out}a.tag--de-emphasize:hover{color:#fff;background-color:#d1d7e0}a.tag--locked{transition:all 200ms ease-in-out}a.tag--locked:hover{color:#fff;background-color:#6a7585}a.tag--submission-comprehension{transition:all 200ms ease-in-out}a.tag--submission-comprehension:hover{color:#fff}.tag--change{display:inline-flex;align-items:center}.tag--change::after{margin-left:.25rem;content:""}.tag--change.error::after{border-style:solid;height:0;width:0;border-color:hsl(350,80%,45%) rgba(0,0,0,0) rgba(0,0,0,0);border-width:.25rem .25rem 0}.tag--change.success::after{border-style:solid;height:0;width:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) hsl(110,100%,26.9%);border-width:0 .25rem .25rem}.tag-list .tag{border-radius:0;display:block;margin-top:-1px;text-align:center}.tag-list .tag:first-child{border-top-left-radius:3px;border-top-right-radius:3px;margin-top:0}.tag-list .tag:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}@media screen and (max-width: 30rem){.tag{display:inline-block;text-align:center}}.tag-status-v2{padding-left:.5rem;padding-right:.5rem;padding-top:.25rem;padding-bottom:.25rem;display:flex;align-items:center;border-width:1px;border-style:solid}.tag-status-v2--outline-active-success{background-color:#f0f9ee;border-color:#178900;color:#178900}.tag-status-v2--outline-hold-warning{background-color:#f9f7f2;border-color:#ff9500;color:#ad4000}.tag-status-v2--outline-info{background-color:#f4f7fa;border-color:#2375c7;color:#1e64a9}.tag-status-v2-text{font-size:.75rem;line-height:1rem;font-weight:600;line-height:1.7}.tag-status-v2-text--uppercase{text-transform:uppercase}.details-chevron{font-size:1.875rem;margin-bottom:-0.25rem;transition:all 200ms linear}.details-chevron--expanded{transform:rotate(-90deg)}.details-chevron--collapsed{transform:rotate(90deg)}.threat-create{max-width:250px;display:inline-block}.threat-table{background-color:#fff}.threat-table__header{padding-top:1rem}.threat-table__row td:first-child,.threat-table__row th:first-child{padding-left:1.5rem;width:75%}.threat-table__row td:last-child,.threat-table__row th:last-child{padding-right:1.5rem}.threat-table__threat{cursor:pointer}.threat-table__details>td>div{overflow:hidden;animation:expand 1.5s ease-out}.threat-table__button-td{text-align:center !important}@keyframes expand{from{max-height:0}to{max-height:1000px}}@-moz-keyframes expand{from{max-height:0}to{max-height:1000px}}@-webkit-keyframes expand{from{max-height:0}to{max-height:1000px}}@-ms-keyframes expand{from{max-height:0}to{max-height:1000px}}.toggle-switch input{border:0;clip:rect(1px, 1px, 1px, 1px);clip-path:inset(100%);height:1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px !important}.toggle-switch span,.toggle-switch label{margin-bottom:1rem;line-height:1.75rem;padding-left:4.5rem;position:relative;cursor:pointer}.toggle-switch span::before,.toggle-switch label::before{background-color:#d1d7e0;color:#6a7585;transition:all 200ms ease-in-out;position:absolute;top:.125rem;left:0;content:"No";font-size:.875rem;height:1.5rem;width:4rem;line-height:1.5rem;border-radius:.75rem;text-align:right;padding:0 .5rem;display:block}.toggle-switch span::after,.toggle-switch label::after{background-color:#6a7585;transition:all 200ms ease-in-out;box-shadow:0 2px 1rem rgba(32,37,44,.1);position:absolute;top:0;left:0;content:"";height:1.75rem;width:1.75rem;border-radius:50%;display:block}.toggle-switch input:checked+span::before,.toggle-switch input:checked+label::before{background-color:#49cff7;color:#fff;content:"Yes";text-align:left}.toggle-switch input:checked+span::after,.toggle-switch input:checked+label::after{background-color:#0080a7;left:2.25rem}.tool-tip-trigger{position:relative;cursor:pointer}.tool-tip-trigger:hover .tool-tip,.tool-tip-trigger:hover .simple-tool-tip{opacity:1;pointer-events:initial;transform:translateX(0)}.tool-tip-trigger:hover .tool-tip--top{transform:translateX(-50%) translateY(0.5rem)}.tool-tip-trigger .tool-tip{font-family:"Open Sans",sans-serif;font-weight:400;margin-bottom:1rem;cursor:auto;font-size:.875rem;line-height:1.5;letter-spacing:normal;text-transform:none;text-align:left;border:1px solid #ebeef3;border-left:2px solid #0080a7;box-shadow:0 1px .25rem rgba(32,37,44,.1);padding:1rem;background-color:#fff;transition:all 200ms ease-in-out;position:absolute;top:calc(-1.5rem - .5rem - 1px);left:100%;transform:translateX(1rem);z-index:9;opacity:0;pointer-events:none;width:20rem}.tool-tip-trigger .tool-tip p{font-size:.875rem;line-height:1.5}.tool-tip-trigger .tool-tip p:last-of-type{margin-bottom:0}.tool-tip-trigger .tool-tip h3{font-size:1rem}.tool-tip-trigger .tool-tip::before{position:absolute;top:3rem;left:0;border-style:solid;height:0;width:0;border-color:rgba(0,0,0,0) #0080a7 rgba(0,0,0,0) rgba(0,0,0,0);border-width:.5rem .5rem .5rem 0;transform:translate(-100%, -50%);content:""}.tool-tip-trigger .tool-tip::after{position:absolute;top:3rem;left:0;border-style:solid;height:0;width:0;border-color:rgba(0,0,0,0) #fff rgba(0,0,0,0) rgba(0,0,0,0);border-width:.375rem .375rem .375rem 0;transform:translate(-100%, -50%);content:""}.tool-tip-trigger .tool-tip--top{border-left:1px solid #ebeef3;border-bottom:2px solid #0080a7;position:absolute;top:auto;bottom:100%;left:50%;transform:translateX(-50%)}.tool-tip-trigger .tool-tip--top::before{position:absolute;top:100%;left:50%;border-style:solid;height:0;width:0;border-color:#0080a7 rgba(0,0,0,0) rgba(0,0,0,0);border-width:.5rem .5rem 0;transform:translate(-50%, 0)}.tool-tip-trigger .tool-tip--top::after{position:absolute;top:100%;left:50%;border-style:solid;height:0;width:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-width:.375rem .375rem 0;transform:translate(-50%, 0)}.tool-tip-trigger .tool-tip--warn{font-weight:bold;color:hsl(30,90%,32.85%);border:1px solid hsl(210,35%,96.76%)}.tool-tip-trigger .tool-tip--warn::before{position:absolute;top:3rem;left:0;border-style:solid;height:0;width:0;border-color:rgba(0,0,0,0) hsl(210,35%,96.76%) rgba(0,0,0,0) rgba(0,0,0,0);border-width:.5rem .5rem .5rem 0;transform:translate(-100%, -50%);content:""}.tool-tip-trigger .tool-tip--small{white-space:nowrap;width:auto}#-renewal-notice .tool-tip-trigger .tool-tip{left:-6rem;width:auto}#-renewal-notice .tool-tip-trigger .tool-tip li{white-space:nowrap}.tool-tip-trigger .simple-tool-tip{font-family:"Open Sans",sans-serif;font-weight:400;line-height:1.5;margin-bottom:1rem;cursor:auto;font-size:.75rem;letter-spacing:normal;text-transform:none;text-align:left;border-radius:3px;box-shadow:0px 15px 30px rgba(32,37,44,.1);padding:1rem 1.5rem;background-color:#fff;transition:all 200ms ease-in-out;position:absolute;left:calc(100% + 2px);transform:translateX(1rem);z-index:9;opacity:0;pointer-events:none;width:12.5rem}.tool-tip-trigger--data-science{color:#0080a7;position:relative;bottom:.25rem;transition:color 200ms;margin-left:.5rem;margin-right:.5rem}.tool-tip-trigger--data-science:hover{color:#006685}.tool-tip-trigger--data-science::before{animation:ping 5s ease-in-out infinite;background:#49cff7;border:1px solid #0080a7;border-radius:50%;content:"";opacity:0;pointer-events:none;position:absolute;top:calc(50% - 3rem);right:calc(50% - 3rem);height:6rem;width:6rem;z-index:1}.tool-tip-trigger--data-science .icon-data-science{height:1.5rem;width:1.5rem;position:relative;top:.25rem;z-index:1}.tool-tip-trigger--data-science .tool-tip{top:-2.5rem;margin-left:.5rem}.tool-tip-trigger.step{cursor:auto}.tool-tip-trigger.step:hover .tool-tip{opacity:1}.tool-tip-trigger.step .step__title::after{content:url("https://cdn.corvusinsurance.com/images/help-outline-9f2015adec514dadef90b00ec7069e12.svg");height:1.5rem;width:1.5rem;display:inline-block;position:relative;top:.25rem;left:.25rem;margin-top:-0.25rem}.tool-tip-trigger.step .tool-tip{width:50%;top:-1.5rem}@media screen and (max-width: 30rem){.tool-tip-trigger .tool-tip{position:fixed;right:0;bottom:0;left:0;margin-bottom:0;color:#fff;border-radius:0;border:0;background-color:rgba(32,37,44,.9);width:auto}}@keyframes ping{0%{transform:scale(0);opacity:.5}80%{transform:scale(0);opacity:.5}100%{transform:scale(1);opacity:0}}.tool-tip-a11y-trigger{position:relative;cursor:pointer;padding:0;display:inline-flex;align-items:center;justify-content:center}@media(hover: hover)and (pointer: fine){.tool-tip-a11y-trigger:hover .tool-tip-a11y--top{opacity:1;pointer-events:initial;transform:translateX(-1rem) translateY(0.5rem)}}.tool-tip-a11y-trigger span:first-child:focus+.tool-tip-a11y--top{opacity:1;pointer-events:initial;transform:translateX(-1rem) translateY(0.5rem);outline:none}.tool-tip-a11y-trigger .tool-tip-a11y--top{cursor:auto;margin-bottom:1rem;width:25rem;padding:.5rem;background-color:hsl(209,82%,45%);border:none;border-radius:3px;box-shadow:0 1px .25rem rgba(32,37,44,.1);z-index:9;opacity:0;pointer-events:none;transition:all 200ms ease-in-out;position:absolute;top:auto;bottom:100%;left:50%;transform:translateX(-1rem);font-family:"Open Sans",sans-serif;line-height:1.5;letter-spacing:normal;text-transform:none;text-align:left;color:#fff;font-size:.75rem;font-weight:400}.tool-tip-a11y-trigger .tool-tip-a11y--top::before,.tool-tip-a11y-trigger .tool-tip-a11y--top::after{position:absolute;top:100%;left:1rem;border-style:solid;height:0;width:0;border-color:hsl(209,82%,45%) rgba(0,0,0,0) rgba(0,0,0,0);border-width:.375rem .375rem 0;transform:translate(-50%, 0);content:""}.tool-tip-a11y-trigger .tool-tip-a11y--top p{font-size:.875rem;line-height:1.5}.tool-tip-a11y-trigger .tool-tip-a11y--top p:last-of-type{margin-bottom:0}.tool-tip-a11y-trigger .tool-tip-a11y--top h3{font-size:1rem}.tool-tip-a11y-trigger span:first-child{padding:2px;display:inline-flex;align-items:center;justify-content:center}.tool-tip-a11y-trigger span:first-child:focus{outline:#005fcc auto 1px;outline:-webkit-focus-ring-color auto 1px}.two-pane-nav{display:flex}.two-pane-nav__links{flex:1;margin-right:1.5rem;margin-top:-1rem}.two-pane-nav__link{cursor:pointer;padding:1rem 0}.two-pane-nav__link--break::after{content:"";display:block;border-bottom:1px solid #d1d7e0;width:66.6666666667%;margin-top:2rem}.two-pane-nav__content{flex:2}@supports(position: sticky){.two-pane-nav__links{align-self:flex-start;position:sticky;top:5rem}}.video-container{margin-bottom:2rem;position:relative;padding-bottom:56.25%;height:0}.video-container iframe{position:absolute;top:0;left:0;width:100%;height:100%}.well{border:1px solid #d1d7e0;background-color:#ebeef3;border-radius:12px;box-shadow:inset 0 1px .25rem rgba(32,37,44,.1);padding:2rem}.well.error{border-color:hsl(350,80%,45%);background-color:hsl(350,40%,96.7%)}.well.success{border-color:hsl(110,100%,26.9%);background-color:hsl(110,50%,95.614%)}.well.success span{color:hsl(110,100%,26.9%)}@media screen and (max-width: 30rem){.well{padding:1rem}}.slider__group{display:flex}.slider__container{position:relative;margin-right:1.5rem;flex:4}.slider__step{position:absolute;bottom:0;color:#6a7585}.slider__step:first-child{left:0;transform:translateX(-50%)}.slider__step:nth-child(2){left:50%;transform:translateX(-50%)}.slider__step:last-child{right:0;transform:translateX(50%)}.slider__value{flex:1;min-width:3rem}.results__title{color:#6a7585}.results__title--bold{color:#20252c;font-weight:600}.add-developing-threat-button{margin-bottom:2rem}.risk-response-dashboard-header{background-color:#fff;border:1px solid #d1d7e0;border-top:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px;margin-bottom:3rem;padding:2rem;box-shadow:0 0 1.25rem rgba(68,77,89,.15)}.rr-threat-card{margin:0 auto;margin-bottom:1.5rem}.rr-threat-card h1{font-size:.875rem;margin-bottom:1.5rem}.rr-threat-card .rr-threat-event{justify-content:space-between}.rr-threat-card .rr-threat-event .rr-threat-event-grow-column{flex-grow:1}.rr-threat-card .rr-threat-event .rr-threat-event-editing-buttons{flex-shrink:1;align-items:center;margin:.5em 0}.rr-threat-card .rr-threat-event .rr-threat-event-edit-button{align-self:flex-start;color:#6a7585}.rr-threat-card .rr-threat{border-radius:10px;background-color:#fff;margin-top:2rem;box-shadow:0 1px .25rem rgba(32,37,44,.1);max-width:100rem}.rr-threat-card .rr-threat .rr-threat-header{padding:1rem 1rem 0 1.5rem;display:flex;font-size:.75rem;cursor:pointer;font-weight:600;justify-content:space-between}.rr-threat-card .rr-threat .rr-threat-header div:first-child{min-width:30rem;margin-right:2rem}.rr-threat-card .rr-threat .rr-threat-header div:first-child p:first-child{font-weight:600}.rr-threat-card .rr-threat .rr-threat-header div:nth-child(2){width:20rem;font-weight:600}.rr-threat-card .rr-threat .rr-threat-header div:nth-child(2) p:first-child{font-weight:600}.rr-threat-card .rr-threat .rr-threat-header-arrow{color:#6a7585;transition:all 200ms linear;font-size:2.2em;margin-top:-0.25rem;margin-bottom:-0.25rem;align-self:center}.rr-threat-card .rr-threat .rr-threat-header-arrow--collapse{transform:rotate(180deg)}.rr-threat-card .rr-threat .rr-threat-body{padding:1.5rem 2rem;padding-top:0}.rr-threat-card .rr-threat .rr-threat-body .hidden-card{display:none}.rr-threat-card .rr-threat .rr-threat-body .rr-threat-description .threat-nature{margin-bottom:3rem}.rr-threat-card .rr-threat .rr-threat-body .rr-threat-help-url{color:blue}.rr-threat-card .rr-threat .rr-threat-footer{justify-content:right;padding-left:auto}.rr-threat-card .rr-threat .rr-threat-footer .rr-threat-footer-button{margin-left:1.5rem;justify-self:flex-end;flex-grow:0}.rr-threat-card .rr-threat .rr-threat-footer .flex-child{flex-grow:0}.rr-threat-card .rr-threat-footer{justify-content:right;padding-left:auto}.rr-threat-card .rr-threat-footer .rr-threat-footer-button{margin-left:1.5rem;justify-self:flex-end;flex-grow:0;margin-top:auto;margin-bottom:auto}.rr-threat-card .rr-threat-footer .rr-threat-footer-checkbox{flex-grow:0;margin-top:auto;margin-bottom:auto;margin-left:1.5rem;min-width:14em}.rr-threat-card .rr-threat-editing-card{border:none;flex-shrink:0;margin:auto;min-width:70em}.rr-threat-card .rr-threat-editing-card .rr-threat-editing-card-form .rr-threat-editing-card-form-body .rr-threat-editing-card-form-body-description{min-height:10rem;word-break:break-all;overflow-wrap:break-word}.rr-threat-card .rr-threat-editing-card .rr-threat-editing-card-form .rr-threat-footer-card-form-footer{margin:5rem;justify-content:right;padding-left:auto}.rr-threat-card .rr-threat-editing-card .rr-threat-editing-card-form .rr-threat-footer-card-form-footer .rr-threat-card-form-footer-button{justify-self:flex-end;flex-grow:0;margin-left:auto}.c-l{color:#6a7585}.c-accent{color:#0080a7}.c-danger{color:hsl(350,80%,45%)}.c-danger-800{color:hsl(350,72%,40.5%)}.c-warning{color:hsl(30,100%,36.5%)}.c-success{color:hsl(171,100%,17%)}.bc-danger{border-color:hsl(350,80%,45%)}.bc-warning{border-color:hsl(30,100%,36.5%)}.bc-l{border-color:#ebeef3}.bg-l{background-color:#ebeef3}.bc-complete{background-color:#f9fafc}.bc-in-progress{background-color:#d1d7e0}.bg-error{background-color:hsl(350,80%,45%)}.layout{min-height:100vh}.layout main{margin-bottom:unset}.layout .content{min-height:calc(100vh - 6rem)}.layout .footer{height:48px;margin-top:2rem;display:flex;justify-content:center}.layout .footer .spacer{padding:0 .25rem}.layout .footer--dark{color:#fff}.layout .footer--dark .anchor{color:#fff;text-decoration:underline;font-size:.875rem}.layout .footer .anchor{color:#6a7585;text-decoration:underline;font-size:.875rem}.fixed-height-layout{width:100vw;margin:0;position:relative}.fixed-height-layout .footer{height:4em;display:flex;justify-content:center;align-items:center;width:100%;font-size:.875em}.fixed-height-layout .footer .anchor{font-size:.875em}@media only screen and (max-width: 1199px){.fixed-height-layout{font-size:11px}.fixed-height-layout .content{padding:3em 0}}@media only screen and (min-width: 1200px){.fixed-height-layout{font-size:13px;height:100vh}.fixed-height-layout .content{padding:6em 0}.fixed-height-layout .footer{height:6em}}.anchor{color:#6a7585;text-decoration:underline;font-size:.875rem}.m-aa{margin:auto}.m-a0{margin:0}.m-a1{margin:.25rem}.m-a2{margin:.5rem}.m-a3{margin:1rem}.m-a4{margin:1.5rem}.m-a5{margin:2rem}.m-a6{margin:3rem}.m-a7{margin:6rem}.m-ta{margin-top:auto}.m-t0{margin-top:0}.m-t1{margin-top:.25rem}.m-t2{margin-top:.5rem}.m-t3{margin-top:1rem}.m-t4{margin-top:1.5rem}.m-t5{margin-top:2rem}.m-t6{margin-top:3rem}.m-t7{margin-top:6rem}.m-ra{margin-right:auto}.m-r0{margin-right:0}.m-r1{margin-right:.25rem}.m-r2{margin-right:.5rem}.m-r3{margin-right:1rem}.m-r4{margin-right:1.5rem}.m-r5{margin-right:2rem}.m-r6{margin-right:3rem}.m-r7{margin-right:6rem}.m-ba{margin-bottom:auto}.m-b0{margin-bottom:0}.m-b1{margin-bottom:.25rem}.m-b2{margin-bottom:.5rem}.m-b3{margin-bottom:1rem}.m-b4{margin-bottom:1.5rem}.m-b5{margin-bottom:2rem}.m-b6{margin-bottom:3rem}.m-b7{margin-bottom:6rem}.m-la{margin-left:auto}.m-l0{margin-left:0}.m-l1{margin-left:.25rem}.m-l2{margin-left:.5rem}.m-l3{margin-left:1rem}.m-l4{margin-left:1.5rem}.m-l5{margin-left:2rem}.m-l6{margin-left:3rem}.m-l7{margin-left:6rem}.m-va{margin-top:auto;margin-bottom:auto}.m-v0{margin-top:0;margin-bottom:0}.m-v1{margin-top:.25rem;margin-bottom:.25rem}.m-v2{margin-top:.5rem;margin-bottom:.5rem}.m-v3{margin-top:1rem;margin-bottom:1rem}.m-v4{margin-top:1.5rem;margin-bottom:1.5rem}.m-v5{margin-top:2rem;margin-bottom:2rem}.m-v6{margin-top:3rem;margin-bottom:3rem}.m-v7{margin-top:6rem;margin-bottom:6rem}.m-ha{margin-left:auto;margin-right:auto}.m-h0{margin-left:0;margin-right:0}.m-h1{margin-left:.25rem;margin-right:.25rem}.m-h2{margin-left:.5rem;margin-right:.5rem}.m-h3{margin-left:1rem;margin-right:1rem}.m-h4{margin-left:1.5rem;margin-right:1.5rem}.m-h5{margin-left:2rem;margin-right:2rem}.m-h6{margin-left:3rem;margin-right:3rem}.m-h7{margin-left:6rem;margin-right:6rem}.p-a0{padding:0}.p-a1{padding:.25rem}.p-a2{padding:.5rem}.p-a3{padding:1rem}.p-a4{padding:1.5rem}.p-a5{padding:2rem}.p-a6{padding:3rem}.p-a7{padding:6rem}.p-t0{padding-top:0}.p-t1{padding-top:.25rem}.p-t2{padding-top:.5rem}.p-t3{padding-top:1rem}.p-t4{padding-top:1.5rem}.p-t5{padding-top:2rem}.p-t6{padding-top:3rem}.p-t7{padding-top:6rem}.p-r0{padding-right:0}.p-r1{padding-right:.25rem}.p-r2{padding-right:.5rem}.p-r3{padding-right:1rem}.p-r4{padding-right:1.5rem}.p-r5{padding-right:2rem}.p-r6{padding-right:3rem}.p-r7{padding-right:6rem}.p-b0{padding-bottom:0}.p-b1{padding-bottom:.25rem}.p-b2{padding-bottom:.5rem}.p-b3{padding-bottom:1rem}.p-b4{padding-bottom:1.5rem}.p-b5{padding-bottom:2rem}.p-b6{padding-bottom:3rem}.p-b7{padding-bottom:6rem}.p-l0{padding-left:0}.p-l1{padding-left:.25rem}.p-l2{padding-left:.5rem}.p-l3{padding-left:1rem}.p-l4{padding-left:1.5rem}.p-l5{padding-left:2rem}.p-l6{padding-left:3rem}.p-l7{padding-left:6rem}.p-v0{padding-top:0;padding-bottom:0}.p-v1{padding-top:.25rem;padding-bottom:.25rem}.p-v2{padding-top:.5rem;padding-bottom:.5rem}.p-v3{padding-top:1rem;padding-bottom:1rem}.p-v4{padding-top:1.5rem;padding-bottom:1.5rem}.p-v5{padding-top:2rem;padding-bottom:2rem}.p-v6{padding-top:3rem;padding-bottom:3rem}.p-v7{padding-top:6rem;padding-bottom:6rem}.p-h0{padding-left:0;padding-right:0}.p-h1{padding-left:.25rem;padding-right:.25rem}.p-h2{padding-left:.5rem;padding-right:.5rem}.p-h3{padding-left:1rem;padding-right:1rem}.p-h4{padding-left:1.5rem;padding-right:1.5rem}.p-h5{padding-left:2rem;padding-right:2rem}.p-h6{padding-left:3rem;padding-right:3rem}.p-h7{padding-left:6rem;padding-right:6rem}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:1rem}.gap-4{gap:1.5rem}.gap-5{gap:2rem}.gap-6{gap:3rem}.gap-7{gap:6rem}.float-right{float:right}.float-none{float:none}.fw-2{font-weight:300}.fw-4{font-weight:400}.fw-6{font-weight:600}.fs-1{font-size:2.75rem}.fs-2{font-size:1.875rem}.fs-3{font-size:1.375rem}.fs-4{font-size:1rem}.fs-5{font-size:.875rem}.fs-6{font-size:.75rem}.fs-7{font-size:.625rem}.i{font-style:italic}.ff-b{font-family:"Open Sans",sans-serif}.ff-h{font-family:"Rubik",sans-serif}.h1{color:#20252c;font-family:"Rubik",sans-serif;font-size:2.75rem;font-weight:400;letter-spacing:-0.035em;line-height:1.2;margin:0}.h2{color:#20252c;font-family:"Rubik",sans-serif;font-size:1.875rem;font-weight:400;line-height:1.2;margin:0}.h3{color:#20252c;font-size:1.375rem;font-weight:600;line-height:1.2;margin:0}.h4{font-size:.875rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase}.h5{font-size:.75rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase}.h6{font-size:.625rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase}.case-upper{text-transform:uppercase}.strikethrough{text-decoration:line-through}.break-word{word-wrap:break-word}.wrap-anywhere{overflow-wrap:anywhere}.display-inline{display:inline}.display-block{display:block}.display-inline-block{display:inline-block}.hidden{visibility:hidden}.hide{display:none}.hide-visually{border:0;clip:rect(1px, 1px, 1px, 1px);clip-path:inset(100%);height:1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.center-text{text-align:center}.text-center{text-align:center}.text-right{text-align:right}.flex{display:flex}.flex-column{display:flex;flex-direction:column}.flex-row{display:flex;flex-direction:row}.align-center{align-items:center}.align-baseline{align-items:baseline}.align-start{align-items:flex-start}.align-end{align-items:flex-end}.align-self-center{align-self:center}.align-self-end{align-self:flex-end}.align-self-stretch{align-self:stretch}.justify-around{justify-content:space-around}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-end{justify-content:flex-end}.flex-column-center{align-items:center;display:flex;flex-direction:column}.flex-wrap{flex-wrap:wrap}.flex-child{flex:1}.flex-child--2{flex:2}.flex-child--3{flex:3}.flex-child--4{flex:4}.flex-basis-50{flex-basis:50%}.flex-basis-66{flex-basis:66.6%}.flex-grow-0{flex-grow:0}.flex-grow-1{flex-grow:1}.flex-shrink-0{flex-shrink:0}.flex-none{flex:none}.width-8{width:8%}.width-12{width:12%}.width-16{width:16%}.width-25{width:25%}.width-33{width:33.33%}.width-40{width:40%}.width-50{width:50%}.width-60{width:60%}.width-70{width:70%}.width-100{width:100%}.max-width-max-content{max-width:max-content}.max-width-100{max-width:100%}.max-width-90{max-width:90%}.max-width-66{max-width:66.6%}.max-width-50{max-width:50%}.max-width-55{max-width:55%}.max-width{max-width:100%}.max-width-3point5in{max-width:3.5in}.min-width-100{min-width:100%}span.underline,a.underline{text-decoration:underline}.number-text{font-family:"Open Sans",sans-serif;font-size:.875rem}.number-text-emphasized{font-family:"Open Sans",sans-serif;font-size:1.875rem;font-weight:600}.extra-small-text{font-size:.75rem}.small-text{font-size:.875rem}.medium-text{font-size:1.375rem}.font-weight-600{font-weight:600}.no-list-style{list-style:none}.relative{position:relative}.nowrap{white-space:nowrap}.b-t{border-top:1px solid #d1d7e0}.b-r{border-right:1px solid #d1d7e0}.b-b{border-bottom:1px solid #d1d7e0}.b-l{border-left:1px solid #d1d7e0}.b-t0{border-top:0}.b-r0{border-right:0}.b-b0{border-bottom:0}.b-l0{border-left:0}.b-w4{border-width:4px}.b-w3{border-width:3px}.drop-shadow{box-shadow:0 1px .25rem rgba(32,37,44,.1)}.mid-box-shadow{box-shadow:0 2px 1rem rgba(32,37,44,.1)}@media screen and (max-width: 30rem){.flex{flex-wrap:wrap}}.cursor-pointer{cursor:pointer}.cursor-grab{cursor:grab}.vertical-align-middle{vertical-align:middle}.transition-opacity-base-ease-out{transition:opacity 200ms ease-out}.text-gray-800-important{color:#444d59 !important}.text-gray-900-important{color:#20252c !important}.font-weight-bold-important{font-weight:600 !important}.font-weight-light-important{font-weight:300 !important}.fs-5-important{font-size:.875rem !important}.fs-6-important{font-size:.75rem !important}.display-block-important{display:block !important}.top-05-important{top:.125rem !important}.m-b0-important{margin-bottom:0 !important}.m-t0-important{margin-top:0 !important}.m-b6-important{margin-bottom:3rem !important}.m-b4-important{margin-bottom:1.5rem !important}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}@media print{html{font-size:8.5pt}body{background-color:#fff}.container{max-width:none}.header{display:none}.card,.well,.file-uploader{break-inside:avoid}.container.container--admin main{padding:.5in .75in}.container.container--admin main::after{content:none}.container.container--admin .page-header{border:none;box-shadow:none;margin-bottom:2rem;padding:0}.container.container--admin .section-title{margin-bottom:1rem}.container.container--admin .dlp-hero{margin-bottom:1.5rem}.container.container--admin .dlp-hero .card{min-height:14.125rem}.container.container--admin .card.dlp .card__body{padding:0}.container.container--admin .dlp-annulus{transform:scale(0.85)}.container.container--admin .dlp-recommendations .card:nth-child(2){margin-bottom:0}.container.container--admin .dlp-recommendations .card:nth-child(n+3){display:none}.display-print-none{display:none}}.cds-button{border:1px solid #0080a7;background-color:#0080a7;border-radius:3px;color:#fff;font-family:"Open Sans",sans-serif;font-weight:600;padding:1rem 1.5rem;transition:all 200ms ease-in-out;cursor:pointer;font-size:inherit;white-space:nowrap;text-align:center}.cds-button:focus,.cds-button:hover{background-color:#006685;border-color:#006685}.cds-button:focus{outline:none}.cds-button:disabled{opacity:.5;pointer-events:none}.cds-button--loading{animation:buttonLoading .8s ease-in-out infinite alternate;pointer-events:none}@keyframes buttonLoading{from{opacity:1}to{opacity:.5}}.cds-button .icon{display:inline-block;height:1.3333333333em;width:1.3333333333em;line-height:1;margin-right:.25rem}.cds-button--block{display:block;white-space:normal;width:100%}.cds-button--lg{padding-left:2rem;padding-right:2rem}.cds-button--sm{padding:.5rem 1rem}.cds-button--xs{padding:.25rem .5rem;font-size:.875rem}.cds-button--danger{background-color:hsl(350,80%,45%);border-color:hsl(350,80%,45%)}.cds-button--danger:focus,.cds-button--danger:hover{background-color:hsl(350,72%,40.5%);border-color:hsl(350,72%,40.5%)}.cds-button--warning{background-color:hsl(30,100%,36.5%);border-color:hsl(30,100%,36.5%)}.cds-button--warning:focus,.cds-button--warning:hover{background-color:hsl(30,90%,32.85%);border-color:hsl(30,90%,32.85%)}.cds-button--neutral{background-color:#6a7585;border-color:#6a7585}.cds-button--neutral:focus,.cds-button--neutral:hover{background-color:#444d59;border-color:#444d59}.cds-button--outline{background-color:#fff;color:#0080a7}.cds-button--outline:focus,.cds-button--outline:hover,.cds-button--outline.cds-button--loading{background-color:rgb(239.565,247.4519461078,249.855);border-color:#006685}.cds-button--outline.cds-button--danger{color:hsl(350,80%,45%)}.cds-button--outline.cds-button--danger:focus,.cds-button--outline.cds-button--danger:hover,.cds-button--outline.cds-button--danger.cds-button--loading{background-color:hsl(350,40%,96.7%);border-color:hsl(350,72%,40.5%)}.cds-button--outline.cds-button--warning{color:hsl(30,100%,36.5%)}.cds-button--outline.cds-button--warning:focus,.cds-button--outline.cds-button--warning:hover,.cds-button--outline.cds-button--warning.cds-button--loading{background-color:hsl(30,50%,96.19%);border-color:hsl(30,90%,32.85%)}.cds-button--outline.cds-button--neutral{color:#444d59}.cds-button--outline.cds-button--neutral:focus,.cds-button--outline.cds-button--neutral:hover,.cds-button--outline.cds-button--neutral.cds-button--loading{background-color:#ebeef3;border-color:#20252c}.cds-button--outline.cds-button svg{fill:currentColor}.cds-button--text{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);color:#0080a7}.cds-button--text:focus,.cds-button--text:hover,.cds-button--text.cds-button--loading{background-color:rgb(239.565,247.4519461078,249.855);border-color:rgb(239.565,247.4519461078,249.855);color:#006685}.cds-button--text.cds-button--danger{color:hsl(350,80%,45%)}.cds-button--text.cds-button--danger:focus,.cds-button--text.cds-button--danger:hover,.cds-button--text.cds-button--danger.cds-button--loading{background-color:hsl(350,40%,96.7%);border-color:hsl(350,40%,96.7%);color:hsl(350,72%,40.5%)}.cds-button--text.cds-button--warning{color:hsl(30,100%,36.5%)}.cds-button--text.cds-button--warning:focus,.cds-button--text.cds-button--warning:hover,.cds-button--text.cds-button--warning.cds-button--loading{background-color:hsl(30,50%,96.19%);border-color:hsl(30,50%,96.19%);color:hsl(30,90%,32.85%)}.cds-button--text.cds-button--neutral{color:#444d59}.cds-button--text.cds-button--neutral:focus,.cds-button--text.cds-button--neutral:hover,.cds-button--text.cds-button--neutral.cds-button--loading{background-color:#ebeef3;border-color:#ebeef3;color:#20252c}.cds-icon-button{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);padding:.25rem;border-radius:50%;line-height:1;color:#6a7585;height:1.3333333333em;width:1.3333333333em}.cds-icon-button:focus,.cds-icon-button:hover{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);color:#444d59}.cds-icon-button .icon{margin:0}.cds-icon-button--primary{color:#0080a7}.cds-icon-button--primary:focus,.cds-icon-button--primary:hover{color:#004f68}.cds-icon-button--danger-600{color:hsl(350,80%,45%)}.cds-icon-button--danger-600:focus,.cds-icon-button--danger-600:hover{color:hsl(350,72%,40.5%)}.cds-icon-button--warning-600{color:hsl(30,100%,36.5%)}.cds-icon-button--warning-600:focus,.cds-icon-button--warning-600:hover{color:hsl(30,90%,32.85%)}.cds-modal{background-color:rgba(32,37,44,.9);z-index:10;display:flex;align-items:center;justify-content:center;position:fixed;top:0;right:0;bottom:0;left:0}.cds-modal__content{border-radius:12px;background-color:#fff;box-shadow:0 4px 2.5rem rgba(32,37,44,.1);max-height:calc(100vh - 6rem);overflow-y:auto;width:40rem}.cds-modal__header{padding:1rem 1.5rem;border-bottom:1px solid #d1d7e0;display:flex;justify-content:space-between}.cds-modal__title{font-size:1.875rem;font-weight:600}.cds-modal__body{padding:1.5rem}.cds-modal__footer{padding:1rem 1.5rem;border-top:1px solid #d1d7e0;display:flex;justify-content:flex-end}.cds-modal__footer .cds-button{margin-left:1rem}.cds-modal--sm .cds-modal__content{width:20rem}.cds-modal--lg .cds-modal__content{width:80rem}.cds-modal--padding-min .cds-modal__header{padding:.5rem 1rem}.cds-modal--padding-min .cds-modal__body{padding:0}.cds-modal--padding-min .cds-modal__footer{padding:.5rem 1rem}.cds-modal--padding-max .cds-modal__header{padding:1.5rem 2rem}.cds-modal--padding-max .cds-modal__body{padding:2rem}.cds-modal--padding-max .cds-modal__footer{padding:1.5rem 2rem}.cds-table{background-color:#fff;border-collapse:separate;border-spacing:0;width:100%}.cds-table__row{transition:background-color 200ms}.cds-table__row:hover{background-color:rgb(239.565,247.4519461078,249.855)}.cds-table__row:hover .cds-table__cell-bottom,.cds-table__row:hover .cds-table__cell-top{color:#20252c}.cds-table__header-cell{background-color:#f9fafc;padding:.25rem 0 .25rem .5rem;vertical-align:middle}.cds-table__header-cell:nth-last-child(n+2){border-right:1px solid #ebeef3}.cds-table__footer-cell{background-color:#f9fafc;border-top:1px solid #ebeef3;font-size:.875rem;font-weight:600;padding:.5rem}.cds-table__footer-cell--center{text-align:center}.cds-table__footer-cell--right{text-align:right}.cds-table__footer-cell--paginator{text-align:right}.cds-table__footer-cell--paginator>div{display:inline-block;border-top:0}.cds-table__footer-cell:first-child{border-bottom-left-radius:6px}.cds-table__footer-cell:last-child{border-bottom-right-radius:6px}.cds-table__tag{padding:.125rem .25rem;border:1px solid #6a7585;background-color:#f9fafc;border-radius:3px;font-weight:600;font-size:.875rem;white-space:nowrap;color:#6a7585}.cds-table__tag-under{margin-top:-1.5em;padding-bottom:1.5em}.cds-table__cell{border-top:1px solid #ebeef3;font-size:.875rem;position:relative}.cds-table__icon{text-align:center}.cds-table__icon svg{font-size:1.2rem}.cds-table__icon.flag__submissions-alert,.cds-table__icon.alert__submissions-alert{cursor:default}.cds-table__icon.flag__submissions-alert svg,.cds-table__icon.alert__submissions-alert svg{color:hsl(350,80%,45%)}.cds-table__icon .dropdown{top:inherit}.cds-table__icon .dropdown__container{padding:.5rem 0}.cds-table__icon .dropdown__container::before{content:none}.cds-table__icon .icon-incomplete-controls{background-image:url("https://cdn.corvusinsurance.com/images/info-290413627b2b613916d482295d327dfc.svg")}.cds-table__icon .icon-completed-controls{padding:2px 2px 1px 1px}.cds-table__cell-link{cursor:pointer}.cds-table__cell-link::after{content:"";position:absolute;inset:0}.cds-table__header-container{display:flex;align-items:center}.cds-table__header-content{flex:1}.cds-table__header-top{font-size:.75rem;font-weight:600;letter-spacing:.05em;line-height:1.2;margin:0;text-transform:uppercase}.cds-table__cell-top{color:#444d59}.cds-table__header-bottom,.cds-table__cell-bottom{font-size:.75rem;font-weight:400;color:#6a7585}.cds-table__cell-bottom.timer-alert{color:hsl(22,100%,34%);font-weight:bold;font-style:italic}.cds-table__insight-label{text-wrap-mode:nowrap;font-size:.75rem;font-weight:400;color:#000}.cds-table__insight-label .tool-tip-a11y-trigger span:first-child{display:unset;padding:unset}.cds-table__insight-label .tool-tip-a11y-trigger .tool-tip-a11y--top{width:auto;position:absolute;top:100%;right:50%;bottom:auto;left:auto;transform:translateX(1rem) translateY(0.5em)}.cds-table__insight-label .tool-tip-a11y-trigger .tool-tip-a11y--top::before,.cds-table__insight-label .tool-tip-a11y-trigger .tool-tip-a11y--top::after{position:absolute;top:auto;right:1rem;bottom:100%;left:auto;border-style:solid;height:0;width:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) hsl(209,82%,45%);border-width:0 .375rem .375rem;transform:translate(50%, 0)}.cds-table__insight-label .tool-tip-a11y-trigger .tool-tip-a11y--top .icon-padding{padding:2px 0px 1px 1px}.cds-table__sort{display:flex;flex-direction:column}.cds-table__sort-button{background-color:rgba(0,0,0,0);border:0;color:#a0a8b4;cursor:pointer;line-height:1;padding:0 .25rem;transition:color 200ms}.cds-table__sort-button .icon{height:1rem;width:1rem;margin:0}.cds-table__sort-button:hover{color:#20252c}.cds-table__interact-button{background-color:rgba(0,0,0,0);border:0;cursor:pointer}.cds-table__sort-active{color:#20252c;padding:0 .25rem}.cds-table__sort-active .icon{height:1rem;width:1rem;display:block}.cds-pill,.cds-pill-hover{background:#fff;border:1px solid #20252c}.cds-pill span,.cds-pill-hover span{font-family:"Open Sans",sans-serif;line-height:1;color:#20252c}.cds-pill .selected,.cds-pill-hover .selected{font-weight:600;color:rgba(0,0,0,0)}.cds-pill i,.cds-pill-hover i{display:none}.cds-pill-hover:hover{background:hsl(245,100%,83%);border:1px solid hsl(245,100%,83%)}.cds-pill-selected{background:hsl(245,80%,60%);border:1px solid hsl(245,80%,60%)}.cds-pill-selected span{font-family:"Open Sans",sans-serif;line-height:1;color:#fff !important}.cds-pill-selected .selected{font-weight:600}.cds-pill-selected i{display:none}.cds-demo{background-color:#fff;display:block;padding:2rem 3rem}.cds-demo section{margin-bottom:3rem}.cds-demo__buttons .cds-button{margin-right:1rem}.cds-demo__group{margin-bottom:1rem}.action-card-banner{background-size:auto 10rem;box-shadow:0 4px 2.5rem rgba(32,37,44,.1);border-radius:12px;color:#fff}.action-card-banner__title{font-family:"Rubik",sans-serif;font-weight:500;font-size:1.875rem;line-height:1.2;letter-spacing:-0.035em;margin-bottom:1.5rem}.smart-controls-banner{background-size:auto 10rem;box-shadow:0 4px 2.5rem rgba(32,37,44,.1);border-radius:6px;background-color:hsl(171,100%,22%);padding:1.5rem;margin-bottom:3rem}.smart-controls-banner:hover{background-color:hsl(171,100%,17%)}.smart-controls-banner__title{flex:1;margin-bottom:.5rem;color:#fff;font-weight:600;font-size:1rem;line-height:1}.smart-controls-banner__text{color:#fff;font-size:.875rem;line-height:1.5}.smart-controls-banner__text_xs{font-size:.75rem}.smart-controls-banner a.smart-controls-banner__trackable-link,.smart-controls-banner div.smart-controls-banner__trackable-link{display:flex;align-items:center;color:#fff;font-family:"Open Sans",sans-serif;font-size:1rem;font-weight:600;line-height:1;gap:.5rem}.smart-controls-banner a.smart-controls-banner__trackable-link svg,.smart-controls-banner div.smart-controls-banner__trackable-link svg{fill:#fff;height:1.5rem;width:1.5rem}.smart-controls-banner__link-area{display:flex;justify-content:flex-end;margin-top:1.5rem}.smart-controls-banner__contents{background-color:#fff;border-radius:3px;padding:1.5rem;font-size:1rem;font-weight:600;line-height:1.5;margin:1.5rem 0 1.5rem 0}.smart-controls-banner__eligibility-progress{background-color:#fff;border-radius:3px;padding:1.5rem;line-height:1.5;margin:1.5rem 0 1.5rem 0;width:100%}.smart-controls-banner__eligibility-progress__progress-bar{width:100%;height:64px;background:#fff}.smart-controls-banner__eligibility-progress__title{font-size:1rem;font-weight:600;display:flex;justify-content:space-between;padding-bottom:24px}.smart-controls-banner__eligibility-progress__progress-bar-section{padding:1.5rem;background:#ebeef3;border-radius:3px;border-color:#ebeef3;border-width:1px}.smart-controls-banner__eligibility-progress__progress-bar-section--pink-line{position:absolute;width:100%;translate:75% 0}.smart-controls-banner__eligibility-progress__progress-bar-section--percent{height:1.5rem;font-family:"Open Sans",sans-serif;font-style:normal;font-weight:600;font-size:1.375rem;display:flex;align-items:center;color:#20252c}.smart-controls-banner__eligibility-progress__progress-bar-section--border{border-color:rgb(0,204,173.4)}.smart-controls-banner__eligibility-progress__progress-bar-section--progress-bar{border-radius:3px;display:flex;height:6rem;overflow:hidden;position:relative;justify-content:center;align-items:center}.smart-controls-banner__eligibility-progress__progress-bar-section--progress-bar .policyholder-overview__progress-inside,.smart-controls-banner__eligibility-progress__progress-bar-section--progress-bar .policyholder-overview__progress-inside--rsa_card,.smart-controls-banner__eligibility-progress__progress-bar-section--progress-bar .policyholder-overview__progress-inside--rsa_card-complete,.smart-controls-banner__eligibility-progress__progress-bar-section--progress-bar .policyholder-overview__progress-inside--recommended_actions_card,.smart-controls-banner__eligibility-progress__progress-bar-section--progress-bar .policyholder-overview__progress-inside--recommended_actions_card-complete{background-color:rgb(0,204,173.4);transition-duration:300ms}.smart-controls-banner__eligibility-progress__progress-bar-section--progress-bar__card_container:not(:last-child){margin:2rem}.smart-controls-banner__eligibility-progress__progress-bar-section--text{color:#444d59;font-size:.875rem;font-weight:400;margin:0}.smart-controls-banner__eligibility-progress__progress-bar-section--text strong{font-weight:600}.smart-controls-banner__eligibility-progress__progress-inside,.smart-controls-banner__eligibility-progress__progress-inside--card-complete,.smart-controls-banner__eligibility-progress__progress-inside--card{position:absolute;top:0;bottom:0;left:0;animation:moveProgressRight 1200ms;animation-fill-mode:forwards;background-color:rgb(0,204,173.4);border-radius:3px;font-weight:600;font-size:.875rem;color:#20252c;display:flex;justify-content:left;align-items:center;opacity:0}.smart-controls-banner__eligibility-progress__progress-inside--percent{align-self:right}@keyframes moveProgressRight{from{transform:translateX(-100%);opacity:0}to{transform:translateX(0);opacity:1}}.smart-controls-banner__eligibility-progress__progress-inside--card{animation-delay:1800ms;translate:0 1rem;height:4rem;transition-property:width;transition-duration:1000ms}.smart-controls-banner__eligibility-progress__progress-inside--card-complete{background-color:rgb(0,204,173.4);animation-delay:1800ms;translate:0 1rem;height:4rem;animation-duration:400ms}.retention-reduction-banner{margin-bottom:3rem;border-radius:.375rem;box-shadow:0 2px 1rem rgba(32,37,44,.1);overflow:clip;align-items:start}.alert-action-card-banner{height:100%;display:flex;flex-direction:column;border-radius:.375rem;background-color:hsl(245,80%,60%);filter:drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));margin-bottom:1rem}.alert-action-card-banner__hover{transition:background-color 200ms ease-in-out}.alert-action-card-banner__hover:hover{background-color:hsl(245,55%,50%)}.completion-modal__body{background-color:#fff;border-radius:6px;border-color:hsl(171,100%,45%);border-width:4px;width:712px;padding:0}.completion-modal__body .modal__main{padding:0;margin:1.5rem}.completion-modal__body .modal__footer--small{padding:0}.completion-modal__declaration-renewal-body{background-color:#fff;border-radius:6px;border-color:#fff;border-width:4px;width:712px;padding:0}.completion-modal__completion-message{display:flex;padding:3rem;flex-direction:column;justify-content:center;align-items:center;gap:1.5rem;align-self:stretch}.completion-modal__title{color:#20252c;text-align:center;font-family:"Rubik",sans-serif;font-size:1.875rem;font-weight:400;line-height:132%;letter-spacing:-0.15px}.completion-modal__icon{content:url("https://cdn.corvusinsurance.com/images/Vector-e7082099e0c612eb6e1bdb13ea44d7e8.svg");width:66.667px;height:66.667px;flex-shrink:0}.completion-modal__text{color:#20252c;text-align:center;font-family:"Open Sans",sans-serif;font-size:1rem;font-style:normal;font-weight:400;line-height:1.5;letter-spacing:.08px}.completion-modal__declarations-modal-input{width:67%}.ph-dashboard__card{display:grid;grid-auto-flow:column;grid-auto-columns:1fr;gap:2rem;margin:2rem 0;min-width:min-content;margin-bottom:2rem}.dlp-scan{background-color:#fff;border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative;margin-bottom:1.5rem}.dlp-scan__page-header{font-family:"Rubik",sans-serif;font-weight:400;font-size:2.75rem;color:#20252c;line-height:1.2;letter-spacing:-0.035em;display:flex;align-items:center;margin:2rem 0}.dlp-scan__page-subheader{font-family:"Open Sans",sans-serif;font-weight:300;font-size:1rem;letter-spacing:.005em;color:#444d59;align-items:center;margin:2rem 0}.dlp-scan__page-subheader .link{font-weight:inherit}.dlp-scan__overview{display:flex;align-items:center;padding:0 3rem 2rem 3rem}.dlp-scan__overview-new{padding:0 6rem 2rem 6rem;margin-right:2rem}.dlp-scan__progress{background-color:#ebeef3;border-radius:12px;height:.5rem;position:relative;overflow:hidden}.dlp-scan__progress--bar{background-color:#20252c;height:.5rem;border-radius:12px;animation:moveRight 1200ms}.dlp-scan__progress--high .dlp-scan__progress{background-color:rgb(0,204,173.4)}.dlp-scan__progress--mid .dlp-scan__progress{background-color:hsl(45,100%,62%)}.dlp-scan__progress--low .dlp-scan__progress{background-color:hsl(350,72%,50.5%)}.dlp-scan__annulus{display:flex;align-items:center;justify-content:center;padding-top:1.5rem;padding-bottom:1.5rem}.dlp-scan__annulus--small_text{align-items:center;color:#6a7585;font-weight:400;font-size:1rem;padding:0 0 2rem .5rem}.dlp-scan__annulus--header{display:flex;align-items:center;justify-content:center;padding-top:2.5rem}.dlp-scan__annulus-new{align-items:center;display:flex;padding:2rem 0}.dlp-scan__annulus-new--title_text{text-align:center;align-items:center;color:#20252c;font-weight:600;padding-top:1.5rem}.dlp-scan__annulus-new--small_text{align-items:center;color:#6a7585;font-size:.875rem;font-weight:400;text-align:center}.dlp-scan__annulus-new--centered{justify-content:center}.dlp-scan__with-graph{display:flex;justify-content:space-around;padding:1em 2em}.dlp-scan__graph-wrapper{width:75%}.dlp-scan__graph{padding-left:100px;padding-top:35px}.dlp-scan__subscores{padding:0 3rem;display:flex;flex:1;flex-wrap:wrap}.dlp-scan__domain{padding:60px 0 20px 75px;text-align:left}.dlp-scan__preview{flex:0 2 50%;display:flex;flex-direction:column;padding:1rem}.dlp-scan__preview .dlp-scan--with-score{display:flex;flex-direction:row;justify-content:space-between;align-items:center}.dlp-scan__preview-title{font-size:1rem;font-weight:400;color:#20252c}.dlp-scan__preview-score{font-size:1.875rem;font-weight:300;color:#20252c;padding-left:.25rem}.dlp-scan__overview-findings{min-width:0;padding:1.5rem}.dlp-scan__overview-criticalities{align-items:flex-start;display:flex;flex-wrap:wrap;gap:1.5rem}.dlp-scan__overview-criticalities--title{color:#20252c;font-weight:600;line-height:1;margin-bottom:1.5rem}.dlp-scan__overview-criticality{align-items:center;border-radius:3px;display:flex;flex-direction:row;flex:1 1 0;height:112px}.dlp-scan__overview-criticality-ph{min-width:max(40%,182px)}.dlp-scan__overview-criticality svg{flex:1 1 25%;min-width:40px}.dlp-scan__overview-criticality--data{padding:.5rem .5rem .5rem 0;flex:1 1 75%}.dlp-scan__overview-criticality--count{font-family:"Rubik",sans-serif;font-size:1.875rem;font-weight:500;margin-bottom:-0.5rem}.dlp-scan__overview-criticality--title{align-items:center;color:#20252c;letter-spacing:.005em}.dlp-scan__overview-criticality--critical{background-color:hsla(245,55%,50%,.1)}.dlp-scan__overview-criticality--critical .square__icon,.dlp-scan__overview-criticality--critical .check__icon{fill:hsl(245,55%,50%)}.dlp-scan__overview-criticality--high{background-color:hsla(350,80%,45%,.1)}.dlp-scan__overview-criticality--high .square__icon,.dlp-scan__overview-criticality--high .check__icon{fill:hsl(350,80%,45%)}.dlp-scan__overview-criticality--high-score-impact{background-color:hsla(350,80%,45%,.1)}.dlp-scan__overview-criticality--high-score-impact .square__icon,.dlp-scan__overview-criticality--high-score-impact .check__icon{fill:hsl(350,80%,45%)}.dlp-scan__overview-criticality--high_score_impact{background-color:hsla(350,80%,45%,.1)}.dlp-scan__overview-criticality--high_score_impact .square__icon,.dlp-scan__overview-criticality--high_score_impact .check__icon{fill:hsl(350,80%,45%)}.dlp-scan__overview-criticality--medium{background-color:hsla(35,100%,50%,.1)}.dlp-scan__overview-criticality--medium .square__icon,.dlp-scan__overview-criticality--medium .check__icon{fill:hsl(35,100%,50%)}.dlp-scan__overview-criticality--medium-score-impact{background-color:hsla(35,100%,50%,.1)}.dlp-scan__overview-criticality--medium-score-impact .square__icon,.dlp-scan__overview-criticality--medium-score-impact .check__icon{fill:hsl(35,100%,50%)}.dlp-scan__overview-criticality--medium_score_impact{background-color:hsla(35,100%,50%,.1)}.dlp-scan__overview-criticality--medium_score_impact .square__icon,.dlp-scan__overview-criticality--medium_score_impact .check__icon{fill:hsl(35,100%,50%)}.dlp-scan__overview-criticality--low{background-color:hsla(45,100%,62%,.1)}.dlp-scan__overview-criticality--low .square__icon,.dlp-scan__overview-criticality--low .check__icon{fill:hsl(45,100%,62%)}.dlp-scan__overview-criticality--no-action-required{background-color:rgba(0,204,173.4,.1)}.dlp-scan__overview-criticality--no-action-required .square__icon,.dlp-scan__overview-criticality--no-action-required .check__icon{fill:rgb(0,204,173.4)}.dlp-scan__overview-criticality--critical-for-renewal{background-color:hsla(350,80%,45%,.1)}.dlp-scan__overview-criticality--critical-for-renewal .square__icon,.dlp-scan__overview-criticality--critical-for-renewal .check__icon{fill:hsl(350,80%,45%)}.dlp-scan__overview-criticality--may-impact-renewal{background-color:hsla(35,100%,50%,.1)}.dlp-scan__overview-criticality--may-impact-renewal .square__icon,.dlp-scan__overview-criticality--may-impact-renewal .check__icon{fill:hsl(35,100%,50%)}.dlp-scan__overview-criticality--best-practice{background-color:hsla(45,100%,62%,.1)}.dlp-scan__overview-criticality--best-practice .square__icon,.dlp-scan__overview-criticality--best-practice .check__icon{fill:hsl(45,100%,62%)}.dlp-scan__overview-criticality--best_practice{background-color:hsla(45,100%,62%,.1)}.dlp-scan__overview-criticality--best_practice .square__icon,.dlp-scan__overview-criticality--best_practice .check__icon{fill:hsl(45,100%,62%)}.dlp-scan__no-action-required-icon{background-image:url("https://cdn.corvusinsurance.com/images/check-success-f3c0a8d0120b6d743ad996cff19cd5d1.svg");height:2.25rem;width:2.25rem;background-repeat:no-repeat;filter:invert(68%) sepia(82%) saturate(2628%) hue-rotate(124deg) brightness(91%) contrast(102%)}.dlp-scan__no-action-required-icon--overview{margin-left:-2rem}.dlp-scan__action-buttons{display:flex;align-items:center;padding-bottom:3rem}.dlp-scan__action-button{padding:0 1rem}.dlp-scan__action-button:first-child{padding:0 1rem 0 0}.dlp-scan__box-shadow{background-color:#ebeef3;border-radius:3px;box-shadow:inset 0 1px .25rem rgba(32,37,44,.1);height:3.5rem;display:flex;align-items:center;padding-left:1rem}.dlp-scan__box-shadow--text{color:rgb(204,74.8,0);font-weight:600;font-size:.875rem}.dlp-scan__box-shadow--link{font-weight:600;font-size:.875rem;text-decoration:underline}.dlp-scan--high .dlp-scan__score{color:rgb(0,204,173.4)}.dlp-scan--high .dlp-scan__section-overview::before,.dlp-scan--high .dlp-scan__subsection::before{border-left-color:rgb(0,204,173.4)}.dlp-scan--high .dlp-scan__subsection::after{background-image:radial-gradient(circle closest-side, #fff 25%, hsl(171, 100%, 40%) 28%, hsl(171, 100%, 40%) 72%, #fff 75%)}.dlp-scan--mid .dlp-scan__score{color:hsl(45,100%,62%)}.dlp-scan--mid .dlp-scan__section-overview::before,.dlp-scan--mid .dlp-scan__subsection::before{border-left-color:hsl(45,100%,62%)}.dlp-scan--mid .dlp-scan__subsection::after{background-image:radial-gradient(circle closest-side, #fff 25%, hsl(45, 100%, 62%) 28%, hsl(45, 100%, 62%) 72%, #fff 75%)}.dlp-scan--low .dlp-scan__score{color:hsl(350,72%,50.5%)}.dlp-scan--low .dlp-scan__section-overview::before,.dlp-scan--low .dlp-scan__subsection::before{border-left-color:hsl(350,72%,50.5%)}.dlp-scan--low .dlp-scan__subsection::after{background-image:radial-gradient(circle closest-side, #fff 25%, hsl(350, 72%, 50.5%) 28%, hsl(350, 72%, 50.5%) 72%, #fff 75%)}.dlp-scan--missing .dlp-scan__score{color:#ebeef3}.dlp-scan__header{display:flex;align-items:initial;cursor:pointer;border-radius:12px;transition:background-color 200ms}.dlp-scan__header:hover .dlp-scan__icon{color:#20252c}:hover>.dlp-scan__header{color:#20252c;background-color:#ebeef3;transition:background-color 200ms}.dlp-scan__header-title{display:flex;padding:2rem 3rem;flex-direction:column;justify-content:center;align-items:flex-start;gap:.5rem;flex:1 0 0}.dlp-scan__criticality-title{font-family:"Open Sans",sans-serif;font-size:.875rem;font-weight:600}.dlp-scan__score{border-top-left-radius:12px;width:12.5rem;font-family:"Rubik",sans-serif;font-size:1.875rem;font-weight:300;line-height:1;padding:1.5rem;text-align:center;transition:color 200ms,background-color 200ms}:hover>.dlp-scan__score{color:#20252c;background-color:#ebeef3}.dlp-scan__title{flex:1;font-size:1.125rem;transition:background-color 200ms}.dlp-scan__icon{align-items:center;border-top-right-radius:12px;color:#6a7585;display:flex;font-size:1.875rem;justify-content:center;line-height:0;padding:1.5rem;text-align:center;transition:color 200ms,background-color 200ms;width:8rem}.dlp-scan__icon .icon{transition:transform 200ms}.dlp-scan__section-overview{background-color:#ebeef3;padding:1.5rem 3rem;position:relative}.dlp-scan__section-overview--critical::before{border-left-color:hsl(245,55%,50%)}.dlp-scan__section-overview--high::before{border-left-color:hsl(350,80%,45%)}.dlp-scan__section-overview--high-score-impact::before{border-left-color:hsl(350,80%,45%)}.dlp-scan__section-overview--high_score_impact::before{border-left-color:hsl(350,80%,45%)}.dlp-scan__section-overview--medium::before{border-left-color:hsl(35,100%,50%)}.dlp-scan__section-overview--medium-score-impact::before{border-left-color:hsl(35,100%,50%)}.dlp-scan__section-overview--medium_score_impact::before{border-left-color:hsl(35,100%,50%)}.dlp-scan__section-overview--low::before{border-left-color:hsl(45,100%,62%)}.dlp-scan__section-overview--no-action-required::before{border-left-color:rgb(0,204,173.4)}.dlp-scan__section-overview--critical-for-renewal::before{border-left-color:hsl(350,80%,45%)}.dlp-scan__section-overview--may-impact-renewal::before{border-left-color:hsl(35,100%,50%)}.dlp-scan__section-overview--best-practice::before{border-left-color:hsl(45,100%,62%)}.dlp-scan__section-overview--best_practice::before{border-left-color:hsl(45,100%,62%)}.dlp-scan__section-overview--no-action-required::before{content:none}.dlp-scan__subsection{padding:2rem 3rem}.dlp-scan__subsection::after{border-radius:50%;content:"";position:absolute;top:1.5rem;left:-6.25rem;height:2rem;width:2rem;transform:translateX(-50%)}.dlp-scan__subsection:last-child::before{bottom:auto;height:1.5rem}.dlp-scan__subsection:last-child .dlp-scan__description:last-child{border:0}.dlp-scan__subtitle{font-size:1.375rem;font-weight:600;margin-bottom:1.5rem}.dlp-scan__subsubtitle{font-weight:600;margin-bottom:.5rem}.dlp-scan__description ul{padding:.25rem 0 0 1.5rem}.dlp-scan__description:last-child{padding-bottom:1.5rem;border-bottom:1px solid #d1d7e0}.dlp-scan__description:not(:last-child){margin-bottom:1.5rem}.dlp-scan__uw-insights{margin-left:-1.5rem;margin-right:-1.5rem;margin-bottom:2rem;background-color:hsl(210,42%,87.04%);border-radius:1.5px;box-shadow:none}.dlp-scan__hr{margin-left:-1.5rem;margin-right:-1.5rem}.dlp-scan__findings{margin-bottom:1.5rem}.dlp-scan__findings .finding-detail-table>section.page-section{margin-bottom:0}.dlp-scan__findings .finding-detail-table>section.page-section .section-title{margin-bottom:0}.dlp-scan__findings .finding-detail-table>section.page-section>.table-list{margin-top:1rem}.dlp-scan__findings .finding-detail-table>section.page-section table{margin-top:1rem;width:100%;box-shadow:none;border:1px solid #d1d7e0;border-radius:0}.dlp-scan__findings .finding-detail-table>section.page-section table>thead>tr>th{font-size:.75rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase;line-height:1rem;padding:1rem .5rem 1rem 0}.dlp-scan__findings .finding-detail-table>section.page-section table>thead>tr>th:first-of-type{padding:1rem .5rem 1rem 1rem}.dlp-scan__findings .finding-detail-table>section.page-section table>thead>tr>th:last-of-type{padding:1rem 1rem 1rem 0}.dlp-scan__findings .finding-detail-table>section.page-section table>tbody>tr>td{padding:.5rem .5rem .5rem 0}.dlp-scan__findings .finding-detail-table>section.page-section table>tbody>tr>td:first-of-type{padding:.5rem .5rem .5rem 1rem}.dlp-scan__findings .finding-detail-table>section.page-section table>tbody>tr>td:last-of-type{padding:.5rem 1rem .5rem 0}.dlp-scan__findings .finding-detail-table>section.page-section table>thead>tr{color:#20252c;background-color:#f9fafc;border-bottom:1px solid #d1d7e0}.dlp-scan__findings .finding-detail-table>section.page-section table>tbody>tr{font-size:.875rem;font-weight:bold}.dlp-scan__table-view-button{background:none;border:none;color:hsl(209,89%,55%);float:right;font-weight:normal;cursor:pointer}.dlp-scan__table-view-button:hover{font-weight:bold}.dlp-scan__table-view-button-wrapper{width:100%;overflow:auto;margin-top:.5rem}.dlp-scan--expanded .dlp-scan__header{background-color:#ebeef3;border-bottom-left-radius:0;border-bottom-right-radius:0}.dlp-scan--expanded .dlp-scan__header:hover{background-color:#d1d7e0}.dlp-scan--expanded .dlp-scan__header:hover .dlp-scan__icon{color:#20252c}.dlp-scan--expanded .dlp-scan__header .criticality-title{opacity:1;position:relative}.dlp-scan--expanded .dlp-scan__header div.criticality-icon-alone{opacity:0}.dlp-scan--expanded .dlp-scan__header div.criticality-icon-with-text{opacity:1}.dlp-scan--expanded .dlp-scan__score{color:#fff;font-weight:400}.dlp-scan--expanded .dlp-scan__icon .icon{transform:rotate(180deg)}.dlp-scan--expanded.dlp-scan--high .dlp-scan__score{background-color:rgb(0,204,173.4)}.dlp-scan--expanded.dlp-scan--mid .dlp-scan__score{background-color:hsl(45,100%,62%)}.dlp-scan--expanded.dlp-scan--low .dlp-scan__score{background-color:hsl(350,72%,50.5%)}.dlp-scan--new{color:#20252c}.dlp-scan--new .dlp-scan__description{font-size:.875rem;line-height:170%}.dlp-scan--new .dlp-scan__description p{font-size:.875rem;line-height:170%}.dlp-scan__finding-summary{font-size:.875rem;line-height:170%}.dlp-scan__sw-patching-summary-extra{margin-top:.5rem;font-size:.875rem;line-height:170%}.dlp-scan__policyholder-info{display:flex}.dlp-scan__policyholder-info--header{color:#20252c;font-weight:600;margin-bottom:1rem}.dlp-scan__policyholder-info--info{background:#ebeef3;border-radius:3px;padding:1.5rem}.dlp-scan__criticality{align-items:center;align-content:center;border-top-left-radius:12px;display:grid;font-family:"Open Sans",sans-serif;font-size:14px;font-weight:600;justify-items:center;line-height:1;padding:.5rem 1.5rem;text-align:center;width:12.5rem}.dlp-scan__criticality--critical .square__icon,.dlp-scan__criticality--critical .check__icon{fill:hsl(245,55%,50%)}.dlp-scan__criticality--high .square__icon,.dlp-scan__criticality--high .check__icon{fill:hsl(350,80%,45%)}.dlp-scan__criticality--high-score-impact .square__icon,.dlp-scan__criticality--high-score-impact .check__icon{fill:hsl(350,80%,45%)}.dlp-scan__criticality--high_score_impact .square__icon,.dlp-scan__criticality--high_score_impact .check__icon{fill:hsl(350,80%,45%)}.dlp-scan__criticality--medium .square__icon,.dlp-scan__criticality--medium .check__icon{fill:hsl(35,100%,50%)}.dlp-scan__criticality--medium-score-impact .square__icon,.dlp-scan__criticality--medium-score-impact .check__icon{fill:hsl(35,100%,50%)}.dlp-scan__criticality--medium_score_impact .square__icon,.dlp-scan__criticality--medium_score_impact .check__icon{fill:hsl(35,100%,50%)}.dlp-scan__criticality--low .square__icon,.dlp-scan__criticality--low .check__icon{fill:hsl(45,100%,62%)}.dlp-scan__criticality--no-action-required .square__icon,.dlp-scan__criticality--no-action-required .check__icon{fill:rgb(0,204,173.4)}.dlp-scan__criticality--critical-for-renewal .square__icon,.dlp-scan__criticality--critical-for-renewal .check__icon{fill:hsl(350,80%,45%)}.dlp-scan__criticality--may-impact-renewal .square__icon,.dlp-scan__criticality--may-impact-renewal .check__icon{fill:hsl(35,100%,50%)}.dlp-scan__criticality--best-practice .square__icon,.dlp-scan__criticality--best-practice .check__icon{fill:hsl(45,100%,62%)}.dlp-scan__criticality--best_practice .square__icon,.dlp-scan__criticality--best_practice .check__icon{fill:hsl(45,100%,62%)}.dlp-scan__criticality--critical{color:hsl(245,55%,50%)}.dlp-scan__criticality--high{color:hsl(350,72%,40.5%)}.dlp-scan__criticality--high-score-impact{color:hsl(350,72%,40.5%)}.dlp-scan__criticality--high_score_impact{color:hsl(350,72%,40.5%)}.dlp-scan__criticality--medium{color:hsl(22,100%,27%)}.dlp-scan__criticality--medium-score-impact{color:hsl(22,100%,27%)}.dlp-scan__criticality--medium_score_impact{color:hsl(22,100%,27%)}.dlp-scan__criticality--low{color:#20252c}.dlp-scan__criticality--no-action-required{color:hsl(171,100%,22%)}.dlp-scan__criticality--critical-for-renewal{color:hsl(350,80%,45%)}.dlp-scan__criticality--may-impact-renewal{color:hsl(22,100%,27%)}.dlp-scan__criticality--best-practice{color:#20252c}.dlp-scan__criticality--best_practice{color:#20252c}.dlp-scan__criticality .criticality-title{padding-top:.5rem}.dlp-scan__criticality .criticality-icon-alone{position:absolute}.dlp-scan__criticality .criticality-icon-with-text{position:relative;opacity:0}:hover>.dlp-scan__criticality .criticality-title{opacity:1;position:relative;transition:opacity 200ms}:hover>.dlp-scan__criticality div.criticality-icon-alone{opacity:0}:hover>.dlp-scan__criticality div.criticality-icon-with-text{opacity:1}.dlp-scan__impact-type-label{background-color:hsl(210,42%,87.04%);display:inline;margin-right:.5rem;padding:.25rem;font-size:.875rem;font-weight:600}.environment__page-header{margin:2rem 0}.environment__page-subheader{margin:2rem 0}.environment__page-subheader p{font-size:1rem;color:#444d59;line-height:1.5}.environment__page-subheader .link{font-weight:inherit}.environment__external{line-height:1.2;padding-bottom:1.25rem}.environment__external .tool-tip-a11y--top{width:20rem}.environment__external-scanned-at{letter-spacing:.005rem;line-height:2.4rem;color:#6a7585}.environment__info-icon svg{color:hsl(210,63%,41.4%);height:20px;width:20px;text-align:center;line-height:20px}.environment__action-menu{box-shadow:0px 15px 30px rgba(32,37,44,.1)}.domain-details .card__body{padding:0}.environment-container{display:flex;margin-bottom:1.5rem;box-shadow:0 0px,0 -1.5px #d1d7e0 inset}.environment-tab{display:flex;min-width:6rem;padding:1rem 1rem;gap:.5rem;align-items:center;border-top-left-radius:6px;border-top-right-radius:6px;border-left:1.5px solid rgba(0,0,0,0);border-right:1.5px solid rgba(0,0,0,0)}.environment-tab--active{border-bottom:1.5px solid #f9fafc;border-top:1.5px solid #d1d7e0;border-left:1.5px solid #d1d7e0;border-right:1.5px solid #d1d7e0}.environment-tab:not(.environment-tab--active){border-bottom:1.5px solid #d1d7e0}.environment-tab:not(.environment-tab--active):hover{background-color:rgb(239.565,247.4519461078,249.855)}.environment-tab__label-container{align-items:center;display:flex;position:relative}.environment-tab__label{display:flex;margin:0;font-family:"Open Sans",sans-serif;font-size:1rem;line-height:1.5}.environment-tab__label--bold-spacing{font-weight:600;color:rgba(0,0,0,0)}.environment-tab__label:not(.environment-tab__label--active):not(.environment-tab__label--bold-spacing){color:#6a7585;position:absolute}.environment-tab__label--active{color:#0080a7;font-weight:600;position:absolute}.environment-tab__number{display:flex;margin:0;color:#fff;font-family:"Rubik",sans-serif;font-size:.75rem;font-weight:600;line-height:1.2;padding:2px 8px;background-color:#0080a7;border-radius:10px}.integrations__connected-apps{display:flex;justify-content:space-between;width:100%;margin-bottom:2rem}.integrations__bold{font-weight:600}.integrations__card{background-color:#fff;border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative;margin-bottom:1.5rem;width:360px;height:300px;display:flex}.integrations__card-body{display:flex;flex-direction:column;margin:1.5rem}.integrations__card-body .modal__content--full{width:70%}.integrations__arch-parent{display:flex;flex-direction:column;height:75%;justify-content:space-between}.integrations__card-logo-container{margin-bottom:1.5rem;display:flex;align-items:center;justify-content:space-between;width:100%}.integrations__card-logo{max-height:3.5rem}.integrations__card-logo--add{fill:#09a8d9;height:28px;width:28px}.integrations__card-logo--microsoft{content:url("https://cdn.corvusinsurance.com/images/microsoft-logo-31854306813c8bf1f657ad16b372a93d.png");height:4rem}.integrations__card-logo--sentinel-one{content:url("https://cdn.corvusinsurance.com/images/sentinel-one-logo-b9cd25687718fad77b03c0e88e6a4a1d.png");height:4rem}.integrations__card-logo--aws{content:url("https://cdn.corvusinsurance.com/images/aws-logo-8df8a3be4430640216b96dba9566f7b5.png");width:4rem;margin-top:.5rem}.integrations__card-info--name{color:#20252c;font-weight:600}.integrations__card-info--description{color:#444d59;font-size:.75rem;margin:.5rem 0}.integrations__card-buttons{display:flex;width:100%;justify-content:space-between}.integrations__credentials{padding:2.5rem}.integrations__credentials ol{padding-left:1.5rem}.integrations__credentials--card{margin-bottom:2rem}.integrations__credentials--section-end{border-bottom:1px solid #ebeef3;padding-bottom:2rem}.integrations__credentials--input{padding-top:1rem}.integrations__credentials--button{padding-top:1.5rem}.integrations__credentials--title{font-size:1.375rem;font-weight:600}.integrations__credentials--body{font-size:1rem}.integrations__credentials--body input{flex-basis:50%;max-width:50%}.integrations__credentials--body .link-input{margin-top:1rem;margin-bottom:1.5rem}.integrations__credentials--body-full{font-size:.875rem;display:flex}.integrations__credentials--body-full p{flex-basis:50%;max-width:50%}.integrations__credentials--body-full p:nth-child(2){margin-left:1.5rem}.integrations__credentials--body-full p input{max-width:100%}.integrations__credentials--terms{font-size:.75rem}.integrations__credentials-section-next{padding:2.5rem}.integrations__credentials-section-next ol{list-style:none;counter-reset:counter 1}.integrations__credentials-section-next ol li:before{counter-increment:counter;content:counter(counter) ". "}.integrations__credentials-section-next ol li p{padding-left:1.5rem}.integrations__modal-section{border:1px solid #d1d7e0;border-radius:12px;margin-bottom:1.5rem;line-height:1.5}.integrations__modal-section--header{background-color:hsl(209,82%,45%);padding:2rem;color:#fff;border-top-left-radius:12px;border-top-right-radius:12px;width:100%;align-items:center;display:flex}.integrations__modal-section--header .svg{margin-right:1.5rem;height:20px;width:20px}.integrations__modal-section--form{flex-basis:50%}.integrations__modal-section--form--input{max-width:50%}.integrations__modal-section--content{margin:2rem;padding:0 3rem}.integrations__modal-section--content ul{margin:1rem 0;list-style-type:disc}.integrations__modal-section--content ul li{margin-left:1.5rem;padding-left:0;margin-bottom:0}.integrations__modal-section--content .checkbox{margin-top:1rem}.integrations__modal-section--inputs{margin:2rem;padding:0 1.5rem}.integrations__modal-section--inputs ol{list-style-type:lower-alpha}.integrations__modal-section--inputs ol li{padding-left:1.5rem;margin-bottom:1.5rem}.integrations__modal-section--inputs ol li:last-child{margin-bottom:0}.integrations__success-banner-wrapper{background-color:#fff;border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative;padding:1.5rem;margin-bottom:3rem}.integrations__success-banner-content{display:flex;flex-direction:column;align-items:center;padding-top:1.5rem}.integrations__success-banner-content svg{height:60px;width:60px;fill:hsl(171,100%,22%);margin-bottom:1.5rem}.integrations__success-banner-content--title{color:hsl(171,100%,22%);margin-bottom:2rem;font-size:1.875rem}.integrations__success-banner-content--call-schedule-message{font-size:1.375rem;text-align:center;padding:0 6rem 1.5rem}.integrations__success-banner-content--what-to-expect{background-color:hsl(111,37%,96%);padding:2rem 3rem}.integrations__success-banner-content--what-to-expect p{font-weight:600}.integrations__help-resources{background-color:#fff;border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative;padding:1.5rem;margin-bottom:1rem}.integrations__help-resources--header{color:#20252c;font-weight:600;border-bottom:1px solid #ebeef3;padding-bottom:1rem}.integrations__help-resources--description{padding-top:1rem}.integrations__help-resources--description ul{margin-top:1.5rem;margin-left:2rem}.integrations__help-resources--description ul li{margin-bottom:.5rem}.integrations__help-resources--description ul li:last-child{margin-bottom:0}.integrations__renewal-readiness--container{display:inline-flex}.integrations__renewal-readiness--text-container{padding-top:2rem;padding-right:1rem}.integrations__renewal-readiness--bold-text{font-size:larger;font-weight:600}.integrations__renewal-readiness--bold-text--emphasized{font-style:italic;color:hsl(245,80%,60%)}.integrations__renewal-readiness--disclaimer-text{font-size:.625rem;font-weight:300;border-top:1px solid #ebeef3;padding-top:1rem}.integrations__renewal-readiness--lock{content:url("https://cdn.corvusinsurance.com/images/integration-lock-70de7d52d2db39e6fa7e136919b323d8.svg");height:300px}.integrations__result-card{background-color:#fff;border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative;padding:1.5rem;margin-bottom:1rem}.integrations__result-card--header{color:#20252c;font-weight:600;padding-bottom:1rem}.integrations__result-card ul{margin-left:1rem;margin-bottom:1.5rem}.integrations__result-card li{margin-left:1.5rem;margin-top:1rem}.integrations__cve{border-bottom:1px solid #ebeef3;margin-bottom:1rem}.policyholder-page{display:flex}.policyholder-page__page{margin-bottom:4rem}.policyholder-page__header-section{padding-bottom:3rem;gap:1rem;border-bottom:1px solid #d1d7e0;margin-bottom:3rem}.policyholder-page__header-title{font-family:"Rubik",sans-serif;font-weight:400;font-size:2.75rem;color:#20252c;line-height:1.2;letter-spacing:-0.035em;display:flex;align-items:center}.policyholder-page__header-description{margin-top:2rem;font-size:1rem;font-weight:400}.policyholder-page__header-buttons{display:flex;align-items:center;padding-top:2rem;gap:2rem}.policyholder-page__section{margin-top:3rem}.policyholder-page__section-title{font-family:"Rubik",sans-serif;font-weight:400;font-size:1.875rem;color:#20252c;margin-bottom:2rem;line-height:1.2}.policyholder-page .one-thirds{margin:0 2rem 2rem 0;width:33%}.policyholder-page .two-thirds{margin:2rem 2rem 2rem 0;width:66%}.policyholder-page .one-third-header{color:#20252c;font-size:1rem;font-weight:600;line-height:1.2;margin-bottom:1.5rem}.policyholder-page .one-third-body{color:#6a7585;font-size:1rem;font-weight:400;margin-bottom:2rem;margin-right:2.5rem}.resource__sub-section{padding-bottom:1.5rem}.resource__cards{display:flex;flex-direction:row;flex-wrap:wrap}.resource__link{flex-basis:calc(50% - 1rem);margin-bottom:2rem}.resource__link:nth-child(even){margin-left:1rem}.resource__link:nth-child(odd){margin-right:1rem}.resource__contact-info{display:flex;flex-direction:column;text-align:left;margin-top:-1rem;position:relative;top:1rem}.resource__card{color:#444d59}.resource__card.-new{border:1px solid hsl(110,100%,26.9%)}.resource__card.-new:after{content:"";position:absolute;top:-1px;right:-1px;left:-1px;border-top:.25rem solid hsl(110,100%,26.9%);border-radius:3px 3px 0 0}.resource__card .card__body{min-height:13rem;display:flex;flex-direction:column}.resource__card .card__content{min-height:1.5rem;align-items:flex-end}.resource__card .tag{margin-right:0}.resource__title{margin-bottom:.5rem;font-size:1rem;font-weight:600;line-height:1.2}.resource__desc{margin-bottom:auto;min-height:6.75em;font-size:.875rem}.resource__section-desc{margin-top:-1rem;margin-bottom:2rem}.resource__icon{color:#6a7585}.resources-card{margin:2rem 2rem 2rem 0}.resources-card__button{background-color:rgba(0,0,0,0);border:none;cursor:pointer;padding:0;text-align:left}.resources-card__header{color:#20252c;font-weight:600;font-size:1.375rem;padding:2rem 0 1.5rem 0}.resources-card__graphic{width:9.5rem;height:12rem}.resources-card__text{color:#6a7585;font-size:1rem;font-weight:400;margin-bottom:2rem;margin-right:2rem}.policyholder-team{background-color:#fff;border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative;margin-bottom:1.5rem;margin:2rem 2rem 2rem 0}.policyholder-team__user-row{display:flex;flex-direction:row;align-items:center;margin-bottom:.5rem;padding:0px;height:72px;background:#fff;box-shadow:0 1px .25rem rgba(32,37,44,.1);border-radius:3px;flex:none;flex-grow:0}.policyholder-team__user-row--name{color:#20252c;font-size:16px;font-weight:600;width:30%}.policyholder-team__user-row--email,.policyholder-team__user-row--role{color:#444d59;font-size:14px;margin-left:1.5rem}.policyholder-team__user-row--email{overflow:hidden;text-overflow:ellipsis;width:40%}.policyholder-team__user-row--role{width:20%}.policyholder-team__user-row--edit{align-items:center;color:#0080a7;cursor:pointer;display:flex;flex-direction:column;height:72px;justify-content:center;margin-inline:auto;width:10%}.policyholder-team__add-user{border:1px solid #d1d7e0;border-color:#0080a7;border-radius:6px;box-shadow:unset;margin-bottom:.5rem}.policyholder-team__add-user--form{display:flex;font-weight:bold}.policyholder-team__add-user--form-inputs{display:flex;flex-direction:column;width:25rem}.policyholder-team__edit-user{border-radius:6px;margin-bottom:.5rem}.policyholder-team__edit-user--email input{background-image:url("https://cdn.corvusinsurance.com/images/lock-icon-ac6c8ee4e0fd4ac9e92e505ad015d116.svg");background-repeat:no-repeat;background-position:97% 50%}.vciso-assessment__image{display:flex;justify-content:center;height:44px}.vciso-assessment__button{display:flex;justify-content:center;align-items:center}.vciso-assessment__title{display:flex;justify-content:center;align-items:center;font-size:1rem;font-weight:600;color:#20252c;padding-bottom:1.5rem}.vciso-assessment__text{left:1.5rem;line-height:150%;align-items:center;color:#6a7585;align-self:stretch;flex-grow:0;margin:1.5rem 0px}.vciso-assessment__module-card{align-items:center;border-radius:6px;display:flex;margin:1.5rem 0;padding:0 !important}.vciso-assessment__module-card--purple_{background:hsl(245,100%,90%)}.vciso-assessment__module-card--purple_ .vciso-assessment__module-card--title{color:hsl(245,55%,50%)}.vciso-assessment__module-card--gold_{background:hsl(55,100%,70%)}.vciso-assessment__module-card--gold_ .vciso-assessment__module-card--title{color:hsl(22,100%,27%)}.vciso-assessment__module-card--green_{background:#6fc}.vciso-assessment__module-card--green_ .vciso-assessment__module-card--title{color:hsl(171,100%,17%)}.vciso-assessment__module-card--blue_{background:hsl(190,100%,75%)}.vciso-assessment__module-card--blue_ .vciso-assessment__module-card--title{color:rgb(0,79.05,153)}.vciso-assessment__module-card--darkgreen_{background:hsl(171,100%,22%)}.vciso-assessment__module-card--darkgreen_ .vciso-assessment__module-card--title{color:#fff}.vciso-assessment__module-card--button-data{text-align:right}.vciso-assessment__module-card--description{flex-grow:1;padding-right:1.5rem}.vciso-assessment__module-card--meta{background:#fff;border-bottom-right-radius:inherit;border-top-right-radius:inherit;display:flex;flex-direction:column;padding:2.5rem;width:67%}.vciso-assessment__module-card--title{padding-left:2.5rem;width:33%}.vciso-assessment__module-card--subtitle{font-size:1.375rem;font-weight:600}.vciso-assessment__module-questions{padding:0 !important}.vciso-assessment__module-questions--title{padding:1rem 0 1rem 1rem;background:hsl(210,35%,96.76%);border-top-left-radius:6px;border-top-right-radius:6px;color:#20252c;font-size:1.375rem}.vciso-assessment__module-questions--question{font-size:1rem;font-weight:600;padding:1rem}.vciso-assessment__module-questions--question .checkbox{padding:.5rem 0 .5rem 1.5rem}.vciso-assessment__module-questions--question .radio{padding:.5rem 0 .5rem 1.5rem}.vciso-assessment__module-questions--question--textarea{background:pink}.vciso-assessment__progress-bar{margin:3rem 2rem 2rem 0;width:30%}.vciso-assessment__progress-bar__title-list{flex-wrap:wrap;margin:0}.vciso-assessment__progress-bar__title-list__outline-circle{margin-left:75px;list-style:none;padding-left:36px;background:url("https://cdn.corvusinsurance.com/images/outline-circle-64a723b16a3bdc97d95b2875319c4c45.svg") left center no-repeat}.vciso-assessment__progress-bar__title-list__outline-circle__button{background:none;border:none;color:#a0a8b4;cursor:pointer;font-weight:600;white-space:nowrap}.vciso-assessment__progress-bar__title-list__outline-circle__button:hover{color:#0080a7}.vciso-assessment__progress-bar__title-list__filled-circle{margin-left:75px;list-style:none;padding-left:36px;background:url("https://cdn.corvusinsurance.com/images/filled-circle-bdbbb405b46881decb4ce1f997ad5cd0.svg") left center no-repeat}.vciso-assessment__progress-bar__title-list__filled-circle__text{font-weight:600;color:#0080a7;white-space:nowrap}.vciso-assessment__progress-bar__border{background:#09a8d9;height:60px;width:2px;top:0px;border-radius:0px;margin-left:89px}.vciso-assessment__finished-modal__body{text-align:center;display:flex;flex-direction:column;margin:3rem}.vciso-assessment__finished-modal__text--success{font-size:1.375rem;color:hsl(171,100%,27%);margin-top:1.5rem}.vciso-assessment__finished-modal__text--small{font-size:.75rem;line-height:1.35}.vciso-assessment__finished-modal__what-next{display:flex;flex-direction:column;margin-top:3.5rem}.vciso-assessment__finished-modal__icon-container{align-items:center;display:flex;height:56px;width:56px;justify-content:center}.vciso-assessment__finished-modal--icon{background-image:url("https://cdn.corvusinsurance.com/images/check-mark-94349bd270bb24f85b808343c2db2319.svg");animation-duration:800ms;animation-name:grow;height:56px;width:56px;background-position:center;background-repeat:no-repeat}@keyframes grow{from{background-size:4px 4px}to{background-size:56px 56px}}.recommendations_step__container{border:1px solid #6a7585;margin:1rem 0;border-radius:3px}.recommendations_step__header{background-color:#ebeef3;padding:1rem 0 1rem 2rem;color:#20252c;font-size:1rem;font-weight:600}.recommendations_step__title{color:#20252c;font-size:1rem;font-weight:600;padding:2rem 0 .5rem 2rem}.recommendations_step__description{padding:0 0 .5rem 2rem}.recommendations_step__description ol,.recommendations_step__description ul{padding:0 0 .5rem 2rem}.recommendations_step__description ol{list-style-type:lower-alpha}.subquestion{padding:.5rem 0rem;animation:fadein 400ms}.question{padding:1.25rem 1rem;animation:fadein 400ms}.question label{font-weight:600}@keyframes fadein{from{opacity:0;max-height:0;overflow-y:hidden}to{opacity:1;max-height:7rem;overflow-y:visible}}.section-button{margin-top:1.25rem}.section-header{display:flex;padding-bottom:1.25rem}.section-header span{align-items:center;background-color:#008299;border-radius:50%;color:#fff;display:flex;font-size:1.25rem;font-weight:600;justify-content:center;line-height:1.2;margin-right:1rem;height:2.25rem;width:2.25rem}.preferred-vendors{background-color:#fff;border-radius:12px;box-shadow:0 1px .25rem rgba(32,37,44,.1);position:relative;margin-bottom:1.5rem}.preferred-vendors__page-header{font-family:"Rubik",sans-serif;font-weight:400;font-size:2.75rem;color:#20252c;line-height:1.2;letter-spacing:-0.035em;display:flex;align-items:center;margin:2rem 0}.preferred-vendors__page-subheader{font-family:"Open Sans",sans-serif;font-weight:300;font-size:1rem;color:#444d59;align-items:center}.preferred-vendors__vendor-list{display:flex;flex-wrap:wrap;gap:2rem 3.75rem}.preferred-vendors__vendor-card{width:360px;height:300px;display:flex}.preferred-vendors__vendor-card:hover{background-color:#ebeef3;box-shadow:none}.preferred-vendors__vendor-card-body{display:flex;flex-direction:column;margin:1.5rem}.preferred-vendors__arch-parent{display:flex;flex-direction:column;height:100%;justify-content:space-between}.preferred-vendors__vendor-logo-container{height:8rem;display:flex;align-items:center;justify-content:center}.preferred-vendors__vendor-logo{max-height:3.5rem}.preferred-vendors__vendor-info--name{color:#20252c;font-weight:600}.preferred-vendors__vendor-info--categories{color:#20252c;font-size:.75rem;text-transform:uppercase}.preferred-vendors__vendor-info--description{color:#444d59;font-size:.75rem;margin:.5rem 0}.preferred-vendors__vendor-info--discount{font-size:.75rem;color:hsl(110,100%,26.9%);text-align:right}.filter-buttons{margin-bottom:1.5rem}.filter-buttons__button{font-weight:400;color:#444d59;background-color:#ebeef3;border-radius:100px;border:none;padding:12px 16px;cursor:pointer;transition:all ease 300ms;line-height:100%;min-width:72px}.filter-buttons__button--selected{color:#fff;background-color:hsl(245,80%,60%);border:none;font-weight:600;pointer-events:none}.filter-buttons__list{display:flex;flex-wrap:wrap;gap:1rem .5rem;margin:2rem 0}.smart-controls .smart-controls-banner{border-radius:6px;background-color:hsl(171,100%,17%);box-shadow:0 1px .25rem rgba(32,37,44,.1);margin-bottom:0;padding-bottom:0}.smart-controls .smart-controls-banner__sticky{background-color:hsl(171,100%,17%);position:sticky;padding:1.5rem;top:0;z-index:2}.smart-controls .smart-controls-banner__eligibility-progress{margin:0}.smart-controls_legal-text-section{border-radius:6px;border:1px dashed #6a7585;margin-top:1rem;display:flex;padding:1rem 1.5rem;align-items:center;gap:.5rem;align-self:stretch;font-size:.875rem}.smart-controls_all-sections{border-radius:6px;background-color:hsl(171,100%,17%);box-shadow:0 1px .25rem rgba(32,37,44,.1)}.smart-controls_sections-2-4{display:flex;align-items:flex-start;gap:1.5rem;padding:0 1.5rem 1.5rem 1.5rem}.smart-controls_sections-3-4{display:flex;flex-direction:column;align-items:flex-start;gap:1.5rem;flex:0 0 calc((100% - 1.5rem)*.28)}.smart-controls_section-2,.smart-controls_section-3,.smart-controls_section-4{background-color:#fff;border-radius:3px;padding:1.5rem}.smart-controls_section-2{flex:0 0 calc((100% - 1.5rem)*.72)}.smart-controls_section-2 .subquestion{animation:none;padding:1rem;background-color:rgb(239.565,247.4519461078,249.855);border:none;width:100%}.smart-controls_section-2 .subquestion .radio__group{flex-direction:column;margin:0;padding:0}.smart-controls_section-2 .subquestion .radio__group label{padding:0}.smart-controls_section-2 .subquestion .radio__group .radio{display:flex;justify-content:space-between}.smart-controls_section-2 .subquestion .radio__group .radio--increase{background-color:#e5faf7}.smart-controls_section-2 .subquestion .radio__group .radio--decrease{background-color:hsl(350,40%,96.7%)}.smart-controls_section-2 .subquestion .radio__group .radio--neutral{background-color:#f9fafc}.smart-controls_section-2 .subquestion .radio__group .radio__icon{width:2rem;height:1.8rem;translate:-0.25rem 0}.smart-controls_section-2 .subquestion .cyber-security-answer{padding:1rem;background-color:#fff;border:none}.smart-controls_section-2 .subquestion .cyber-security-answer .checkbox{display:flex;justify-content:space-between;margin:0;padding:0}.smart-controls_section-2 .subquestion .cyber-security-answer .checkbox--increase{background-color:#e5faf7}.smart-controls_section-2 .subquestion .cyber-security-answer .checkbox--decrease{background-color:hsl(350,40%,96.7%)}.smart-controls_section-2 .subquestion .cyber-security-answer .checkbox--neutral{background-color:#f9fafc}.smart-controls_section-2 .subquestion .cyber-security-answer .checkbox label{padding:0}.smart-controls_section-2 .subquestion .cyber-security-answer .checkbox .checkbox__icon{width:2rem;height:2rem;translate:-0.25rem 0}.smart-controls_section-2 .subquestion .cyber-security-answer>div:not(.radio__group),.smart-controls_section-2 .subquestion .cyber-security-answer>.radio__group>.radio{margin-bottom:.5rem;padding:.5rem}.smart-controls_section-2 .subquestion .cyber-security-answer div:last-of-type{margin-bottom:0}.smart-controls_section-2 .subquestion .cyber-security-answer--recommendation>div:not(.radio__group),.smart-controls_section-2 .subquestion .cyber-security-answer--recommendation>.radio__group>.radio{padding-top:.25rem;padding-bottom:.25rem}.smart-controls_section-2 .subquestion .cyber-security-answer--recommendation .radio svg.radio__icon{margin-right:.5rem}.smart-controls_section-2 .subquestion .cyber-security-answer--recommendation textarea{margin-top:.25rem;padding:1rem}.smart-controls_section-2 .subquestion>label{margin-bottom:1rem;font-weight:600;color:#20252c;line-height:1.5}.smart-controls_section-2 .subquestion .subquestion{margin:0;background-color:#fff}.smart-controls_section-2 .cds-button{width:2.5rem;height:2.5rem;font-size:1rem;font-weight:600;line-height:1;color:#20252c}.smart-controls_section-2 .cds-button>svg{width:1.5rem;height:1.5rem}.smart-controls_section-2 .cds-button.smart-controls__current-group{background-color:hsl(245,80%,60%);color:#fff}.smart-controls_section-2 textarea{line-height:1.5;padding:1rem 1.5rem;min-height:3.5rem}.smart-controls_section-3,.smart-controls_section-4{width:100%}.deductible-saver__body{display:flex;flex:0 0 360px;flex-direction:column;align-items:flex-start;height:fit-content;border-radius:6px;border:1px solid rgb(0,79.05,153);background:hsl(210,35%,96.76%);box-shadow:0 2px 1rem rgba(32,37,44,.1);position:sticky;top:3rem}.deductible-saver__title{display:flex;padding:1rem;align-items:center;gap:.5rem;align-self:stretch;color:rgb(0,79.05,153);font-family:"Rubik",sans-serif;font-size:1rem;font-style:normal;font-weight:400;line-height:150%}.deductible-saver__questionnaires{display:flex;padding:1rem;flex-direction:column;align-items:flex-start;gap:.5rem;align-self:stretch}.deductible-saver__questionnaire{cursor:pointer;display:flex;flex-direction:column;width:100%;padding:1rem;justify-content:center;align-items:flex-start;gap:1rem;border-radius:3px;border:1px solid #ebeef3;background:rgb(239.565,247.4519461078,249.855);color:rgb(0,79.05,153);font-family:"Open Sans",sans-serif;font-style:normal;font-weight:600;letter-spacing:.07px}a.deductible-saver__questionnaire:hover{border-color:#09a8d9}.deductible-saver__questionnaire--detailed{border-color:#1e64a9}.deductible-saver__questionnaire-name-and-status{display:flex;width:100%}.deductible-saver__questionnaire-name{flex:1 0 0;font-size:.875rem;line-height:1rem}.deductible-saver__questionnaire-status{font-weight:400;font-size:.75rem;line-height:1rem}.deductible-saver__progress-tracker{display:flex;flex-direction:column;width:100%;gap:.25rem}.deductible-saver__progress-tracker-boxes{width:100%;display:grid;grid-template-columns:repeat(10, minmax(0, 1fr));gap:2px}@media(resolution < 48dpi){.deductible-saver__progress-tracker-boxes{gap:3px}}@media(resolution < 32dpi){.deductible-saver__progress-tracker-boxes{gap:4px}}.deductible-saver__progress-tracker-box{height:16px}.deductible-saver__progress-tracker-box--question-complete{background-color:#004f99}.deductible-saver__progress-tracker-box--question-complete:hover{background-color:#3b82f6}.deductible-saver__progress-tracker-box--question-incomplete{background-color:#d1d7e0}.deductible-saver__progress-tracker-box--question-incomplete:hover{background-color:#3b82f6}.deductible-saver__progress-tracker-counts{align-self:flex-end;font-size:.75rem;line-height:170%;color:#20252c}.deductible-saver__footer{display:flex;padding:1rem;flex-direction:column;justify-content:center;align-items:flex-start;gap:1rem;align-self:stretch}.deductible-saver__footer-text{color:rgb(0,79.05,153);font-family:"Open Sans",sans-serif;font-size:.75rem;font-style:normal;font-weight:400;line-height:170%}.deductible-saver__footer-tag{display:flex;flex-direction:column;justify-content:center;align-items:flex-end;gap:.5rem;align-self:stretch}.ph-questionnaire-overview__main-content{display:flex;flex-direction:column;align-items:flex-start;gap:1.5rem}.ph-questionnaire-overview__modules-and-deductible-saver{display:flex;gap:2rem;width:100%}.ph-questionnaire-overview__modules{display:flex;flex-grow:1;flex-direction:column;gap:.5rem;width:100%}.ph-questionnaire-overview__deductible-banner{display:flex;flex-direction:column;align-items:flex-start;gap:.5rem;align-self:stretch;padding:1.5rem;margin-bottom:.5rem;border-radius:.375rem;border-width:1px;border-style:dashed;border-color:#004f99}.ph-questionnaire-overview__deductible-banner-icon{display:none}.ph-questionnaire-overview__deductible-banner-text{color:#20252c;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;line-height:1.5rem}.ph-questionnaire-overview__card{border-radius:.375rem;border-width:2px;border-style:solid;border-color:rgba(0,0,0,0)}.ph-questionnaire-overview__card-security-advanced:hover{border-color:#ffcf3d}.ph-questionnaire-overview__card-smart-controls:hover{border-color:#00e6c3}.ph-questionnaire-overview__card-content{border-radius:.375rem;box-shadow:0 1px .25rem rgba(32,37,44,.1);overflow:clip;background-color:#fff;border-style:none;display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;color:#20252c}.ph-questionnaire-overview__card-content-header{width:100%;padding:1.5rem;display:flex;justify-content:space-between}.ph-questionnaire-overview__card-content-header-text{font-family:"Rubik",sans-serif;font-size:1.125rem;line-height:1.75rem}.ph-questionnaire-overview__card-content-description{width:100%;padding-top:.5rem;padding-bottom:.5rem;padding-left:1.5rem;padding-right:1.5rem;font-size:.875rem;line-height:1.25rem}.ph-questionnaire-overview__card-content-footer{width:100%;padding:1.5rem;display:flex;justify-content:space-between}.ph-questionnaire-overview__card-content-progress-text{font-size:.875rem;line-height:1.25rem;color:#6a7585}.ph-questionnaire-overview__card-content-nav-group{display:flex}.ph-questionnaire-overview__card-content-nav-label{padding-left:.5rem;padding-right:.5rem;line-height:1.5}.ph-questionnaire-overview__card-content-nav-icon{width:1.5rem !important;height:1.5rem !important}.ph-questionnaire-overview__legal-footer{text-align:center;font-size:.875rem;line-height:1.25rem;font-style:italic}.c-l{color:#6a7585}.c-accent{color:#0080a7}.c-danger{color:hsl(350,80%,45%)}.c-danger-800{color:hsl(350,72%,40.5%)}.c-warning{color:hsl(30,100%,36.5%)}.c-success{color:hsl(171,100%,17%)}.bc-danger{border-color:hsl(350,80%,45%)}.bc-warning{border-color:hsl(30,100%,36.5%)}.bc-l{border-color:#ebeef3}.bg-l{background-color:#ebeef3}.bc-complete{background-color:#f9fafc}.bc-in-progress{background-color:#d1d7e0}.bg-error{background-color:hsl(350,80%,45%)}.layout{min-height:100vh}.layout main{margin-bottom:unset}.layout .content{min-height:calc(100vh - 6rem)}.layout .footer{height:48px;margin-top:2rem;display:flex;justify-content:center}.layout .footer .spacer{padding:0 .25rem}.layout .footer--dark{color:#fff}.layout .footer--dark .anchor{color:#fff;text-decoration:underline;font-size:.875rem}.layout .footer .anchor{color:#6a7585;text-decoration:underline;font-size:.875rem}.fixed-height-layout{width:100vw;margin:0;position:relative}.fixed-height-layout .footer{height:4em;display:flex;justify-content:center;align-items:center;width:100%;font-size:.875em}.fixed-height-layout .footer .anchor{font-size:.875em}@media only screen and (max-width: 1199px){.fixed-height-layout{font-size:11px}.fixed-height-layout .content{padding:3em 0}}@media only screen and (min-width: 1200px){.fixed-height-layout{font-size:13px;height:100vh}.fixed-height-layout .content{padding:6em 0}.fixed-height-layout .footer{height:6em}}.anchor{color:#6a7585;text-decoration:underline;font-size:.875rem}.m-aa{margin:auto}.m-a0{margin:0}.m-a1{margin:.25rem}.m-a2{margin:.5rem}.m-a3{margin:1rem}.m-a4{margin:1.5rem}.m-a5{margin:2rem}.m-a6{margin:3rem}.m-a7{margin:6rem}.m-ta{margin-top:auto}.m-t0{margin-top:0}.m-t1{margin-top:.25rem}.m-t2{margin-top:.5rem}.m-t3{margin-top:1rem}.m-t4{margin-top:1.5rem}.m-t5{margin-top:2rem}.m-t6{margin-top:3rem}.m-t7{margin-top:6rem}.m-ra{margin-right:auto}.m-r0{margin-right:0}.m-r1{margin-right:.25rem}.m-r2{margin-right:.5rem}.m-r3{margin-right:1rem}.m-r4{margin-right:1.5rem}.m-r5{margin-right:2rem}.m-r6{margin-right:3rem}.m-r7{margin-right:6rem}.m-ba{margin-bottom:auto}.m-b0{margin-bottom:0}.m-b1{margin-bottom:.25rem}.m-b2{margin-bottom:.5rem}.m-b3{margin-bottom:1rem}.m-b4{margin-bottom:1.5rem}.m-b5{margin-bottom:2rem}.m-b6{margin-bottom:3rem}.m-b7{margin-bottom:6rem}.m-la{margin-left:auto}.m-l0{margin-left:0}.m-l1{margin-left:.25rem}.m-l2{margin-left:.5rem}.m-l3{margin-left:1rem}.m-l4{margin-left:1.5rem}.m-l5{margin-left:2rem}.m-l6{margin-left:3rem}.m-l7{margin-left:6rem}.m-va{margin-top:auto;margin-bottom:auto}.m-v0{margin-top:0;margin-bottom:0}.m-v1{margin-top:.25rem;margin-bottom:.25rem}.m-v2{margin-top:.5rem;margin-bottom:.5rem}.m-v3{margin-top:1rem;margin-bottom:1rem}.m-v4{margin-top:1.5rem;margin-bottom:1.5rem}.m-v5{margin-top:2rem;margin-bottom:2rem}.m-v6{margin-top:3rem;margin-bottom:3rem}.m-v7{margin-top:6rem;margin-bottom:6rem}.m-ha{margin-left:auto;margin-right:auto}.m-h0{margin-left:0;margin-right:0}.m-h1{margin-left:.25rem;margin-right:.25rem}.m-h2{margin-left:.5rem;margin-right:.5rem}.m-h3{margin-left:1rem;margin-right:1rem}.m-h4{margin-left:1.5rem;margin-right:1.5rem}.m-h5{margin-left:2rem;margin-right:2rem}.m-h6{margin-left:3rem;margin-right:3rem}.m-h7{margin-left:6rem;margin-right:6rem}.p-a0{padding:0}.p-a1{padding:.25rem}.p-a2{padding:.5rem}.p-a3{padding:1rem}.p-a4{padding:1.5rem}.p-a5{padding:2rem}.p-a6{padding:3rem}.p-a7{padding:6rem}.p-t0{padding-top:0}.p-t1{padding-top:.25rem}.p-t2{padding-top:.5rem}.p-t3{padding-top:1rem}.p-t4{padding-top:1.5rem}.p-t5{padding-top:2rem}.p-t6{padding-top:3rem}.p-t7{padding-top:6rem}.p-r0{padding-right:0}.p-r1{padding-right:.25rem}.p-r2{padding-right:.5rem}.p-r3{padding-right:1rem}.p-r4{padding-right:1.5rem}.p-r5{padding-right:2rem}.p-r6{padding-right:3rem}.p-r7{padding-right:6rem}.p-b0{padding-bottom:0}.p-b1{padding-bottom:.25rem}.p-b2{padding-bottom:.5rem}.p-b3{padding-bottom:1rem}.p-b4{padding-bottom:1.5rem}.p-b5{padding-bottom:2rem}.p-b6{padding-bottom:3rem}.p-b7{padding-bottom:6rem}.p-l0{padding-left:0}.p-l1{padding-left:.25rem}.p-l2{padding-left:.5rem}.p-l3{padding-left:1rem}.p-l4{padding-left:1.5rem}.p-l5{padding-left:2rem}.p-l6{padding-left:3rem}.p-l7{padding-left:6rem}.p-v0{padding-top:0;padding-bottom:0}.p-v1{padding-top:.25rem;padding-bottom:.25rem}.p-v2{padding-top:.5rem;padding-bottom:.5rem}.p-v3{padding-top:1rem;padding-bottom:1rem}.p-v4{padding-top:1.5rem;padding-bottom:1.5rem}.p-v5{padding-top:2rem;padding-bottom:2rem}.p-v6{padding-top:3rem;padding-bottom:3rem}.p-v7{padding-top:6rem;padding-bottom:6rem}.p-h0{padding-left:0;padding-right:0}.p-h1{padding-left:.25rem;padding-right:.25rem}.p-h2{padding-left:.5rem;padding-right:.5rem}.p-h3{padding-left:1rem;padding-right:1rem}.p-h4{padding-left:1.5rem;padding-right:1.5rem}.p-h5{padding-left:2rem;padding-right:2rem}.p-h6{padding-left:3rem;padding-right:3rem}.p-h7{padding-left:6rem;padding-right:6rem}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:1rem}.gap-4{gap:1.5rem}.gap-5{gap:2rem}.gap-6{gap:3rem}.gap-7{gap:6rem}.float-right{float:right}.float-none{float:none}.fw-2{font-weight:300}.fw-4{font-weight:400}.fw-6{font-weight:600}.fs-1{font-size:2.75rem}.fs-2{font-size:1.875rem}.fs-3{font-size:1.375rem}.fs-4{font-size:1rem}.fs-5{font-size:.875rem}.fs-6{font-size:.75rem}.fs-7{font-size:.625rem}.i{font-style:italic}.ff-b{font-family:"Open Sans",sans-serif}.ff-h{font-family:"Rubik",sans-serif}.h1{color:#20252c;font-family:"Rubik",sans-serif;font-size:2.75rem;font-weight:400;letter-spacing:-0.035em;line-height:1.2;margin:0}.h2{color:#20252c;font-family:"Rubik",sans-serif;font-size:1.875rem;font-weight:400;line-height:1.2;margin:0}.h3{color:#20252c;font-size:1.375rem;font-weight:600;line-height:1.2;margin:0}.h4{font-size:.875rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase}.h5{font-size:.75rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase}.h6{font-size:.625rem;font-weight:600;line-height:1.2;margin:0;letter-spacing:.05em;text-transform:uppercase}.case-upper{text-transform:uppercase}.strikethrough{text-decoration:line-through}.break-word{word-wrap:break-word}.wrap-anywhere{overflow-wrap:anywhere}.display-inline{display:inline}.display-block{display:block}.display-inline-block{display:inline-block}.hidden{visibility:hidden}.hide{display:none}.hide-visually{border:0;clip:rect(1px, 1px, 1px, 1px);clip-path:inset(100%);height:1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.center-text{text-align:center}.text-center{text-align:center}.text-right{text-align:right}.flex{display:flex}.flex-column{display:flex;flex-direction:column}.flex-row{display:flex;flex-direction:row}.align-center{align-items:center}.align-baseline{align-items:baseline}.align-start{align-items:flex-start}.align-end{align-items:flex-end}.align-self-center{align-self:center}.align-self-end{align-self:flex-end}.align-self-stretch{align-self:stretch}.justify-around{justify-content:space-around}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-end{justify-content:flex-end}.flex-column-center{align-items:center;display:flex;flex-direction:column}.flex-wrap{flex-wrap:wrap}.flex-child{flex:1}.flex-child--2{flex:2}.flex-child--3{flex:3}.flex-child--4{flex:4}.flex-basis-50{flex-basis:50%}.flex-basis-66{flex-basis:66.6%}.flex-grow-0{flex-grow:0}.flex-grow-1{flex-grow:1}.flex-shrink-0{flex-shrink:0}.flex-none{flex:none}.width-8{width:8%}.width-12{width:12%}.width-16{width:16%}.width-25{width:25%}.width-33{width:33.33%}.width-40{width:40%}.width-50{width:50%}.width-60{width:60%}.width-70{width:70%}.width-100{width:100%}.max-width-max-content{max-width:max-content}.max-width-100{max-width:100%}.max-width-90{max-width:90%}.max-width-66{max-width:66.6%}.max-width-50{max-width:50%}.max-width-55{max-width:55%}.max-width{max-width:100%}.max-width-3point5in{max-width:3.5in}.min-width-100{min-width:100%}span.underline,a.underline{text-decoration:underline}.number-text{font-family:"Open Sans",sans-serif;font-size:.875rem}.number-text-emphasized{font-family:"Open Sans",sans-serif;font-size:1.875rem;font-weight:600}.extra-small-text{font-size:.75rem}.small-text{font-size:.875rem}.medium-text{font-size:1.375rem}.font-weight-600{font-weight:600}.no-list-style{list-style:none}.relative{position:relative}.nowrap{white-space:nowrap}.b-t{border-top:1px solid #d1d7e0}.b-r{border-right:1px solid #d1d7e0}.b-b{border-bottom:1px solid #d1d7e0}.b-l{border-left:1px solid #d1d7e0}.b-t0{border-top:0}.b-r0{border-right:0}.b-b0{border-bottom:0}.b-l0{border-left:0}.b-w4{border-width:4px}.b-w3{border-width:3px}.drop-shadow{box-shadow:0 1px .25rem rgba(32,37,44,.1)}.mid-box-shadow{box-shadow:0 2px 1rem rgba(32,37,44,.1)}@media screen and (max-width: 30rem){.flex{flex-wrap:wrap}}.cursor-pointer{cursor:pointer}.cursor-grab{cursor:grab}.vertical-align-middle{vertical-align:middle}.transition-opacity-base-ease-out{transition:opacity 200ms ease-out}.text-gray-800-important{color:#444d59 !important}.text-gray-900-important{color:#20252c !important}.font-weight-bold-important{font-weight:600 !important}.font-weight-light-important{font-weight:300 !important}.fs-5-important{font-size:.875rem !important}.fs-6-important{font-size:.75rem !important}.display-block-important{display:block !important}.top-05-important{top:.125rem !important}.m-b0-important{margin-bottom:0 !important}.m-t0-important{margin-top:0 !important}.m-b6-important{margin-bottom:3rem !important}.m-b4-important{margin-bottom:1.5rem !important}.visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}.risk-capital-partners .hidden-card{display:none}.risk-capital-partners .page-tabs{background-color:#fff;padding:24px;padding-left:48px}.risk-capital-partners .page-tabs span{display:inline-block;margin-right:48px;font-size:1.375rem;cursor:pointer}.risk-capital-partners .page-tabs__active{color:#0080a7}.risk-capital-partners .page-wrapper--bird .page-wrapper__content{position:relative}.risk-capital-partners .page-wrapper--bird .page-wrapper__content::after{content:url("https://cdn.corvusinsurance.com/images/BirdBackground-b70133eb7f7273af2476291996d76c41.svg");position:absolute;top:-8rem;right:-1.5rem;z-index:-1}.risk-capital-partners .page-wrapper__menu{flex:0 1 auto;padding-left:2rem;padding-right:2rem;padding-top:2.5rem;border-right:1px solid #ebeef3}.risk-capital-partners .page-wrapper__main{flex:1;padding:2.5rem}.risk-capital-partners .page-wrapper__content{max-width:95rem;margin:0 auto 2rem;border-radius:12px}.risk-capital-partners .page-wrapper__footer{font-size:.875rem;margin-bottom:2rem;text-align:center}.risk-capital-partners .page-wrapper__footer a,.risk-capital-partners .page-wrapper__footer span{color:#6a7585}.aggregation-analytics{min-width:95rem}.aggregation-analytics h2{margin-bottom:1.5rem}.aggregation-analytics .title{font-size:1.375rem;margin-bottom:.75rem}.aggregation-analytics .subtitle{font-size:1rem;width:85%}.aggregation-analytics .loading{display:block;margin-top:1rem;font-size:.875rem}.aggregation-analytics .tab-list{margin-bottom:2rem;display:flex}.aggregation-analytics .tab-list .tab{display:inline-block;padding:1rem 0;margin:0;cursor:pointer;margin-right:1.5rem}.aggregation-analytics .tab-list .tab:last-of-type{margin-right:3rem}.aggregation-analytics .tab-list .tab:hover{color:#0080a7}.aggregation-analytics .tab-list .tab.active{color:#0080a7;border-bottom:3px solid #0080a7;font-weight:600}.aggregation-analytics .tab-group{color:#6a7585}.aggregation-analytics .tab-group__title{font-size:.75rem;text-transform:uppercase;padding-bottom:3px;color:#444d59;cursor:default;font-weight:600}.aggregation-analytics .tab-group:first-of-type{min-width:634px}.aggregation-analytics .tab-group:nth-of-type(2){border-left:1px solid #d1d7e0;padding-left:3rem;min-width:850px}.aggregation-analytics .card{padding:2.5rem;min-height:75vh;overflow:hidden}.aggregation-analytics__header-hider,.aggregation-analytics__logo-hider{height:2.25rem;background-color:#fff;position:relative}.aggregation-analytics__header-hider{margin-bottom:-2.25rem}.aggregation-analytics__logo-hider{margin-top:-2.25rem}.aggregation-analytics__data-holder{width:100%;height:calc(75vh - 24vh);border:0}.welcome-message{margin-bottom:2.5rem}.welcome-message .description{margin-top:1.5rem;font-size:1.375rem;max-width:728px}.stat-card-row{display:flex;justify-content:space-between;padding-bottom:3.5rem}.stat-card-row .stat-card{width:31.5%}.stat-card-row .stat-card img{height:39px;margin-bottom:.5rem}.stat-card-row .stat-card .stat-card-metric-name{text-transform:uppercase;font-weight:400;font-size:.75rem;color:#444d59;padding:.5rem}.stat-card-row .stat-card .stat-card-metric-value{font-family:"Rubik",sans-serif;color:#20252c;font-size:1.875rem;font-weight:300}.stat-card-row .stat-card .card__body{padding:2.5rem 2.5rem 1.5rem 2.5rem;text-align:center}.identified-threats{margin:0 auto;min-width:80rem}.identified-threats h1{font-size:1.875rem;margin-bottom:1.5rem}.identified-threats p{margin:.5rem 0 1.5rem 0}.identified-threats .threat{border-radius:10px;background-color:#fff;margin-bottom:1.5rem;box-shadow:0 1px .25rem rgba(32,37,44,.1)}.identified-threats .threat .threat-header{padding:1.5rem 2.5rem;display:flex;font-size:1.375rem;cursor:pointer;font-weight:600;justify-content:space-between}.identified-threats .threat .threat-header div:first-child{width:30rem}.identified-threats .threat .threat-header div:nth-child(2){width:15rem;font-weight:400}.identified-threats .threat .threat-header-arrow{color:#6a7585;transition:all 200ms linear;font-size:1.875rem;margin-top:-0.25rem;margin-bottom:-0.25rem;text-align:center}.identified-threats .threat .threat-header-arrow--collapse{transform:rotate(180deg)}.identified-threats .threat .threat-body{border-top:1px solid #ccc;padding:1.5rem 2.5rem}.identified-threats .threat .threat-body .hidden-card{display:none}.identified-threats .threat .threat-body .threat-description .threat-nature{margin-bottom:3rem}.identified-threats .threat .threat-body .threat-description .threat-events .threat-event{margin:1rem 0}.identified-threats .threat .threat-body .threat-description .threat-events .threat-event img{height:24px;padding-right:.5rem}.identified-threats .threat .threat-body .threat-description .threat-events .threat-event-date{margin-bottom:.25rem}.identified-threats .threat .threat-body .threat-description .threat-events .threat-event-date span{border-radius:5px;padding:3px 5px;background-color:#eee;font-size:.75rem;font-weight:600}.identified-threats .threat .threat-body .threat-description .threat-events .threat-event-is-corvus span{background-color:#0080a7;color:#fff}.identified-threats .threat .threat-body .policy-holder-column{margin-left:6rem;margin-right:.5rem}.identified-threats .threat .threat-body .policy-holder-column.hidden-card{display:none}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card{margin-bottom:2.5rem;border-left:.75rem solid #0080a7;background-color:#f9fafc;width:550px}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body{padding-bottom:1.5rem;padding-top:1.5rem}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body .policy-holder-card-header{padding-bottom:0;display:flex;justify-content:center;align-items:center;margin:0 0 2rem 0}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body .policy-holder-card-header svg{transform:rotate(180deg);height:1.5rem;width:1.5rem}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body .policy-holder-card-header p{font-size:1.375rem;font-weight:600;margin:0;margin-left:1.5rem}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body .policy-holder-body{padding:0 3.5rem}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body .policy-holder-body .policy-holder-value{margin-right:1.25rem;font-size:1.875rem;font-family:"Rubik",sans-serif}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body .policy-holder-body .policy-holder-value.impact{margin-bottom:0}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body .policy-holder-body .policy-holder-desc{font-size:1rem;margin-left:.5rem;display:flex;justify-content:start;align-items:center}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body .policy-holder-body .policy-holder-desc.impact{width:15rem;margin-bottom:0}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body .policy-holder-body p{margin-bottom:.5rem;margin-top:0}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body .policy-holder-body>*{display:flex;justify-content:end;margin-bottom:.5rem;align-items:center}.identified-threats .threat .threat-body .policy-holder-column .policy-holder-card .policy-holder-card-body .policy-holder-body>*:last-child{margin-bottom:0}.no-developing-threats{margin-bottom:2.5rem}.no-developing-threats .no-developing-threats-card{padding-top:1.5rem;padding-bottom:1.5rem;text-align:center}.no-developing-threats .no-developing-threats-card img{height:64px;padding-bottom:1.5rem}.developing-threats{padding:1.5rem 3rem 1.5rem 3rem;margin-bottom:2.5rem}.developing-threats .developing-threat-section{display:flex;justify-content:space-between;padding-top:1.5rem;padding-bottom:1rem;border-bottom:1px solid #ebeef3}.developing-threats .developing-threat-section .developing-threat-description{width:35rem;padding-right:3.5rem}.developing-threats .developing-threat-section .developing-threat-description .developing-threat-title{font-weight:600;padding-bottom:.5rem}.developing-threats .developing-threat-section .developing-threat-date{width:9rem}.developing-threats .developing-threat-section a{padding-right:1rem}.developing-threats>div>div{width:955px}.developing-threats>div>div>div:first-child{padding-top:0}.developing-threats>div>div>div:last-child{border:0;padding-bottom:0}.schedule-consultation{background-color:#f9fafc;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:3rem;border-radius:.75rem;max-width:406px;max-height:347px;margin-left:3rem}.schedule-consultation img{width:34px}.alerts{margin:0 auto;max-width:75rem}.alerts h1{font-size:1.875rem}.alerts .card{padding:2.5rem;margin-top:1rem}.alerts #alert-threshold{width:50%}.alerts .threshold{border:1px solid #d1d7e0;border-left:0;display:inline-block;margin-right:1rem;padding:1rem}.alerts__exposure{flex-basis:55%;padding-right:1rem}.alerts__exposure .select-wrapper{display:inline-block}.alerts__exposure .select-wrapper:nth-child(2){width:40%;margin-right:0}.alerts__exposure .select-wrapper:nth-child(2)::after{border-left:none;background-color:rgba(0,0,0,0)}.alerts__exposure .select-wrapper:nth-child(2) select{border-top-right-radius:0;border-bottom-right-radius:0;background-color:#ebeef3}.alerts__exposure .select-wrapper:nth-child(3){margin-left:0;width:60%}.alerts__exposure .select-wrapper:nth-child(3) select{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.alerts .form__section::after{border-bottom:0}.nav--admin{background-color:#0080a7}.nav--admin--has-side-nav{padding-left:16.7321428571rem}.nav--admin .breadcrumbs{background-color:#006685;padding:.25rem 3rem;margin:0 auto;max-width:75rem;border-right:1px solid #004f68;border-left:1px solid #004f68}@supports(position: sticky){.sticky-breadcrumbs{position:sticky;top:-0.390625rem;z-index:12}.sticky-uk-tabs{position:sticky;top:7rem;z-index:10;background-color:#fff}}.low-score-table .cds-table{border-radius:12px}.low-score-table .cds-table__header-cell{background-color:#fff;border-right:none}.low-score-table .cds-table__header-content{flex:none}.low-score-table .cds-table__sort{margin-left:.5rem}.low-score-table .cds-table tr th{border-radius:12px}.low-score-table .cds-table tr th:nth-child(2) .cds-table__header-container,.low-score-table .cds-table tr th:nth-child(3) .cds-table__header-container{justify-content:center}.low-score-table .cds-table tr td:nth-child(2) .cds-table__cell-content,.low-score-table .cds-table tr td:nth-child(3) .cds-table__cell-content{display:flex;justify-content:center}.low-score-table .cds-table__row:nth-child(2) tr{display:flex;justifyc-content:center}.remediation-last-updated{flex-grow:1;margin-left:1rem;font-size:1.375rem;color:#006685}.remediation-recommendations{display:flex;flex-flow:row wrap;justify-content:flex-start;gap:25px}.remediation-recommendations .remediation{width:380px;height:370px;border-radius:12px}.remediation-recommendations .remediation__with-shadow{box-shadow:0 2px 1rem rgba(32,37,44,.1)}@media(max-width: 70rem){.remediation-recommendations .remediation{width:100%}}.remediation-recommendations .remediation>.card__header{height:130px;display:flex;flex-flow:row nowrap;justify-content:space-between;padding:1rem 1.5rem;background-color:hsl(110,50%,95.614%);border-top-left-radius:12px;border-top-right-radius:12px;border:none}.remediation-recommendations .remediation>.card__body{display:flex;flex-flow:row nowrap;padding:1.5rem}.remediation-recommendations .remediation__name-and-difficulty{display:flex;flex-direction:column;justify-content:space-between}.remediation-recommendations .remediation__name{font-size:1.375rem;font-weight:bold;color:#20252c}.remediation-recommendations .remediation__difficulty__label{font-size:1rem;font-weight:bold;color:#20252c;margin-right:.25rem}.remediation-recommendations .remediation__difficulty__dots{vertical-align:middle}.remediation-recommendations .remediation__difficulty__dots .dot{width:15px;height:15px;border-radius:100%;display:inline-block;margin-left:.25rem;margin-right:.25rem}.remediation-recommendations .remediation__difficulty__dots .dot-easy{background-color:hsl(110,100%,26.9%)}.remediation-recommendations .remediation__difficulty__dots .dot-medium{background-color:hsl(35,100%,50%)}.remediation-recommendations .remediation__difficulty__dots .dot-hard{background-color:hsl(350,80%,45%)}.remediation-recommendations .remediation__difficulty__dots .dot-unfilled{background-color:#d1d7e0}.remediation-recommendations .remediation__point-gain{min-width:100px;align-self:flex-end;text-align:right;font-weight:bold;line-height:1.2;color:hsl(110,90%,24.21%)}.remediation-recommendations .remediation__point-gain__up-to{font-size:1.375rem}.remediation-recommendations .remediation__point-gain__points{font-family:Rubik;font-size:1.875rem}.remediation-recommendations .remediation__score-change__content{position:relative;width:135px;height:95px;font-size:1.375rem;font-weight:bold;color:#20252c}.remediation-recommendations .remediation__score-change__content__icon{position:absolute;bottom:0px}.remediation-recommendations .remediation__score-change__content__current-score{position:absolute;left:7px;bottom:11px}.remediation-recommendations .remediation__score-change__content__projected-score{position:absolute;top:4px;right:6px}.remediation-recommendations .remediation__score-change__label{text-align:center;font-size:.875rem;font-weight:bold;color:#444d59}.remediation-recommendations .remediation__description-with-link{display:flex;flex-flow:column nowrap;justify-content:center;margin-left:1.5rem}.remediation-recommendations .remediation__description{font-size:1rem;color:#20252c;margin-bottom:10px}.remediation-recommendations .remediation__resource-link{font-size:1rem;color:#006685;text-decoration:underline}.remediation-toggle{width:fit-content;margin:auto;border-radius:3px;padding:6px 11px;background-color:#fff;color:#0080a7}.remediation-toggle:hover{cursor:pointer}div.scan-status{display:flex;justify-content:center;margin:auto;text-align:center}div.scan-status div.col{flex-direction:column}div.scan-status div.col .message{font-size:1.375rem;font-weight:600;margin-bottom:.5rem}div.scan-status div.col .subtext{font-size:1rem}div.scan-status div.col svg.danger{color:hsl(350,80%,45%)}div.scan-status div.col .danger{color:hsl(350,72%,40.5%)}div.scan-status div.col .success{color:hsl(171,100%,27%)}div.scan-status div.col .cancelled{color:#6a7585}div.scan-status div.col .icon{width:3rem;height:3rem;display:block;margin:auto;margin-bottom:.5rem}.\*\:-tw-mt-4 > *{
  margin-top: -1rem;
}.\*\:\!tw-fill-white > *{
  fill: #fff !important;
}.hover\:tw-cursor-pointer:hover{
  cursor: pointer;
}.hover\:tw-border-gray-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}.hover\:tw-bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 252 / var(--tw-bg-opacity, 1));
}.hover\:tw-bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(235 238 243 / var(--tw-bg-opacity, 1));
}.hover\:tw-bg-teal-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(240 247 250 / var(--tw-bg-opacity, 1));
}.hover\:tw-bg-teal-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 102 133 / var(--tw-bg-opacity, 1));
}.hover\:tw-text-gray-700:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}.hover\:tw-text-teal-800:hover{
  --tw-text-opacity: 1;
  color: rgb(0 79 104 / var(--tw-text-opacity, 1));
}.hover\:tw-shadow-lg:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.focus\:tw-bg-gray-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(235 238 243 / var(--tw-bg-opacity, 1));
}.active\:tw-bg-gray-500:active{
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}.active\:tw-text-white:active{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}.tw-group:hover .group-hover\:tw-bg-teal-100{
  --tw-bg-opacity: 1;
  background-color: rgb(240 247 250 / var(--tw-bg-opacity, 1));
}.tw-group:hover .group-hover\:tw-opacity-100{
  opacity: 1;
}.tw-group:focus .group-focus\:tw-opacity-100{
  opacity: 1;
}@media (min-width: 640px){.sm\:tw-mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }.sm\:tw-table-cell{
    display: table-cell;
  }.sm\:tw-rounded-lg{
    border-radius: 0.5rem;
  }.sm\:tw-px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }.sm\:tw-px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }.sm\:tw-pb-14{
    padding-bottom: 3.5rem;
  }
}@media (min-width: 1024px){.lg\:tw-col-span-2{
    grid-column: span 2 / span 2;
  }.lg\:tw-col-start-3{
    grid-column-start: 3;
  }.lg\:tw-row-span-2{
    grid-row: span 2 / span 2;
  }.lg\:tw-row-end-1{
    grid-row-end: 1;
  }.lg\:tw-row-end-2{
    grid-row-end: 2;
  }.lg\:tw-mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }.lg\:tw-max-w-none{
    max-width: none;
  }.lg\:tw-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }.lg\:tw-px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}@media (min-width: 1280px){.xl\:tw-px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}.\[\&\>\*\]\:tw-py-2>*{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}.\[\&_\>_\.page-section_\.section-title\]\:tw-mb-0 > .page-section .section-title{
  margin-bottom: 0px;
}.\[\&_\>_div\]\:\!tw-text-white > div{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}.\[\&_\>_img\]\:\!tw-w-40 > img{
  width: 10rem !important;
}.\[\&_\>_img\]\:tw-w-40 > img{
  width: 10rem;
}

/*# sourceMappingURL=app_css.css.map*/