.expand {
  transition: height 0.5s ease-out; }

.collapse {
  transition: height 0.5s ease-out; }

.radio-button {
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid #6fb8e3;
  border-radius: 100%;
  background-color: white; }

.radio-button:hover {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  outline: 0 none; }

.radio-button-checked {
  border: 8px solid #2f98d7; }

.radio-button-unchecked {
  border: 2px solid #6fb8e3; }

.accordion-container {
  margin-top: 1.2rem;
  padding: 0 1.2rem; }

.accordion-label {
  font-size: 1.4rem;
  font-weight: 600; }

.accordion-option {
  margin: 0.8rem 0; }

.accordion-option-select {
  display: flex;
  opacity: 0.8; }

.accordion-option-select:focus {
  outline: none;
  opacity: 1; }

.accordion-option-select:hover {
  cursor: pointer;
  opacity: 1; }

.accordion-option-disabled {
  opacity: 0.5;
  pointer-events: none; }

.accordion-option-label {
  font-size: 1.4rem;
  margin: 0 0.8rem; }

.accordion-option-label:hover {
  cursor: pointer; }

.accordion-active-component {
  padding: 1.6rem 3.2rem; }

.accordion-tab-head {
  padding: 0.8rem 1.2rem;
  margin-top: 0.8rem;
  border: 1px solid #bebebe;
  border-radius: 4px;
  background-color: #f5f5f5;
  color: #3b86ff;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s; }

.accordion-tab-head:hover {
  cursor: pointer; }

.accordion-tab-head-open {
  background-color: #ecf4ff;
  border-color: #3b86ff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: all 0.3s;
  color: #3b86ff; }

.accordion-tab-expand-icon-hide {
  display: none; }

.accordion-tab-content {
  background-color: #f6faff;
  border: 1px solid #3b86ff;
  border-top-style: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

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

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

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

@keyframes blink {
  from {
    opacity: 1; }
  50% {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes slideInBottom {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: collapse; }
  to {
    transform: translate3d(0, 0, 0); } }

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

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

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

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

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

@keyframes unload {
  from {
    width: 100%; }
  to {
    width: 0%; } }

.loading-bar-container {
  height: 2px;
  margin-top: 1.2rem; }

.loading-bar {
  background-color: #f7f7f7;
  height: 100%;
  animation-name: unload;
  animation-timing-function: linear; }

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

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

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

@keyframes blink {
  from {
    opacity: 1; }
  50% {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes slideInBottom {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: collapse; }
  to {
    transform: translate3d(0, 0, 0); } }

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

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

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

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

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

@keyframes unload {
  from {
    width: 100%; }
  to {
    width: 0%; } }

.notification {
  background-color: #f0ad4e;
  color: #f7f7f7;
  border-radius: 10px;
  border: none;
  margin: 0 0 1.6rem 0;
  padding: 1.2rem;
  opacity: 0.9;
  box-shadow: 5px 5px 6px 1px #bebebe;
  position: relative; }

.notification:hover {
  cursor: pointer; }

.notification-warning {
  background-color: #f0ad4e; }

.notification-danger {
  background-color: #d9534f; }

.notification-success {
  background-color: #26A75C; }

.notification-entrance {
  animation-name: slideInRight;
  animation-duration: 0.4s; }

.notification-content {
  font-size: 1.4rem;
  white-space: pre-wrap;
  margin-top: 1.2rem; }

.tap-to-dismiss-notification {
  color: #f7f7f7;
  opacity: 0.7;
  text-align: end;
  font-size: 1.2rem;
  position: absolute;
  top: 10px;
  right: 10px; }

.notifications-container {
  position: fixed;
  top: 0;
  right: 0;
  padding: 1.6rem 1.6rem 0 0;
  z-index: 1000;
  width: 340px;
  overflow-y: scroll; }

.container {
  width: 100%;
  padding: 1.6rem;
  margin: auto; }

@media (min-width: 576px) {
  .container-max-width-limit {
    max-width: 540px; } }

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

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

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

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1.6rem;
  margin-left: -1.6rem; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 1.6rem;
  padding-left: 1.6rem; }

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%; }

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%; }

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%; }

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%; }

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%; }

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%; }

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%; }

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%; }

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%; }

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%; }

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%; }

.offset-1 {
  margin-left: 8.333333%; }

.offset-2 {
  margin-left: 16.666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.333333%; }

.offset-5 {
  margin-left: 41.666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.333333%; }

.offset-8 {
  margin-left: 66.666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.333333%; }

.offset-11 {
  margin-left: 91.666667%; }

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.333333%; }
  .offset-sm-2 {
    margin-left: 16.666667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.333333%; }
  .offset-sm-5 {
    margin-left: 41.666667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.333333%; }
  .offset-sm-8 {
    margin-left: 66.666667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.333333%; }
  .offset-sm-11 {
    margin-left: 91.666667%; } }

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.333333%; }
  .offset-md-2 {
    margin-left: 16.666667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.333333%; }
  .offset-md-5 {
    margin-left: 41.666667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.333333%; }
  .offset-md-8 {
    margin-left: 66.666667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.333333%; }
  .offset-md-11 {
    margin-left: 91.666667%; } }

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.333333%; }
  .offset-lg-2 {
    margin-left: 16.666667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.333333%; }
  .offset-lg-5 {
    margin-left: 41.666667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.333333%; }
  .offset-lg-8 {
    margin-left: 66.666667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.333333%; }
  .offset-lg-11 {
    margin-left: 91.666667%; } }

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.333333%; }
  .offset-xl-2 {
    margin-left: 16.666667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.333333%; }
  .offset-xl-5 {
    margin-left: 41.666667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.333333%; }
  .offset-xl-8 {
    margin-left: 66.666667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.333333%; }
  .offset-xl-11 {
    margin-left: 91.666667%; } }

.custom-button {
  padding: 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  min-height: 4rem;
  color: #f7f7f7;
  border: none;
  border-radius: 8px; }

.custom-button:hover {
  cursor: pointer; }

.custom-button:focus {
  outline: none; }

.custom-button:disabled {
  cursor: default !important;
  opacity: 0.7;
  transition: all 1s; }

.block-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; }

.custom-button-shadow {
  box-shadow: 1px 1px 1px 1px #bebebe; }

.custom-button-color-blue {
  background-color: #3b86ff;
  transition: all 0.3s; }

.custom-button-color-blue:hover {
  cursor: pointer;
  background-color: #2276ff;
  transition: all 0.3s; }

.custom-button-color-blue:focus {
  cursor: pointer;
  background-color: #2276ff;
  transition: all 0.3s; }

.custom-button-color-success {
  background-color: #26A75C;
  transition: all 0.3s; }

.custom-button-color-success:hover {
  background-color: #219251;
  transition: all 0.3s; }

.custom-button-color-success:focus {
  background-color: #219251;
  transition: all 0.3s; }

.custom-button-color-warning {
  background-color: #f0ad4e;
  transition: all 0.3s; }

.custom-button-color-warning:hover {
  background-color: #eea236;
  transition: all 0.3s; }

.custom-button-color-warning:focus {
  background-color: #eea236;
  transition: all 0.3s; }

.custom-button-color-danger {
  background-color: #d9534f;
  transition: all 0.3s; }

.custom-button-color-danger:hover {
  background-color: #d43f3a;
  transition: all 0.3s; }

.custom-button-color-danger:focus {
  background-color: #d43f3a;
  transition: all 0.3s; }

.custom-button-color-opaque {
  background-color: white;
  color: #2185d0;
  transition: all 0.3s; }

.custom-button-color-opaque:hover {
  background-color: #2185d0;
  color: white;
  transition: all 0.3s; }

.custom-button-color-opaque:focus {
  background-color: #2185d0;
  color: white;
  transition: all 0.3s; }

.custom-button-color-bordered {
  background-color: white;
  color: #2185d0;
  border: 1px solid #2185d0;
  transition: all 0.3s; }

.custom-button-color-bordered:hover {
  background-color: #f7f7f7;
  color: #2185d0;
  border: 1px solid #2185d0;
  transition: all 0.3s; }

.custom-button-color-bordered:focus {
  background-color: #f7f7f7;
  color: #2185d0;
  border: 1px solid #2185d0;
  transition: all 0.3s; }

.custom-button-color-transparent {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  transition: all 0.3s; }

.custom-button-color-transparent:hover {
  background-color: white;
  color: #2185d0;
  border: 1px solid transparent;
  transition: all 0.3s; }

.custom-button-color-transparent:focus {
  background-color: white;
  color: #2185d0;
  border: 1px solid transparent;
  transition: all 0.3s; }

.button-dropdown-container {
  position: relative; }

.button-dropdown-container:focus {
  outline: none; }

.button-dropdown-button {
  padding: 0 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  min-height: 4rem;
  width: 100%;
  color: #f7f7f7;
  border: none;
  border-radius: 8px; }

.button-dropdown-button:focus {
  outline: none; }

.button-dropdown-button:hover {
  cursor: pointer; }

.dropdown-button-color-blue {
  background-color: #3b86ff; }

.dropdown-button-color-blue:hover {
  cursor: pointer;
  background-color: #2276ff;
  transition: all 0.3s; }

.dropdown-button-color-blue:focus {
  cursor: pointer;
  background-color: #2276ff;
  transition: all 0.3s; }

.dropdown-button-color-opaque {
  background-color: white;
  color: #2185d0; }

.dropdown-button-color-opaque:hover {
  background-color: #2185d0;
  color: white;
  transition: all 0.3s; }

.dropdown-button-color-opaque:focus {
  background-color: #2185d0;
  color: white;
  transition: all 0.3s; }

.dropdown-button-color-bordered {
  background-color: white;
  color: #2185d0;
  border: 1px solid #2185d0; }

.dropdown-button-color-bordered:hover {
  background-color: #f7f7f7;
  color: #2185d0;
  border: 1px solid #2185d0;
  transition: all 0.3s; }

.dropdown-button-color-bordered:focus {
  background-color: #f7f7f7;
  color: #2185d0;
  border: 1px solid #2185d0;
  transition: all 0.3s; }

.button-dropdown-caret {
  margin-left: 0.8rem; }

.button-dropdown-option-select {
  position: absolute;
  z-index: 998;
  box-shadow: 5px 5px 15px 0px #bebebe;
  border-radius: 5px;
  background-color: white; }

.button-dropdown-search {
  padding: 0.4rem 0.8rem;
  margin-top: 0.8rem; }

.button-dropdown-search input {
  width: 100%;
  font-size: 1.4rem; }

.button-dropdown-options {
  overflow-y: scroll;
  max-height: 50vh; }

.button-dropdown-option-select-left {
  top: 0;
  left: 0;
  transform: translate(-102%, 0); }

.button-dropdown-option-select-right {
  top: 0;
  left: 102%; }

.button-dropdown-option-select-top {
  top: 0;
  left: 0;
  transform: translate(0, -110%); }

.button-dropdown-option-select-bottom {
  margin-top: 0.8rem;
  min-width: 100%;
  text-align: center; }

.button-dropdown-option {
  white-space: pre-wrap;
  text-align: start;
  padding: 0.8rem; }

.button-dropdown-option:hover {
  cursor: pointer;
  background-color: #f7f7f7; }

.checkbox {
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center; }

.checkbox:hover {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  outline: 0 none;
  cursor: pointer; }

.checkbox-unchecked {
  border-color: #6fb8e3;
  background-color: white;
  color: white; }

.checkbox-checked {
  border-color: #2f98d7;
  background-color: #2f98d7;
  color: white; }

.checkbox-group {
  margin-top: 1.2rem;
  padding: 0 1.2rem; }

.checkbox-group-option {
  display: flex;
  margin: 0.8rem 0;
  opacity: 0.8; }

.checkbox-group-option:hover {
  opacity: 1;
  cursor: pointer; }

.checkbox-group-option:focus {
  opacity: 1;
  outline: none; }

.checkbox-group-option:hover .checkbox {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  outline: 0 none; }

.checkbox-group-option:focus .checkbox {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  outline: 0 none; }

.checkbox-group-option-content {
  font-size: 1.4rem;
  margin: 0 0.8rem; }

.checkbox-group-option-disabled {
  opacity: 0.5;
  pointer-events: none; }

.custom-checkbox-group-label {
  font-size: 1.4rem;
  font-weight: 600; }

.custom-checkbox-group-disabled {
  opacity: 0.5;
  pointer-events: none; }

.custom-checkbox-group-invalid .checkbox {
  border-color: #ff4d4d; }

.custom-checkbox-group-description {
  font-size: 1.2rem;
  opacity: 0.6;
  white-space: pre-wrap; }

.custom-datetime-picker-container {
  margin-bottom: 1.2rem;
  width: min-content; }

.custom-datetime-picker-label {
  font-size: 1.4rem;
  font-weight: 600; }

.custom-datetime-picker-remark {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  opacity: 0.6; }

.custom-datetime-picker-input-container {
  position: relative; }

.custom-datetime-picker-input {
  height: 4rem;
  font-size: 1.4rem;
  padding: 0.8rem;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  display: flex;
  background-color: white; }

.custom-datetime-picker-invalid {
  border-color: #d9534f; }

.custom-datetime-picker-disabled {
  opacity: 0.6;
  pointer-events: none; }

.custom-datetime-picker-input:hover {
  border-color: #acacac; }

.custom-datetime-picker-input-date {
  display: flex;
  justify-content: center;
  border-right: 1px solid #bdbdbd;
  width: 160px; }

.custom-datetime-picker-input-time {
  padding: 0 1.6rem;
  width: 120px;
  display: flex;
  justify-content: space-between; }

.custom-datetime-picker-input-field {
  border: none;
  outline: none;
  text-align: center; }

.custom-datetime-picker-input-field-day,
.custom-datetime-picker-input-field-month,
.custom-datetime-picker-input-field-hour,
.custom-datetime-picker-input-field-minute {
  width: 26px; }

.custom-datetime-picker-input-field-year {
  width: 4.8rem; }

.custom-datetime-picker-calendar-icon {
  opacity: 0.7; }

.custom-datetime-picker-calendar-icon:hover {
  opacity: 1;
  cursor: pointer; }

.custom-datetime-picker-calendar-container {
  position: absolute;
  z-index: 100;
  outline: none; }

.custom-datetime-picker-description {
  font-size: 1.2rem;
  opacity: 0.6;
  white-space: pre-wrap;
  margin-bottom: 0.8rem; }

.react-calendar {
  width: 350px;
  max-width: 100%;
  background: white;
  border: 1px solid #a0a096;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.125em; }

.react-calendar--doubleView {
  width: 700px; }

.react-calendar--doubleView .react-calendar__viewContainer {
  display: flex;
  margin: -0.5em; }

.react-calendar--doubleView .react-calendar__viewContainer > * {
  width: 50%;
  margin: 0.5em; }

.react-calendar,
.react-calendar *,
.react-calendar *:before,
.react-calendar *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.react-calendar button {
  margin: 0;
  border: 0;
  outline: none; }

.react-calendar button:enabled:hover {
  cursor: pointer; }

.react-calendar__navigation {
  display: flex;
  height: 44px;
  margin-bottom: 1em; }

.react-calendar__navigation button {
  min-width: 44px;
  background: none; }

.react-calendar__navigation button:disabled {
  background-color: #f0f0f0; }

.react-calendar__navigation button:enabled:hover,
.react-calendar__navigation button:enabled:focus {
  background-color: #e6e6e6; }

.react-calendar__month-view__weekdays {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75em; }

.react-calendar__month-view__weekdays__weekday {
  padding: 0.5em; }

.react-calendar__month-view__weekNumbers .react-calendar__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  font-weight: bold; }

.react-calendar__month-view__days__day--weekend {
  color: #d10000; }

.react-calendar__month-view__days__day--neighboringMonth {
  color: #757575; }

.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
  padding: 2em 0.5em; }

.react-calendar__tile {
  max-width: 100%;
  padding: 10px 6.6667px;
  background: none;
  text-align: center;
  line-height: 16px; }

.react-calendar__tile:disabled {
  background-color: #f0f0f0; }

.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
  background-color: #e6e6e6; }

.react-calendar__tile--now {
  background: #ffff76; }

.react-calendar__tile--now:enabled:hover,
.react-calendar__tile--now:enabled:focus {
  background: #ffffa9; }

.react-calendar__tile--hasActive {
  background: #76baff; }

.react-calendar__tile--hasActive:enabled:hover,
.react-calendar__tile--hasActive:enabled:focus {
  background: #a9d4ff; }

.react-calendar__tile--active {
  background: #006edc;
  color: white; }

.react-calendar__tile--active:enabled:hover,
.react-calendar__tile--active:enabled:focus {
  background: #1087ff; }

.react-calendar--selectRange .react-calendar__tile--hover {
  background-color: #e6e6e6; }

.dropdown-option {
  padding: 0.4rem 1.2rem;
  overflow: hidden;
  border-radius: 5px; }

.dropdown-option:focus {
  background-color: #f7f7f7;
  outline: none;
  cursor: pointer; }

.dropdown-option-deselect {
  font-style: italic; }

.dropdown-option-selected {
  background-color: #eff7fc; }

.dropdown-option-disabled {
  opacity: 0.6; }

.dropdown-option-disabled:hover {
  cursor: default; }

.custom-dropdown-container {
  position: relative;
  margin-bottom: 1.2rem; }

.custom-dropdown-container:hover {
  cursor: pointer; }

.custom-dropdown-container:focus {
  outline: none; }

.custom-dropdown-container-disabled {
  opacity: 0.5;
  pointer-events: none; }

.custom-dropdown-container-invalid .custom-dropdown-value-container {
  border-color: #ff4d4d; }

.custom-dropdown-label {
  font-size: 1.4rem;
  font-weight: 600; }

.custom-dropdown-value-container {
  display: flex;
  justify-content: space-between;
  background-color: white;
  height: 4rem;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  white-space: nowrap; }

.custom-dropdown-value-container:hover {
  border-color: #acacac; }

.custom-dropdown-container:focus .custom-dropdown-value-container {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff; }

.custom-dropdown-container:focus-within .custom-dropdown-value-container {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff; }

.custom-dropdown-value {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.8rem;
  font-size: 1.4rem;
  overflow: hidden; }

.custom-dropdown-placeholder {
  opacity: 0.6; }

.custom-dropdown-selected-option {
  overflow: hidden; }

.arrow-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.8rem;
  border-left: 1px solid #d2d2d2; }

.custom-dropdown-option-select {
  position: absolute;
  z-index: 1000;
  background-color: white;
  margin-top: 0.4rem;
  border: 1px solid rgba(111, 184, 227, 0.8);
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  width: 100%; }

.custom-dropdown-search {
  padding: 0.4rem 0.8rem; }

.custom-dropdown-search input {
  width: 100%;
  font-size: 1.4rem; }

.custom-dropdown-options {
  overflow-y: scroll;
  max-height: 205px; }

.no-options-available {
  padding: 0.8rem 1.2rem;
  font-size: 1.4rem;
  opacity: 0.6;
  cursor: default; }

.custom-dropdown-remark {
  margin-top: 0.8rem;
  padding: 0 0.8rem;
  font-size: 1.2rem;
  opacity: 0.6;
  text-align: end; }

.custom-dropdown-description {
  font-size: 1.2rem;
  opacity: 0.6;
  white-space: pre-wrap;
  margin-bottom: 0.8rem; }

.custom-file-upload-container {
  margin-bottom: 1.2rem; }

.custom-file-upload-label {
  font-size: 1.4rem;
  font-weight: 600; }

.custom-file-field {
  position: relative;
  width: 100%;
  height: max-content; }

.custom-file-field-invalid {
  border: 1px solid #ff4d4d; }

.custom-file-field-disabled {
  pointer-events: none; }

.custom-file-upload-input {
  background-color: #f7f7f7; }

.custom-file-upload-input:hover {
  cursor: pointer;
  opacity: 1; }

.selected-file-preview {
  position: relative;
  width: 150px;
  height: 150px;
  opacity: 1;
  background-color: inherit;
  padding: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  border-radius: 8px; }

.selected-file-preview:hover {
  opacity: 0.6; }

.custom-file-image-preview {
  max-width: 100%;
  max-height: 100%; }

.custom-file-text-preview {
  max-width: 100%;
  max-height: 100%;
  background-color: inherit;
  display: flex;
  justify-content: center;
  align-items: center; }

.custom-file-text-preview-content {
  text-align: center;
  overflow-wrap: break-word;
  overflow: hidden;
  max-height: 100%; }

.custom-file-filename {
  font-size: 1.2rem; }

.selected-file-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  background-color: white;
  color: black;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center; }

.custom-file-field:hover .selected-file-remove {
  opacity: 0.6; }

.selected-file-remove:hover {
  opacity: 1 !important; }

.custom-file-upload {
  opacity: 0;
  height: 0;
  width: 0;
  position: absolute; }

.custom-file-upload-remark {
  margin-top: 0.4rem;
  padding: 0 0.8rem;
  font-size: 1.2rem;
  opacity: 0.6; }

.custom-file-upload-description {
  font-size: 1.2rem;
  opacity: 0.6;
  white-space: pre-wrap;
  margin-bottom: 0.8rem; }

.custom-multi-email-container {
  margin-bottom: 1.2rem; }

.custom-multi-email-label {
  font-size: 1.4rem;
  font-weight: 600; }

.custom-multi-email-values-container {
  font-size: 1.4rem;
  padding: 0.8rem;
  background-color: white;
  border: 1px solid #d2d2d2;
  border-radius: 5px; }

.custom-multi-email-values-container:hover {
  border-color: #acacac; }

.custom-multi-email-values-container:focus-within {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  outline: 0 none; }

.custom-multi-email-invalid .custom-multi-email-values-container {
  border-color: #ff4d4d; }

.custom-multi-email-single-value {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  margin-bottom: 0.4rem;
  background-color: #e8e8e8;
  border-radius: 4px; }

.custom-multi-email-single-value:hover {
  background-color: #e1e1e1;
  cursor: pointer; }

.custom-multi-email-single-value-text {
  margin-right: 0.8rem; }

.custom-multi-email-input {
  width: 100%;
  min-width: 200px;
  outline: none;
  border: none;
  border-radius: 4px;
  font-size: 1.4rem;
  padding: 0.4rem 0.8rem;
  margin-bottom: 0.4rem; }

.custom-multi-email-input-invalid {
  border: 1px solid #ff4d4d; }

.custom-multi-email-remark {
  margin-top: 0.4rem;
  padding: 0 0.8rem;
  font-size: 1.2rem;
  opacity: 0.6;
  text-align: end; }

.custom-input-container {
  margin-bottom: 1.2rem; }

.custom-input-label {
  font-size: 1.4rem;
  font-weight: 600; }

.custom-input {
  width: 100%;
  height: 4rem;
  font-size: 1.4rem;
  padding: 0 0.8rem;
  border: 1px solid #d2d2d2;
  border-radius: 5px; }

.custom-input:hover {
  border-color: #acacac; }

.custom-input:focus {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  outline: 0 none; }

.custom-input:disabled {
  opacity: 0.6; }

.custom-input:invalid {
  border-color: #ff4d4d; }

.custom-input-remark {
  margin-top: 0.4rem;
  padding: 0 0.8rem;
  font-size: 1.2rem;
  opacity: 0.6;
  text-align: end; }

.custom-input-invalid .custom-input {
  border-color: #ff4d4d; }

.custom-input-description {
  font-size: 1.2rem;
  opacity: 0.6;
  white-space: pre-wrap;
  margin-bottom: 0.8rem; }

.radio-group {
  margin-top: 1.2rem;
  padding: 0 1.2rem; }

.radio-group-option {
  display: -webkit-box;
  margin: 0.8rem 0;
  opacity: 0.8; }

.radio-group-option:hover {
  opacity: 1;
  cursor: pointer; }

.radio-group-option:focus {
  opacity: 1;
  outline: none; }

.radio-group-option:hover .radio-button {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  outline: 0 none; }

.radio-group-option:focus .radio-button {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  outline: 0 none; }

.radio-group-option-label {
  font-size: 1.4rem;
  margin: 0 0.8rem;
  cursor: pointer; }

.radio-group-option-disabled {
  opacity: 0.5;
  pointer-events: none; }

.custom-radio-group-label {
  font-size: 1.4rem;
  font-weight: 600; }

.custom-radio-group-disabled {
  opacity: 0.5;
  pointer-events: none; }

.custom-radio-group-invalid .radio-button {
  border-color: #ff4d4d; }

.custom-radio-group-description {
  font-size: 1.2rem;
  opacity: 0.6;
  white-space: pre-wrap; }

.custom-single-checkbox {
  display: flex;
  align-items: center;
  opacity: 0.8;
  outline: none; }

.custom-single-checkbox:hover, .custom-single-checkbox:focus {
  cursor: pointer;
  opacity: 1; }

.custom-single-checkbox:hover .checkbox {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  outline: 0 none; }

.custom-single-checkbox:focus .checkbox {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  outline: 0 none; }

.custom-single-checkbox-label {
  margin-top: 0.4rem;
  padding: 0.8rem;
  font-size: 1.4rem;
  cursor: pointer; }

.custom-single-checkbox-disabled {
  opacity: 0.5;
  pointer-events: none; }

.custom-single-checkbox-invalid .checkbox {
  border-color: #ff4d4d; }

.custom-single-checkbox-description {
  font-size: 1.2rem;
  opacity: 0.6;
  white-space: pre-wrap; }

.custom-textarea-label {
  font-size: 1.4rem;
  font-weight: 600; }

.custom-textarea {
  width: 100%;
  max-width: 100%;
  font-size: 1.2rem;
  padding: 1.2rem 0.8rem;
  border: 1px solid #d2d2d2;
  border-radius: 5px; }

.custom-textarea:hover {
  border-color: #acacac; }

.custom-textarea:focus {
  border-color: rgba(111, 184, 227, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #f6faff;
  outline: 0 none; }

.custom-textarea:disabled {
  opacity: 0.6; }

.custom-textarea:invalid {
  border-color: #ff4d4d; }

.custom-textarea-remark {
  padding: 0 0.8rem;
  font-size: 1.2rem;
  opacity: 0.6;
  text-align: end; }

.custom-textarea-invalid .custom-textarea {
  border-color: #ff4d4d; }

.custom-textarea-description {
  font-size: 1.2rem;
  opacity: 0.6;
  white-space: pre-wrap;
  margin-bottom: 0.8rem; }

.plain-text {
  margin: 1.6rem 0;
  font-size: 1.4rem;
  white-space: pre-wrap; }

.custom-form-field {
  margin-bottom: 2.4rem; }

.error-details {
  padding: 1.2rem; }

.error-message {
  font-size: 1.6rem; }

.error-stack {
  font-size: 1.4rem;
  white-space: pre-wrap; }

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f7f7f7;
  font-size: 2.4rem;
  font-weight: 500; }

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

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

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

@keyframes blink {
  from {
    opacity: 1; }
  50% {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes slideInBottom {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: collapse; }
  to {
    transform: translate3d(0, 0, 0); } }

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

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

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

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

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

@keyframes unload {
  from {
    width: 100%; }
  to {
    width: 0%; } }

.modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999; }

.modal-fade-in {
  animation-name: fadeIn;
  animation-duration: 1000ms; }

.modal-fade-out {
  animation-name: fadeOut;
  animation-duration: 1000ms; }

.modal-box {
  max-width: 90%;
  background-color: white;
  border-radius: 15px;
  padding: 1.2rem; }

@media (min-width: 576px) {
  .modal-box {
    max-width: 80%;
    padding: 1.6rem; } }

@media (min-width: 768px) {
  .modal-box {
    max-width: 70%;
    padding: 2.4rem; } }

@media (min-width: 992px) {
  .modal-box {
    max-width: 60%; } }

@media (min-width: 1200px) {
  .modal-box {
    max-width: 50%; } }

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem; }

.modal-title {
  font-weight: 500;
  padding-right: 1.6rem; }

.modal-close-button {
  opacity: 0.4; }

.modal-close-button:hover {
  cursor: pointer;
  opacity: 0.8; }

.modal-close-button-disable {
  opacity: 0.1;
  pointer-events: none; }

.modal-content {
  padding: 1.2rem;
  max-height: 80vh;
  overflow-y: scroll; }

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

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

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

@keyframes blink {
  from {
    opacity: 1; }
  50% {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes slideInBottom {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: collapse; }
  to {
    transform: translate3d(0, 0, 0); } }

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

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

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

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

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

@keyframes unload {
  from {
    width: 100%; }
  to {
    width: 0%; } }

.loader-container {
  display: flex;
  justify-content: center; }

.loader-container > div {
  animation-name: fadeOut;
  animation-duration: 0.9s;
  animation-iteration-count: infinite;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 100%;
  background-color: #333333;
  margin: 0 0.4rem; }

.loader-1 {
  animation-delay: 0s; }

.loader-2 {
  animation-delay: 0.3s; }

.loader-3 {
  animation-delay: 0.6s; }

.loader-button {
  padding: 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  min-height: 4rem;
  min-width: 100px;
  color: #f7f7f7;
  border: none;
  border-radius: 8px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }

.loader-button:hover {
  cursor: pointer; }

.loader-button:focus {
  outline: none; }

.loader-button:disabled {
  cursor: default;
  opacity: 0.7;
  transition: all 1s; }

.loader-button-shadow {
  box-shadow: 1px 1px 1px 1px #bebebe; }

.block-loader-button {
  width: 100%; }

.loader-button-color-blue {
  background-color: #3b86ff;
  transition: all 0.3s; }

.loader-button-color-blue:hover {
  background-color: #2276ff;
  transition: all 0.3s; }

.loader-button-color-blue:focus {
  background-color: #2276ff;
  transition: all 0.3s; }

.loader-button-color-success {
  background-color: #26A75C;
  transition: all 0.3s; }

.loader-button-color-success:hover {
  background-color: #219251;
  transition: all 0.3s; }

.loader-button-color-success:focus {
  background-color: #219251;
  transition: all 0.3s; }

.loader-button-color-warning {
  background-color: #f0ad4e;
  transition: all 0.3s; }

.loader-button-color-warning:hover {
  background-color: #eea236;
  transition: all 0.3s; }

.loader-button-color-warning:focus {
  background-color: #eea236;
  transition: all 0.3s; }

.loader-button-color-danger {
  background-color: #d9534f;
  transition: all 0.3s; }

.loader-button-color-danger:hover {
  background-color: #d43f3a;
  transition: all 0.3s; }

.loader-button-color-danger:focus {
  background-color: #d43f3a;
  transition: all 0.3s; }

.loader-button-color-opaque {
  background-color: white;
  color: #2185d0;
  transition: all 0.3s; }

.loader-button-color-opaque:hover {
  background-color: #2185d0;
  color: white;
  transition: all 0.3s; }

.loader-button-color-opaque:focus {
  background-color: #2185d0;
  color: white;
  transition: all 0.3s; }

.loader-button-color-bordered {
  background-color: white;
  color: #2185d0;
  border: 1px solid #2185d0;
  transition: all 0.3s; }

.loader-button-color-bordered:hover {
  background-color: #f7f7f7;
  color: #2185d0;
  border: 1px solid #2185d0;
  transition: all 0.3s; }

.loader-button-color-bordered:focus {
  background-color: #f7f7f7;
  color: #2185d0;
  border: 1px solid #2185d0;
  transition: all 0.3s; }

.button-loader-container {
  position: absolute; }

.button-content-hidden {
  opacity: 0; }

.form-change-detector-question {
  margin-bottom: 2.4rem; }

.form-change-detector-button {
  display: flex;
  justify-content: center; }

.form-layout {
  width: 100%;
  overflow-x: scroll;
  border-radius: 8px;
  background-color: white;
  padding: 1.6rem 0;
  position: relative;
  transition: all 0.5s; }

.form-layout-field-container {
  position: absolute;
  width: 90%;
  margin-left: 5%;
  display: flex;
  align-items: center; }

.form-layout-field {
  position: relative;
  margin: 1.6rem 0;
  width: 100%;
  height: 90%;
  z-index: 100;
  padding: 1.2rem 0.8rem; }

.form-layout-field-renderer {
  pointer-events: none;
  overflow: hidden;
  max-height: 100%;
  max-width: 100%; }

.form-layout-field:hover {
  cursor: grab;
  box-shadow: 3px 3px 5px 3px #bebebe;
  transform: scale(1.01);
  transition: all 0.5s; }

.field-width-full {
  width: 100%;
  transition: all 0.5s; }

.field-width-half {
  width: 48%;
  transition: all 0.5s; }

.form-layout-field-selected {
  border: 2px solid #6fb8e3;
  box-shadow: 3px 3px 5px 3px #bebebe;
  transform: scale(1.01);
  transition: all 0.5s; }

.form-layout-field-invalid {
  border: 2px solid #d9534f; }

.form-layout-field-remove {
  position: absolute;
  top: -6px;
  left: -15px;
  border: 1px solid black;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  z-index: 101;
  transition: all 0.5s; }

.form-layout-field-remove:hover {
  cursor: pointer;
  opacity: 1;
  transition: all 0.5s; }

.form-layout-field-toggle-width {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #e8e8e8;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
  transition: all 0.5s; }

.form-layout-field:hover .form-layout-field-toggle-width {
  opacity: 0.5; }

.form-layout-field-toggle-width:hover {
  cursor: pointer;
  background-color: #cfcfcf;
  transition: all 0.5s; }

.form-layout-field-toggle-width-icon {
  padding: 0 0.8rem; }

.form-layout-field-toggle-width-icon-reverse {
  transform: rotate(180deg); }

.form-layout-field-dragging {
  background-color: #e8e8e8; }

.field-select {
  width: 100%;
  overflow-x: scroll;
  background-color: white;
  padding: 1.6rem; }

.field-select-divider {
  margin: 1.6rem 0;
  border-bottom: 1px solid #d2d2d2; }

.field-select-field-text {
  padding: 0.8rem;
  transition: all 0.5s; }

.field-select-field-text:hover {
  transform: scale(1.04);
  cursor: pointer;
  box-shadow: 2px 2px 2px 2px #bebebe;
  transition: all 0.5s; }

.field-select-field-text * {
  margin: 0 0.8rem; }

.field-select-field-text-disabled {
  opacity: 0.5;
  pointer-events: none; }

.custom-options-form {
  margin-bottom: 1.2rem; }

.custom-option-edit {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center; }

.custom-option-remove {
  opacity: 0.6;
  transition: all 0.5s; }

.custom-option-remove:hover {
  opacity: 1;
  transform: scale(1.1);
  transition: all 0.5s;
  cursor: pointer; }

.custom-option-remove-disabled {
  opacity: 0.4; }

.custom-options-form-add {
  margin-left: 1.2rem; }

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

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

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

@keyframes blink {
  from {
    opacity: 1; }
  50% {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes slideInBottom {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: collapse; }
  to {
    transform: translate3d(0, 0, 0); } }

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

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

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

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

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

@keyframes unload {
  from {
    width: 100%; }
  to {
    width: 0%; } }

.field-editor {
  background-color: white;
  animation-name: slideInRight;
  animation-duration: 500ms;
  padding: 1.6rem;
  min-height: 100%;
  max-height: 90vh;
  overflow: scroll; }

.field-editor-exit {
  animation-name: fadeOut;
  animation-duration: 500ms; }

.field-editor-back-button {
  opacity: 0.6;
  transition: all 0.5s; }

.field-editor-back-button:hover {
  cursor: pointer;
  opacity: 1;
  transform: scale(1.01);
  transition: all 0.5s; }

.form-creator {
  display: flex;
  justify-content: space-between; }

.form-layout-container {
  width: 64%; }

.form-creator-save-form {
  margin-top: 1.6rem; }

.field-selector-container {
  width: 32%;
  position: relative; }

.field-menu {
  width: 100%;
  position: sticky;
  top: 2.4rem; }

.field-editor-container {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%; }

.confirmation-modal-content {
  padding: 1.6rem 3.2rem; }

.confirmation-question {
  display: flex;
  justify-content: center;
  font-weight: 500; }

.confirmation-options {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center; }

.confirmation-options button {
  margin: 0 1.2rem; }

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

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

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

@keyframes blink {
  from {
    opacity: 1; }
  50% {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes slideInBottom {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: collapse; }
  to {
    transform: translate3d(0, 0, 0); } }

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

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

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

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

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

@keyframes unload {
  from {
    width: 100%; }
  to {
    width: 0%; } }

.modal-left-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: flex-start;
  z-index: 999; }

.modal-left-slide-in {
  animation-name: slideInLeft;
  animation-duration: 500ms; }

.modal-left-slide-out {
  animation-name: slideOutLeft;
  animation-duration: 500ms; }

.modal-left-box {
  height: 100vh;
  max-width: 80vw;
  background-color: white;
  overflow-y: scroll; }

.locale-container {
  background-color: #00000040;
  color: #ffffff;
  position: relative;
  z-index: 101;
  width: fit-content; }

.locale-container:hover {
  cursor: pointer; }

.locale-current {
  white-space: nowrap;
  padding: 0.8rem 1.2rem; }

.locale-current-value {
  margin-right: 0.8rem; }

.locale-options {
  display: none;
  position: absolute;
  width: 100%;
  background-color: inherit; }

.locale-container:hover .locale-options {
  display: inherit; }

.locale-option {
  padding: 0.8rem 1.2rem; }

.locale-option:hover {
  background-color: #00000060; }

.tooltip-container {
  position: relative; }

.tooltip {
  visibility: hidden;
  position: absolute;
  padding: 0.8rem 1.2rem;
  background-color: black;
  color: white;
  font-size: 1.4rem;
  border-radius: 4px;
  z-index: 999; }

.tooltip-container:hover .tooltip {
  visibility: visible; }

.tooltip-top {
  top: -1.2rem;
  left: 50%;
  transform: translate(-50%, -100%); }

.tooltip-bottom {
  margin-top: 1.2rem;
  left: 50%;
  transform: translate(-50%); }

.tooltip-right {
  top: 0;
  left: 100%;
  margin-left: 1.2rem; }

.tooltip-left {
  top: 0;
  left: -1.2rem;
  transform: translate(-100%); }

.tooltip-arrow {
  visibility: hidden; }

.tooltip-container:hover .tooltip-arrow {
  visibility: visible; }

.tooltip-arrow-top::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 0.8rem solid black;
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  z-index: 101; }

.tooltip-arrow-bottom::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -0.8rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-bottom: 0.8rem solid black;
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  z-index: 101; }

.tooltip-arrow-right::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: -0.8rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-right: 0.8rem solid black;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  z-index: 101; }

.tooltip-arrow-left::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  right: -0.8rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-left: 0.8rem solid black;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  z-index: 101; }

.menu-sub-item {
  display: flex;
  align-self: start;
  padding: 1.2rem 1.2rem 1.2rem 2.4rem;
  text-decoration: none;
  background-color: #03258b;
  transition: all 0.5s; }

.menu-sub-item:hover {
  cursor: pointer;
  background-color: #0433bd;
  transition: all 0.5s; }

.menu-sub-item-active {
  background-color: #0433bd; }

.menu-sub-item-icon {
  color: #6fb8e3;
  min-width: 3.2rem;
  min-height: 25px; }

.menu-sub-item-title {
  color: #f7f7f7;
  white-space: nowrap; }

.menu-section-head {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  transition: all 0.5s; }

.menu-section-head:hover {
  cursor: pointer;
  background-color: #010b27;
  transition: all 0.5s; }

.menu-section-expanded {
  background-color: #010b27; }

.menu-section-title-group {
  display: flex; }

.menu-section-icon {
  min-width: 3.2rem;
  color: #6fb8e3; }

.menu-section-title {
  color: #f7f7f7;
  white-space: nowrap; }

.menu-section-caret {
  margin-left: 4rem;
  margin-right: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f7f7f7;
  transition: all 0.4s; }

.menu-section-expanded-icon {
  transform: rotate(90deg);
  transition: all 0.4s; }

.menu-item {
  display: flex;
  padding: 1.2rem 1.6rem;
  text-decoration: none;
  transition: all 0.5s; }

.menu-item:hover {
  cursor: pointer;
  background-color: #010b27;
  transition: all 0.5s; }

.menu-item-active {
  background-color: #010b27; }

.menu-item-icon {
  min-width: 3.2rem;
  color: #6fb8e3; }

.menu-item-title {
  color: #f7f7f7;
  white-space: nowrap; }

.header-container {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  background-color: white;
  -webkit-box-shadow: 0 8px 6px -6px #bebebe;
  -moz-box-shadow: 0 8px 6px -6px #bebebe;
  box-shadow: 0 8px 6px -6px #bebebe; }

.mobile-menu-icon:hover {
  cursor: pointer; }

.mobile-menu-options {
  background-color: #021859;
  min-height: 100vh; }

.header-custom-content {
  flex-grow: 1; }

.header-right-content {
  display: flex; }

.header-profile-button {
  color: #333333;
  background-color: white;
  font-size: 1.4rem; }

.header-profile-button:hover {
  background-color: white;
  color: #333333; }

.header-profile-options {
  font-size: 1.4rem; }

.header-profile-option {
  text-align: center; }

.header-locale-picker {
  margin-left: 1.2rem;
  z-index: 103; }

@media (min-width: 992px) {
  .mobile-menu-container {
    display: none; } }

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

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

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

@keyframes blink {
  from {
    opacity: 1; }
  50% {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes slideInBottom {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: collapse; }
  to {
    transform: translate3d(0, 0, 0); } }

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

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

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

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

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

@keyframes unload {
  from {
    width: 100%; }
  to {
    width: 0%; } }

.image-gallery {
  width: 60vw;
  padding: 3.2rem; }

.image-gallery-main-image-container {
  height: 75vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f7f7f7;
  transition: all 200ms; }

.image-gallery-iterator:hover {
  cursor: pointer;
  transform: scale(1.2);
  transition: all 300ms; }

.image-gallery-main-image {
  max-width: 100%;
  max-height: 100%;
  margin: 0 1.6rem;
  animation-name: fadeIn;
  animation-duration: 300ms; }

.image-gallery-selector {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.image-gallery-selector-iterator {
  margin: 0 0.8rem;
  color: #f7f7f7; }

.image-gallery-selector-iterator:hover {
  cursor: pointer; }

.image-gallery-image-selector-container {
  flex-grow: 1;
  margin: 2.4rem 0;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  min-height: 10rem; }

.image-gallery-image-selector {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  transition: all 0.5s; }

.image-gallery-image-container {
  height: 9rem;
  width: 16rem;
  background-color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #333333;
  margin: 0 0.4rem; }

.image-gallery-image-container:hover {
  cursor: pointer;
  border-color: #bdbdbd; }

.image-gallery-image-selected {
  border-color: #f7f7f7; }

.image-gallery-image {
  max-height: 100%;
  max-width: 100%; }

.logo-loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%; }

.logo-loader {
  display: flex;
  justify-content: baseline;
  animation-name: pulse;
  animation-iteration-count: infinite;
  animation-duration: 2s; }

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.25, 1.25, 1.25); }
  to {
    transform: scale3d(1, 1, 1); } }

.logo-loader-image-container {
  height: 42px; }

.logo-loader-text {
  font-size: 2.4rem;
  font-weight: 500;
  padding: 0 1.6rem;
  color: #2185d0; }

.menu-container {
  height: 100vh;
  background-color: #021859;
  color: #6fb8e3;
  z-index: 998;
  display: flex;
  flex-direction: column; }

.menu-header {
  position: relative;
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 0;
  margin: 1.2rem 1.6rem; }

.menu-button {
  position: absolute;
  left: 0;
  color: #6fb8e3;
  opacity: 0.6;
  transition: all 0.5s;
  margin-right: 2.4rem; }

.menu-button:hover {
  cursor: pointer;
  opacity: 1;
  transition: all 0.5s; }

.menu-logo {
  height: 30px;
  display: flex;
  align-items: center;
  margin: 0 3.2rem; }

.menu-logo:hover {
  cursor: default; }

.menu-items {
  flex-grow: 1;
  padding-bottom: 3rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  border-top: 1px solid black; }

.menu-items::-webkit-scrollbar {
  display: none; }

@media (max-width: 992px) {
  .menu-container {
    display: none; } }

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

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

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

@keyframes blink {
  from {
    opacity: 1; }
  50% {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes slideInBottom {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: collapse; }
  to {
    transform: translate3d(0, 0, 0); } }

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

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

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

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

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

@keyframes unload {
  from {
    width: 100%; }
  to {
    width: 0%; } }

.modal-right-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: flex-end;
  z-index: 999; }

.modal-right-slide-in {
  animation-name: slideInRight;
  animation-duration: 500ms; }

.modal-right-slide-out {
  animation-name: slideOutRight;
  animation-duration: 500ms; }

.modal-right-box {
  position: relative;
  height: 96vh;
  margin-top: 2vh;
  margin-right: 2vh;
  padding: 2.4rem 0;
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column; }

.modal-right-close-button {
  z-index: 101;
  position: absolute;
  top: 1.2rem;
  right: 2.4rem;
  opacity: 0.6;
  transition: all 0.5s; }

.modal-right-close-button:hover {
  cursor: pointer;
  opacity: 1;
  transition: all 0.5s; }

.modal-right-close-button {
  opacity: 0.4; }

.modal-right-close-button:hover {
  cursor: pointer;
  opacity: 0.8; }

.modal-right-close-button-disable {
  opacity: 0.1;
  pointer-events: none; }

.modal-right-content {
  z-index: 100;
  flex-grow: 1;
  overflow-y: scroll; }

.modal-right-fixed-width {
  width: 30vw; }

@media (max-width: 1200px) {
  .modal-right-fixed-width {
    width: 40vw; } }

@media (max-width: 992px) {
  .modal-right-fixed-width {
    width: 50vw; } }

@media (max-width: 768px) {
  .modal-right-fixed-width {
    width: 90vw; } }

.multi-file-upload {
  margin-bottom: 1.2rem;
  max-width: 100%; }

.multi-file-upload-label {
  font-size: 1.4rem;
  font-weight: 600; }

.multi-file-upload-field {
  position: relative;
  width: 100%;
  height: max-content;
  font-size: 1.4rem;
  background-color: white;
  padding: 1.2rem;
  border-radius: 8px; }

.multi-file-upload-field-invalid {
  border: 1px solid #ff4d4d; }

.multi-file-field-disabled {
  pointer-events: none; }

.multi-file-upload-file {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0.8rem;
  border-radius: 4px; }

.multi-file-upload-file:hover {
  background-color: #f7f7f7;
  cursor: grab; }

.multi-file-dragging-item {
  cursor: grabbing !important; }

.multi-file-upload-file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.multi-file-upload-file-remove {
  margin-left: 0.8rem; }

.multi-file-upload-file-remove:hover {
  cursor: pointer; }

.multi-file-upload-none-selected {
  font-style: italic;
  padding: 0 0.8rem; }

.custom-file-upload-input:hover {
  cursor: pointer;
  opacity: 1; }

.multi-file-upload-add-file {
  margin-top: 1.2rem;
  color: #3b86ff; }

.multi-file-upload-add-file:hover {
  cursor: pointer; }

.multi-file-upload-hidden-input {
  opacity: 0;
  height: 0;
  width: 0;
  position: absolute; }

.multi-file-upload-remark {
  margin-top: 0.4rem;
  padding: 0 0.8rem;
  font-size: 1.2rem;
  opacity: 0.6; }

.pages-container {
  display: flex; }

.page {
  color: #2185d0;
  padding: 0 0.8rem;
  transition: all 0.3s; }

.page:hover {
  cursor: pointer;
  transform: scale(1.2);
  transition: all 0.3s; }

.selected-page {
  font-weight: 600; }

.pagination-ellipsis {
  padding: 0 0.8rem;
  color: #2185d0; }

.pagination-ellipsis:hover {
  cursor: default; }

.pagination-container {
  display: flex;
  justify-content: flex-end;
  align-items: center; }

.pagination-items-per-page {
  margin-left: 1.2rem; }

.section-header-container {
  position: sticky;
  top: 0;
  background-color: inherit;
  z-index: 102;
  box-shadow: 0px 3px 3px 0px inherit; }

.section-header-title {
  font-size: 3.2rem;
  font-weight: 500; }

.sorting-list {
  width: 100%;
  border-top: 1px solid #bdbdbd; }

.sorting-list-item {
  padding: 0.8rem;
  display: flex;
  border-bottom: 1px solid #bdbdbd;
  background-color: white; }

.sorting-list-item:hover {
  cursor: grab; }

.sorting-list-item-dragging {
  cursor: grabbing !important;
  background-color: #f7f7f7; }

.sorting-list-item-handle {
  padding: 0 0.8rem;
  color: #666; }

.sorting-list-item-content {
  flex-grow: 1;
  white-space: pre-wrap; }

.table-header-cell {
  padding: 1.2rem 2.4rem;
  border-bottom: 1px solid #2185d0; }

.table-header-cell-content-container {
  display: flex;
  align-items: center; }

.table-header-title {
  padding-right: 0.8rem; }

.table-header-title:hover {
  cursor: pointer; }

.sort-icon {
  line-height: 0;
  opacity: 0.8; }

.sort-icon:hover {
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s; }

.hide-sort-icon {
  opacity: 0; }

.hide-sort-icon:hover {
  opacity: 0; }

.sort-icon-up {
  height: 5px; }

.sort-icon-down {
  height: 5px;
  transform: rotate(180deg);
  margin-top: 3px; }

.custom-table-body:hover {
  cursor: pointer; }

.custom-table-row:hover {
  background-color: #f7f7f7; }

.table-body-cell {
  padding: 1.2rem 2.4rem;
  border-top: 1px solid #e1e1e1; }

.table-body-cell-content-container {
  display: flex;
  align-items: center; }

.row-options-cell {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 50px; }

.row-options-cell:focus {
  outline: none; }

.row-options-icon {
  color: #2185d0;
  cursor: pointer; }

.row-options-icon:hover {
  color: #021859; }

.row-options {
  position: absolute;
  background-color: white;
  top: 5px;
  left: 0;
  transform: translate(-100%);
  min-width: 100px;
  box-shadow: 5px 5px 15px 0px #bebebe;
  border-radius: 5px;
  padding: 0.8rem 0;
  z-index: 989; }

.row-option {
  padding: 0.4rem 0.8rem;
  white-space: nowrap; }

.row-option:hover {
  cursor: pointer;
  background-color: #e1e1e1; }

.table-row-select-cell {
  display: flex;
  align-items: center; }

.dragging-item {
  background-color: #00000030;
  opacity: 0.6; }

.draggable-handle-container {
  display: flex;
  color: #e8e8e8; }

.draggable {
  cursor: grab; }

.draggable:active {
  cursor: grabbing; }

.drag-order-number {
  padding-left: 0.8rem;
  color: #333333; }

.table-filters-container {
  position: relative; }

.table-filters-container:focus {
  outline: none; }

.table-filter-icon {
  color: #2185d0; }

.table-filter-icon:hover {
  cursor: pointer; }

.filter-options-container {
  position: absolute;
  margin-top: 0.8rem;
  padding: 1.6rem;
  background-color: white;
  transform: translate(-90%);
  z-index: 100;
  border-radius: 5px;
  box-shadow: 5px 5px 15px 0px #bebebe;
  min-width: 300px; }

.filter-options-container-arrow:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  border-bottom: 8px solid white;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  right: 0;
  bottom: -8px;
  z-index: 101; }

.filter-option {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.filter-option-field {
  flex-grow: 1; }

.filter-option-clear {
  padding-left: 1.6rem; }

.filter-option-clear:hover {
  cursor: pointer; }

.filters-apply-button {
  margin-top: 2.4rem; }

.table-container {
  width: 100%;
  margin-top: 0;
  border-top: 1px solid inherit;
  position: relative; }

.table-details-loader-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; }

.table-items-count {
  margin: 0 1.6rem; }

.table-actions-container {
  position: absolute;
  width: 100%;
  background-color: inherit;
  z-index: 100; }

.table-actions {
  display: flex;
  justify-content: space-between; }

.group-actions-container {
  display: flex; }

.table-group-actions-button {
  background-color: white;
  color: #666;
  border: 1px solid #bdbdbd;
  border-radius: 4px; }

.table-group-actions-button:hover {
  background-color: white; }

.table-group-actions-apply-button {
  margin-left: 0.8rem;
  border-radius: 4px; }

.table-custom-actions-container {
  display: flex;
  align-items: center; }

.table-custom-action {
  margin: 0 0.4rem; }

.table-action-button {
  padding: 0 1.2rem;
  border-radius: 4px; }

.table-group-actions-option {
  white-space: nowrap; }

.table-filter-container {
  margin-left: 1.2rem; }

.table-inner-container {
  padding-top: 80px;
  overflow-x: scroll;
  max-width: 90vw;
  margin: auto;
  overflow: visible; }

.table-inner-container table {
  min-width: 100%;
  background-color: white;
  border-radius: 15px;
  border-collapse: collapse; }

.custom-table-foot {
  min-height: 2.4rem;
  border-top: 1px solid #2185d0;
  display: flex;
  justify-content: flex-end;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem; }

.table-pagination {
  padding-bottom: 9.6rem; }

.tabs-container {
  width: 100%; }

.tab-selection {
  display: flex; }

.tab {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
  padding: 1.2rem 0;
  background-color: #f7f7f7;
  border: 1px solid #e1e1e1;
  font-size: 1.4rem;
  font-weight: 500; }

.tab:hover {
  cursor: pointer;
  background-color: #e8e8e8;
  transition: all 0.3s; }

.active-tab {
  background-color: #2185d01a;
  border-bottom: 2px solid #2185d0;
  transition: all 0.5s; }

.active-tab:hover {
  background-color: #2185d01a; }

.video-player-container {
  height: 100%;
  width: 100%;
  display: flex; }

.video-player-video-container {
  display: flex;
  justify-content: center;
  flex-grow: 1; }

.video-player-timestamps {
  overflow-y: scroll;
  background-color: white;
  max-width: 30%;
  padding: 0.8rem 0; }

.video-player-timestamp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 1.2rem;
  font-size: 1.4rem; }

.video-player-timestamp:hover {
  cursor: pointer;
  background-color: #f5f5f5; }

.video-player-timestamp:hover .video-player-timestamp-time {
  text-decoration: underline; }

.video-player-timestamp-title {
  flex-grow: 1; }

.video-player-timestamp-time {
  margin-right: 1.2rem;
  color: #3b86ff; }

.register-title {
  display: block;
  padding-top: 1.6rem;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500; }

.open-document {
  color: #2185d0; }

.register-submit-button-container {
  display: flex;
  justify-content: center;
  padding: 0 1.6rem; }

.register-submit-button-content {
  padding: 0 3.2rem; }

.verification-code-input {
  font-size: 4rem;
  width: 100%;
  text-align: center;
  border: 3px solid #e8e8e8;
  border-radius: 8px; }

.verify-user-container {
  margin-top: 2.4rem;
  padding: 1.6rem; }

.verification-notice {
  margin-bottom: 2.4rem;
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center; }

.verification-code-input-container {
  display: flex;
  justify-content: center; }

.submit-verification-code-container {
  display: flex;
  justify-content: center;
  margin: 1.6rem 0; }

.resend-verification-code-container {
  display: flex;
  justify-content: center; }

.verification-remark {
  font-size: 1.4rem;
  margin-top: 2.4rem;
  text-align: center; }

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

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

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

@keyframes slideInBottom {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: collapse; }
  to {
    transform: translate3d(0, 0, 0); } }

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

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

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

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

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

@keyframes unload {
  from {
    width: 100%; }
  to {
    width: 0%; } }

.logging-in-container {
  margin: 4rem 0; }

.logging-in-title {
  text-align: center;
  font-size: 2.4rem;
  margin: 1.6rem 0; }

.logging-in-text {
  text-align: center;
  margin: 1.6rem 0; }

.logging-in-loader-container {
  display: flex;
  justify-content: center; }

.logging-in-loader-container > div {
  opacity: 0;
  animation-name: fadeOut;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 100%;
  background-color: blue;
  margin: 0 0.4rem; }

.logging-in-loader-1 {
  animation-delay: 0s; }

.logging-in-loader-2 {
  animation-delay: 0.2s; }

.logging-in-loader-3 {
  animation-delay: 0.4s; }

.logging-in-loader-4 {
  animation-delay: 0.6s; }

.logging-in-loader-5 {
  animation-delay: 0.8s; }

.register-register-form {
  animation: fadeIn 1s; }

.verify-user-entrance {
  animation: fadeIn 1s; }

.log-in-title {
  display: block;
  padding-top: 1.6rem;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500; }

.log-in-submit-button-container {
  display: flex;
  justify-content: center;
  margin: 0 1.6rem; }

.log-in-submit-button-content {
  padding: 0 3.2rem; }

.forgot-your-password {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.2rem; }

.forgot-your-password > div {
  font-size: 1.4rem;
  color: #2185d0;
  border-bottom: 1px solid #2185d0;
  padding-bottom: 0.4rem;
  transition: all 0.3s; }

.forgot-your-password > div:hover {
  cursor: pointer;
  color: #d2d2d2;
  border-color: #d2d2d2;
  transition: all 0.3s; }

.forgot-password-container {
  margin: 2.4rem; }

.forgot-password-title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 2.4rem; }

.reset-password-button {
  margin: 1.6rem 0; }

@media (max-width: 992px) {
  .forgot-password-container button {
    font-size: 1.2rem; } }

.verify-reset-password-container {
  margin: 2.4rem; }

.verify-reset-password-verification-code {
  display: flex;
  justify-content: center;
  margin: 2.4rem 0; }

.verify-reset-password-button {
  display: flex;
  justify-content: center; }

.enter-new-password-container {
  margin: 2.4rem; }

.enter-new-password-input-fields {
  margin: 1.6rem 0; }

.verify-account-container {
  margin: 2.4rem; }

.verify-account-verification-code {
  margin: 1.6rem 0;
  display: flex;
  justify-content: center; }

.verify-account-button {
  display: flex;
  justify-content: center; }

.log-in-view-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible; }

.log-in-view {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }

.log-in-view-enter {
  z-index: 100;
  background-color: white; }

.log-in-view-exit {
  z-index: 99; }

.log-in-view-log-in-form {
  animation: fadeIn 0.6s; }

.log-in-view-forgot-password {
  animation: slideInBottom 0.5s; }

.log-in-view-verify-reset-password {
  animation: fadeIn 0.6s; }

.log-in-view-enter-new-password {
  animation: slideInBottom 0.5s; }

.log-in-view-verify-account {
  animation: fadeIn 0.6s; }

.log-in-view-logging-in {
  animation: fadeIn 0.4s; }

@media (max-width: 1200px) {
  .log-in-view-container {
    overflow: hidden; }
  .log-in-view {
    position: relative; }
  .log-in-view-exit {
    position: absolute; } }

.account-container {
  background-color: white;
  height: 80vh;
  width: 80vw;
  position: relative; }

.account-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 60%;
  overflow-y: scroll; }

.account-form-container > div {
  width: 50%; }

.account-image {
  background-image: url("https://emplstorageaccount.blob.core.windows.net/frontend-assets/login_bg.png");
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1.6rem;
  width: 40%;
  z-index: 100; }

.account-image > div {
  margin: 1.2rem 0; }

.account-image-content {
  max-width: 70%;
  margin: 0 auto; }

.account-image-message-title {
  color: white;
  font-size: 4.8rem;
  font-weight: 500;
  text-align: center; }

.account-image-message-title-log-in,
.account-image-message-content-log-in,
.account-image-button-log-in {
  animation: fadeIn 1s cubic-bezier(0.8, 0.16, 0.9, 0.32); }

.account-image-message-title-register,
.account-image-message-content-register,
.account-image-button-register {
  animation: fadeInDuplicate 1s cubic-bezier(0.8, 0.16, 0.9, 0.32); }

.account-image-message-content {
  color: white;
  font-size: 1.8rem;
  text-align: center; }

.account-image-button {
  width: 100%;
  margin: 2.4rem 0; }

.account-image-register {
  position: absolute;
  top: 0;
  margin-left: 60%;
  transition: margin-left 1s ease;
  animation: stretchLeft 1s ease-out; }

.account-form-container-register {
  position: absolute;
  top: 0;
  margin-left: 0;
  transition: margin-left 1s; }

.account-image-log-in {
  position: absolute;
  top: 0;
  margin-left: 0;
  transition: margin-left 1s ease;
  animation: stretchRight 1s ease-out; }

.account-form-container-log-in {
  position: absolute;
  top: 0;
  margin-left: 40%;
  transition: margin-left 1s; }

.account-image-load {
  animation: none !important; }

@keyframes stretchLeft {
  from {
    transform: scaleX(1); }
  50% {
    transform: scaleX(1.3); }
  to {
    transform: scaleX(1); } }

@keyframes stretchRight {
  from {
    transform: scaleX(1); }
  50% {
    transform: scaleX(1.3); }
  to {
    transform: scaleX(1); } }

.mobile-account-container {
  width: 40vw;
  min-height: 70vh; }

@media (max-width: 768px) {
  .mobile-account-container {
    width: 70vw; } }

.desktop-account-display {
  visibility: visible; }

.mobile-account-display {
  visibility: hidden; }

@media (max-width: 1200px) {
  .desktop-account-display {
    visibility: hidden; }
  .mobile-account-display {
    visibility: visible; } }

