/*
Theme Name: 52 Bootstrap Theme
Description: Custom WordPress theme made by 52 Pick-up Inc.
Author: 52 Pick-up Inc.
Author URI: http://52pick-up.com
Version: 1.0.0
*/
/*-------------------------------
>>> VARIABLES:
-------------------------------*/
/*-------------------------------
>>> THEME SCSS:
-------------------------------*/
/*--------------------------------------------------------------
THEME / BOOTSTRAP
--------------------------------------------------------------*/
@import "css/bootstrap5/bootstrap.min.css";
@import "css/bootstrap5/bootstrap-icons.css";
/*--------------------------------------------------------------
THEME / MIXINS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
THEME / TYPOGRAPHY
--------------------------------------------------------------*/
@font-face {
  font-family: "PPNeueMontreal-Variable";
  src: url("fonts/PPNeueMontreal/Variable/PPNeueMontreal-Variable.woff2") format("woff2"), url("fonts/PPNeueMontreal/Variable/PPNeueMontreal-Variable.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PPNeueMontreal-Regular";
  src: url("fonts/PPNeueMontreal/WEB/PPNeueMontreal-Regular.woff2") format("woff2"), url("fonts/PPNeueMontreal/WEB/PPNeueMontreal-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PPNeueMontreal-Medium";
  src: url("fonts/PPNeueMontreal/WEB/PPNeueMontreal-Medium.woff2") format("woff2"), url("fonts/PPNeueMontreal/WEB/PPNeueMontreal-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PPNeueMontreal-Bold";
  src: url("fonts/PPNeueMontreal/WEB/PPNeueMontreal-SemiBold.woff2") format("woff2"), url("fonts/PPNeueMontreal/WEB/PPNeueMontreal-SemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SilkSerif-Regular";
  src: url("fonts/SilkSerifWeb/SilkSerifRegular/SilkSerif-Regular.woff2") format("woff2"), url("fonts/SilkSerifWeb/SilkSerifRegular/SilkSerif-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SilkSerif-RegularItalic";
  src: url("fonts/SilkSerifWeb/SilkSerifRegularItalic/SilkSerif-RegularItalic.woff2") format("woff2"), url("fonts/SilkSerifWeb/SilkSerifRegularItalic/SilkSerif-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "SilkSerif-Regular", serif;
  line-height: 1;
}
h1 *, h2 *, h3 *, h4 *, h5 *, h6 * {
  font-family: "SilkSerif-Regular", serif;
  line-height: 1;
}

h1 {
  font-family: "SilkSerif-Regular", serif;
  line-height: 1;
  margin: 0;
  font-size: 32px;
}
@media (max-width: 375px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-family: "SilkSerif-Regular", serif;
  line-height: 1;
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 991.98px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 575.98px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  h3 {
    font-size: 25px;
  }
}
@media (max-width: 575.98px) {
  h3 {
    font-size: 22px;
  }
}

p, li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.4;
}
p *, li * {
  font-size: 16px;
  line-height: 1.4;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}

li {
  margin-bottom: 0;
}

strong {
  font-family: "PPNeueMontreal-Bold";
  font-weight: 400;
}
strong * {
  font-family: "PPNeueMontreal-Bold";
  font-weight: 400;
}

sup {
  top: -0.3em;
  font-size: 75% !important;
}

* {
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  color: #000000;
}

/*--------------------------------------------------------------
THEME / ANIMATIONS
--------------------------------------------------------------*/
.animate, .animate-container {
  will-change: opacity;
}
.animate .animate.contained, .animate-container .animate.contained {
  opacity: 1;
}
.animate.active, .animate-container.active {
  opacity: 1;
}
.animate.sequence-up, .animate-container.sequence-up {
  transform: translateY(16px);
  opacity: 0;
  transition: all 1.6s cubic-bezier(0.56, 0, 0.24, 1);
}
.animate.sequence-up.active, .animate-container.sequence-up.active {
  opacity: 1;
  transform: translateY(0);
}
.animate.slide-image, .animate-container.slide-image {
  overflow: hidden;
  position: relative;
  opacity: 1;
}
.animate.slide-image div, .animate-container.slide-image div {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  transform: translate(0%, 0%);
  background: #F3EEE9;
  -webkit-transition: transform 1.6s cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: transform 1.6s cubic-bezier(0.56, 0, 0.24, 1);
  transition: transform 1.6s cubic-bezier(0.56, 0, 0.24, 1);
}
.animate.slide-image.active div, .animate-container.slide-image.active div {
  transform: translate(0%, -100%);
}
.animate.slide-image-right, .animate-container.slide-image-right {
  overflow: hidden;
  position: relative;
  opacity: 1;
}
.animate.slide-image-right div, .animate-container.slide-image-right div {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  transform: translate(0%, 0%);
  background: #F3EEE9;
  -webkit-transition: transform 1.6s cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: transform 1.6s cubic-bezier(0.56, 0, 0.24, 1);
  transition: transform 1.6s cubic-bezier(0.56, 0, 0.24, 1);
}
.animate.slide-image-right.active div, .animate-container.slide-image-right.active div {
  transform: translate(100%, 0%);
}
.animate.fadeUp, .animate-container.fadeUp {
  transform: translateY(200px);
  transition: opacity 1.5s ease, transform 2.5s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}
.animate.fadeUp.active, .animate-container.fadeUp.active {
  transform: translateY(0);
}
.animate.fadeLeft, .animate-container.fadeLeft {
  transform: translateX(200px);
  transition: opacity 1.5s ease, transform 1.5s ease;
  will-change: opacity, transform;
}
.animate.fadeLeft.active, .animate-container.fadeLeft.active {
  transform: translateX(0);
}
.animate.fadeRight, .animate-container.fadeRight {
  transform: translateX(-200px);
  transition: opacity 1.5s ease, transform 1.5s ease;
  will-change: opacity, transform;
}
.animate.fadeRight.active, .animate-container.fadeRight.active {
  transform: translateX(0);
}
.animate.scaleUp, .animate-container.scaleUp {
  transform: scale(0.5);
  transition: opacity 1.5s ease, transform 2.5s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}
.animate.scaleUp.active, .animate-container.scaleUp.active {
  transform: scale(1);
}
.animate.bg-cover, .animate-container.bg-cover {
  position: relative;
  opacity: 1;
  overflow: hidden;
}
.animate.bg-cover:after, .animate-container.bg-cover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: transform 3s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.animate.bg-cover.active:after, .animate-container.bg-cover.active:after {
  transform: translateX(100%);
}
.animate.delay1, .animate-container.delay1 {
  transition-delay: 0.8s;
}
.animate.delay2, .animate-container.delay2 {
  transition-delay: 1.6s;
}
.animate.delay3, .animate-container.delay3 {
  transition-delay: 2.4s;
}

@-webkit-keyframes fadeOutDown {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  100% {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  100% {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}
@keyframes fadeOutDown {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  100% {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  50% {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-opacity: 1.2;
    -moz-opacity: 1;
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
}
@-moz-keyframes fadeInUp {
  0% {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
}
@-webkit-keyframes bounce {
  0% {
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  25% {
    -moz-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  50% {
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  75% {
    -moz-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-moz-keyframes bounce {
  0% {
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  25% {
    -moz-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  50% {
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  75% {
    -moz-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes bounce {
  0% {
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  25% {
    -moz-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  50% {
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  75% {
    -moz-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-webkit-keyframes bounceHorz {
  0% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  25% {
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  75% {
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-moz-keyframes bounceHorz {
  0% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  25% {
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  75% {
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes bounceHorz {
  0% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  25% {
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  75% {
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loadingspin {
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
THEME / COMMON
--------------------------------------------------------------*/
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none !important;
}
button:focus {
  outline: none !important;
}
button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}

select {
  background: transparent;
  border-radius: 4px;
  height: 40px;
  border-radius: 22px;
  font-size: 15px;
  text-decoration: none !important;
  color: #000000;
  padding-left: 20px;
  padding-right: 44px;
  border: 1px solid #B1B1B1;
  font-family: "PPNeueMontreal-Medium";
  font-weight: 400;
  background-image: url(img/icons/select-arrow.svg);
  background-position: top 16px right 15px;
  background-size: 10px;
  background-repeat: no-repeat;
  box-shadow: none !important;
  -webkit-appearance: none;
  -webkit-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
select:focus {
  outline: none !important;
}
select:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
select:focus {
  outline: none !important;
}
select:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
select.sm-select {
  height: 28px;
  border-radius: 16px;
  font-size: 11px;
  background-size: 9px;
  background-position: top 11px right 9px;
  padding-left: 12px;
  padding-right: 22px;
}
select.narrow-select {
  width: 160px;
  text-overflow: ellipsis;
}
select.light {
  background-image: url(img/icons/select-arrow-light.svg) !important;
}
@media (min-width: 768px) {
  select.hover:hover {
    border: 1px solid #000000;
    background-color: #000000;
    color: #ffffff;
    background-image: url(img/icons/select-arrow-light.svg) !important;
  }
}

duet-date-picker .duet-date__input {
  font-size: 0px;
}
duet-date-picker .duet-date__toggle {
  width: 100%;
  box-shadow: none !important;
  background-image: url(img/icons/calendar-field.svg);
  background-position: top 12px right 12px;
  background-size: 20px;
  background-repeat: no-repeat;
}
duet-date-picker .duet-date__toggle .duet-date__toggle-icon {
  display: none;
  justify-content: flex-end;
  padding-right: 15px;
}
duet-date-picker .duet-date__dialog {
  z-index: 10;
  bottom: 100%;
  top: unset;
}
duet-date-picker .duet-date__dialog .duet-date__mobile-heading {
  display: none !important;
}
duet-date-picker .duet-date__dialog .duet-date__mobile-heading {
  display: none;
}
duet-date-picker .duet-date__dialog label {
  position: absolute !important;
  height: unset !important;
}
duet-date-picker .duet-date__dialog .duet-date__dialog-content {
  background-color: #ffffff;
}
duet-date-picker .duet-date__day[aria-pressed=true] {
  border: 1px solid #000000;
}
duet-date-picker.not-empty .placeholder {
  display: none;
}
duet-date-picker.not-empty .duet-date__input {
  font-size: 16px;
}
duet-date-picker.not-empty .duet-date__toggle {
  background-image: url(img/icons/calendar-field-active.svg);
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: opacity 250ms ease;
  -moz-transition: opacity 250ms ease;
  -ms-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
@media (min-width: 350px) {
  .modal-container {
    padding-top: 20px;
  }
}
@media (min-width: 576px) {
  .modal-container {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .modal-container {
    padding-top: 40px;
  }
}
@media (min-width: 1379px) {
  .modal-container {
    padding-top: 60px;
  }
}
@media (min-width: 350px) {
  .modal-container {
    padding-bottom: 20px;
  }
}
@media (min-width: 576px) {
  .modal-container {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .modal-container {
    padding-bottom: 40px;
  }
}
@media (min-width: 1379px) {
  .modal-container {
    padding-bottom: 60px;
  }
}
@media (min-width: 350px) {
  .modal-container {
    padding-left: 20px;
  }
}
@media (min-width: 576px) {
  .modal-container {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .modal-container {
    padding-left: 40px;
  }
}
@media (min-width: 1480px) {
  .modal-container {
    padding-left: 60px;
  }
}
@media (min-width: 350px) {
  .modal-container {
    padding-right: 20px;
  }
}
@media (min-width: 576px) {
  .modal-container {
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .modal-container {
    padding-right: 40px;
  }
}
@media (min-width: 1480px) {
  .modal-container {
    padding-right: 60px;
  }
}
.modal-container .modal-box {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 692px;
  width: 100%;
  max-height: 90vh;
  max-height: -moz-calc(100vh - 30px);
  max-height: -webkit-calc(100vh - 30px);
  max-height: calc(100vh - 30px);
  padding-top: 60px;
  display: none;
}
.modal-container .modal-box.shown {
  display: block;
}
.modal-container .modal-box h1, .modal-container .modal-box h2 {
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
}
.modal-container .modal-box .modal-inner {
  padding-left: 15px;
  padding-right: 15px;
  overflow: auto;
  padding-bottom: 50px;
  max-height: -moz-calc(100vh - 90px);
  max-height: -webkit-calc(100vh - 90px);
  max-height: calc(100vh - 90px);
}
@media (min-width: 350px) {
  .modal-container .modal-box .modal-inner {
    padding-left: 20px;
  }
}
@media (min-width: 576px) {
  .modal-container .modal-box .modal-inner {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .modal-container .modal-box .modal-inner {
    padding-left: 40px;
  }
}
@media (min-width: 1480px) {
  .modal-container .modal-box .modal-inner {
    padding-left: 60px;
  }
}
@media (min-width: 350px) {
  .modal-container .modal-box .modal-inner {
    padding-right: 20px;
  }
}
@media (min-width: 576px) {
  .modal-container .modal-box .modal-inner {
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .modal-container .modal-box .modal-inner {
    padding-right: 40px;
  }
}
@media (min-width: 1480px) {
  .modal-container .modal-box .modal-inner {
    padding-right: 60px;
  }
}
.modal-container .modal-box .modal-inner .title {
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  color: #000000;
}
.modal-container .modal-box .grey-box {
  background-color: #F7F7F7;
  border-radius: 12px;
  padding: 40px;
}
.modal-container .modal-box form {
  margin-left: -10px;
  margin-right: -10px;
  width: calc(100% + 20px);
}
.modal-container .modal-box .msg h2 {
  margin-bottom: 10px;
  padding-top: 0;
}
.modal-container .modal-box .msg .docket {
  display: block;
  margin-top: 60px;
}
.modal-container .modal-box .msg .docket span {
  font-size: 20px;
  display: block;
}
.modal-container .modal-box.date {
  max-width: 720px;
}
.modal-container .modal-box.date h1 {
  color: #ffffff;
  margin-bottom: 30px;
}
.modal-container .modal-box.date .fc-view > table {
  width: 100% !important;
}
.modal-container .modal-box.date .fc-header-toolbar {
  margin-bottom: 0 !important;
}
.modal-container .modal-box.date .fc-header-toolbar h2 {
  font-size: 22px;
}
.modal-container .modal-box.date .fc-header-toolbar button {
  transform: scale(0.8);
}
.modal-container .modal-box.date .fc-header-toolbar .fc-button-primary:after {
  display: none;
}
.modal-container .modal-box.date .fc-header-toolbar .fc-button-group {
  margin-left: 0;
}
.modal-container .modal-box.date .fc-header-toolbar .fc-button-group button {
  border: 1px solid #EBE9E9 !important;
  margin-right: 0 !important;
  color: #000000 !important;
}
.modal-container .modal-box.date .fc-header-toolbar .fc-button-group button svg {
  opacity: 1 !important;
  color: #000000 !important;
}
.modal-container .modal-box.date .fc-header-toolbar .fc-button-group button svg rect {
  fill: #d9d9d9 !important;
  color: #000000 !important;
}
.modal-container .modal-box.date .fc-header-toolbar .fc-button-group button span {
  display: none;
}
.modal-container .modal-box.date thead > tr > th {
  border-radius: 10px;
  background-color: #F7F7F7;
}
.modal-container .modal-box.date .fc-daygrid-day-frame {
  cursor: pointer;
  -webkit-transition: background-color 250ms ease;
  -moz-transition: background-color 250ms ease;
  -ms-transition: background-color 250ms ease;
  -o-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}
.modal-container .modal-box.date .fc-daygrid-day-frame:hover {
  background-color: #fa934c !important;
}
.modal-container .modal-box.date .fc-scrollgrid-sync-inner {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.modal-container .modal-box.date .fc-scrollgrid-sync-inner a {
  font-size: 13px !important;
}
.modal-container .modal-box.date .fc-daygrid-day-events {
  padding: 0 3px;
  top: -7px;
}
.modal-container .modal-box.date .fc-scrollgrid-sync-table {
  background-color: #ffffff;
}
.modal-container .modal-box.date .fc-daygrid-day-frame {
  min-height: 64px !important;
}
.modal-container .modal-box.date a {
  text-decoration: none !important;
}
.modal-container .modal-box.date .fc-view > table > tbody .fc-daygrid-day-top a {
  position: relative;
  top: -8px;
  left: -2px;
  font-size: 12px !important;
}
.modal-container .modal-box.date .controls {
  position: relative;
  margin-top: 8px;
}
.modal-container .modal-box.date .controls button {
  border: none !important;
}
.modal-container .modal-box.date .controls button.btn-save {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  margin-right: 8px;
}
.modal-container .modal-box.date .controls button.btn-save:focus {
  outline: none !important;
}
.modal-container .modal-box.date .controls button.btn-save:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.modal-container .modal-box.date .controls button.btn-save span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal-container .modal-box.date .controls button.btn-save.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.modal-container .modal-box.date .controls button.btn-save.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.modal-container .modal-box.date .controls button.btn-save.has-icon svg rect, .modal-container .modal-box.date .controls button.btn-save.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal-container .modal-box.date .controls button.btn-save span {
  color: #ffffff;
}
.modal-container .modal-box.date .controls button.btn-save.has-icon svg rect, .modal-container .modal-box.date .controls button.btn-save.has-icon svg path {
  fill: #ffffff !important;
}
@media (min-width: 992px) {
  .modal-container .modal-box.date .controls button.btn-save * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
}
.modal-container .modal-box.date .controls button.btn-save.active:after {
  opacity: 1;
}
.modal-container .modal-box.date .controls button.btn-cancel {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  border: 1px solid #EBE9E9 !important;
  background-color: transparent !important;
}
.modal-container .modal-box.date .controls button.btn-cancel:focus {
  outline: none !important;
}
.modal-container .modal-box.date .controls button.btn-cancel:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.modal-container .modal-box.date .controls button.btn-cancel span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal-container .modal-box.date .controls button.btn-cancel.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.modal-container .modal-box.date .controls button.btn-cancel.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.modal-container .modal-box.date .controls button.btn-cancel.has-icon svg rect, .modal-container .modal-box.date .controls button.btn-cancel.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal-container .modal-box.date .controls button.btn-cancel span {
  color: #ffffff;
}
.modal-container .modal-box.date .controls button.btn-cancel.has-icon svg rect, .modal-container .modal-box.date .controls button.btn-cancel.has-icon svg path {
  fill: #ffffff !important;
}
@media (min-width: 992px) {
  .modal-container .modal-box.date .controls button.btn-cancel * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
}
.modal-container .modal-box.date .controls button.btn-cancel.active:after {
  opacity: 1;
}
.modal-container .modal-box.date .controls button.btn-cancel span {
  color: #000000 !important;
}
.modal-container .modal-box.date .controls button span {
  padding-top: 0 !important;
}
.modal-container .modal-box.create-task .modal-inner {
  overflow-x: hidden;
}
@media (min-width: 992px) {
  .modal-container .modal-box.create-task .modal-inner .title {
    font-size: 48px;
    margin-bottom: 40px;
  }
}
.modal-container .modal-box.create-task .modal-inner form {
  overflow: hidden;
}
.modal-container .modal-box.task-description {
  max-width: 600px;
  padding-top: 50px;
}
.modal-container .modal-box.task-description .title {
  margin-bottom: 44px;
}
.modal-container .modal-box.task-description .label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}
.modal-container .modal-box.task-description .description-content * {
  word-wrap: break-word;
}
.modal-container .modal-box.user-select {
  max-width: 520px;
}
.modal-container .modal-box.user-select .title {
  margin-bottom: 44px;
}
.modal-container .modal-box.user-select form .form-field.submit-field button {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  max-width: fit-content;
  border: none;
}
.modal-container .modal-box.user-select form .form-field.submit-field button:focus {
  outline: none !important;
}
.modal-container .modal-box.user-select form .form-field.submit-field button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.modal-container .modal-box.user-select form .form-field.submit-field button:after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal-container .modal-box.user-select form .form-field.submit-field button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal-container .modal-box.user-select form .form-field.submit-field button.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.modal-container .modal-box.user-select form .form-field.submit-field button.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.modal-container .modal-box.user-select form .form-field.submit-field button.has-icon svg rect, .modal-container .modal-box.user-select form .form-field.submit-field button.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal-container .modal-box.user-select form .form-field.submit-field button span {
  color: #ffffff;
}
.modal-container .modal-box.user-select form .form-field.submit-field button.has-icon svg rect, .modal-container .modal-box.user-select form .form-field.submit-field button.has-icon svg path {
  fill: #ffffff !important;
}
@media (min-width: 992px) {
  .modal-container .modal-box.user-select form .form-field.submit-field button * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .modal-container .modal-box.user-select form .form-field.submit-field button:hover:after, .modal-container .modal-box.user-select form .form-field.submit-field button:focus:after {
    opacity: 1;
  }
}
.modal-container .modal-box.user-select form .form-field.submit-field button.active:after {
  opacity: 1;
}
.modal-container .modal-box.user-select form .form-field.submit-field button:after {
  display: none;
}
.modal-container .modal-box.table-settings {
  max-width: 500px;
  padding-top: 50px;
  background-color: #000000;
}
.modal-container .modal-box.table-settings .title {
  font-size: 20px;
  font-family: "PPNeueMontreal-Medium";
  font-weight: 400;
  margin-bottom: 20px;
}
.modal-container .modal-box.table-settings .modal-inner h3 {
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  font-size: 18px;
}
.modal-container .modal-box.table-settings .modal-inner * {
  color: #ffffff;
}
.modal-container .modal-box.table-settings .modal-inner form {
  margin-left: -10px;
  margin-right: -10px;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options {
  padding-left: 0;
  padding-right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label {
  padding-left: 10px;
  padding-right: 10px;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  display: inline-block;
  float: none;
  margin-bottom: 0;
  cursor: pointer;
  margin-top: 4px;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label > div > span {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  padding-top: 4px;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label > div > span:before, .modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label > div > span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 5px;
  display: block;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label > div > span a {
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  color: #ffffff;
  text-decoration: underline;
  -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
@media (min-width: 992px) {
  .modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label > div > span a:hover {
    color: #dc3545;
  }
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label > div > span:before {
  background: none;
  border: 1px solid #EBE9E9;
  -webkit-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label > div > span:after {
  background-image: url("img/icons/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label .req-star {
  color: #dc3545;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  font-size: 0;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label input:focus-visible + span:before {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label input:checked + div > span:after {
  opacity: 1 !important;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label input:checked + div > span:before {
  background-color: #ffffff;
  border: 1px solid #EBE9E9 !important;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label input:checked + div .invalid-feedback {
  visibility: hidden;
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label input:checked + div .invalid-feedback span {
  opacity: 0;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label.invalid > div > span:before {
  border: 1px solid #f65858;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label.invalid > div .invalid-feedback {
  visibility: visible;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  -ms-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  transition-delay: 0ms;
}
.modal-container .modal-box.table-settings .modal-inner form fieldset#column-display-options label.invalid > div .invalid-feedback span {
  opacity: 1;
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field {
  margin-top: 30px;
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field button {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  border: 1px solid #B1B1B1;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field button:focus {
  outline: none !important;
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field button.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field button.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field button.has-icon svg rect, .modal-container .modal-box.table-settings .modal-inner form .submit-field button.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media (min-width: 992px) {
  .modal-container .modal-box.table-settings .modal-inner form .submit-field button * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .modal-container .modal-box.table-settings .modal-inner form .submit-field button:hover, .modal-container .modal-box.table-settings .modal-inner form .submit-field button:focus {
    border: 1px solid #000000;
    background-color: #000000;
    color: #ffffff;
  }
  .modal-container .modal-box.table-settings .modal-inner form .submit-field button:hover span, .modal-container .modal-box.table-settings .modal-inner form .submit-field button:focus span {
    color: #ffffff;
  }
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field button.active {
  border: 1px solid #ffffff;
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field button.active span {
  color: #ffffff;
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field button.active.has-icon svg rect, .modal-container .modal-box.table-settings .modal-inner form .submit-field button.active.has-icon svg path {
  fill: #ffffff !important;
}
.modal-container .modal-box.table-settings .modal-inner form .submit-field button.active:after {
  opacity: 1;
}
.modal-container .modal-box.timeoff .box {
  overflow: hidden;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
}
.modal-container .modal-box.timeoff .box .top, .modal-container .modal-box.timeoff .box .bottom {
  padding: 52px;
}
.modal-container .modal-box.timeoff .box .top {
  position: relative;
  background-color: #000000;
}
.modal-container .modal-box.timeoff .box .top * {
  color: #ffffff;
}
.modal-container .modal-box.timeoff .box .top h2 {
  font-size: 48px;
  margin-bottom: 40px;
}
.modal-container .modal-box.timeoff .box .top .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
}
.modal-container .modal-box.timeoff .box .top form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}
.modal-container .modal-box.timeoff .box .top form label {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding-left: 10px;
  padding-right: 10px;
}
.modal-container .modal-box.timeoff .box .top form input, .modal-container .modal-box.timeoff .box .top form select {
  border: 1px solid #ffffff;
  background-color: #000000;
  color: #ffffff;
  height: 66px;
  font-size: 16px;
  border-radius: 8px;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}
.modal-container .modal-box.timeoff .box .top form .submit {
  width: 100%;
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  border: 1px solid #B1B1B1;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  border: none !important;
  height: 66px;
  border-radius: 33px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
}
.modal-container .modal-box.timeoff .box .top form .submit:focus {
  outline: none !important;
}
.modal-container .modal-box.timeoff .box .top form .submit:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.modal-container .modal-box.timeoff .box .top form .submit:after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal-container .modal-box.timeoff .box .top form .submit span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.modal-container .modal-box.timeoff .box .top form .submit.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.modal-container .modal-box.timeoff .box .top form .submit.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.modal-container .modal-box.timeoff .box .top form .submit.has-icon svg rect, .modal-container .modal-box.timeoff .box .top form .submit.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media (min-width: 992px) {
  .modal-container .modal-box.timeoff .box .top form .submit * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .modal-container .modal-box.timeoff .box .top form .submit:hover, .modal-container .modal-box.timeoff .box .top form .submit:focus {
    border: 1px solid #ffffff;
  }
  .modal-container .modal-box.timeoff .box .top form .submit:hover span, .modal-container .modal-box.timeoff .box .top form .submit:focus span {
    color: #ffffff;
  }
  .modal-container .modal-box.timeoff .box .top form .submit:hover.has-icon svg rect, .modal-container .modal-box.timeoff .box .top form .submit:hover.has-icon svg path, .modal-container .modal-box.timeoff .box .top form .submit:focus.has-icon svg rect, .modal-container .modal-box.timeoff .box .top form .submit:focus.has-icon svg path {
    fill: #ffffff !important;
  }
  .modal-container .modal-box.timeoff .box .top form .submit:hover:after, .modal-container .modal-box.timeoff .box .top form .submit:focus:after {
    opacity: 1;
  }
}
.modal-container .modal-box.timeoff .box .top form .submit.active {
  border: 1px solid #ffffff;
}
.modal-container .modal-box.timeoff .box .top form .submit.active span {
  color: #ffffff;
}
.modal-container .modal-box.timeoff .box .top form .submit.active.has-icon svg rect, .modal-container .modal-box.timeoff .box .top form .submit.active.has-icon svg path {
  fill: #ffffff !important;
}
.modal-container .modal-box.timeoff .box .top form .submit.active:after {
  opacity: 1;
}
.modal-container .modal-box.timeoff .box .bottom {
  background-color: #ffffff;
}
.modal-container .modal-box.timeoff .box .bottom h3 {
  font-size: 36px;
}
.modal-container .close-x {
  position: absolute !important;
  top: 22px;
  right: 22px;
  z-index: 3 !important;
  text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px;
}
@media (max-width: 991.98px) {
  .modal-container .close-x {
    top: 14px;
    right: 24px;
  }
}
.modal-container .modal-overlay {
  position: absolute;
  background-color: rgba(173, 173, 173, 0.25);
  backdrop-filter: blur(6px);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 250ms ease;
  -moz-transition: opacity 250ms ease;
  -ms-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
.modal-container.hidden {
  display: none;
}
.modal-container.active {
  opacity: 1;
}
.modal-container.active .modal-overlay {
  opacity: 1;
}
.modal-container.shown {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.accordion-items .items {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  left: 0;
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}
@media (max-width: 1199.98px) {
  .accordion-items .items {
    position: relative;
    width: 100%;
  }
}
.accordion-items .items .item .label {
  margin-bottom: 0;
}
.accordion-items .items .item .label button {
  position: relative;
  width: 100%;
  text-align: left;
  padding: 0;
  border: none;
  background: none;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-transition: color 250ms ease;
  -moz-transition: color 250ms ease;
  -ms-transition: color 250ms ease;
  -o-transition: color 250ms ease;
  transition: color 250ms ease;
}
.accordion-items .items .item .label button:focus {
  outline: none !important;
}
.accordion-items .items .item .label button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.accordion-items .items .item .label button svg {
  -webkit-transition: all 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: all 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: all 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: all 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: all 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
@media (min-width: 768px) {
  .accordion-items .items .item .label button:hover {
    color: #000000;
  }
}
.accordion-items .items .item .label.active button svg {
  -ms-transform: rotate(180deg); /* IE 9 */
  -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion-items .items .item .label.active + .accordion-content {
  opacity: 1;
}
.accordion-items .items .item .label:not(.active) + .accordion-content {
  height: 1px;
  opacity: 0;
}
@media (min-width: 768px) {
  .accordion-items .items .item .label:hover button:before, .accordion-items .items .item .label:hover button:after {
    background-color: #000000;
  }
  .accordion-items .items .item .label:hover button span.label-span {
    background: #000000;
    border: 1px solid #000000;
  }
}
.accordion-items .items .item .accordion-content {
  position: relative;
  opacity: 1;
  -webkit-transition: height 500ms ease, opacity 250ms ease;
  -moz-transition: height 500ms ease, opacity 250ms ease;
  -ms-transition: height 500ms ease, opacity 250ms ease;
  -o-transition: height 500ms ease, opacity 250ms ease;
  transition: height 500ms ease, opacity 250ms ease;
}
.accordion-items .items .item .accordion-content .wrap {
  padding-bottom: 20px;
}
.accordion-items .items .item .accordion-content ul li {
  list-style: none;
}
.accordion-items .items .item .accordion-content ul li:before {
  color: #000000;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.accordion-items .items .item .accordion-content ul li > ul li {
  position: relative;
}
.accordion-items .items .item .accordion-content ul li > ul li:before {
  content: "";
  position: absolute;
  background-color: #000000;
  width: 8px;
  height: 1px;
  left: 0;
  top: 12px;
}
.accordion-items .items .item:first-of-type .label:after {
  content: none;
}

.directory-item {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 24px;
  opacity: 0;
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}
@media (max-width: 1379px) {
  .directory-item {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 991.98px) {
  .directory-item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 479px) {
  .directory-item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.directory-item .box {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #F7F7F7;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  min-height: 125px;
  height: 100%;
  -webkit-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
.directory-item .box:hover {
  background-color: #EAEAEA;
}
.directory-item .box:hover .inner .info .type {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.directory-item .color {
  height: 8px;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex: 0;
  flex-shrink: 0;
}
.directory-item .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex: 1;
  flex-grow: 1;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 20px 28px;
}
.directory-item .inner .info {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.directory-item .inner .info .category {
  font-size: 14px;
  color: #B1B1B1;
}
.directory-item .inner .info .type {
  font-size: 10px;
  color: #B1B1B1;
  border: 1px solid #E8E8E8;
  padding: 4px 8px 3px;
  border-radius: 4px;
  -webkit-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
.directory-item .inner .name {
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  font-weight: normal;
  font-size: 20px;
}
.directory-item.agency .color {
  background-color: #C7EABD;
}
.directory-item.resources .color {
  background-color: #EBCE9B;
}
.directory-item.team .color {
  background-color: #C6E2EC;
}
.directory-item.active {
  opacity: 1;
}

.date-blob-old {
  background-color: #ffffff;
  border: 1px solid #EBEBEB;
  font-size: 12px;
  height: 28px;
  padding-top: 6px;
  border-radius: 14px;
  line-height: 1.2;
  display: inline-block;
  text-align: center;
  width: 100px;
}

.date-blob {
  text-align: center;
  font-size: 14px;
}

.avatar-initials {
  background-color: #000000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
}

.avatar-image {
  width: 32px;
  height: 32px;
}
.avatar-image img {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.tippie-avatar-wrap {
  position: relative;
  display: inline-block;
}
.tippie-avatar-wrap img {
  width: 32px;
  height: 32px;
  border-radius: 16px;
}
.tippie-avatar-wrap img:hover + .tippie {
  display: block;
}

.tippie {
  position: absolute;
  display: none;
  background-color: #ffffff;
  color: #000000;
  width: max-content;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 9px;
  left: 50%;
  top: -48px;
  pointer-events: none;
  transform: translate(-50%, 0);
  z-index: 11;
  -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.2);
}
.tippie strong {
  display: block;
  font-family: "PPNeueMontreal-Bold";
  font-weight: 400;
}
.tippie:before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  margin-left: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 7px solid #ffffff;
}

.tippie-wrap {
  position: relative;
}
.tippie-wrap:hover .tippie {
  display: block;
}

.no-tasks {
  text-align: center;
  width: 100%;
  display: block !important;
  padding: 10px 0 50px;
}

.category-heading {
  border-bottom: 1px solid #EBE9E9;
  padding-bottom: 12px;
  margin-top: 30px;
  margin-bottom: 0;
}
.category-heading:not(:first-of-type) {
  margin-top: 60px;
}
.category-heading.no-border {
  border: none;
  margin-bottom: 20px;
}

.task-status {
  margin-top: 8px;
  margin-right: 7px;
  background-color: #61d91b;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.task-status.coming-in-hot {
  background-color: #FFA300;
}
.task-status.yikes {
  background-color: #FF0004;
}

.table-scroll-wrap {
  overflow-x: auto;
}

.brand-table {
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.brand-table span {
  font-size: 12px;
}
.brand-table thead th {
  border: none;
  padding: 0;
  margin: 0;
}
.brand-table thead th > div {
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand-table thead th > div:before {
  content: "";
  position: absolute;
  background-color: #F7F7F7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.brand-table thead th > div span {
  color: #000000 !important;
  position: relative;
  z-index: 1;
  font-family: "PPNeueMontreal-Medium";
  font-weight: 400;
}
.brand-table thead th.assigned-to, .brand-table thead th.acc-manager {
  text-align: center;
}
.brand-table thead th.assigned-to > div, .brand-table thead th.acc-manager > div {
  padding-right: 15px;
}
.brand-table thead th.left-item > div {
  border-left: 25px solid #ffffff;
  padding-left: 12px;
}
.brand-table thead th.left-item > div:before {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.brand-table thead th.right-item > div {
  border-right: 25px solid #ffffff;
  padding-right: 12px;
}
.brand-table thead th.right-item > div:before {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.brand-table thead th.cent div {
  text-align: center;
}
.brand-table thead th.hidden {
  display: none;
}
.brand-table tbody tr:first-child td .category-heading {
  margin-top: 10px;
}
.brand-table tbody tr:nth-child(even) {
  background-color: #F7F7F7;
}
.brand-table tbody tr td {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
}
.brand-table tbody tr td.task {
  padding-top: 9.5px;
}
.brand-table tbody tr td.assigned-to, .brand-table tbody tr td.acc-manager {
  text-align: center;
  padding-right: 15px;
}
.brand-table tbody tr td.left-item > div {
  padding-left: 36px;
}
.brand-table tbody tr td.right-item > div {
  padding-right: 36px;
}
.brand-table tbody tr td a:not(.attachment-button) {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  height: 26px;
  border-radius: 13px;
  padding-left: 12px;
  padding-right: 13px;
  border: 1px solid #B1B1B1;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}
.brand-table tbody tr td a:not(.attachment-button):focus {
  outline: none !important;
}
.brand-table tbody tr td a:not(.attachment-button):focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.brand-table tbody tr td a:not(.attachment-button) span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  padding-top: 4px;
  font-size: 11px;
}
.brand-table tbody tr td a:not(.attachment-button).has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.brand-table tbody tr td a:not(.attachment-button).has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.brand-table tbody tr td a:not(.attachment-button).has-icon svg rect, .brand-table tbody tr td a:not(.attachment-button).has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media (min-width: 992px) {
  .brand-table tbody tr td a:not(.attachment-button) * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .brand-table tbody tr td a:not(.attachment-button):hover, .brand-table tbody tr td a:not(.attachment-button):focus {
    border: 1px solid #000000;
    background-color: #000000;
    color: #ffffff;
  }
  .brand-table tbody tr td a:not(.attachment-button):hover span, .brand-table tbody tr td a:not(.attachment-button):focus span {
    color: #ffffff;
  }
}
.brand-table tbody tr td a:not(.attachment-button).active {
  border: 1px solid #ffffff;
}
.brand-table tbody tr td a:not(.attachment-button).active span {
  color: #ffffff;
}
.brand-table tbody tr td a:not(.attachment-button).active.has-icon svg rect, .brand-table tbody tr td a:not(.attachment-button).active.has-icon svg path {
  fill: #ffffff !important;
}
.brand-table tbody tr td a:not(.attachment-button).active:after {
  opacity: 1;
}
.brand-table tbody tr td .task-wrap {
  position: relative;
  top: 2px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.brand-table tbody tr td .task-wrap select {
  margin-left: 12px;
}
.brand-table tbody tr td .task-wrap select:first-of-type {
  margin-left: 24px;
}
.brand-table tbody tr td .task-wrap .tippie-hover-wrap {
  margin-left: 10px;
}
.brand-table tbody tr td .task-wrap .tippie svg path {
  fill: #000000;
}
.brand-table tbody tr td .title {
  position: relative;
}
.brand-table tbody tr td .title .task-title span:not(.title-arrow) {
  font-size: 0;
}
.brand-table tbody tr td .title .tippie span:not(.title-arrow) {
  font-size: 0;
}
.brand-table tbody tr td .title.long-title:hover .tippie {
  display: block;
}
.brand-table tbody tr td .title-arrow {
  margin-left: 4px;
  margin-right: 4px;
  font-size: 13px;
}
.brand-table tbody tr td .edit {
  margin-left: 10px;
}
.brand-table tbody tr td .icon-button {
  position: relative;
  margin-left: 10px;
  width: 28px;
  height: 28px;
  display: inline-block;
  cursor: pointer;
}
.brand-table tbody tr td .icon-button div {
  line-height: 24px;
  font-size: 19px;
  position: relative;
  top: 0;
  left: 8px;
}
.brand-table tbody tr td .icon-button svg {
  width: 18px;
  height: auto;
  position: relative;
  left: -4px;
}
.brand-table tbody tr td .icon-button:hover .tippie {
  display: block;
}
.brand-table tbody tr td .add-icon-holder {
  display: inline-block;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
}
.brand-table tbody tr td .add-icon-holder svg {
  width: 32px;
  height: 32px;
}
.brand-table tbody tr td .add-icon-holder svg.hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
.brand-table tbody tr td .add-icon-holder:hover .tippie {
  display: block;
}
.brand-table tbody tr td .add-icon-holder:hover svg.hover {
  opacity: 1;
}
.brand-table tbody tr td .increment-button {
  position: relative;
  background-color: transparent;
  border: 1px solid #B1B1B1;
  color: #B1B1B1;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
@media (min-width: 992px) {
  .brand-table tbody tr td .increment-button:hover {
    background-color: #000000;
    border: 1px solid #000000;
  }
  .brand-table tbody tr td .increment-button:hover span {
    color: #ffffff;
  }
}
.brand-table tbody tr td .increment-button.minus span {
  position: relative;
  top: -1px;
}
.brand-table tbody tr td .attachment-button svg {
  width: 10px;
  left: 1px;
}
.brand-table tbody tr td .tippie-avatar-wrap:not(:first-child) {
  position: relative;
  left: -7px;
}
.brand-table tbody tr td .tippie-avatar-wrap select {
  position: absolute;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.5);
  opacity: 0;
  border: none;
  color: transparent;
}
.brand-table tbody tr td .tippie-avatar-wrap select:focus + .tippie {
  display: none;
}
.brand-table tbody tr td .clipboard-click {
  cursor: pointer;
  -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
.brand-table tbody tr td .clipboard-click span {
  -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
.brand-table tbody tr td .clipboard-click:hover {
  color: #fa934c;
}
.brand-table tbody tr td .clipboard-click:hover span {
  color: #fa934c;
}
.brand-table tbody tr td .task-name-description {
  display: none;
  font-size: 14px;
}
.brand-table tbody tr td .task-name-description span {
  display: block;
  padding-top: 18px;
  padding-bottom: 8px;
}
.brand-table tbody tr td.client span:not(.tippie), .brand-table tbody tr td.project span:not(.tippie) {
  padding-right: 6px;
}
.brand-table tbody tr td.internal-review > span:not(.tippie), .brand-table tbody tr td.client-date > span:not(.tippie) {
  min-width: 36px;
  display: inline-block;
  text-align: left;
}
.brand-table tbody tr td.internal-review .date-blob-old.coming-in-hot, .brand-table tbody tr td.client-date .date-blob-old.coming-in-hot {
  border: 1px solid #FFA300;
}
.brand-table tbody tr td.internal-review .date-blob-old.yikes, .brand-table tbody tr td.client-date .date-blob-old.yikes {
  border: 1px solid #FF0004;
}
.brand-table tbody tr td.stat select {
  width: 120px;
}
.brand-table tbody tr td.hours-spent .controls-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.brand-table tbody tr td.hours-spent .controls-wrap .hours-field {
  position: relative;
  top: 1px;
  margin-left: 6px;
  margin-right: 6px;
  display: block;
  width: 22px;
  font-size: 12px;
  text-align: center;
}
.brand-table tbody tr td.hours-spent.uncentered .controls-wrap {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.brand-table tbody tr td.hours-spent.uncentered .controls-wrap .hours-field {
  text-align: left;
  margin-left: 4px;
}
.brand-table tbody tr td.edit a {
  margin-left: 24px;
  top: 3.5px;
}
.brand-table tbody tr td.cent {
  text-align: center;
}
.brand-table tbody tr td.hidden {
  display: none;
}
.brand-table tbody tr.odd {
  background-color: #ffffff;
}
.brand-table tbody tr.even {
  background-color: #F7F7F7;
}
.brand-table.active {
  opacity: 1;
}

.tablesorter-default .tablesorter-header > div span {
  position: relative;
  padding-right: 12px;
}
.tablesorter-default .tablesorter-header > div span:before {
  content: "";
  position: absolute;
  background-color: #000000;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms ease;
  -moz-transition: opacity 250ms ease;
  -ms-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
.tablesorter-default .tablesorter-header > div span:after {
  content: "";
  right: -4px;
  top: 0;
  width: 15px;
  height: 15px;
  position: absolute;
  background-image: url(img/icons/sort-default.svg);
  background-size: 15px 15px;
}
.tablesorter-default thead .edit span:before, .tablesorter-default thead .edit span:after {
  display: none;
}
.tablesorter-default thead .tablesorter-headerAsc > div span:before {
  opacity: 1;
}
.tablesorter-default thead .tablesorter-headerAsc > div span:after {
  background-image: url(img/icons/sort-asc.svg);
}
.tablesorter-default thead .tablesorter-headerDesc > div span:before {
  opacity: 1;
}
.tablesorter-default thead .tablesorter-headerDesc > div span:after {
  background-image: url(img/icons/sort-desc.svg);
}

.bg.dashboard .window .main .activity .activity-item .contents .list-items li .status {
  background-color: #09E648;
}

.bg.dashboard .window .main .activity .activity-item .contents .list-items li .status.coming-in-hot {
  background-color: #FFA300;
}

.ss-update-success, .ss-update-success:focus-visible {
  box-shadow: 0 0 8px green !important;
  transition: box-shadow 0.3s ease-in-out 0s;
}

.ss-update-error, .ss-update-error:focus-visible {
  box-shadow: 0 0 8px red !important;
}

.activity-item label {
  font-size: 15px;
  font-family: "PPNeueMontreal-Medium";
  font-weight: 400;
  margin-bottom: 30px;
}
.activity-item label:not(:last-child) {
  margin-right: 32px;
}
.activity-item label select {
  margin-left: 16px;
}
.activity-item label + .reminders-html .category-heading:first-child {
  margin-top: 0 !important;
}

.system-notification {
  position: fixed;
  top: -200px;
  right: 20px;
  z-index: 2000;
  background-color: #c7eabd;
  border-radius: 16px;
  padding: 30px 40px;
  -webkit-transition: top 250ms ease;
  -moz-transition: top 250ms ease;
  -ms-transition: top 250ms ease;
  -o-transition: top 250ms ease;
  transition: top 250ms ease;
}
.system-notification .msg:not(.shown) {
  display: none;
}
.system-notification .msg p {
  position: relative;
  font-size: 16px;
  padding-left: 30px;
}
.system-notification .msg p svg {
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
}
.system-notification.active {
  top: 20px;
}
.system-notification.error {
  background-color: #ffb8b8;
}

.open-modal {
  cursor: pointer;
}

.tasks-controls {
  margin-top: 24px;
  margin-bottom: 20px;
  padding-left: 25px;
  padding-right: 25px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.tasks-controls .other-options {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.tasks-controls .other-options .option {
  position: relative;
  cursor: pointer;
}
.tasks-controls .other-options .option:not(:last-child) {
  margin-right: 12px;
}
.tasks-controls .other-options .option svg {
  width: 24px;
  height: 24px;
}
.tasks-controls .other-options .option:hover .tippie {
  display: block;
}

.tasks-filter {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.tasks-filter .filter-item {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.tasks-filter .filter-item:not(:last-child) {
  margin-right: 24px;
}
.tasks-filter .filter-item span.label {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex: 0;
  flex-shrink: 0;
  font-size: 18px;
  color: #979797;
  -webkit-transition: color 250ms ease;
  -moz-transition: color 250ms ease;
  -ms-transition: color 250ms ease;
  -o-transition: color 250ms ease;
  transition: color 250ms ease;
  margin-right: 6px;
}
.tasks-filter .filter-item span.count {
  background-color: #F7F7F7;
  border-radius: 16px;
  font-size: 12px;
  display: block;
  width: 24px;
  height: 24px;
  text-align: center;
  padding-top: 3px;
  color: #757575;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex: 0;
  flex-shrink: 0;
  -webkit-transition: background-color 250ms ease, color 250ms ease;
  -moz-transition: background-color 250ms ease, color 250ms ease;
  -ms-transition: background-color 250ms ease, color 250ms ease;
  -o-transition: background-color 250ms ease, color 250ms ease;
  transition: background-color 250ms ease, color 250ms ease;
}
.tasks-filter .filter-item.active span.label {
  color: #000000;
}
.tasks-filter .filter-item.active span.count {
  background-color: #000000;
  color: #ffffff;
}
@media (min-width: 768px) {
  .tasks-filter .filter-item:hover span.label {
    color: #fa934c;
  }
  .tasks-filter .filter-item:hover span.count {
    background-color: #fa934c;
    color: #ffffff;
  }
}

.notran {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000000;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #000000;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #000000;
}

:-moz-placeholder { /* Firefox 18- */
  color: #000000;
}

/*--------------------------------------------------------------
THEME / LAYOUT
--------------------------------------------------------------*/
body {
  margin: 0;
}

.bg {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.bg .window {
  opacity: 1;
  -webkit-transition: opacity 600ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: opacity 600ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: opacity 600ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: opacity 600ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: opacity 600ms cubic-bezier(0.56, 0, 0.24, 1);
}
.bg .window.pre-hidden {
  opacity: 0;
}
.bg.login {
  height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.bg.login .window {
  position: relative;
  z-index: 1;
  padding: 32px;
  max-width: 500px;
  width: 100%;
}
.bg.login .window .inner {
  background-color: #ffffff;
  padding: 44px;
  border-radius: 8px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.075);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.075);
}
.bg.login .window .title {
  text-transform: uppercase;
  font-size: 64px;
  margin-bottom: 44px;
}
.bg.login .window .title.small {
  font-size: 32px;
  margin-bottom: 24px;
}
.bg.login .window form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.bg.login .window form input[type=text],
.bg.login .window form input[type=password] {
  box-sizing: border-box;
  background: #F4F4F4;
  border: none;
  border-radius: 4px;
  height: 55px;
  width: 100%;
  padding: 0 20px;
  font-size: 16px;
}
.bg.login .window form input[type=text]:not(:last-child),
.bg.login .window form input[type=password]:not(:last-child) {
  margin-bottom: 24px;
}
.bg.login .window form .forget {
  color: #000000;
  text-decoration: none;
  padding-left: 0;
  padding-right: 0;
}
.bg.login .window form button[type=submit], .bg.login .window form input[type=submit] {
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  height: 55px;
  width: 100%;
  font-size: 16px;
  margin-top: 24px;
}
.bg.login .window form#lostpasswordform {
  margin-top: 30px;
}
.bg.login .window form#lostpasswordform button[type=submit], .bg.login .window form#lostpasswordform input[type=submit] {
  margin-top: 0;
}
.bg.login .logo {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 800px;
  height: auto;
}
.bg.dashboard {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 350px) {
  .bg.dashboard {
    padding-left: 20px;
  }
}
@media (min-width: 576px) {
  .bg.dashboard {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .bg.dashboard {
    padding-left: 40px;
  }
}
@media (min-width: 1480px) {
  .bg.dashboard {
    padding-left: 60px;
  }
}
@media (min-width: 350px) {
  .bg.dashboard {
    padding-right: 20px;
  }
}
@media (min-width: 576px) {
  .bg.dashboard {
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .bg.dashboard {
    padding-right: 40px;
  }
}
@media (min-width: 1480px) {
  .bg.dashboard {
    padding-right: 60px;
  }
}
.bg.dashboard .bg-image {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.bg.dashboard .window {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #ffffff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: -moz-calc(100vh - 32px);
  height: -webkit-calc(100vh - 32px);
  height: calc(100vh - 32px);
  top: 15px;
}
@media (min-width: 350px) {
  .bg.dashboard .window {
    top: 20px;
  }
}
@media (min-width: 576px) {
  .bg.dashboard .window {
    top: 30px;
  }
}
.bg.dashboard .window .window-wrap {
  background-color: #ffffff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.bg.dashboard .window .menu {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (min-width: 350px) {
  .bg.dashboard .window .menu {
    padding-left: 20px;
  }
}
@media (min-width: 576px) {
  .bg.dashboard .window .menu {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .bg.dashboard .window .menu {
    padding-left: 40px;
  }
}
@media (min-width: 1480px) {
  .bg.dashboard .window .menu {
    padding-left: 60px;
  }
}
@media (min-width: 350px) {
  .bg.dashboard .window .menu {
    padding-right: 20px;
  }
}
@media (min-width: 576px) {
  .bg.dashboard .window .menu {
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .bg.dashboard .window .menu {
    padding-right: 40px;
  }
}
@media (min-width: 1480px) {
  .bg.dashboard .window .menu {
    padding-right: 60px;
  }
}
@media (max-width: 991.98px) {
  .bg.dashboard .window .menu .nav {
    display: none;
  }
}
.bg.dashboard .window .menu .nav li:not(:last-child) {
  margin-right: 14px;
}
.bg.dashboard .window .menu .nav li a:not(.sign-out), .bg.dashboard .window .menu .nav li button:not(.sign-out) {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}
.bg.dashboard .window .menu .nav li a:not(.sign-out):focus, .bg.dashboard .window .menu .nav li button:not(.sign-out):focus {
  outline: none !important;
}
.bg.dashboard .window .menu .nav li a:not(.sign-out):focus-visible, .bg.dashboard .window .menu .nav li button:not(.sign-out):focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.bg.dashboard .window .menu .nav li a:not(.sign-out):after, .bg.dashboard .window .menu .nav li button:not(.sign-out):after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.bg.dashboard .window .menu .nav li a:not(.sign-out) span, .bg.dashboard .window .menu .nav li button:not(.sign-out) span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.bg.dashboard .window .menu .nav li a:not(.sign-out).has-icon span, .bg.dashboard .window .menu .nav li button:not(.sign-out).has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.bg.dashboard .window .menu .nav li a:not(.sign-out).has-icon svg, .bg.dashboard .window .menu .nav li button:not(.sign-out).has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.bg.dashboard .window .menu .nav li a:not(.sign-out).has-icon svg rect, .bg.dashboard .window .menu .nav li a:not(.sign-out).has-icon svg path, .bg.dashboard .window .menu .nav li button:not(.sign-out).has-icon svg rect, .bg.dashboard .window .menu .nav li button:not(.sign-out).has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.bg.dashboard .window .menu .nav li a:not(.sign-out) span, .bg.dashboard .window .menu .nav li button:not(.sign-out) span {
  color: #ffffff;
}
.bg.dashboard .window .menu .nav li a:not(.sign-out).has-icon svg rect, .bg.dashboard .window .menu .nav li a:not(.sign-out).has-icon svg path, .bg.dashboard .window .menu .nav li button:not(.sign-out).has-icon svg rect, .bg.dashboard .window .menu .nav li button:not(.sign-out).has-icon svg path {
  fill: #ffffff !important;
}
@media (min-width: 992px) {
  .bg.dashboard .window .menu .nav li a:not(.sign-out) *, .bg.dashboard .window .menu .nav li button:not(.sign-out) * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .bg.dashboard .window .menu .nav li a:not(.sign-out):hover:after, .bg.dashboard .window .menu .nav li a:not(.sign-out):focus:after, .bg.dashboard .window .menu .nav li button:not(.sign-out):hover:after, .bg.dashboard .window .menu .nav li button:not(.sign-out):focus:after {
    opacity: 1;
  }
}
.bg.dashboard .window .menu .nav li a:not(.sign-out).active:after, .bg.dashboard .window .menu .nav li button:not(.sign-out).active:after {
  opacity: 1;
}
.bg.dashboard .window .menu .nav li a.sign-out, .bg.dashboard .window .menu .nav li button.sign-out {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  border: 1px solid #B1B1B1;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}
.bg.dashboard .window .menu .nav li a.sign-out:focus, .bg.dashboard .window .menu .nav li button.sign-out:focus {
  outline: none !important;
}
.bg.dashboard .window .menu .nav li a.sign-out:focus-visible, .bg.dashboard .window .menu .nav li button.sign-out:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.bg.dashboard .window .menu .nav li a.sign-out:after, .bg.dashboard .window .menu .nav li button.sign-out:after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.bg.dashboard .window .menu .nav li a.sign-out span, .bg.dashboard .window .menu .nav li button.sign-out span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.bg.dashboard .window .menu .nav li a.sign-out.has-icon span, .bg.dashboard .window .menu .nav li button.sign-out.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.bg.dashboard .window .menu .nav li a.sign-out.has-icon svg, .bg.dashboard .window .menu .nav li button.sign-out.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.bg.dashboard .window .menu .nav li a.sign-out.has-icon svg rect, .bg.dashboard .window .menu .nav li a.sign-out.has-icon svg path, .bg.dashboard .window .menu .nav li button.sign-out.has-icon svg rect, .bg.dashboard .window .menu .nav li button.sign-out.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media (min-width: 992px) {
  .bg.dashboard .window .menu .nav li a.sign-out *, .bg.dashboard .window .menu .nav li button.sign-out * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .bg.dashboard .window .menu .nav li a.sign-out:hover, .bg.dashboard .window .menu .nav li a.sign-out:focus, .bg.dashboard .window .menu .nav li button.sign-out:hover, .bg.dashboard .window .menu .nav li button.sign-out:focus {
    border: 1px solid #ffffff;
  }
  .bg.dashboard .window .menu .nav li a.sign-out:hover span, .bg.dashboard .window .menu .nav li a.sign-out:focus span, .bg.dashboard .window .menu .nav li button.sign-out:hover span, .bg.dashboard .window .menu .nav li button.sign-out:focus span {
    color: #ffffff;
  }
  .bg.dashboard .window .menu .nav li a.sign-out:hover.has-icon svg rect, .bg.dashboard .window .menu .nav li a.sign-out:hover.has-icon svg path, .bg.dashboard .window .menu .nav li a.sign-out:focus.has-icon svg rect, .bg.dashboard .window .menu .nav li a.sign-out:focus.has-icon svg path, .bg.dashboard .window .menu .nav li button.sign-out:hover.has-icon svg rect, .bg.dashboard .window .menu .nav li button.sign-out:hover.has-icon svg path, .bg.dashboard .window .menu .nav li button.sign-out:focus.has-icon svg rect, .bg.dashboard .window .menu .nav li button.sign-out:focus.has-icon svg path {
    fill: #ffffff !important;
  }
  .bg.dashboard .window .menu .nav li a.sign-out:hover:after, .bg.dashboard .window .menu .nav li a.sign-out:focus:after, .bg.dashboard .window .menu .nav li button.sign-out:hover:after, .bg.dashboard .window .menu .nav li button.sign-out:focus:after {
    opacity: 1;
  }
}
.bg.dashboard .window .menu .nav li a.sign-out.active, .bg.dashboard .window .menu .nav li button.sign-out.active {
  border: 1px solid #ffffff;
}
.bg.dashboard .window .menu .nav li a.sign-out.active span, .bg.dashboard .window .menu .nav li button.sign-out.active span {
  color: #ffffff;
}
.bg.dashboard .window .menu .nav li a.sign-out.active.has-icon svg rect, .bg.dashboard .window .menu .nav li a.sign-out.active.has-icon svg path, .bg.dashboard .window .menu .nav li button.sign-out.active.has-icon svg rect, .bg.dashboard .window .menu .nav li button.sign-out.active.has-icon svg path {
  fill: #ffffff !important;
}
.bg.dashboard .window .menu .nav li a.sign-out.active:after, .bg.dashboard .window .menu .nav li button.sign-out.active:after {
  opacity: 1;
}
.bg.dashboard .window .menu .nav li a.sign-out.has-icon svg, .bg.dashboard .window .menu .nav li button.sign-out.has-icon svg {
  width: 18px;
  height: 18px;
}
.bg.dashboard .window .main {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 350px) {
  .bg.dashboard .window .main {
    padding-left: 20px;
  }
}
@media (min-width: 576px) {
  .bg.dashboard .window .main {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .bg.dashboard .window .main {
    padding-left: 40px;
  }
}
@media (min-width: 1480px) {
  .bg.dashboard .window .main {
    padding-left: 60px;
  }
}
@media (min-width: 350px) {
  .bg.dashboard .window .main {
    padding-right: 20px;
  }
}
@media (min-width: 576px) {
  .bg.dashboard .window .main {
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .bg.dashboard .window .main {
    padding-right: 40px;
  }
}
@media (min-width: 1480px) {
  .bg.dashboard .window .main {
    padding-right: 60px;
  }
}
.bg.dashboard .window .main .header {
  padding-top: 32px;
  padding-bottom: 32px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 576px) {
  .bg.dashboard .window .main .header {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media (max-width: 575.98px) {
  .bg.dashboard .window .main .header {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.bg.dashboard .window .main .header h1 {
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg.dashboard .window .main .header h1 span {
  text-transform: capitalize;
}
.bg.dashboard .window .main .header .ooo {
  padding: 16px;
}
@media (max-width: 575.98px) {
  .bg.dashboard .window .main .header .ooo {
    padding-top: 32px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.bg.dashboard .window .main .header .ooo h2 {
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  margin-top: 4px;
  font-size: 16px !important;
}
.bg.dashboard .window .main .header .ooo .outies {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 576px) {
  .bg.dashboard .window .main .header .ooo .outies {
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.bg.dashboard .window .main .header .ooo .outies .outie {
  position: relative;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.bg.dashboard .window .main .header .ooo .outies .outie .avatar-initials, .bg.dashboard .window .main .header .ooo .outies .outie .avatar-image {
  width: 40px;
  height: 40px;
  font-size: 18px;
}
.bg.dashboard .window .main .header .ooo .outies .outie:not(:first-child) {
  margin-left: -8px;
}
.bg.dashboard .window .main .header .ooo .outies .outie:hover .tippie {
  display: block;
}
.bg.dashboard .window .main .header .ooo .outies .tippie {
  top: -70px;
}
.bg.dashboard .window .main .home {
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}
.bg.dashboard .window .main .activity {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.bg.dashboard .window .main .activity .items {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex: 0;
  flex-shrink: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-left: -12px;
  margin-right: -12px;
  padding-bottom: 64px;
}
.bg.dashboard .window .main .activity .activity-item {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
.bg.dashboard .window .main .activity .activity-item:not(:last-child) {
  margin-bottom: 18px;
}
.bg.dashboard .window .main .activity .activity-item .inner {
  border: 1px solid #EBE9E9;
  border-radius: 8px;
}
.bg.dashboard .window .main .activity .activity-item .bar button {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 20px 25px;
}
.bg.dashboard .window .main .activity .activity-item .bar h2 {
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 0;
}
.bg.dashboard .window .main .activity .activity-item .contents .wrap {
  padding: 4px 0 25px;
}
.bg.dashboard .window .main .activity .activity-item .contents .list-items {
  padding: 0;
  margin: 0;
  list-style: none;
}
.bg.dashboard .window .main .activity .activity-item .contents .list-items li {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 28px;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.bg.dashboard .window .main .activity .activity-item .contents .list-items li.heading {
  display: block;
  border-bottom: 1px solid #EBE9E9;
  padding-bottom: 12px;
  margin-top: 30px;
  margin-bottom: 0;
  height: auto;
}
.bg.dashboard .window .main .activity .activity-item .contents .list-items li.heading:first-child {
  margin-top: 10px;
}
.bg.dashboard .window .main .activity .activity-item .contents .list-items li.heading h3 {
  font-size: 28px;
  margin-bottom: 20px;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .bg.dashboard .window .main .activity .activity-item .contents .list-items li.heading h3 {
    font-size: 25px;
  }
}
@media (max-width: 575.98px) {
  .bg.dashboard .window .main .activity .activity-item .contents .list-items li.heading h3 {
    font-size: 22px;
  }
}
.bg.dashboard .window .main .activity .activity-item .contents .list-items li:not(:last-child) {
  margin-bottom: 10px;
}
.bg.dashboard .window .main .activity .activity-item .contents .list-items li select {
  margin-left: 12px;
}
.bg.dashboard .window .main .activity .activity-item .contents .list-items li select:first-of-type {
  margin-left: 24px;
}
.bg.dashboard .window .main .activity .activity-item .contents .list-items li .date-blob {
  margin-left: 14px;
  display: inline-table;
}
.bg.dashboard .window .main .activity .activity-item .contents .links {
  margin-top: 35px;
}
.bg.dashboard .window .main .activity .activity-item .contents .links a, .bg.dashboard .window .main .activity .activity-item .contents .links button {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}
.bg.dashboard .window .main .activity .activity-item .contents .links a:focus, .bg.dashboard .window .main .activity .activity-item .contents .links button:focus {
  outline: none !important;
}
.bg.dashboard .window .main .activity .activity-item .contents .links a:focus-visible, .bg.dashboard .window .main .activity .activity-item .contents .links button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.bg.dashboard .window .main .activity .activity-item .contents .links a:after, .bg.dashboard .window .main .activity .activity-item .contents .links button:after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.bg.dashboard .window .main .activity .activity-item .contents .links a span, .bg.dashboard .window .main .activity .activity-item .contents .links button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.bg.dashboard .window .main .activity .activity-item .contents .links a.has-icon span, .bg.dashboard .window .main .activity .activity-item .contents .links button.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.bg.dashboard .window .main .activity .activity-item .contents .links a.has-icon svg, .bg.dashboard .window .main .activity .activity-item .contents .links button.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.bg.dashboard .window .main .activity .activity-item .contents .links a.has-icon svg rect, .bg.dashboard .window .main .activity .activity-item .contents .links a.has-icon svg path, .bg.dashboard .window .main .activity .activity-item .contents .links button.has-icon svg rect, .bg.dashboard .window .main .activity .activity-item .contents .links button.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.bg.dashboard .window .main .activity .activity-item .contents .links a span, .bg.dashboard .window .main .activity .activity-item .contents .links button span {
  color: #ffffff;
}
.bg.dashboard .window .main .activity .activity-item .contents .links a.has-icon svg rect, .bg.dashboard .window .main .activity .activity-item .contents .links a.has-icon svg path, .bg.dashboard .window .main .activity .activity-item .contents .links button.has-icon svg rect, .bg.dashboard .window .main .activity .activity-item .contents .links button.has-icon svg path {
  fill: #ffffff !important;
}
@media (min-width: 992px) {
  .bg.dashboard .window .main .activity .activity-item .contents .links a *, .bg.dashboard .window .main .activity .activity-item .contents .links button * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .bg.dashboard .window .main .activity .activity-item .contents .links a:hover:after, .bg.dashboard .window .main .activity .activity-item .contents .links a:focus:after, .bg.dashboard .window .main .activity .activity-item .contents .links button:hover:after, .bg.dashboard .window .main .activity .activity-item .contents .links button:focus:after {
    opacity: 1;
  }
}
.bg.dashboard .window .main .activity .activity-item .contents .links a.active:after, .bg.dashboard .window .main .activity .activity-item .contents .links button.active:after {
  opacity: 1;
}
.bg.dashboard .window .main .activity .activity-item .contents .links button span {
  padding-top: 0;
}
.bg.dashboard .window .main .directory .filter {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-bottom: 12px;
  margin-bottom: 14px;
}
@media (max-width: 767.98px) {
  .bg.dashboard .window .main .directory .filter {
    width: 100%;
    overflow-x: scroll;
  }
}
.bg.dashboard .window .main .directory .filter li:not(:last-child) {
  margin-right: 20px;
}
.bg.dashboard .window .main .directory .filter li button {
  font-size: 18px;
  color: #979797;
  -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
.bg.dashboard .window .main .directory .filter li button.active {
  color: #000000;
}
.bg.dashboard .window .main .directory .filter li button:hover {
  color: #fa934c;
}
.bg.dashboard .window .main .directory .filter li button.active {
  color: #000000;
}
.bg.dashboard .window .main .directory .grid {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 1379px) {
  .bg.dashboard .window .main .directory .grid {
    margin-left: -10px;
    margin-right: -10px;
  }
}

/*--------------------------------------------------------------
THEME / NAVIGATION
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .menu-button {
    display: none;
  }
}
.menu-button button {
  position: relative;
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-button button:focus {
  outline: none !important;
}
.menu-button button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.menu-button button:after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-button button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-button button.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.menu-button button.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.menu-button button.has-icon svg rect, .menu-button button.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-button button span {
  color: #ffffff;
}
.menu-button button.has-icon svg rect, .menu-button button.has-icon svg path {
  fill: #ffffff !important;
}
@media (min-width: 992px) {
  .menu-button button * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .menu-button button:hover:after, .menu-button button:focus:after {
    opacity: 1;
  }
}
.menu-button button.active:after {
  opacity: 1;
}
.menu-button button > span {
  padding-top: 1px;
}
.menu-button button > span.opened-text {
  display: none;
  position: absolute;
  top: 9px;
  left: 0;
}
.menu-button button.active > span.closed-text {
  visibility: hidden;
}
.menu-button button.active > span.opened-text {
  display: block;
}

#mobile-nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  visibility: hidden;
  -webkit-transition: visibility 0ms ease;
  -moz-transition: visibility 0ms ease;
  -ms-transition: visibility 0ms ease;
  -o-transition: visibility 0ms ease;
  transition: visibility 0ms ease;
  -webkit-transition-delay: 250ms;
  -moz-transition-delay: 250ms;
  -ms-transition-delay: 250ms;
  -o-transition-delay: 250ms;
  transition-delay: 250ms;
}
#mobile-nav .nav-wrap {
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  left: 0;
  top: 120px;
  height: -moz-calc(100vh - 32px - 88px);
  height: -webkit-calc(100vh - 32px - 88px);
  height: calc(100vh - 32px - 88px);
  width: 100%;
  z-index: 100;
  text-align: center;
  max-width: 100% !important;
  overflow-x: hidden;
  opacity: 0;
  -webkit-transition: opacity 250ms ease;
  -moz-transition: opacity 250ms ease;
  -ms-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
@media (min-width: 350px) {
  #mobile-nav .nav-wrap {
    padding-left: 20px;
  }
}
@media (min-width: 576px) {
  #mobile-nav .nav-wrap {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  #mobile-nav .nav-wrap {
    padding-left: 40px;
  }
}
@media (min-width: 1480px) {
  #mobile-nav .nav-wrap {
    padding-left: 60px;
  }
}
@media (min-width: 350px) {
  #mobile-nav .nav-wrap {
    padding-right: 20px;
  }
}
@media (min-width: 576px) {
  #mobile-nav .nav-wrap {
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  #mobile-nav .nav-wrap {
    padding-right: 40px;
  }
}
@media (min-width: 1480px) {
  #mobile-nav .nav-wrap {
    padding-right: 60px;
  }
}
#mobile-nav .nav-wrap li:first-child {
  padding-top: 64px;
}
#mobile-nav .nav-wrap li:not(:last-child) {
  margin-bottom: 14px;
}
#mobile-nav .nav-wrap li a, #mobile-nav .nav-wrap li button {
  width: 164px;
}
#mobile-nav .nav-wrap li a:not(.sign-out), #mobile-nav .nav-wrap li button:not(.sign-out) {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}
#mobile-nav .nav-wrap li a:not(.sign-out):focus, #mobile-nav .nav-wrap li button:not(.sign-out):focus {
  outline: none !important;
}
#mobile-nav .nav-wrap li a:not(.sign-out):focus-visible, #mobile-nav .nav-wrap li button:not(.sign-out):focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
#mobile-nav .nav-wrap li a:not(.sign-out):after, #mobile-nav .nav-wrap li button:not(.sign-out):after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
#mobile-nav .nav-wrap li a:not(.sign-out) span, #mobile-nav .nav-wrap li button:not(.sign-out) span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
#mobile-nav .nav-wrap li a:not(.sign-out).has-icon span, #mobile-nav .nav-wrap li button:not(.sign-out).has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
#mobile-nav .nav-wrap li a:not(.sign-out).has-icon svg, #mobile-nav .nav-wrap li button:not(.sign-out).has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
#mobile-nav .nav-wrap li a:not(.sign-out).has-icon svg rect, #mobile-nav .nav-wrap li a:not(.sign-out).has-icon svg path, #mobile-nav .nav-wrap li button:not(.sign-out).has-icon svg rect, #mobile-nav .nav-wrap li button:not(.sign-out).has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
#mobile-nav .nav-wrap li a:not(.sign-out) span, #mobile-nav .nav-wrap li button:not(.sign-out) span {
  color: #ffffff;
}
#mobile-nav .nav-wrap li a:not(.sign-out).has-icon svg rect, #mobile-nav .nav-wrap li a:not(.sign-out).has-icon svg path, #mobile-nav .nav-wrap li button:not(.sign-out).has-icon svg rect, #mobile-nav .nav-wrap li button:not(.sign-out).has-icon svg path {
  fill: #ffffff !important;
}
@media (min-width: 992px) {
  #mobile-nav .nav-wrap li a:not(.sign-out) *, #mobile-nav .nav-wrap li button:not(.sign-out) * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  #mobile-nav .nav-wrap li a:not(.sign-out):hover:after, #mobile-nav .nav-wrap li a:not(.sign-out):focus:after, #mobile-nav .nav-wrap li button:not(.sign-out):hover:after, #mobile-nav .nav-wrap li button:not(.sign-out):focus:after {
    opacity: 1;
  }
}
#mobile-nav .nav-wrap li a:not(.sign-out).active:after, #mobile-nav .nav-wrap li button:not(.sign-out).active:after {
  opacity: 1;
}
#mobile-nav .nav-wrap li a.sign-out, #mobile-nav .nav-wrap li button.sign-out {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  border: 1px solid #B1B1B1;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}
#mobile-nav .nav-wrap li a.sign-out:focus, #mobile-nav .nav-wrap li button.sign-out:focus {
  outline: none !important;
}
#mobile-nav .nav-wrap li a.sign-out:focus-visible, #mobile-nav .nav-wrap li button.sign-out:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
#mobile-nav .nav-wrap li a.sign-out:after, #mobile-nav .nav-wrap li button.sign-out:after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
#mobile-nav .nav-wrap li a.sign-out span, #mobile-nav .nav-wrap li button.sign-out span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
#mobile-nav .nav-wrap li a.sign-out.has-icon span, #mobile-nav .nav-wrap li button.sign-out.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
#mobile-nav .nav-wrap li a.sign-out.has-icon svg, #mobile-nav .nav-wrap li button.sign-out.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
#mobile-nav .nav-wrap li a.sign-out.has-icon svg rect, #mobile-nav .nav-wrap li a.sign-out.has-icon svg path, #mobile-nav .nav-wrap li button.sign-out.has-icon svg rect, #mobile-nav .nav-wrap li button.sign-out.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media (min-width: 992px) {
  #mobile-nav .nav-wrap li a.sign-out *, #mobile-nav .nav-wrap li button.sign-out * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  #mobile-nav .nav-wrap li a.sign-out:hover, #mobile-nav .nav-wrap li a.sign-out:focus, #mobile-nav .nav-wrap li button.sign-out:hover, #mobile-nav .nav-wrap li button.sign-out:focus {
    border: 1px solid #ffffff;
  }
  #mobile-nav .nav-wrap li a.sign-out:hover span, #mobile-nav .nav-wrap li a.sign-out:focus span, #mobile-nav .nav-wrap li button.sign-out:hover span, #mobile-nav .nav-wrap li button.sign-out:focus span {
    color: #ffffff;
  }
  #mobile-nav .nav-wrap li a.sign-out:hover.has-icon svg rect, #mobile-nav .nav-wrap li a.sign-out:hover.has-icon svg path, #mobile-nav .nav-wrap li a.sign-out:focus.has-icon svg rect, #mobile-nav .nav-wrap li a.sign-out:focus.has-icon svg path, #mobile-nav .nav-wrap li button.sign-out:hover.has-icon svg rect, #mobile-nav .nav-wrap li button.sign-out:hover.has-icon svg path, #mobile-nav .nav-wrap li button.sign-out:focus.has-icon svg rect, #mobile-nav .nav-wrap li button.sign-out:focus.has-icon svg path {
    fill: #ffffff !important;
  }
  #mobile-nav .nav-wrap li a.sign-out:hover:after, #mobile-nav .nav-wrap li a.sign-out:focus:after, #mobile-nav .nav-wrap li button.sign-out:hover:after, #mobile-nav .nav-wrap li button.sign-out:focus:after {
    opacity: 1;
  }
}
#mobile-nav .nav-wrap li a.sign-out.active, #mobile-nav .nav-wrap li button.sign-out.active {
  border: 1px solid #ffffff;
}
#mobile-nav .nav-wrap li a.sign-out.active span, #mobile-nav .nav-wrap li button.sign-out.active span {
  color: #ffffff;
}
#mobile-nav .nav-wrap li a.sign-out.active.has-icon svg rect, #mobile-nav .nav-wrap li a.sign-out.active.has-icon svg path, #mobile-nav .nav-wrap li button.sign-out.active.has-icon svg rect, #mobile-nav .nav-wrap li button.sign-out.active.has-icon svg path {
  fill: #ffffff !important;
}
#mobile-nav .nav-wrap li a.sign-out.active:after, #mobile-nav .nav-wrap li button.sign-out.active:after {
  opacity: 1;
}
#mobile-nav .nav-wrap li a.sign-out.has-icon svg, #mobile-nav .nav-wrap li button.sign-out.has-icon svg {
  width: 18px;
  height: 18px;
}
#mobile-nav .menu {
  list-style: none;
  background-color: #ffffff;
  height: 100%;
  position: relative;
  margin-bottom: 0;
  padding: 0;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 350px) {
  #mobile-nav .menu {
    padding-left: 20px;
  }
}
@media (min-width: 576px) {
  #mobile-nav .menu {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  #mobile-nav .menu {
    padding-left: 40px;
  }
}
@media (min-width: 1480px) {
  #mobile-nav .menu {
    padding-left: 60px;
  }
}
@media (min-width: 350px) {
  #mobile-nav .menu {
    padding-right: 20px;
  }
}
@media (min-width: 576px) {
  #mobile-nav .menu {
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  #mobile-nav .menu {
    padding-right: 40px;
  }
}
@media (min-width: 1480px) {
  #mobile-nav .menu {
    padding-right: 60px;
  }
}
#mobile-nav .menu * {
  text-decoration: none !important;
}
#mobile-nav.active {
  visibility: visible;
  -webkit-transition: visibility 0ms ease;
  -moz-transition: visibility 0ms ease;
  -ms-transition: visibility 0ms ease;
  -o-transition: visibility 0ms ease;
  transition: visibility 0ms ease;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  -ms-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  transition-delay: 0ms;
}
#mobile-nav.active .nav-wrap {
  opacity: 1;
}

/*--------------------------------------------------------------
THEME / CALENDAR
--------------------------------------------------------------*/
.fc-unthemed .fc-content, .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-list-view, .fc-unthemed .fc-popover, .fc-unthemed .fc-row, .fc-unthemed tbody, .fc-unthemed td, .fc-unthemed th, .fc-unthemed thead {
  border-color: #F7F7F7;
}

.fc-unthemed td.fc-today {
  background: #F7F7F7;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: left;
}

.fc-basic-view .fc-day-number {
  padding: 4px 8px 2px;
  font-size: 12px;
}

.fc-daygrid-day-events {
  padding: 4px 8px;
}

.fc-daygrid-day-frame {
  min-height: 200px !important;
}

.fc-daygrid-event {
  z-index: unset !important;
  margin-top: 0 !important;
}
.fc-daygrid-event .fc-event-main {
  position: relative;
  padding-right: 32px;
  z-index: unset !important;
}
.fc-daygrid-event .tippie-avatar-wrap {
  position: absolute;
  top: 2px;
  right: 0;
}

.fc-daygrid-block-event {
  margin: 8px 8px 0;
  padding: 4px 6px;
  border: none;
  margin-bottom: 2px;
  line-height: 1.2;
}
.fc-daygrid-block-event .fc-event-main {
  text-wrap: auto;
}
.fc-daygrid-block-event .fc-event-main::first-line {
  font-family: "PPNeueMontreal-Bold";
  font-weight: 400;
}

#eventPopup {
  display: none;
}

.fc-button-group button {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  border: 1px solid #B1B1B1;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  border-top-right-radius: 22px !important;
  border-bottom-right-radius: 22px !important;
  border-top-left-radius: 22px !important;
  border-bottom-left-radius: 22px !important;
  box-shadow: none !important;
  text-shadow: none !important;
  background: none !important;
  overflow: hidden !important;
  border: 1px solid #EBE9E9 !important;
  width: 58px;
}
.fc-button-group button:focus {
  outline: none !important;
}
.fc-button-group button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.fc-button-group button:after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.fc-button-group button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.fc-button-group button.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.fc-button-group button.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.fc-button-group button.has-icon svg rect, .fc-button-group button.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media (min-width: 992px) {
  .fc-button-group button * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .fc-button-group button:hover, .fc-button-group button:focus {
    border: 1px solid #ffffff;
  }
  .fc-button-group button:hover span, .fc-button-group button:focus span {
    color: #ffffff;
  }
  .fc-button-group button:hover.has-icon svg rect, .fc-button-group button:hover.has-icon svg path, .fc-button-group button:focus.has-icon svg rect, .fc-button-group button:focus.has-icon svg path {
    fill: #ffffff !important;
  }
  .fc-button-group button:hover:after, .fc-button-group button:focus:after {
    opacity: 1;
  }
}
.fc-button-group button.active {
  border: 1px solid #ffffff;
}
.fc-button-group button.active span {
  color: #ffffff;
}
.fc-button-group button.active.has-icon svg rect, .fc-button-group button.active.has-icon svg path {
  fill: #ffffff !important;
}
.fc-button-group button.active:after {
  opacity: 1;
}
.fc-button-group button:not(:last-child) {
  margin-right: 10px;
}
.fc-button-group button svg {
  width: 14px;
  height: auto;
  position: relative;
  z-index: 2;
}
.fc-button-group button span {
  padding-top: 1px !important;
}
.fc-button-group button .fc-icon {
  display: none;
}
.fc-button-group button.fc-next-button {
  margin-left: 10px;
}
.fc-button-group button.fc-next-button svg {
  -ms-transform: rotate(180deg); /* IE 9 */
  -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fc-button-group button.fc-next-button svg rect, .fc-button-group button.fc-next-button svg path {
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media (min-width: 768px) {
  .fc-button-group button:hover, .fc-button-group button:focus {
    border: 1px solid #ffffff !important;
  }
  .fc-button-group button:hover svg path, .fc-button-group button:focus svg path {
    fill: #ffffff !important;
  }
}
.fc-button-group button.fc-state-disabled {
  opacity: 0.25;
}
.fc-button-group button.fc-state-disabled:hover, .fc-button-group button.fc-state-disabled:focus {
  border: 1px solid #000000 !important;
}

.fc-today-button {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  border-top-right-radius: 22px !important;
  border-bottom-right-radius: 22px !important;
  border-top-left-radius: 22px !important;
  border-bottom-left-radius: 22px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-shadow: none !important;
  text-shadow: none !important;
  background: #000000 !important;
  overflow: hidden !important;
  border: none !important;
  min-width: 112px;
  font-size: 0 !important;
}
.fc-today-button:focus {
  outline: none !important;
}
.fc-today-button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.fc-today-button:after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.fc-today-button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.fc-today-button.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.fc-today-button.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.fc-today-button.has-icon svg rect, .fc-today-button.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.fc-today-button span {
  color: #ffffff;
}
.fc-today-button.has-icon svg rect, .fc-today-button.has-icon svg path {
  fill: #ffffff !important;
}
@media (min-width: 992px) {
  .fc-today-button * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .fc-today-button:hover:after, .fc-today-button:focus:after {
    opacity: 1;
  }
}
.fc-today-button.active:after {
  opacity: 1;
}
.fc-today-button span {
  padding-top: 1px !important;
}
@media (min-width: 768px) {
  .fc-today-button:hover, .fc-today-button:focus {
    border: none !important;
  }
}
.fc-today-button:disabled {
  opacity: 0.35 !important;
}
@media (min-width: 768px) {
  .fc-today-button:disabled:hover, .fc-today-button:disabled:focus {
    border: none !important;
  }
}
.fc-today-button:disabled:after {
  display: none;
}

.calendar {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}
.calendar * {
  text-decoration: none !important;
}
.calendar .row {
  margin-left: 0;
  margin-right: 0;
}
.calendar .columns, .calendar .row > * {
  padding-left: 0;
  padding-right: 0;
}
.calendar .fc .fc-toolbar {
  margin-bottom: 0 !important;
}
@media (max-width: 575.98px) {
  .calendar .row-filter-dropdown {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 12px;
    margin-bottom: 20px;
  }
}
.calendar .row-filter-dropdown .columns {
  width: auto;
  margin-bottom: 0;
  height: 40px;
}
@media (max-width: 991.98px) {
  .calendar .row-filter-dropdown .columns:not(:last-child) {
    margin-bottom: 12px;
  }
}
.calendar .row-filter-dropdown .columns:not(:last-child) {
  margin-right: 32px;
}
.calendar .row-filter-dropdown label {
  font-size: 15px;
  font-family: "PPNeueMontreal-Medium";
  font-weight: 400;
  margin-bottom: 0;
}
.calendar .row-filter-dropdown label select {
  margin-left: 16px;
}
.calendar .row-filter-dropdown .button-filter {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}
.calendar .row-filter-dropdown .button-filter:focus {
  outline: none !important;
}
.calendar .row-filter-dropdown .button-filter:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.calendar .row-filter-dropdown .button-filter:after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.calendar .row-filter-dropdown .button-filter span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.calendar .row-filter-dropdown .button-filter.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.calendar .row-filter-dropdown .button-filter.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.calendar .row-filter-dropdown .button-filter.has-icon svg rect, .calendar .row-filter-dropdown .button-filter.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.calendar .row-filter-dropdown .button-filter span {
  color: #ffffff;
}
.calendar .row-filter-dropdown .button-filter.has-icon svg rect, .calendar .row-filter-dropdown .button-filter.has-icon svg path {
  fill: #ffffff !important;
}
@media (min-width: 992px) {
  .calendar .row-filter-dropdown .button-filter * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .calendar .row-filter-dropdown .button-filter:hover:after, .calendar .row-filter-dropdown .button-filter:focus:after {
    opacity: 1;
  }
}
.calendar .row-filter-dropdown .button-filter.active:after {
  opacity: 1;
}

@media (max-width: 575.98px) {
  #calendar .fc-header-toolbar, #modal-calendar .fc-header-toolbar {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  #calendar .fc-header-toolbar h2, #modal-calendar .fc-header-toolbar h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  #calendar .fc-view, #modal-calendar .fc-view {
    width: 100%;
    overflow-x: scroll;
  }
}
#calendar .fc-view > table, #modal-calendar .fc-view > table {
  border: none;
  border-collapse: separate;
  border-spacing: 0 20px;
}
@media (max-width: 991.98px) {
  #calendar .fc-view > table, #modal-calendar .fc-view > table {
    width: 1024px;
  }
}
#calendar .fc-view > table > thead > tr > th, #modal-calendar .fc-view > table > thead > tr > th {
  border: none;
}
#calendar .fc-view > table > thead .fc-col-header-cell, #modal-calendar .fc-view > table > thead .fc-col-header-cell {
  border: none;
}
#calendar .fc-view > table > thead .fc-col-header-cell .fc-scrollgrid-sync-inner, #modal-calendar .fc-view > table > thead .fc-col-header-cell .fc-scrollgrid-sync-inner {
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
  border: none;
}
#calendar .fc-view > table > thead .fc-col-header-cell .fc-scrollgrid-sync-inner:after, #modal-calendar .fc-view > table > thead .fc-col-header-cell .fc-scrollgrid-sync-inner:after {
  content: "";
  position: absolute;
  background: #F7F7F7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#calendar .fc-view > table > thead .fc-col-header-cell .fc-scrollgrid-sync-inner a, #modal-calendar .fc-view > table > thead .fc-col-header-cell .fc-scrollgrid-sync-inner a {
  color: #000000 !important;
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-family: "PPNeueMontreal-Medium";
  font-weight: 400;
}
#calendar .fc-view > table > thead .fc-col-header-cell:first-child .fc-scrollgrid-sync-inner:after, #modal-calendar .fc-view > table > thead .fc-col-header-cell:first-child .fc-scrollgrid-sync-inner:after {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
#calendar .fc-view > table > thead .fc-col-header-cell:last-child .fc-scrollgrid-sync-inner:after, #modal-calendar .fc-view > table > thead .fc-col-header-cell:last-child .fc-scrollgrid-sync-inner:after {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
#calendar .fc-view > table > tbody > tr > td, #modal-calendar .fc-view > table > tbody > tr > td {
  border: 1px solid #F7F7F7;
}
#calendar .fc-view > table > tbody tbody, #modal-calendar .fc-view > table > tbody tbody {
  border: 1px solid #F7F7F7;
}
#calendar .fc-view > table > tbody tbody .tippie, #modal-calendar .fc-view > table > tbody tbody .tippie {
  top: -42px;
}
#calendar .fc-view > table > tbody tbody > tr:first-child .fc-daygrid-event-harness:first-child .tippie, #modal-calendar .fc-view > table > tbody tbody > tr:first-child .fc-daygrid-event-harness:first-child .tippie {
  bottom: -42px;
  top: unset;
  -webkit-box-shadow: 0 -2px 20px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 -2px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 -2px 20px 0 rgba(0, 0, 0, 0.2);
}
#calendar .fc-view > table > tbody tbody > tr:first-child .fc-daygrid-event-harness:first-child .tippie:before, #modal-calendar .fc-view > table > tbody tbody > tr:first-child .fc-daygrid-event-harness:first-child .tippie:before {
  top: -7px;
  bottom: unset;
  border-top: unset;
  border-bottom: 7px solid #ffffff;
}
#calendar .fc-view > table > tbody tbody > tr > td, #modal-calendar .fc-view > table > tbody tbody > tr > td {
  border: 1px solid #F7F7F7;
}
#calendar .fc-view > table > tbody tbody > tr > td:last-child .fc-daygrid-event-harness .tippie-wrap .tippie, #modal-calendar .fc-view > table > tbody tbody > tr > td:last-child .fc-daygrid-event-harness .tippie-wrap .tippie {
  transform: translate(0%, 0%);
  left: unset;
  right: -10px;
}
#calendar .fc-view > table > tbody tbody > tr > td:last-child .fc-daygrid-event-harness .tippie-wrap .tippie:before, #modal-calendar .fc-view > table > tbody tbody > tr > td:last-child .fc-daygrid-event-harness .tippie-wrap .tippie:before {
  right: 16px;
  left: unset;
  margin-left: unset;
}
#calendar .fc-view > table > tbody .fc-daygrid-day-top, #modal-calendar .fc-view > table > tbody .fc-daygrid-day-top {
  flex-direction: column;
}
#calendar .fc-view > table > tbody .fc-daygrid-day-top a, #modal-calendar .fc-view > table > tbody .fc-daygrid-day-top a {
  color: #000000;
  font-size: 12px;
  padding: 6px 8px 2px;
}
#calendar .fc-view > table > tbody .fc-day-today, #modal-calendar .fc-view > table > tbody .fc-day-today {
  background: #F7F7F7;
}

/*--------------------------------------------------------------
THEME / FORMS
--------------------------------------------------------------*/
form {
  position: relative;
  width: 100%;
  text-align: left;
}
form .form-field.text-field, form .form-field.select-field {
  position: relative;
  width: 100%;
  float: left;
  margin-bottom: 22px;
}
@media (max-width: 575.98px) {
  form .form-field.text-field, form .form-field.select-field {
    width: 100%;
  }
}
form .form-field.text-field label, form .form-field.select-field label {
  display: block;
  margin-bottom: 0;
}
form .form-field.text-field.conditional, form .form-field.select-field.conditional {
  overflow: hidden;
  height: 0;
  width: 100%;
  margin-bottom: 0;
}
form .form-field.text-field.conditional label, form .form-field.select-field.conditional label {
  position: relative;
  height: 48px;
}
form .form-field.text-field.conditional .placeholder, form .form-field.select-field.conditional .placeholder {
  left: 16px;
}
form .form-field.text-field.conditional .cond-holder, form .form-field.select-field.conditional .cond-holder {
  padding-bottom: 22px;
}
form .form-field.text-field {
  position: relative;
}
form .form-field.text-field input {
  background: none;
  border: 1px solid #000000;
  color: #000000;
  border-radius: 7px;
  top: 0;
  right: 0;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  height: 48px;
  box-shadow: none !important;
  -webkit-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  background: none !important;
}
form .form-field.text-field input:focus {
  outline: none !important;
}
form .form-field.text-field input:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
form .form-field.select-field .select-wrap {
  position: relative;
}
form .form-field.select-field .placeholder {
  left: 16px;
}
form .form-field.select-field select {
  background: none;
  border: 1px solid #000000;
  color: #000000;
  border-radius: 7px;
  top: 0;
  right: 0;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  height: 48px;
  box-shadow: none !important;
  -webkit-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  background-image: url(img/icons/chevron.svg) !important;
  background-position: top 20px right 15px !important;
  background-repeat: no-repeat !important;
  background-size: 9px !important;
  box-shadow: none !important;
  color: transparent;
  -webkit-appearance: none;
  font-weight: 300 !important;
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
}
form .form-field.select-field select:focus {
  outline: none !important;
}
form .form-field.select-field select:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
form .form-field.select-field select:focus {
  outline: none !important;
}
form .form-field.select-field select:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
form .form-field.select-field select.light {
  background-image: url(img/icons/select-arrow-light.svg) !important;
}
form .form-field.select-field .placeholder-wrap-select.not-empty .placeholder {
  display: none;
}
form .form-field.select-field .placeholder-wrap-select.not-empty select {
  color: #000000;
}
form .form-field.select-field select::-ms-expand {
  display: none;
}
form .form-field.textarea-field textarea {
  background: none;
  border: 1px solid #000000;
  color: #000000;
  border-radius: 7px;
  top: 0;
  right: 0;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  height: 48px;
  box-shadow: none !important;
  -webkit-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  height: unset;
  padding-top: 10px;
}
form .form-field.textarea-field textarea:focus {
  outline: none !important;
}
form .form-field.textarea-field textarea:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
form .form-field.textarea-field textarea::placeholder {
  color: #B1B1B1;
}
form .form-field.radio-field {
  display: inline-block;
  width: 100%;
  margin-bottom: 22px;
}
form .form-field.radio-field > div > label {
  display: block;
}
form .form-field.radio-field fieldset {
  display: inline-block;
  border: 1px solid #000000;
  border-radius: 22px;
}
form .form-field.radio-field fieldset label:first-child span {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
form .form-field.radio-field fieldset label:last-child {
  margin-left: -4px;
}
form .form-field.radio-field fieldset label:last-child span {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
form .form-field.radio-field fieldset label span {
  text-align: center;
  min-width: 42px;
  display: block;
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
  height: 40px;
  padding: 9px 18px;
  cursor: pointer;
  -webkit-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
form .form-field.radio-field fieldset label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  font-size: 0;
}
form .form-field.radio-field fieldset label input:checked + span {
  background-color: #000000;
  color: #ffffff;
}
form .form-field.multiselect-field {
  display: inline-block;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 52px;
  position: relative;
}
@media (min-width: 576px) {
  form .form-field.multiselect-field {
    width: 50%;
  }
}
form .form-field.multiselect-field .form-label {
  text-transform: unset;
  font-size: 14px;
  margin-bottom: 15px;
}
form .form-field.multiselect-field button {
  background: none;
  border: 1px solid #000000;
  color: #000000;
  border-radius: 7px;
  top: 0;
  right: 0;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  height: 48px;
  box-shadow: none !important;
  -webkit-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  background-image: url(img/icons/chevron-light.svg);
  background-size: 14px;
  background-position: top 8px right 0;
  background-repeat: no-repeat;
}
form .form-field.multiselect-field button:focus {
  outline: none !important;
}
form .form-field.multiselect-field button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
form .form-field.multiselect-field button:after {
  content: none;
}
form .form-field.multiselect-field button span {
  position: relative;
  top: -4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
form .form-field.multiselect-field + .multiselect-field {
  margin-top: 0 !important;
}
form .form-field.check-field {
  display: inline-block;
  width: 100%;
  margin-bottom: 22px;
}
form .form-field.check-field legend {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
form .form-field.check-field legend span {
  font-size: 16px;
}
form .form-field.check-field .fields {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
form .form-field.check-field .fields label {
  margin-bottom: 4px;
  margin-right: 2px;
  font-size: 16px;
}
form .form-field.check-field .fields label span {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #B1B1B1;
  height: 20px;
  border-radius: 10px;
  color: #B1B1B1;
  font-size: 12px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 2px;
  cursor: pointer;
  -webkit-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1), background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1), background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1), background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1), background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1), background-color 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
form .form-field.check-field .fields label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  font-size: 0;
}
form .form-field.check-field .fields label input:checked + span {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}
@media (min-width: 768px) {
  form .form-field.check-field .fields label:hover span {
    border: 1px solid #000000;
    color: #000000;
  }
}
form .form-field.check-field.conditional {
  overflow: hidden;
  height: 0;
  width: 100%;
}
form .form-field.consent-field {
  width: 100%;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 32px;
  position: relative;
}
form .form-field.consent-field label {
  position: relative;
  display: inline-block;
  float: none;
  margin-bottom: 0;
  cursor: pointer;
}
form .form-field.consent-field label > div > span {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  padding-top: 3px;
}
form .form-field.consent-field label > div > span:before, form .form-field.consent-field label > div > span:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
  border-radius: 4px;
  display: block;
}
form .form-field.consent-field label > div > span a {
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  color: #ffffff;
  text-decoration: underline;
  -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
@media (min-width: 992px) {
  form .form-field.consent-field label > div > span a:hover {
    color: #dc3545;
  }
}
form .form-field.consent-field label > div > span:before {
  background: none;
  border: 1px solid #EBE9E9;
  -webkit-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
form .form-field.consent-field label > div > span:after {
  background-image: url("img/icons/check-light.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
form .form-field.consent-field label .req-star {
  color: #dc3545;
}
form .form-field.consent-field label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  font-size: 0;
}
form .form-field.consent-field label input:focus-visible + span:before {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
form .form-field.consent-field label input:checked + div > span:after {
  opacity: 1 !important;
}
form .form-field.consent-field label input:checked + div > span:before {
  border: 1px solid #EBE9E9 !important;
}
form .form-field.consent-field label input:checked + div .invalid-feedback {
  visibility: hidden;
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}
form .form-field.consent-field label input:checked + div .invalid-feedback span {
  opacity: 0;
}
form .form-field.consent-field label.invalid > div > span:before {
  border: 1px solid #f65858;
}
form .form-field.consent-field label.invalid > div .invalid-feedback {
  visibility: visible;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  -ms-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  transition-delay: 0ms;
}
form .form-field.consent-field label.invalid > div .invalid-feedback span {
  opacity: 1;
}
form .form-field.consent-field .invalid-feedback {
  bottom: -20px;
}
form .form-field.submit-field {
  margin-top: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
form .form-field.submit-field .pet-name {
  position: absolute;
  top: -100000px;
  left: -100000px;
}
form .form-field.submit-field .req {
  display: none;
  order: 2;
  font-size: 12px;
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  margin-top: 16px;
}
@media (max-width: 399px) {
  form .form-field.submit-field .req {
    display: block;
    margin-right: 0;
    margin-bottom: 12px;
  }
}
form .form-field.submit-field .buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
form .form-field.submit-field .buttons .clear-form {
  color: #000000;
  text-decoration: none !important;
  cursor: pointer;
  -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  order: 2;
  font-size: 14px;
  margin-left: 14px;
}
@media (min-width: 768px) {
  form .form-field.submit-field .buttons .clear-form:hover {
    color: #B1B1B1;
  }
}
form .form-field.submit-field .buttons .button {
  order: 1;
}
form .form-field.submit-field .buttons .button input[type=submit], form .form-field.submit-field .buttons .button button {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  border: none;
}
form .form-field.submit-field .buttons .button input[type=submit]:focus, form .form-field.submit-field .buttons .button button:focus {
  outline: none !important;
}
form .form-field.submit-field .buttons .button input[type=submit]:focus-visible, form .form-field.submit-field .buttons .button button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
form .form-field.submit-field .buttons .button input[type=submit]:after, form .form-field.submit-field .buttons .button button:after {
  content: "";
  position: absolute;
  background: -moz-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* FF3.6+ */
  background: -webkit-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* IE10+ */
  background: linear-gradient(90deg, rgb(197, 43, 123) 0%, rgb(251, 126, 100) 50%, rgb(249, 188, 142) 100%); /* W3C */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
form .form-field.submit-field .buttons .button input[type=submit] span, form .form-field.submit-field .buttons .button button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
form .form-field.submit-field .buttons .button input[type=submit].has-icon span, form .form-field.submit-field .buttons .button button.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
form .form-field.submit-field .buttons .button input[type=submit].has-icon svg, form .form-field.submit-field .buttons .button button.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
form .form-field.submit-field .buttons .button input[type=submit].has-icon svg rect, form .form-field.submit-field .buttons .button input[type=submit].has-icon svg path, form .form-field.submit-field .buttons .button button.has-icon svg rect, form .form-field.submit-field .buttons .button button.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
form .form-field.submit-field .buttons .button input[type=submit] span, form .form-field.submit-field .buttons .button button span {
  color: #ffffff;
}
form .form-field.submit-field .buttons .button input[type=submit].has-icon svg rect, form .form-field.submit-field .buttons .button input[type=submit].has-icon svg path, form .form-field.submit-field .buttons .button button.has-icon svg rect, form .form-field.submit-field .buttons .button button.has-icon svg path {
  fill: #ffffff !important;
}
@media (min-width: 992px) {
  form .form-field.submit-field .buttons .button input[type=submit] *, form .form-field.submit-field .buttons .button button * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  form .form-field.submit-field .buttons .button input[type=submit]:hover:after, form .form-field.submit-field .buttons .button input[type=submit]:focus:after, form .form-field.submit-field .buttons .button button:hover:after, form .form-field.submit-field .buttons .button button:focus:after {
    opacity: 1;
  }
}
form .form-field.submit-field .buttons .button input[type=submit].active:after, form .form-field.submit-field .buttons .button button.active:after {
  opacity: 1;
}
form .form-field.submit-field .buttons .button input[type=submit]:after, form .form-field.submit-field .buttons .button button:after {
  content: none;
}
@media (min-width: 576px) {
  form .form-field.half-field {
    width: 50%;
  }
}
form .select-all {
  color: #000000;
  text-decoration: none !important;
  cursor: pointer;
  -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  font-size: 12px;
}
@media (min-width: 768px) {
  form .select-all:hover {
    color: #B1B1B1;
  }
}
@media (min-width: 576px) {
  form .date-fields {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media (min-width: 576px) {
  form .date-fields .form-field.text-field {
    width: -moz-calc(33.3333% - 10px);
    width: -webkit-calc(33.3333% - 10px);
    width: calc(33.3333% - 10px);
  }
}
form .date-fields .form-field.text-field:last-child .duet-date__dialog {
  left: unset;
  right: 0;
}
form .placeholder {
  position: absolute;
  background: transparent;
  opacity: 1;
  height: 100%;
  left: 26px;
  top: 0;
  font-size: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #B1B1B1;
  pointer-events: none;
}
form .placeholder .req-star {
  margin-left: 2px;
  color: #B1B1B1;
}
form .placeholder.not-empty {
  display: none !important;
}
form .invalid-feedback {
  pointer-events: none;
  position: absolute;
  bottom: -20px;
  font-size: 12px;
  display: block;
  visibility: hidden;
  -webkit-transition: visibility 0ms ease;
  -moz-transition: visibility 0ms ease;
  -ms-transition: visibility 0ms ease;
  -o-transition: visibility 0ms ease;
  transition: visibility 0ms ease;
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}
form .invalid-feedback span {
  color: #f65858;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
form > * {
  padding-left: 10px;
  padding-right: 10px;
}
form.was-validated .custom-select:invalid, form.was-validated .custom-select.is-invalid {
  border-color: #f65858 !important;
}
form.was-validated .custom-select:invalid + .invalid-feedback, form.was-validated .custom-select.is-invalid + .invalid-feedback {
  visibility: visible;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  -ms-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  transition-delay: 0ms;
}
form.was-validated .custom-select:invalid + .invalid-feedback span, form.was-validated .custom-select.is-invalid + .invalid-feedback span {
  opacity: 1;
}
form.was-validated .form-control:invalid, form.was-validated .form-control.is-invalid {
  border-color: #f65858 !important;
}
form.was-validated .form-control:invalid + .invalid-feedback, form.was-validated .form-control.is-invalid + .invalid-feedback {
  visibility: visible;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  -ms-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  transition-delay: 0ms;
}
form.was-validated .form-control:invalid + .invalid-feedback span, form.was-validated .form-control.is-invalid + .invalid-feedback span {
  opacity: 1;
}
form.was-validated .form-control:valid {
  border-color: #000000 !important;
}
form.was-validated .form-control:valid + .invalid-feedback {
  visibility: hidden;
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}
form.was-validated .form-control:valid + .invalid-feedback span {
  opacity: 0;
}
form.was-validated .text-field .form-control:valid {
  background: none;
}
form.was-validated .select-field .form-control:valid {
  background-image: url(img/icons/chevron.svg);
  background-position: top 20px right 15px;
  background-repeat: no-repeat;
  background-size: 12px;
}
form.loading > *:not(.spinner-wrap) {
  opacity: 0;
  -webkit-transition: opacity 250ms ease;
  -moz-transition: opacity 250ms ease;
  -ms-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

.multiselect-field fieldset,
.multiselect-field label {
  width: 100%;
}

.acf-success {
  opacity: 0;
  display: none;
  left: 0;
  -webkit-transition: opacity 1000ms ease;
  -moz-transition: opacity 1000ms ease;
  -ms-transition: opacity 1000ms ease;
  -o-transition: opacity 1000ms ease;
  transition: opacity 1000ms ease;
}
.acf-success.active {
  opacity: 1;
  position: relative;
}
.acf-success .thank {
  text-align: center;
  margin-bottom: 80px;
}
.acf-success .thank h2 {
  padding-top: none !important;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .acf-success .thank h2 {
    font-size: 48px;
  }
}
.acf-success .thank .msg {
  display: none;
}
.acf-success .grey-box {
  text-align: center;
}
.acf-success .grey-box .message {
  display: none;
}
.acf-success .grey-box .message.active {
  display: block;
}
.acf-success .grey-box .message.predefined span {
  font-size: 20px;
}
.acf-success .grey-box .docket-label {
  display: block;
  font-size: 20px;
}
.acf-success .grey-box .docket-number {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "SilkSerif-Regular", serif;
  line-height: 1;
  font-size: 36px;
  margin-bottom: 20px;
  font-family: "PPNeueMontreal-Medium";
  font-weight: 400;
}
@media (max-width: 1199.98px) {
  .acf-success .grey-box .docket-number {
    font-size: 32px;
  }
}
@media (max-width: 991.98px) {
  .acf-success .grey-box .docket-number {
    font-size: 30px;
  }
}
@media (max-width: 575.98px) {
  .acf-success .grey-box .docket-number {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .acf-success .grey-box .docket-number {
    font-size: 48px;
  }
}
.acf-success .grey-box .clipboard-click {
  color: #000000;
  text-decoration: none !important;
  cursor: pointer;
  -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
@media (min-width: 768px) {
  .acf-success .grey-box .clipboard-click:hover {
    color: #B1B1B1;
  }
}
.acf-success .buttons {
  margin-top: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.acf-success .buttons .button {
  width: -moz-calc(50% - 15px);
  width: -webkit-calc(50% - 15px);
  width: calc(50% - 15px);
}
.acf-success .buttons .button button {
  width: 100%;
}
.acf-success .buttons .button:nth-child(1) button {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}
.acf-success .buttons .button:nth-child(1) button:focus {
  outline: none !important;
}
.acf-success .buttons .button:nth-child(1) button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.acf-success .buttons .button:nth-child(1) button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.acf-success .buttons .button:nth-child(1) button.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.acf-success .buttons .button:nth-child(1) button.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.acf-success .buttons .button:nth-child(1) button.has-icon svg rect, .acf-success .buttons .button:nth-child(1) button.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.acf-success .buttons .button:nth-child(1) button span {
  color: #ffffff;
}
.acf-success .buttons .button:nth-child(1) button.has-icon svg rect, .acf-success .buttons .button:nth-child(1) button.has-icon svg path {
  fill: #ffffff !important;
}
@media (min-width: 992px) {
  .acf-success .buttons .button:nth-child(1) button * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
}
.acf-success .buttons .button:nth-child(1) button.active:after {
  opacity: 1;
}
.acf-success .buttons .button:nth-child(2) button {
  position: relative;
  outline: none !important;
  text-decoration: none !important;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  height: 40px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none !important;
  color: #000000;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  border: 1px solid #B1B1B1;
  -webkit-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background 250ms cubic-bezier(0.56, 0, 0.24, 1), border 250ms cubic-bezier(0.56, 0, 0.24, 1), color 250ms cubic-bezier(0.56, 0, 0.24, 1), opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  border: 1px solid #000000;
}
.acf-success .buttons .button:nth-child(2) button:focus {
  outline: none !important;
}
.acf-success .buttons .button:nth-child(2) button:focus-visible {
  outline: 1px dotted !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.acf-success .buttons .button:nth-child(2) button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.acf-success .buttons .button:nth-child(2) button.has-icon span {
  position: relative;
  padding-right: 6px;
  width: auto;
}
.acf-success .buttons .button:nth-child(2) button.has-icon svg {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 16px;
  height: 16px;
}
.acf-success .buttons .button:nth-child(2) button.has-icon svg rect, .acf-success .buttons .button:nth-child(2) button.has-icon svg path {
  fill: #000000 !important;
  -webkit-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
@media (min-width: 992px) {
  .acf-success .buttons .button:nth-child(2) button * {
    -webkit-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -moz-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -ms-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    -o-transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
    transition: color 250ms cubic-bezier(0.56, 0, 0.24, 1);
  }
  .acf-success .buttons .button:nth-child(2) button:hover, .acf-success .buttons .button:nth-child(2) button:focus {
    border: 1px solid #000000;
    background-color: #000000;
    color: #ffffff;
  }
  .acf-success .buttons .button:nth-child(2) button:hover span, .acf-success .buttons .button:nth-child(2) button:focus span {
    color: #ffffff;
  }
}
.acf-success .buttons .button:nth-child(2) button.active {
  border: 1px solid #ffffff;
}
.acf-success .buttons .button:nth-child(2) button.active span {
  color: #ffffff;
}
.acf-success .buttons .button:nth-child(2) button.active.has-icon svg rect, .acf-success .buttons .button:nth-child(2) button.active.has-icon svg path {
  fill: #ffffff !important;
}
.acf-success .buttons .button:nth-child(2) button.active:after {
  opacity: 1;
}
.acf-success .response {
  color: red;
  display: none;
}
.acf-success * {
  color: #000000;
}

.spinner-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 1;
  z-index: 5;
  -webkit-transition: opacity 500ms ease;
  -moz-transition: opacity 500ms ease;
  -ms-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}
.spinner-wrap .loadingspinner {
  pointer-events: none;
  width: 2.5em;
  height: 2.5em;
  border: 0.4em solid transparent;
  border-color: rgba(0, 0, 0, 0.15);
  border-top-color: #000000;
  border-radius: 50%;
  animation: loadingspin 1s linear infinite;
}
.spinner-wrap.hidden {
  display: none;
}
.spinner-wrap.faded {
  opacity: 0;
}

.ms-options {
  border: none !important;
}
.ms-options input {
  color: #000000 !important;
}
.ms-options .label {
  font-weight: 500 !important;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 5px 15px;
}
.ms-options ul li {
  padding: 5px 15px;
}
.ms-options ul li.selected label:after {
  opacity: 1;
}
.ms-options ul li label {
  background-color: transparent !important;
  position: relative;
  display: inline-block;
  padding-left: 32px;
  font-size: 12px;
  font-family: "PPNeueMontreal-Variable", sans-serif;
  font-weight: 300;
  font-weight: 500;
  text-transform: unset !important;
  margin-bottom: 10px;
}
.ms-options ul li label:before, .ms-options ul li label:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  display: block;
}
.ms-options ul li label:before {
  background: none;
  border: 1px solid #000000;
  -webkit-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: border 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
.ms-options ul li label:after {
  background-image: url("img/icons/check-dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  opacity: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -moz-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -ms-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  -o-transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
  transition: opacity 250ms cubic-bezier(0.56, 0, 0.24, 1);
}
.ms-options ul li label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  font-size: 0;
}

.multiselect-field fieldset,
.multiselect-field label {
  width: 100%;
}

.ms-options-wrap {
  position: relative;
}

.ms-options-wrap,
.ms-options-wrap * {
  box-sizing: border-box;
}

.ms-options-wrap > button:focus,
.ms-options-wrap > button {
  position: relative;
  width: 100%;
  height: 48px;
  text-align: left;
  border: 1px solid #EBE9E9;
  background-color: #EBE9E9;
  border-radius: 4px;
  padding: 5px 20px 5px 5px;
  margin-top: 1px;
  font-size: 13px;
  color: #aaa;
  outline-offset: -2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ms-options-wrap > button[disabled] {
  background-color: #e5e9ed;
  color: #808080;
  opacity: 0.6;
}

.ms-options-wrap > button:after {
  content: " ";
  height: 0;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 0;
  border: 6px solid rgba(0, 0, 0, 0);
  border-top-color: #999;
  margin-top: -3px;
}

.ms-options-wrap.ms-has-selections > button {
  color: #333;
}

.ms-options-wrap > .ms-options {
  position: absolute;
  left: 0;
  width: 100%;
  margin-top: 1px;
  margin-bottom: 20px;
  background: #ffffff;
  z-index: 99;
  border: 1px solid #EBE9E9;
  overflow: auto;
  visibility: hidden;
}

.ms-options-wrap.ms-active > .ms-options {
  visibility: visible;
}

.ms-options-wrap > .ms-options > .ms-search input {
  width: 100%;
  padding: 4px 5px;
  border: none;
  border-bottom: 1px groove;
  outline: none;
  background: #F7F7F7;
  color: #EBE9E9;
}

.ms-options-wrap > .ms-options > .no-result-message {
  padding: 4px 5px;
  display: none;
}

.ms-options-wrap > .ms-options .ms-selectall {
  display: inline-block;
  font-size: 0.9em;
  text-transform: lowercase;
  text-decoration: none;
}

.ms-options-wrap > .ms-options .ms-selectall:hover {
  text-decoration: underline;
}

.ms-options-wrap > .ms-options > .ms-selectall.global {
  margin: 4px 5px;
}

.ms-options-wrap > .ms-options > ul,
.ms-options-wrap > .ms-options > ul > li.optgroup ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.ms-options-wrap > .ms-options > ul li.ms-hidden {
  display: none;
}

.ms-options-wrap > .ms-options > ul > li.optgroup {
  padding: 0;
}

.ms-options-wrap > .ms-options > ul > li.optgroup + li.optgroup {
  border-top: 1px solid #EBE9E9;
}

.ms-options-wrap > .ms-options > ul > li.optgroup .label {
  display: block;
  padding: 5px 15px 0;
  font-weight: bold;
  color: #000000;
}

.ms-options-wrap > .ms-options > ul label {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 4px 4px 4px 28px;
  margin: 1px 0;
  color: #000000 !important;
}

.ms-options-wrap > .ms-options.checkbox-autofit > ul label,
.ms-options-wrap > .ms-options.hide-checkbox > ul label {
  padding: 4px;
}

.ms-options-wrap > .ms-options > ul label.focused,
.ms-options-wrap > .ms-options > ul label:hover {
  background-color: #EBE9E9;
  border-color: #999;
}

.ms-options-wrap > .ms-options > ul li.selected label {
  background-color: #efefef;
  border-color: transparent;
}

.ms-options-wrap > .ms-options > ul input[type=checkbox] {
  margin: 0 5px 0 0;
  position: absolute;
  left: 4px;
  top: 7px;
}

.ms-options-wrap > .ms-options.hide-checkbox > ul input[type=checkbox] {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

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