/* UXPL */
.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@-webkit-keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Buttons */
.pl-button,
a.pl-button {
  color: inherit;
  font: inherit;
  line-height: 1.5;
  border-radius: 3px;
  padding: 7px 14px;
  background-color: transparent;
  border: 1px solid;
  cursor: pointer;
  text-decoration: none;
}

.pl-button:hover,
a.pl-button:hover {
  text-decoration: none;
}

.pl-button--icon-only {
  padding: 7px;
}

.pl-button__icon {
  width: 1em;
  height: 1em;
  font-size: 1.5em;
  line-height: 1;
  vertical-align: -25%;
  pointer-events: none;
}

.pl-button__icon + .pl-button__label {
  margin-left: 8px;
}

.pl-button__label + .pl-button__icon {
  margin-left: 8px;
}

.pl-button--cta,
a.pl-button--cta {
  color: #ffffff;
  background-color: #ec5e1d;
  border-color: #ec5e1d;
  font-weight: 600;
}

.pl-button--cta:hover, .pl-button--cta.is-hovered,
a.pl-button--cta:hover,
a.pl-button--cta.is-hovered {
  background-color: #aa3500;
  border-color: #aa3500;
}

.pl-button--cta:focus, .pl-button--cta.is-focussed,
a.pl-button--cta:focus,
a.pl-button--cta.is-focussed {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  outline: none;
}

.pl-button--cta:active, .pl-button--cta.is-active,
a.pl-button--cta:active,
a.pl-button--cta.is-active {
  border-color: #aa3500;
  box-shadow: inset 0 0 1px 2px #d35300;
}

.pl-button--cta:disabled, .pl-button--cta.is-disabled,
a.pl-button--cta:disabled,
a.pl-button--cta.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.pl-button--primary,
a.pl-button--primary {
  color: #ffffff;
  background-color: #1774e5;
  border-color: #1774e5;
  font-weight: 600;
}

.pl-button--primary:hover, .pl-button--primary.is-hovered,
a.pl-button--primary:hover,
a.pl-button--primary.is-hovered {
  background-color: #0e4f9e;
  border-color: #0e4f9e;
}

.pl-button--primary:focus, .pl-button--primary.is-focussed,
a.pl-button--primary:focus,
a.pl-button--primary.is-focussed {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  outline: none;
}

.pl-button--primary:active, .pl-button--primary.is-active,
a.pl-button--primary:active,
a.pl-button--primary.is-active {
  border-color: #0e4f9e;
  box-shadow: inset 0 0 0 2px #055dab;
}

.pl-button--primary:disabled, .pl-button--primary.is-disabled,
a.pl-button--primary:disabled,
a.pl-button--primary.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.pl-button--secondary,
a.pl-button--secondary {
  color: #1774e5;
  border-color: #1774e5;
  background-color: transparent;
  border-color: #1774e5;
}

.pl-button--secondary:hover, .pl-button--secondary.is-hovered,
a.pl-button--secondary:hover,
a.pl-button--secondary.is-hovered {
  background-color: transparent;
  border-color: #0e4f9e;
  color: #0e4f9e;
}

.pl-button--secondary:focus, .pl-button--secondary.is-focussed,
a.pl-button--secondary:focus,
a.pl-button--secondary.is-focussed {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  outline: none;
}

.pl-button--secondary:active, .pl-button--secondary.is-active,
a.pl-button--secondary:active,
a.pl-button--secondary.is-active {
  border-color: #0e4f9e;
  box-shadow: inset 0 0 0 2px #0e4f9e;
  color: #0e4f9e;
}

.pl-button--secondary:disabled, .pl-button--secondary.is-disabled,
a.pl-button--secondary:disabled,
a.pl-button--secondary.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.pl-button--no-border,
a.pl-button--no-border {
  color: #1774e5;
  background-color: transparent;
  border-color: transparent;
}

.pl-button--no-border:hover, .pl-button--no-border.is-hovered,
a.pl-button--no-border:hover,
a.pl-button--no-border.is-hovered {
  background-color: transparent;
  border-color: transparent;
  color: #0e4f9e;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.35);
}

.pl-button--no-border:focus, .pl-button--no-border.is-focussed,
a.pl-button--no-border:focus,
a.pl-button--no-border.is-focussed {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  outline: none;
}

.pl-button--no-border:active, .pl-button--no-border.is-active,
a.pl-button--no-border:active,
a.pl-button--no-border.is-active {
  box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.2);
  color: #0e4f9e;
}

.pl-button--no-border:disabled, .pl-button--no-border.is-disabled,
a.pl-button--no-border:disabled,
a.pl-button--no-border.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.pl-button--danger,
a.pl-button--danger {
  color: #ffffff;
  background-color: #db0000;
  border-color: #db0000;
  font-weight: 600;
}

.pl-button--danger:hover, .pl-button--danger.is-hovered,
a.pl-button--danger:hover,
a.pl-button--danger.is-hovered {
  background-color: #8f0000;
  border-color: #8f0000;
}

.pl-button--danger:focus, .pl-button--danger.is-focussed,
a.pl-button--danger:focus,
a.pl-button--danger.is-focussed {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  outline: none;
}

.pl-button--danger:active, .pl-button--danger.is-active,
a.pl-button--danger:active,
a.pl-button--danger.is-active {
  border-color: #db0000;
  box-shadow: inset 0 0 0 2px #8f0000;
}

.pl-button--danger:disabled, .pl-button--danger.is-disabled,
a.pl-button--danger:disabled,
a.pl-button--danger.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.pl-button--small,
a.pl-button--small {
  max-height: 32px;
  font-size: 14px;
  padding: 6px 16px;
  line-height: 18px;
}

.pl-button--small.pl-button--icon-only,
a.pl-button--small.pl-button--icon-only {
  padding: 6px 7px;
  max-width: 2rem;
}

.pl-button--small .pl-button__icon,
a.pl-button--small .pl-button__icon {
  width: 16px;
  height: 16px;
  line-height: 0.5;
}

.pl-button--small .pl-button__icon + .pl-button__label,
a.pl-button--small .pl-button__icon + .pl-button__label {
  margin-left: 4px;
}

.pl-button--small .pl-button__label + .pl-button__icon,
a.pl-button--small .pl-button__label + .pl-button__icon {
  margin-left: 4px;
}

.pl-button--mini,
a.pl-button--mini {
  max-height: 24px;
  font-size: 14px;
  padding: 2px 16px;
  line-height: 18px;
}

.pl-button--mini.pl-button--icon-only,
a.pl-button--mini.pl-button--icon-only {
  padding: 2px 3px;
  max-width: 1.5rem;
}

.pl-button--mini .pl-button__icon,
a.pl-button--mini .pl-button__icon {
  width: 16px;
  height: 16px;
  line-height: 0.5;
}

.pl-button--mini .pl-button__icon + .pl-button__label,
a.pl-button--mini .pl-button__icon + .pl-button__label {
  margin-left: 4px;
}

.pl-button--mini .pl-button__label + .pl-button__icon,
a.pl-button--mini .pl-button__label + .pl-button__icon {
  margin-left: 4px;
}

.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.pl-dropdown {
  position: relative;
  display: inline-block;
}

.pl-dropdown__flyout {
  /* Track */
  /* Handle */
  /* Handle on hover */
  display: none;
  min-width: 8.5rem;
  max-height: 148px;
  background-color: #ffffff;
  border: 1px solid #1774e5;
  border-radius: 3px;
  padding: 8px 0;
  margin: 0;
  position: absolute;
  right: 0;
  bottom: -4px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: translateY(100%);
}

.pl-dropdown__flyout::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.pl-dropdown__flyout::-webkit-scrollbar-track {
  background: none;
}

.pl-dropdown__flyout::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1) !important;
  border-radius: 15px;
}

.pl-dropdown__flyout::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.1) !important;
}

.pl-dropdown__flyout.is-shown {
  display: block;
}

.pl-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pl-dropdown-menu__item {
  margin: 0;
}

.pl-dropdown-menu__link {
  display: block;
  text-decoration: none;
  color: #1774e5;
  padding: 8px 16px;
}

.pl-dropdown-menu__link:hover, .pl-dropdown-menu__link.is-hovered {
  background-color: #f3f4fb;
  cursor: pointer;
  text-decoration: none;
}

.pl-dropdown-menu__action {
  display: block;
  width: 100%;
  text-align: left;
  color: #1774e5;
  border: none;
  background-color: transparent;
  font-size: inherit;
  padding: 0;
  padding: 8px 16px;
}

.pl-dropdown-menu__action:hover, .pl-dropdown-menu__action.is-hovered {
  background-color: #f3f4fb;
  cursor: pointer;
}

.pl-globalnav-layout {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.pl-globalnav-layout__main {
  display: flex;
  overflow-y: auto;
}

.pl-globalnav {
  z-index: 8000;
}

.pl-globalnav__navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  background-color: #0e4f9e;
}

.pl-globalnav-navbar__brand {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #0e4f9e;
  color: #ffffff;
  height: 56px;
  padding-left: 16px;
  font-size: 24px;
  cursor: pointer;
  text-decoration: none;
}

.pl-globalnav-navbar__brand > span {
  padding: 0 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.pl-globalnav__open,
.pl-globalnav__close {
  position: absolute;
  right: 0;
  color: #ffffff;
  opacity: 0.75;
  background-color: transparent;
  border: none;
  width: 56px;
  height: 56px;
}

.pl-globalnav__open {
  display: block;
}

.pl-globalnav__close {
  display: none;
}

.pl-globalnav__close-icon,
.pl-globalnav__open-icon {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.pl-globalnav__menu {
  position: fixed;
  top: 56px;
  z-index: 8300;
  display: flex;
  align-items: center;
  height: 64px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow-x: auto;
  width: 100vw;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.5s ease-out;
  background-color: #ffffff;
}

.pl-globalnav-navbar__item {
  margin-right: 8px;
}

.pl-globalnav-navbar__action {
  font-size: 14px;
  line-height: 14px;
  background-color: transparent;
  border: 0;
  color: #1774e5;
  padding: 13px 32px;
  margin-right: 10px;
  cursor: pointer;
  border-bottom: 4px solid transparent;
}

.pl-globalnav-navbar__action.is-selected {
  color: #0e4f9e;
  border-bottom: 4px solid #0e4f9e;
}

.pl-globalnav-navbar__icon {
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.pl-globalnav-navbar__text {
  display: none;
}

.pl-globalnav-panel {
  position: fixed;
  top: 120px;
  right: 0;
  z-index: 8200;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateX(101%);
  transition: transform 0.5s ease-out;
}

.pl-globalnav-panel__content {
  display: none;
}

.pl-globalnav-panel__content.is-open {
  display: block;
}

.pl-globalnav.is-panel-open .pl-globalnav__open {
  display: none;
}

.pl-globalnav.is-panel-open .pl-globalnav__close {
  display: block;
}

.pl-globalnav.is-panel-open .pl-globalnav__menu {
  transform: translateX(0%);
}

.pl-globalnav.is-panel-open .pl-globalnav-panel {
  transform: translateX(0%);
}

@media only screen and (min-width: 600px) {
  .pl-globalnav-navbar__action {
    margin-right: 11px;
    padding: 13px 34px;
  }
}

@media only screen and (min-width: 1024px) {
  .pl-globalnav__navbar {
    flex-direction: row;
    justify-content: space-between;
    background-color: #0e4f9e;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding: 0 20px;
  }
  .pl-globalnav-navbar__brand {
    width: auto;
    height: auto;
    padding-left: 0;
  }
  .pl-globalnav .pl-globalnav__navbar .pl-globalnav__open,
  .pl-globalnav .pl-globalnav__navbar .pl-globalnav__close {
    display: none;
  }
  .pl-globalnav__menu {
    position: static;
    justify-content: flex-end;
    height: 48px;
    transform: none;
    transition: none;
    padding-right: 4px;
    box-shadow: none;
    margin-bottom: -5px;
    background-color: transparent;
  }
  .pl-globalnav-navbar__item {
    margin-left: 28px;
    margin-right: 0;
    height: 100%;
  }
  .pl-globalnav-navbar__action {
    display: flex;
    align-items: center;
    margin: 0;
    color: #ffffff;
    opacity: 0.75;
    margin-top: 3px;
    padding: 6px;
    outline: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-bottom: 4px solid transparent;
  }
  .pl-globalnav-navbar__action:hover {
    padding: 8px 6px 4px 6px;
    margin-top: 1px;
    opacity: 1;
    color: #ffffff;
    border-bottom: 4px solid #00a2ff;
  }
  .pl-globalnav-navbar__action.is-selected {
    padding: 8px 6px 4px 6px;
    margin-top: 1px;
    opacity: 1;
    color: #ffffff;
    border-bottom: 4px solid #00a2ff;
  }
  .pl-globalnav-navbar__action:focus {
    box-shadow: 0 0 2px 4px #79ceff;
    border-radius: 3px;
    opacity: 1;
    outline: 0;
    padding: 8px 6px 4px 6px;
    margin-top: 1px;
  }
  .pl-globalnav-navbar__icon {
    width: 24px;
    height: 24px;
  }
  .pl-globalnav-navbar__text {
    display: inline;
    margin-left: 6px;
  }
  .pl-globalnav__backdrop {
    position: fixed;
    top: 40px;
    display: none;
    z-index: 8100;
    cursor: pointer;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .pl-globalnav.is-panel-open .pl-globalnav__backdrop {
    display: block;
  }
  .pl-globalnav-panel {
    position: fixed;
    top: 40px;
    right: 0;
    min-width: 394px;
    max-width: 568px;
    min-height: 768px;
    height: 100%;
    margin: 0;
    background-color: #ffffff;
    box-shadow: -3px 0 4px 0 rgba(0, 0, 0, 0.25);
  }
}

.pl-primarynav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 0 12px;
  z-index: 7000;
}

.pl-primarynav__item {
  cursor: pointer;
  color: #1774e5;
  margin: 0 12px;
}

.pl-primarynav__menu {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.pl-primarynav__link {
  color: #1774e5;
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 12px 6px 12px;
  border-bottom: 4px solid transparent;
  font-size: 16px;
  line-height: 1.5;
  display: inline-block;
}

.pl-primarynav__link:focus {
  box-shadow: 0 0 2px 4px #4dbeff;
  border-radius: 3px;
}

.pl-primarynav__link:active, .pl-primarynav__link:hover {
  color: #0e4f9e;
  text-shadow: 0 0 0 #0e4f9e;
  border-bottom-color: #0e4f9e;
  text-decoration: none;
}

.pl-primarynav__link.is-active {
  color: #0e4f9e;
  text-shadow: 0 0 0 #0e4f9e;
  border-bottom-color: #0e4f9e;
}

.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.pl-leftnav {
  width: 228px;
  background-color: #f4f4f4;
  color: #1774e5;
  overflow-x: hidden;
  font-size: 16px;
  transition: all 0.4s ease-out;
}

.pl-leftnav-menu,
.pl-leftnav-menu__nested {
  list-style: none;
  padding: 8px 0;
  overflow-y: hidden;
  display: block;
}

.pl-leftnav-menu__dropdown {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #727272;
  outline: none;
}

.pl-leftnav-menu__dropdown svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.pl-leftnav-menu__dropdown > * {
  transform: translateY(2px);
  transition: all 400ms ease-out;
}

.pl-leftnav-menu__dropdown:focus {
  border-radius: 3px;
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  display: inline-block;
  opacity: 0.75;
}

.pl-leftnav-menu__link {
  text-decoration: none;
  color: #1774e5;
  padding: 8px 8px 8px 20px;
  line-height: 1.5;
  display: block;
  border-radius: 0;
  background-color: transparent;
}

.pl-leftnav-menu__link:hover {
  text-decoration: none;
}

.pl-leftnav-menu__link:focus {
  border-radius: 3px;
  background-color: #f4f4f4;
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  margin-left: 5px;
  padding-left: 15px;
  margin-right: 5px;
  padding-right: 3px;
}

.pl-leftnav-menu__link:focus ~ .pl-leftnav-menu__dropdown {
  display: inline-block;
  opacity: 0.75;
}

.pl-leftnav-menu {
  overflow-y: auto;
  height: 100%;
  opacity: 1;
  display: flex;
  flex-direction: column;
  transition: opacity 0s linear 200ms;
}

.pl-leftnav-menu .pl-leftnav-menu__link {
  border-left: 4px solid transparent;
  outline: none;
}

.pl-leftnav-menu.is-scrollable {
  overflow-y: auto;
  position: relative;
}

.pl-leftnav-menu.is-scrollable::-webkit-scrollbar-thumb {
  display: block;
  border-radius: 100px;
  background-color: #dedede;
  overflow-y: auto;
}

.pl-leftnav-menu::-webkit-scrollbar {
  width: 5px;
  background-color: #f4f4f4;
}

.pl-leftnav-menu::-webkit-scrollbar-thumb {
  display: none;
}

.pl-leftnav-menu__nested {
  list-style-type: none;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: all 0.4s ease-out;
}

.pl-leftnav-menu__nested .pl-leftnav-menu__link {
  padding-left: 48px;
  border: none;
}

.pl-leftnav-menu__nested .pl-leftnav-menu__link:first-child {
  margin-top: 8px;
}

.pl-leftnav-menu__nested .pl-leftnav-menu__link:focus {
  padding-left: 43px;
}

.pl-leftnav-menu__item {
  position: relative;
  margin-bottom: 8px;
}

.pl-leftnav-menu__item:hover > .pl-leftnav-menu__link {
  background-color: #ffffff;
}

.pl-leftnav-menu__item:hover .pl-leftnav-menu__dropdown {
  display: inline-block;
  opacity: 0.75;
}

.pl-leftnav-menu__item.is-open .pl-leftnav-menu__dropdown {
  display: inline-block;
  opacity: 0.75;
  /* stylelint-disable-next-line max-nesting-depth */
}

.pl-leftnav-menu__item.is-open .pl-leftnav-menu__dropdown > * {
  transform: rotateX(180deg);
}

.pl-leftnav-menu__item.is-open .pl-leftnav-menu__nested {
  max-height: 600px;
}

.pl-leftnav-menu__item.is-active > .pl-leftnav-menu__link {
  color: #0e4f9e;
  font-weight: 600;
  background-color: #ffffff;
}

.pl-leftnav-menu__item.is-active .pl-leftnav-menu__link {
  border-left: 4px solid #0e4f9e;
}

.pl-leftnav-menu__nested .pl-leftnav-menu__item .pl-leftnav-menu__link {
  border-left: none;
  background-color: transparent;
}

.pl-leftnav-menu__icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  float: left;
  pointer-events: none;
}

.pl-leftnav-layout {
  display: flex;
  margin: 0;
  padding: 0;
  height: 100%;
}

.pl-leftnav-layout__side {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow-y: auto;
}

.pl-leftnav-layout__main {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 100%;
}

.pl-leftnav-layout--no-scroll {
  height: auto;
}

.pl-leftnav-layout--no-scroll .pl-leftnav-layout__side {
  overflow-y: visible;
}

.pl-leftnav-layout--no-scroll .pl-leftnav-layout__main {
  flex: 1 1 auto;
  overflow-y: visible;
}

.pl-leftnav-layout__collapse {
  display: flex;
  justify-self: flex-end;
  justify-content: flex-end;
  align-items: center;
  padding: 4px 0;
  min-height: 40px;
  border: none;
  border-top: 1px solid #dedede;
  color: #727272;
  background-color: #f4f4f4;
  width: 14.3rem;
  cursor: pointer;
  transition: all 400ms ease-out;
  outline: none;
}

.pl-leftnav-layout__collapse:hover {
  background-color: #dedede;
  color: #1774e5;
}

.pl-leftnav-layout__collapse:focus {
  border-radius: 3px;
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
}

.pl-leftnav-layout__collapse-icon {
  background: transparent;
  outline: none;
  padding: 0;
  border: none;
  margin: 0 12px 0 8px;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.pl-leftnav-layout__collapse-text {
  font-size: 14px;
  font-weight: 600;
}

.pl-leftnav-layout__collapse:hover .pl-leftnav-layout__collapse-text {
  color: #727272;
}

.pl-leftnav-layout.is-collapsed .pl-leftnav-layout__side {
  width: 40px;
  background-color: transparent;
}

.pl-leftnav-layout.is-collapsed .pl-leftnav-layout__collapsible {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition-delay: 0s;
  overflow: hidden;
}

.pl-leftnav-layout.is-collapsed .pl-leftnav-layout__collapse {
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #dedede;
  border-top: 0;
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.pl-leftnav-layout.is-collapsed .pl-leftnav-layout__collapse:hover {
  background-color: #0e4f9e;
  color: white;
}

.pl-leftnav-layout.is-collapsed .pl-leftnav-layout__collapse-text {
  display: none;
}

.pl-leftnav-layout.is-collapsed .pl-leftnav-layout__collapse-icon {
  width: 24px;
  height: 24px;
  margin: 0;
  transform: rotateY(180deg);
}

.pl-leftnav--modal {
  width: 184px;
  border-right: 1px solid #dedede;
  background-color: #ffffff;
  /* stylelint-disable-next-line no-descending-specificity */
}

.pl-leftnav--modal .pl-leftnav-menu__item .pl-leftnav-menu__link {
  border-left: none;
}

.pl-leftnav--modal .pl-leftnav-menu__item:hover {
  /* stylelint-disable-next-line max-nesting-depth */
}

.pl-leftnav--modal .pl-leftnav-menu__item:hover > .pl-leftnav-menu__link {
  background-color: #f3f4fb;
}

.pl-leftnav--modal .pl-leftnav-menu__link {
  color: #727272;
  font-size: 14px;
}

.pl-notification {
  position: relative;
  display: flex;
  border: 1px solid #000000;
  box-sizing: border-box;
  background-color: #e1f7eb;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.35);
  border-radius: 3px;
  padding: 8px 16px;
  z-index: 11000;
}

.pl-notification__message-action {
  text-decoration: none;
  margin: 8px;
  cursor: pointer;
  line-height: 1.5;
  color: #1774e5;
}

.pl-notification__message-action:hover {
  text-decoration: none;
  color: #1774e5;
}

.pl-notification__icon {
  width: 24px;
  height: 24px;
}

.pl-notification__btn-close {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  right: 10px;
  height: 24px;
  width: 24px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pl-notification__icon-close {
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.pl-notification__message {
  font-size: 16px;
  width: 100%;
  word-wrap: break-word;
  padding-left: 12px;
  padding-right: 24px;
  line-height: 1.5;
}

.pl-notification--success {
  border-color: #039145;
  background-color: #e1f7eb;
}

.pl-notification--success .pl-notification__icon,
.pl-notification--success .pl-notification__btn-close,
.pl-notification--success .pl-notification__icon-close {
  color: #039145;
}

.pl-notification--success + .pl-notification-detail__panel {
  border-color: #039145;
}

.pl-notification--warning {
  border-color: #fab632;
  background-color: #fef7ea;
}

.pl-notification--warning .pl-notification__icon,
.pl-notification--warning .pl-notification__btn-close,
.pl-notification--warning .pl-notification__icon-close {
  color: #fab632;
}

.pl-notification--warning + .pl-notification-detail__panel {
  border-color: #fab632;
}

.pl-notification--info {
  border-color: #a160fb;
  background-color: #f5effe;
}

.pl-notification--info .pl-notification__icon,
.pl-notification--info .pl-notification__btn-close,
.pl-notification--info .pl-notification__icon-close {
  color: #a160fb;
}

.pl-notification--info + .pl-notification-detail__panel {
  border-color: #a160fb;
}

.pl-notification--error {
  border-color: #db0000;
  background-color: #f9e1e3;
}

.pl-notification--error .pl-notification__icon,
.pl-notification--error .pl-notification__btn-close,
.pl-notification--error .pl-notification__icon-close {
  color: #db0000;
}

.pl-notification--error + .pl-notification-detail__panel {
  border-color: #db0000;
}

.pl-notification__message-head {
  font-weight: 600;
}

.pl-notification-detail {
  width: 100%;
}

.pl-notification-detail__panel {
  background-color: #ffffff;
  padding: 1px 16px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-width: 1px;
  border-style: solid;
  border-top: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  display: none;
}

.pl-notification-detail.is-detail-shown .pl-notification {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.pl-notification-detail.is-detail-shown .pl-notification-detail__panel {
  display: block;
}

.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.pl-form-field {
  position: relative;
}

.pl-form-field__input {
  margin: 0;
  padding: 0;
}

.pl-form-field__label {
  display: inline-block;
  color: #727272;
  font-size: 13px;
  line-height: 1.62;
}

.pl-form-field__helper-text {
  color: #727272;
  font-size: 12px;
  line-height: 1.5;
}

.pl-form-field--text-input {
  padding-top: 22px;
}

.pl-form-field--text-input .pl-form-field__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #b6b6b6;
  color: #212121;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
}

.pl-form-field--text-input .pl-form-field__input::-moz-placeholder {
  opacity: 0.9;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.25;
  color: transparent;
}

.pl-form-field--text-input .pl-form-field__input:-ms-input-placeholder {
  opacity: 0.9;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.25;
  color: transparent;
}

.pl-form-field--text-input .pl-form-field__input::placeholder {
  opacity: 0.9;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.25;
  color: transparent;
}

.pl-form-field--text-input .pl-form-field__input:-moz-placeholder-shown ~ .pl-form-field__label {
  font-size: 16px;
  line-height: 1.5;
  top: 24px;
}

.pl-form-field--text-input .pl-form-field__input:-ms-input-placeholder ~ .pl-form-field__label {
  font-size: 16px;
  line-height: 1.5;
  top: 24px;
}

.pl-form-field--text-input .pl-form-field__input:placeholder-shown ~ .pl-form-field__label {
  font-size: 16px;
  line-height: 1.5;
  top: 24px;
}

.pl-form-field--text-input .pl-form-field__input:focus {
  outline: none;
  border-bottom: 1px solid #1774e5;
}

.pl-form-field--text-input .pl-form-field__input:focus ~ .pl-form-field__label {
  color: #1774e5;
  font-size: 13px;
  line-height: 1.62;
  top: 2px;
}

.pl-form-field--text-input .pl-form-field__label {
  position: absolute;
  left: 0;
  top: 2px;
}

.pl-form-field--text-input.has-error .pl-form-field__label {
  color: #db0000;
}

.pl-form-field--text-input.has-error .pl-form-field__input {
  border-bottom: 1px solid #db0000;
}

.pl-form-field--text-input.has-error .pl-form-field__helper-text {
  opacity: 0.9;
  color: #db0000;
}

.pl-form-field--text-input .pl-form-field__input:disabled {
  border-bottom: 1px solid #b6b6b6;
  color: #b6b6b6;
}

.pl-form-field--text-input .pl-form-field__input:disabled ~ .pl-form-field__label {
  color: #b6b6b6;
}

.pl-form-field--text-input .pl-form-field__input:disabled ~ .pl-form-field__helper-text {
  color: #b6b6b6;
}

.pl-form-field--textarea {
  padding-top: 20px;
}

.pl-form-field--textarea .pl-form-field__label {
  position: absolute;
  left: 0;
  top: 0;
}

.pl-form-field--textarea.has-error .pl-form-field__label {
  color: #db0000;
}

.pl-form-field--textarea.has-error .pl-form-field__textarea {
  border: 1px solid #db0000;
}

.pl-form-field--textarea.has-error .pl-form-field__helper-text {
  opacity: 0.9;
  color: #db0000;
}

.pl-form-field--textarea .pl-form-field__textarea:disabled ~ .pl-form-field__label {
  color: #b6b6b6;
}

.pl-form-field__textarea {
  font-family: inherit;
  color: #212121;
  font-size: 16px;
  line-height: 1.5;
  outline: none;
  border: 1px solid #b6b6b6;
  border-radius: 3px;
  min-height: 148px;
  width: 100%;
}

.pl-form-field__textarea::-moz-placeholder {
  opacity: 0.9;
  color: #b6b6b6;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.pl-form-field__textarea:-ms-input-placeholder {
  opacity: 0.9;
  color: #b6b6b6;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.pl-form-field__textarea::placeholder {
  opacity: 0.9;
  color: #b6b6b6;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.pl-form-field__textarea:focus {
  outline: none;
  border: 1px solid #1774e5;
}

.pl-form-field__textarea:focus ~ .pl-form-field__label {
  color: #1774e5;
}

.pl-form-field--checkbox .pl-form-field__label {
  position: relative;
  cursor: pointer;
  color: #212121;
  font-size: 14px;
  line-height: 1.28;
  margin-left: 24px;
  vertical-align: middle;
}

.pl-form-field--checkbox .pl-form-field__label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  background-color: #fafafa;
  border: 1px solid #727272;
  padding: 7px;
  border-radius: 3px;
  display: inline-block;
}

.pl-form-field--checkbox .pl-form-field__input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
}

.pl-form-field--checkbox .pl-form-field__input:focus ~ .pl-form-field__label::before {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  border-radius: 3px;
}

.pl-form-field--checkbox .pl-form-field__input:checked ~ .pl-form-field__label::before {
  background-color: #1774e5;
  border: 1px solid #1774e5;
}

.pl-form-field--checkbox .pl-form-field__input:checked ~ .pl-form-field__label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  color: #ffffff;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 18'%3E%3Cpath fill='white' fill-rule='evenodd' d='M9.147 16.366L20.105 5.127a1.25 1.25 0 0 1 1.79 1.746L10.063 19.007a1.25 1.25 0 0 1-1.769.021l-6.168-6.03a1.25 1.25 0 0 1 1.748-1.788l5.273 5.156z'/%3E%3C/svg%3E") 0 -2px/100% no-repeat;
}

.pl-form-field--checkbox .pl-form-field__input:indeterminate ~ .pl-form-field__label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -21px;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  border-radius: 1px;
  background-color: #ffffff;
  background-image: none;
}

.pl-form-field--checkbox .pl-form-field__input:indeterminate ~ .pl-form-field__label::before {
  background-color: #1774e5;
  border: 1px solid #1774e5;
}

.pl-form-field--checkbox .pl-form-field__input:disabled ~ .pl-form-field__label {
  color: #b6b6b6;
  cursor: default;
}

.pl-form-field--checkbox .pl-form-field__input:disabled ~ .pl-form-field__label::before {
  border-color: #b6b6b6;
  border-radius: 2px;
  background-color: #f4f4f4;
}

.pl-form-field--radio-button .pl-form-field__label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #212121;
  font-size: 14px;
}

.pl-form-field--radio-button .pl-form-field__label::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: #fafafa;
  border: 1px solid #727272;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}

.pl-form-field--radio-button .pl-form-field__input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
}

.pl-form-field--radio-button .pl-form-field__input:focus ~ .pl-form-field__label::before {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  outline: none;
}

.pl-form-field--radio-button .pl-form-field__input:checked ~ .pl-form-field__label::before {
  border: 4px solid #1774e5;
}

.pl-form-field--radio-button .pl-form-field__input:disabled ~ .pl-form-field__label {
  color: #b6b6b6;
  cursor: default;
}

.pl-form-field--radio-button .pl-form-field__input:disabled ~ .pl-form-field__label::before {
  border-color: #b6b6b6;
  background-color: #f4f4f4;
}

@-webkit-keyframes pl-rotate-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pl-rotate-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pl-spinner--color-medium {
  background-color: #f4f4f4;
}

.pl-spinner--color-dark {
  background-color: #212121;
}

.pl-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.pl-spinner__icon {
  -webkit-animation: pl-rotate-spinner 1s linear infinite;
          animation: pl-rotate-spinner 1s linear infinite;
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 32c0 17.673 14.327 32 32 32 17.673 0 32-14.327 32-32C64 14.327 49.673 0 32 0 14.327 0 0 14.327 0 32zM32 4c15.439 0 28 12.561 28 28S47.439 60 32 60 4 47.439 4 32 16.561 4 32 4' fill-opacity='.2' fill='%23DEDEDE'/%3E%3Cpath d='M64 32h-4C60 16.56 47.44 4 32 4V0c17.67 0 32 14.33 32 32' fill='%231774E5'/%3E%3C/g%3E%3C/svg%3E");
  height: 64px;
  width: 64px;
}

.pl-spinner__message {
  color: #727272;
  font-size: 18px;
  padding-top: 20px;
}

.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.pl-modal {
  align-items: center;
  justify-content: center;
}

.pl-modal__container {
  position: relative;
}

.pl-modal__header {
  display: flex;
  justify-content: space-between;
  position: relative;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 48px 20px 24px;
  z-index: 1;
}

.pl-modal__header-right {
  padding-right: 24px;
  padding-left: 24px;
}

.pl-modal__header--frameless {
  box-shadow: none;
}

.pl-modal__heading {
  color: #212121;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.pl-modal__close-icon {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.pl-modal__close {
  position: absolute;
  right: 24px;
  width: 24px;
  height: 24px;
  color: #727272;
  border: 0;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
}

.pl-modal__body {
  overflow: auto;
  flex: 1;
}

.pl-modal__body--gray {
  background-color: #fafafa;
}

.pl-modal__body--padded {
  padding: 32px 24px 24px 24px;
}

.pl-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.pl-modal__footer-left {
  display: flex;
  align-items: center;
  text-align: left;
}

.pl-modal__footer-right {
  text-align: right;
  margin-left: auto;
}

.pl-modal__footer-right .pl-button:not(:last-child) {
  margin-right: 16px;
}

.pl-modal--full-page .pl-modal__container {
  width: calc(100vw - 2 * 48px);
  height: calc(100vh - 2 * 48px);
  margin: 48px;
}

.pl-modal--full-page .pl-modal__body {
  max-height: none;
}

.pl-modal--large .pl-modal__container {
  min-height: 240px;
  max-height: 650px;
  min-width: 720px;
  max-width: 928px;
}

.pl-modal--small .pl-modal__header,
.pl-modal--small .pl-modal__footer {
  box-shadow: none;
}

.pl-modal--small .pl-modal__header {
  padding: 24px 24px 8px;
  justify-content: flex-end;
}

.pl-modal--small .pl-modal__heading {
  font-size: 16px;
  padding-bottom: 16px;
}

.pl-modal--small .pl-modal__close-icon {
  width: 20px;
  height: 20px;
}

.pl-modal--small .pl-modal__container {
  min-height: 172px;
  max-height: 650px;
  min-width: 320px;
  max-width: 512px;
}

.pl-modal--small .pl-modal__body {
  padding: 8px 24px;
}

.pl-modal--small .pl-modal__footer {
  justify-content: flex-end;
  padding-bottom: 32px;
  padding-top: 20px;
}

.pl-modal--small .pl-modal__footer .pl-button:not(:last-child) {
  margin-right: 16px;
}

@media only screen and (min-width: 1600px) {
  .pl-modal--full-page .pl-modal__container {
    max-width: 1600px;
    margin: 48px auto;
  }
}

.pl-modal-sidelayout {
  display: flex;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: auto;
}

.pl-modal-sidelayout__side {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow-y: auto;
}

.pl-modal__notification {
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
}

.pl-modal-primarynav-layout {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 0;
}

/** Tooltip **/
.pl-tooltip {
  position: relative;
  display: inline-block;
}

.pl-tooltip__content {
  display: none;
  position: absolute;
  font-size: 14px;
  line-height: 1.5;
  background-color: #0e2d65;
  max-width: 180px;
  color: white;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 14px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.pl-tooltip__content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: #0e2d65 transparent transparent transparent;
}

.pl-tooltip--right .pl-tooltip__content {
  left: 100%;
  top: 50%;
  bottom: auto;
  margin-left: 16px;
  transform: translateY(-50%);
}

.pl-tooltip--right .pl-tooltip__content::after {
  top: 50%;
  left: auto;
  right: 100%;
  margin-top: -8px;
  border-color: transparent #0e2d65 transparent transparent;
}

.pl-tooltip--left .pl-tooltip__content {
  right: 100%;
  bottom: 50%;
  left: auto;
  margin-right: 16px;
  margin-bottom: 0;
  transform: translateY(50%);
}

.pl-tooltip--left .pl-tooltip__content::after {
  top: 50%;
  left: 100%;
  margin-top: -8px;
  margin-left: 0;
  border-color: transparent transparent transparent #0e2d65;
}

.pl-tooltip--bottom .pl-tooltip__content {
  left: 50%;
  bottom: auto;
  margin-top: 16px;
  transform: translateX(-50%);
}

.pl-tooltip--bottom .pl-tooltip__content::after {
  bottom: 100%;
  top: auto;
  margin-top: -2px;
  border-color: transparent transparent #0e2d65 transparent;
}

.pl-tooltip--small .pl-tooltip__content {
  left: 50%;
  padding: 8px 24px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 180px;
  transform: translateX(-50%);
}

.pl-tooltip--left.pl-tooltip--small .pl-tooltip__content {
  right: 100%;
  left: auto;
  bottom: 50%;
  transform: translateY(50%);
}

.pl-tooltip--right.pl-tooltip--small .pl-tooltip__content {
  bottom: auto;
  left: 100%;
  transform: translateY(-50%);
}

.pl-tooltip--bottom.pl-tooltip--small .pl-tooltip__content {
  margin-top: 10px;
  transform: translateX(-50%);
}

.pl-tooltip__content.is-shown {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl-tooltip__trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.pl-tooltip__trigger-icon {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.pl-tooltip--hover .pl-tooltip__content.is-shown {
  display: none;
}

.pl-tooltip--hover .pl-tooltip__trigger:focus ~ .pl-tooltip__content,
.pl-tooltip--hover .pl-tooltip__trigger:hover ~ .pl-tooltip__content {
  display: block;
}

.pl-tooltip__close {
  position: absolute;
  background: none;
  border: none;
  right: 2px;
  top: 2px;
  height: 24px;
  width: 24px;
  color: #ffffff;
  opacity: 0.5;
  cursor: pointer;
  padding: 0;
}

.pl-tooltip__close-icon {
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.pl-toggle {
  display: inline-flex;
  position: relative;
}

.pl-toggle__input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  margin: 0;
  padding: 0;
}

.pl-toggle__label {
  position: relative;
  color: #212121;
  font-size: 14px;
  line-height: 1.61;
  padding: 4px 0 4px 56px;
  cursor: pointer;
}

.pl-toggle__label::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  height: 28px;
  width: 48px;
  border-radius: 14px;
  background-color: #727272;
  transition: background-color 316ms ease-in;
}

.pl-toggle__label::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 2px;
  height: 24px;
  width: 24px;
  background-color: #ffffff;
  border-radius: 50%;
  transition-property: left, right;
  transition-duration: 316ms;
  transition-timing-function: ease-out;
}

.pl-toggle__label.pl-toggle__label--left {
  padding: 4px 56px 4px 0;
}

.pl-toggle__label.pl-toggle__label--left::before {
  right: 0;
  left: auto;
}

.pl-toggle__label.pl-toggle__label--left::after {
  left: auto;
  right: 22px;
}

.pl-toggle__input:focus ~ .pl-toggle__label::before {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
}

.pl-toggle__input:checked ~ .pl-toggle__label::before {
  background-color: #1774e5;
  transition-timing-function: ease-in;
}

.pl-toggle__input:checked ~ .pl-toggle__label::after {
  left: 22px;
  transition-property: left, right;
  transition-timing-function: ease-in;
}

.pl-toggle__input:checked ~ .pl-toggle__label.pl-toggle__label--left::after {
  right: 2px;
  left: auto;
}

.pl-toggle__input:disabled ~ .pl-toggle__label {
  color: #727272;
  cursor: default;
}

.pl-toggle__input:disabled ~ .pl-toggle__label::before {
  background-color: #dedede;
}

.pl-text-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  border: 1px solid #b6b6b6;
  border-radius: 100px;
  flex-wrap: wrap;
}

.pl-text-toggle__label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #727272;
  cursor: pointer;
  padding: 16px;
}

.pl-text-toggle__input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  margin: 0;
  padding: 0;
}

.pl-text-toggle__input:checked + .pl-text-toggle__label {
  background-color: #0e4f9e;
  border-radius: 100px;
  color: #ffffff;
  font-weight: 600;
}

.pl-text-toggle__input:focus + .pl-text-toggle__label {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
}

.pl-text-toggle.is-disabled {
  background-color: #f4f4f4;
  border: 1px solid #dedede;
}

.pl-text-toggle.is-disabled .pl-text-toggle__label {
  color: #b6b6b6;
  cursor: default;
}

.pl-text-toggle.is-disabled .pl-text-toggle__input:checked + .pl-text-toggle__label {
  background-color: #dedede;
  color: #ffffff;
}

.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.pl-search {
  position: relative;
  display: inline-block;
  width: 100%;
}

.pl-search__input {
  color: #212121;
  background-color: transparent;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  margin: 0;
  padding: 0 24px 0 0;
  border: none;
  border-bottom: 1px solid #b6b6b6;
}

.pl-search__input::-moz-placeholder {
  font-size: 16px;
  line-height: 1.5;
  color: #727272;
}

.pl-search__input:-ms-input-placeholder {
  font-size: 16px;
  line-height: 1.5;
  color: #727272;
}

.pl-search__input::placeholder {
  font-size: 16px;
  line-height: 1.5;
  color: #727272;
}

.pl-search__input:focus {
  outline: none;
  border-bottom: 1px solid #1774e5;
}

.pl-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
}

.pl-search__icon {
  position: absolute;
  right: 0;
  width: 24px;
  height: 24px;
  color: #727272;
  pointer-events: none;
}

/** Links **/
.pl-link {
  color: #1774e5;
  text-decoration: none;
}

.pl-link:hover {
  color: #062e79;
  text-decoration: underline;
}

.pl-link:visited,
.pl-link :active {
  color: #062e79;
  text-decoration: underline;
}

.pl-link:focus {
  border-radius: 2px;
  border: 0 solid #0081cb;
  box-shadow: 0 0 2px 2px #0081cb;
}

.pl-link--disabled {
  color: #b6b6b6;
  text-decoration: none;
  pointer-events: none;
  opacity: 0.5;
}

.pl-sign-in-page {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #75dff9 0%, #005dcf 100%);
  padding-top: 72px;
}

.pl-sign-in-page__footer {
  padding-bottom: 24px;
  color: #ffffff;
  font-size: 13px;
}

.pl-sign-in {
  padding: 40px 32px 40px 32px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px 0 rgba(23, 116, 229, 0.2);
  border-radius: 10px;
  width: 424px;
  margin-bottom: 72px;
  border: 1px solid #dedede;
}

.pl-sign-in__header {
  display: flex;
  flex-direction: column;
  color: #1774e5;
  align-items: center;
  margin-bottom: 40px;
}

.pl-sign-in__header-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  text-align: center;
  margin-bottom: 8px;
}

.pl-sign-in__header-logo {
  font-size: 32px;
  font-weight: 300;
  line-height: 38px;
}

.pl-sign-in__form-field {
  margin-bottom: 50px;
}

.pl-sign-in__actions {
  display: flex;
  flex-direction: column;
  margin: 0 auto 28px;
  width: 200px;
}

.pl-sign-in__action {
  margin-bottom: 20px;
  width: 100%;
}

.pl-sign-in__footer-text {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 18px;
  text-align: center;
}

.pl-popup {
  position: relative;
  background-color: #ffffff;
  width: 330px;
  min-width: 215px;
  max-width: 512px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.33);
  border-radius: 4px;
  padding: 24px 16px 16px 16px;
}

.pl-popup::before, .pl-popup::after {
  content: '';
  position: absolute;
  border: 6px solid #ffffff;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.02);
  transform: rotate(45deg);
  width: 8px;
  left: 50%;
  top: 100%;
  margin-top: -7px;
}

.pl-popup::before {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.09);
}

.pl-popup--right::before, .pl-popup--right::after {
  content: '';
  transform: rotate(-225deg);
  right: 100%;
  left: auto;
  top: 50%;
  margin-right: -6px;
}

.pl-popup--left::before, .pl-popup--left::after {
  content: '';
  top: 50%;
  left: 100%;
  transform: rotate(-50deg);
  margin-left: -6px;
}

.pl-popup--bottom::before, .pl-popup--bottom::after {
  content: '';
  bottom: 100%;
  transform: rotate(-135deg);
  top: auto;
  margin-bottom: -7px;
}

.pl-popup__content {
  font-size: 14px;
  text-align: center;
  color: #212121;
  padding-bottom: 24px;
}

.pl-popup__actions {
  display: flex;
  justify-content: center;
}

.pl-popup__actions .pl-button:not(:last-child) {
  margin-right: 16px;
}

.pl-inline-message {
  display: flex;
  align-items: center;
}

.pl-inline-message__icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.pl-inline-message__text {
  color: #212121;
}

.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

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

.pl-dialog__container {
  height: 75%;
  width: 75vh;
  min-height: 424px;
  max-height: 650px;
  min-width: 424px;
  max-width: 650px;
  justify-content: center;
  margin: auto;
  padding: 24px;
}

.pl-dialog__illustration {
  padding-bottom: 24px;
}

.pl-dialog__header {
  padding-bottom: 16px;
  font-size: 24px;
}

.pl-dialog__body {
  padding-bottom: 24px;
  text-align: center;
}

.pl-dialog__actions {
  margin: 0 auto;
}

.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.pl-select__dropdown {
  /* Track */
  /* Handle */
  /* Handle on hover */
  display: none;
  position: absolute;
  margin: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0 0 3px 3px;
  overflow: auto;
  min-width: 8.5rem;
  max-height: 148px;
  background-color: #ffffff;
  border: 1px solid #1774e5;
  padding: 8px 0;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  z-index: 1;
}

.pl-select__dropdown::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.pl-select__dropdown::-webkit-scrollbar-track {
  background: none;
}

.pl-select__dropdown::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1) !important;
  border-radius: 15px;
}

.pl-select__dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.1) !important;
}

.pl-select__toggle {
  position: absolute;
  right: 0;
  color: #727272;
  background: transparent;
  border: none;
  padding: 0;
}

.pl-select__toggle-icon {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.pl-select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.pl-select.is-dropdown-shown .pl-select__dropdown {
  display: block;
}

.pl-select.is-dropdown-shown .pl-select__label {
  color: #1774e5;
}

.pl-select.is-dropdown-shown .pl-select__toggle-icon {
  transform: rotate(180deg) translateY(-2px);
  color: #1774e5;
}

.pl-select.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.pl-select__field {
  line-height: 1.5;
  font-size: 16px;
}

.pl-select__control[type='button'] {
  width: 100%;
  padding: 0 24px 0 0;
  border: none;
  border-bottom: 1px solid #b6b6b6;
  text-align: left;
  border-radius: 0;
}

.pl-select__control[type='button'].has-error {
  border-color: #db0000;
}

.pl-select-menu {
  /* Track */
  /* Handle */
  /* Handle on hover */
  list-style: none;
  margin: 0;
  padding: 0;
}

.pl-select-menu::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.pl-select-menu::-webkit-scrollbar-track {
  background: none;
}

.pl-select-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1) !important;
  border-radius: 15px;
}

.pl-select-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.1) !important;
}

.pl-select-menu__empty-message {
  padding: 8px 16px;
  color: #727272;
}

.pl-select-menu__item {
  padding: 8px 16px 8px 24px;
}

.pl-select-menu__item:hover, .pl-select-menu__item.is-hovered {
  background-color: #f3f4fb;
  cursor: pointer;
}

.pl-select-menu__item.is-selected {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSIjMTc3NGU1IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTkuMTQ3IDE2LjM2NkwyMC4xMDUgNS4xMjdhMS4yNSAxLjI1IDAgMCAxIDEuNzkgMS43NDZMMTAuMDYzIDE5LjAwN2ExLjI1IDEuMjUgMCAwIDEtMS43NjkuMDIxbC02LjE2OC02LjAzYTEuMjUgMS4yNSAwIDAgMSAxLjc0OC0xLjc4OGw1LjI3MyA1LjE1NnoiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 6px;
}

.pl-select-menu__item.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.pl-card {
  border-radius: 3px;
  box-shadow: 0 2px 6px 0 rgba(114, 114, 114, 0.33);
  background-color: #ffffff;
  color: #212121;
  overflow: hidden;
  border: 2px solid #00000000;
}

.pl-card:focus {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
}

.pl-card--hoverable:hover {
  cursor: pointer;
  border: 1px solid #dedede;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.4);
}

.pl-card.pl-card--is-selected {
  border: 2px solid #1774e5;
}

.pl-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pl-card__header--text-inverted {
  color: #ffffff;
}

.pl-card__header-detail {
  font-size: 14px;
}

.pl-card__header-logo {
  width: 64px;
  height: 64px;
  margin: 0 8px 0 0;
  border-radius: 6px;
}

.pl-card__body-header {
  margin-bottom: 16px;
}

.pl-card__footer {
  background-color: #fafafa;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pl-card__footer-left {
  display: flex;
  margin-right: auto;
}

.pl-card__footer-right {
  display: flex;
  margin-left: 24px;
}

.pl-card__separator {
  border-top: 1px solid #b6b6b6;
  margin: 8px 0;
}

.pl-card--standard {
  min-width: 328px;
}

.pl-card--standard .pl-card__header,
.pl-card--standard .pl-card__footer {
  padding: 16px;
}

.pl-card--standard .pl-card__body {
  padding: 0 16px 16px 16px;
  margin-top: 8px;
  font-size: 14px;
}

.pl-card--standard .pl-card__body-footer {
  font-size: 16px;
}

.pl-card--standard .pl-card__header-title {
  font-size: 18px;
  font-weight: 600;
}

.pl-card--compact .pl-card__header {
  justify-content: flex-start;
  padding: 24px 24px 16px 24px;
}

.pl-card--compact .pl-card__header-title {
  font-size: 16px;
  font-weight: 600;
}

.pl-card--compact .pl-card__body {
  margin: 0;
}

.pl-card--compact .pl-card__body,
.pl-card--compact .pl-card__footer {
  font-size: 10px;
  color: #727272;
  padding: 8px 24px;
}

/* styles for desktop */
@media (min-width: 576px) {
  .pl-card--standard {
    min-width: 312px;
    max-width: 510px;
  }
  .pl-card--standard .pl-card__header {
    padding: 24px 24px 16px 24px;
  }
  .pl-card--standard .pl-card__footer {
    padding: 16px 24px;
  }
  .pl-card--standard .pl-card__body {
    padding: 0 24px 16px 24px;
  }
  .pl-card--standard .pl-card__body-footer {
    font-size: 14px;
  }
  .pl-card--compact {
    min-width: 224px;
    max-width: 380px;
  }
}

.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

/* stylelint-disable  no-descending-specificity */
/* stylelint-disable selector-max-compound-selectors */
.pl-table-scroll-container {
  overflow: auto;
}

.pl-table {
  border-spacing: 0;
}

.pl-table.pl-table--display-actions-on-hover .pl-table__row-actions > * {
  visibility: hidden;
}

.pl-table.pl-table--display-actions-on-hover .pl-table__row:hover .pl-table__row-actions > * {
  visibility: visible;
}

.pl-table__head {
  font-weight: 600;
  font-size: 14px;
  color: #212121;
}

.pl-table__header {
  position: relative;
  text-align: left;
  padding-right: 24px;
  line-height: 1.8;
  vertical-align: bottom;
}

.pl-table__header::after {
  content: '';
  display: block;
  border-bottom: 1px solid #dedede;
}

.pl-table__header-checkbox {
  padding-left: 3px;
  display: inline-block;
  vertical-align: text-bottom;
  width: 22px;
}

.pl-table__header-flyout {
  left: -4px;
  min-width: 90px;
  bottom: 0;
  z-index: 1;
}

.pl-table__sort-icon {
  height: 24px;
  width: 24px;
  color: #b6b6b6;
  margin-left: 8px;
}

.pl-table__sort-icon:focus {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  border-radius: 3px;
  outline: none;
}

.pl-table__header-label {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #212121;
  padding-left: 4px;
  padding-right: 32px;
  flex: 1;
}

.pl-table__header-input {
  border: none;
  border-bottom: 2px solid #0ba7ff;
  color: #212121;
  font-size: 14px;
  padding-right: 56px;
  padding-top: 23px;
  line-height: 1.5;
  width: 100%;
  background: transparent;
}

.pl-table__header-input::-moz-placeholder {
  opacity: 0.9;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.25;
  color: transparent;
  font-weight: 600;
}

.pl-table__header-input:-ms-input-placeholder {
  opacity: 0.9;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.25;
  color: transparent;
  font-weight: 600;
}

.pl-table__header-input::placeholder {
  opacity: 0.9;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.25;
  color: transparent;
  font-weight: 600;
}

.pl-table__header-input:-moz-placeholder-shown ~ .pl-table__header-label {
  font-size: 14px;
  font-weight: normal;
  bottom: 2px;
}

.pl-table__header-input:-ms-input-placeholder ~ .pl-table__header-label {
  font-size: 14px;
  font-weight: normal;
  bottom: 2px;
}

.pl-table__header-input:placeholder-shown ~ .pl-table__header-label {
  font-size: 14px;
  font-weight: normal;
  bottom: 2px;
}

.pl-table__header-input:focus {
  outline: none;
  border-bottom: 2px solid #1774e5;
}

.pl-table__header-input:focus ~ .pl-table__header-label {
  color: #1774e5;
  font-size: 12px;
  bottom: 26px;
  padding-left: 0;
  font-weight: normal;
}

.pl-table__header--searchable {
  position: relative;
}

.pl-table__header--searchable::after {
  border: none;
}

.pl-table__header--searchable .pl-table__header-label {
  position: absolute;
  left: 0;
  color: #727272;
  font-size: 12px;
  padding-left: 0;
  font-weight: normal;
}

.pl-table__header--searchable .pl-table__sort {
  border: none;
  outline: none;
  background: transparent;
  width: 40px;
  margin-right: 52px;
  position: absolute;
  right: 0;
}

.pl-table__header--searchable .pl-table__sort:hover {
  cursor: pointer;
  color: #1774e5;
}

.pl-table__header--searchable .pl-table__sort:focus {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  border-radius: 3px;
  outline: none;
}

.pl-table__header--searchable .pl-table__sort .pl-table__sort-icon {
  margin-right: 0;
}

.pl-table__sort {
  width: 100%;
  display: flex;
  border: none;
  background: transparent;
  padding-left: 0;
  font-weight: 600;
  font-size: 14px;
  align-items: flex-end;
  bottom: 2px;
}

.pl-table__sort:hover {
  cursor: pointer;
}

.pl-table__sort:hover .pl-table__sort-icon {
  color: #1774e5;
}

.pl-table__sort:focus {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  border-radius: 3px;
  outline: none;
}

.pl-table__sort:focus .pl-table__sort-icon {
  color: #1774e5;
}

.pl-table__sort .pl-table__header-label {
  padding-right: 0;
}

.pl-table__sort .pl-table__sort-icon {
  margin-right: 32px;
}

.pl-table__body {
  border: none;
  font-size: 14px;
  vertical-align: text-top;
}

.pl-table__row:hover {
  background-color: #f3f4fb;
}

.pl-table__row:hover .pl-table__body-action,
.pl-table__row:hover .pl-table__cell-button {
  color: #1774e5;
}

.pl-table__row.pl-table__row--selected {
  background-color: #f3f4fb;
}

.pl-table__row.pl-table__row--zebra-even {
  background-color: #fafafa;
}

.pl-table__row.pl-table__row--zebra-even .pl-table__cell {
  border-bottom: none;
}

.pl-table__row.pl-table__row--zebra-even:hover {
  background-color: #f3f4fb;
}

.pl-table__row.pl-table__row--zebra-odd {
  background-color: #ffffff;
}

.pl-table__row.pl-table__row--zebra-odd .pl-table__cell {
  border-bottom: none;
}

.pl-table__row.pl-table__row--zebra-odd:hover {
  background-color: #f3f4fb;
}

.pl-table__cell {
  border-bottom: 1px solid #dedede;
  text-align: left;
  padding: 12px 24px 12px 4px;
  height: 44px;
  vertical-align: top;
}

.pl-table__row-actions {
  color: #b6b6b6;
  padding: 8px;
  text-align: end;
  white-space: nowrap;
}

.pl-table__row-actions .pl-button:disabled {
  pointer-events: initial;
}

.pl-table__row-actions .pl-table__cell-button {
  color: #b6b6b6;
}

.pl-table__row-actions .pl-table__cell-button:hover {
  color: #0e4f9e;
}

.pl-table__row-actions .pl-table__cell-button:focus {
  color: #0e4f9e;
}

.pl-table__row-actions > * {
  margin-left: 16px;
}

.pl-table__row-actions > *:hover {
  color: #0e4f9e;
}

.pl-table__cell-button.pl-button--icon-only {
  padding: 0;
}

.pl-table__cell-button.pl-button--icon-only .pl-button__icon {
  height: 24px;
  width: 24px;
}

a.pl-table__cell-link {
  text-decoration: none;
  color: #1774e5;
}

a.pl-table__cell-link:hover {
  border: none;
  text-decoration: underline;
  color: #0e4f9e;
}

a.pl-table__cell-link:focus {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  border-radius: 3px;
  outline: none;
}

.pl-table--grid .pl-table__cell {
  border: 1px solid #dedede;
}

.pl-table--zebra .pl-table__cell {
  border: none;
}

.pl-table--zebra .pl-table__row:nth-child(even) {
  background-color: #fafafa;
}

.pl-table--zebra .pl-table__row:nth-child(even):hover {
  background-color: #f3f4fb;
}

.pl-table--zebra .pl-table__row:nth-child(odd) {
  background-color: #ffffff;
}

.pl-table--zebra .pl-table__row:nth-child(odd):hover {
  background-color: #f3f4fb;
}

.pl-table--zebra .pl-table--nested .pl-table__row:nth-child(even) {
  background-color: #fafafa;
  /* stylelint-disable-next-line max-nesting-depth */
}

.pl-table--zebra .pl-table--nested .pl-table__row:nth-child(even):hover {
  background-color: #f3f4fb;
}

.pl-table--zebra .pl-table--nested .pl-table__row:nth-child(odd) {
  background-color: #ffffff;
  /* stylelint-disable-next-line max-nesting-depth */
}

.pl-table--zebra .pl-table--nested .pl-table__row:nth-child(odd):hover {
  background-color: #f3f4fb;
}

.pl-table--zebra.pl-table--sticky-column .pl-table__cell:first-child {
  box-shadow: 10px 8px 14px 0 rgba(0, 0, 0, 0.25);
}

.pl-table--zebra.pl-table--sticky-column .pl-table__row:nth-child(even) .pl-table__cell:nth-of-type(odd) {
  background-color: #fafafa;
}

.pl-table--zebra.pl-table--sticky-column .pl-table__row:nth-child(even):hover .pl-table__cell:nth-of-type(odd) {
  background-color: #f3f4fb;
}

.pl-table--sticky-column .pl-table__header:first-child,
.pl-table--sticky-column .pl-table__cell:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  background-color: #ffffff;
  box-shadow: 10px 8px 14px 0 rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.pl-table--sticky-column .pl-table__row:hover .pl-table__cell:nth-of-type(odd) {
  background-color: #f3f4fb;
}

.pl-table--sticky-header .pl-table__header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  box-shadow: 10px 8px 14px 0 rgba(0, 0, 0, 0.25);
}

.pl-table--sticky-header.pl-table--sticky-column .pl-table__header:first-child {
  box-shadow: 10px 8px 14px 0 rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.pl-table__expand-button--expanded {
  transform: rotate(180deg);
}

.pl-table__nested {
  margin-right: 24px;
  margin-left: 24px;
  padding: 24px;
  margin-bottom: 8px;
  background: #f4f4f4;
}

.pl-table--inner-table {
  border-spacing: 0;
  width: 100%;
}

.pl-table__row--collapsed {
  display: none;
}

.pl-table__row--expanded {
  display: table-row;
}

.pl-pagination {
  display: flex;
}

.pl-pagination__icon {
  vertical-align: middle;
  color: #1774e5;
  width: 24px;
  height: 24px;
}

.pl-pagination__icon:hover {
  color: #0e4f9e;
}

.pl-pagination__action {
  margin-right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  background-color: #ffffff;
}

.pl-pagination__action:hover {
  color: #1774e5;
}

.pl-pagination__action:focus {
  box-shadow: 0 0 2px 4px rgba(77, 190, 255, 0.75);
  outline: none;
  border-radius: 3px;
}

.pl-pagination__action:disabled .pl-pagination__icon {
  color: #727272;
  cursor: not-allowed;
}

.pl-pagination__page-info {
  font-size: 14px;
}

.pl-pagination__page-input {
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #0081cb;
  color: #212121;
  height: 27px;
  text-align: center;
  width: 40px;
  margin-right: 8px;
}

.pl-pagination__page-input:focus {
  outline: transparent;
  border: 1px solid #0e4f9e;
}

.pl-pagination__page-input:hover {
  box-shadow: inset 0 0 0 2px #0e4f9e;
  border: 1px solid #0e4f9e;
}

.pl-pagination__page-input.has-error {
  border: 1px solid #db0000;
}

.pl-pagination__text {
  color: #727272;
  margin-right: 8px;
}

.pl-pagination__error {
  margin-top: 8px;
  color: #db0000;
  font-size: 12px;
  text-align: center;
}

/* Back to top button */
.pl-back-to-top {
  font: inherit;
  line-height: 1.5;
  border-radius: 3px;
  padding: 8px 16px 8px 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  color: #1774e5;
  background-color: #f4f4f4;
}

.pl-back-to-top:hover {
  color: #ffffff;
  background-color: #1774e5;
  box-shadow: none;
}

.pl-back-to-top__icon {
  width: 1em;
  height: 1em;
  font-size: 1.5em;
  line-height: 1;
  vertical-align: -25%;
  pointer-events: none;
}

.pl-secondarynav {
  align-items: center;
  justify-content: space-between;
}

.pl-secondarynav__menu {
  display: flex;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid #0e4f9e;
}

.pl-secondarynav__item {
  margin-right: 24px;
}

.pl-secondarynav__link {
  display: block;
  color: #1774e5;
  font-size: 16px;
  padding: 0.5rem 1rem;
  position: relative;
  text-decoration: none;
  line-height: 1.5;
  background: transparent;
  border: none;
}

.pl-secondarynav__link:hover, .pl-secondarynav__link.is-active {
  text-decoration: none;
  color: #0e4f9e;
  text-shadow: 0 0 0 #0e4f9e;
}

.pl-secondarynav__link:hover::after, .pl-secondarynav__link.is-active::after {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #0e4f9e;
  transform: rotate(0deg);
}

.pl-secondarynav__link:focus {
  box-shadow: 0 0 2px 4px #4dbeff;
  border-radius: 3px;
}

.pl-modal, .pl-dialog {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.pl-modal--open, .pl-dialog--open {
  display: flex;
}

.pl-modal__container, .pl-dialog__container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.33);
  border-radius: 3px;
  z-index: 0;
  -webkit-animation: pl-animation-modal-open 1s;
          animation: pl-animation-modal-open 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@keyframes pl-animation-modal-open {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pl-modal--closed {
  z-index: -1;
  opacity: 0;
  -webkit-animation: pl-animation-modal-close 0.3s;
          animation: pl-animation-modal-close 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@keyframes pl-animation-modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.pl-modal__backdrop, .pl-dialog__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.pl-tag {
  font-size: 14px;
  color: #212121;
  border-radius: 3px;
  padding: 1px 8px 2px;
  border: 1px solid #dedede;
}

.pl-tag + .pl-tag {
  margin-left: 16px;
}

.pl-tag__label {
  line-height: 1.5;
}

.pl-tag__label:hover {
  color: #1774e5;
}

.pl-tag__remove {
  color: #1774e5;
  background-color: transparent;
  border: none;
  padding-right: 3px;
  padding-left: 12px;
}

.pl-tag__remove-icon {
  width: 12px;
  height: 12px;
  padding-top: 3px;
}

.pl-tag--selected {
  background-color: #1774e5;
}

.pl-tag--selected .pl-tag__label {
  color: #ffffff;
}

.pl-tag--selected .pl-tag__remove {
  color: #ffffff;
}

.pl-tag--selected .pl-tag__remove-icon {
  color: #ffffff;
}

.pl-primary-spinner {
  width: auto;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pl-primary-spinner__circles {
  width: 35px;
  overflow: visible;
  -webkit-animation: pl-svg-rotation 1350ms infinite;
          animation: pl-svg-rotation 1350ms infinite;
  -webkit-animation-timing-function: cubic-bezier(0.23, 0.97, 0.23, 0.98);
          animation-timing-function: cubic-bezier(0.23, 0.97, 0.23, 0.98);
}

.pl-primary-spinner__circle-1 {
  transform: translateY(-125%) scale(0.6);
  -webkit-animation: pl-translate-circles 1350ms infinite;
          animation: pl-translate-circles 1350ms infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.pl-primary-spinner__circle-2 {
  transform: translate(125%, 73%) scale(0.6);
  -webkit-animation: pl-translate-circles 1350ms infinite;
          animation: pl-translate-circles 1350ms infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.pl-primary-spinner__circle-3 {
  transform: translate(-100%, 80%) scale(0.6);
  -webkit-animation: pl-translate-circles 1350ms infinite;
          animation: pl-translate-circles 1350ms infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

@-webkit-keyframes pl-translate-circles {
  33.4%,
  80% {
    transform: translateY(0);
  }
}

@keyframes pl-translate-circles {
  33.4%,
  80% {
    transform: translateY(0);
  }
}

@-webkit-keyframes pl-svg-rotation {
  100% {
    transform-origin: center;
    transform: rotate(360deg);
  }
}

@keyframes pl-svg-rotation {
  100% {
    transform-origin: center;
    transform: rotate(360deg);
  }
}

@-webkit-keyframes pl-scale-intersection {
  35%,
  80% {
    transform: scale(1);
  }
  81% {
    transform: scale(0);
  }
}

@keyframes pl-scale-intersection {
  35%,
  80% {
    transform: scale(1);
  }
  81% {
    transform: scale(0);
  }
}

.pl-primary-spinner__intersection {
  transform: scale(0);
  -webkit-animation-name: pl-scale-intersection;
          animation-name: pl-scale-intersection;
  -webkit-animation-duration: 1350ms;
          animation-duration: 1350ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(1, -0.19, 0.5, 0.6);
          animation-timing-function: cubic-bezier(1, -0.19, 0.5, 0.6);
  transform-origin: center;
}
/*# sourceMappingURL=uxpl.css.map */