@charset "UTF-8";
@import url(https://fonts.bunny.net/css?family=albert-sans:400,400i,600,600i);
/* Mixins */
.flex {
  display: flex;
}

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

.fw {
  width: 100%;
}

* {
  box-sizing: border-box;
  transition: 0.15s all ease-in-out;
}

body {
  background: #0f0f1d;
  color: #fff;
  font-family: "Albert Sans", sans-serif;
  margin: 0;
  padding: 0px;
}

h1 {
  font-size: 2.5em;
  margin-block: 0.25em;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3em;
  }
}
@media (min-width: 960px) {
  h1 {
    font-size: 3.5em;
  }
}

a {
  color: #fff;
}

.btn-link {
  background: none;
  border: 0;
  color: #fff;
  font-size: 1em;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}

.body-wrapper {
  max-width: calc(100vw - 40px);
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 4;
}
@media (min-width: 768px) {
  .body-wrapper {
    max-width: 768px;
  }
}

header {
  margin-top: 20px;
}
header .logo {
  width: 120px;
}

main {
  background: rgba(0, 0, 0, 0.75);
  padding: 40px 20px;
  border-radius: 12px;
}
main p {
  line-height: 2em;
}
main form {
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 760px) {
  main form {
    width: 66.66%;
    padding: 10px;
  }
}
main form .form-controls {
  display: flex;
  flex-flow: column;
  width: 100%;
}
@media (min-width: 760px) {
  main form .form-controls {
    flex-flow: row;
  }
}
main form input:hover, main form input:focus,
main form button:hover,
main form button:focus {
  outline: 0;
  border-width: 1px;
  border-color: #3253b8;
  box-shadow: 0 0 0 1px #3253b8;
}
main form input {
  width: 100%;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 1.1em;
  border-radius: 12px;
  background: rgba(53, 85, 186, 0.2);
  color: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(53, 85, 186, 0.3);
}
main form input::placeholder {
  color: #fff;
}
@media (min-width: 760px) {
  main form input {
    margin-bottom: 0;
    margin-right: 7px;
  }
}
main form button {
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
  border-radius: 12px;
  cursor: pointer;
  background: rgba(53, 85, 186, 0.2);
  color: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(53, 85, 186, 0.3);
}
main form button::placeholder {
  color: #fff;
}
@media (min-width: 760px) {
  main form button {
    margin-left: 7px;
    width: 40%;
  }
}
main form .success-message {
  color: #72e475;
  text-align: center;
}
main form .error-message {
  color: #e4e372;
  text-align: center;
}
main .svg-wrapper {
  display: none;
}
@media (min-width: 760px) {
  main .svg-wrapper {
    display: block;
    position: relative;
    left: 100%;
    top: -49px;
    height: 10px;
    width: 58px;
  }
  main .svg-wrapper svg {
    position: absolute;
    top: -49px;
    left: 28px;
  }
}

footer {
  margin: 80px 0 20px 0;
}
footer .footer-links .btn-link {
  cursor: pointer;
  margin-inline: 4px;
}

#canvas {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
}

#overlay {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.8) 80%, rgb(0, 0, 0) 90%, rgb(0, 0, 0) 100%);
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

#bg_glow {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.modal * {
  color: #fff;
}

.modal__overlay {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.modal__container {
  background-color: #0f0f1d;
  color: #fff;
  padding: 30px;
  max-width: 740px;
  height: 100%;
  width: 50%;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__container {
  height: initial;
  max-height: 80vh;
}

.modal__header {
  position: relative;
  display: block;
  height: 30px;
  margin-bottom: 20px;
}

.modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: initial;
  margin-bottom: 0px;
}

.modal__title {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  box-sizing: border-box;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin: 0px;
  padding: 0px;
}

.modal__title {
  position: static;
}

.modal__close {
  position: static;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 10px;
  margin-bottom: 10px;
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************
	Demo Animation Style
  **************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/**************************
	Custom styles for individual modals
  **************************/
.modal__container button {
  outline: none;
  cursor: pointer !important;
}

.modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: -90px;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  box-sizing: border-box;
}

.modal__close {
  font-size: 24px;
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  padding: 10px 15px;
  background-color: #e6e6e6;
  border-radius: 4px;
  -webkit-appearance: none;
}

/**************************
	Mobile custom styles for individual modals
  **************************/
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .modal__container {
    width: 90% !important;
    min-width: 90% !important;
  }
  .modal__container {
    width: 90% !important;
    min-width: 90% !important;
  }
}
.cc-window {
  background-color: var(--cc-window-background, #fff);
  box-sizing: border-box;
  padding: var(--cc-window-padding, 24px);
  z-index: 99999;
  border: var(--cc-window-border, 0);
  overflow: auto;
  filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.3));
}

.cc-window *, .cc-modal-window * {
  font-family: var(--cc-font-family, "Inter", sans-serif);
}

.cc-window.cc-content-right {
  text-align: right;
}

.cc-window.cc-content-left {
  text-align: left;
}

.cc-window.cc-content-center {
  text-align: center;
}

.cc-window.cc-pos-top, .cc-window.cc-pos-top-left, .cc-window.cc-pos-top-right, .cc-window.cc-pos-bottom, .cc-window.cc-pos-bottom-left, .cc-window.cc-pos-bottom-right, .cc-window.cc-pos-bottom-center, .cc-window.cc-pos-top-center, #cc-btn-dismiss {
  position: fixed;
}

.cc-window.cc-pos-top {
  --cc-window-margin-top: 0;
  top: var(--cc-window-margin-top);
  left: 0;
  width: 100%;
}

.cc-window.cc-pos-top-center {
  top: var(--cc-window-margin-top, 24px);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.cc-window.cc-pos-top-left, .cc-window.cc-pos-top-right, .cc-window.cc-pos-bottom-left, .cc-window.cc-pos-bottom-right, .cc-window.cc-pos-bottom-center, .cc-window.cc-pos-top-center {
  border-radius: var(--cc-window-radius, 24px);
  width: var(--cc-window-width, 500px);
}

.cc-window.cc-pos-top-left, .cc-window.cc-pos-top-right, #cc-btn-dismiss.cc-pos-top-right, #cc-btn-dismiss.cc-pos-top-left {
  top: var(--cc-window-margin-top, 24px);
}

.cc-window.cc-pos-top-left, #cc-btn-dismiss.cc-pos-top-left {
  left: var(--cc-window-margin-left, 48px);
}

.cc-window.cc-pos-top-right, #cc-btn-dismiss.cc-pos-top-right {
  right: var(--cc-window-margin-right, 48px);
}

.cc-window.cc-pos-bottom {
  --cc-window-margin-bottom: 0;
  bottom: var(--cc-window-margin-bottom);
  left: 0;
  width: 100%;
}

.cc-window.cc-pos-bottom-center {
  bottom: var(--cc-window-margin-bottom, 24px);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.cc-window.cc-pos-bottom-left, .cc-window.cc-pos-bottom-right, #cc-btn-dismiss.cc-pos-bottom-left, #cc-btn-dismiss.cc-pos-bottom-right {
  bottom: var(--cc-window-margin-bottom, 24px);
}

.cc-window.cc-pos-bottom-left, #cc-btn-dismiss.cc-pos-bottom-left {
  left: var(--cc-window-margin-left, 48px);
}

.cc-window.cc-pos-bottom-right, #cc-btn-dismiss.cc-pos-bottom-right {
  right: var(--cc-window-margin-right, 24px);
}

.cc-window .cc-window-title {
  font-size: var(--cc-title-font-size, 16px);
  font-weight: var(--cc-title-font-weight, 600);
  color: var(--cc-title-text-color, #001D35);
  padding: var(--cc-title-padding, 24px 24px 0 24px);
  margin-bottom: var(--cc-title-margin-bottom, 16px);
}

.cc-window .cc-window-message {
  padding: var(--cc-message-padding, 8px 24px 24px 24px);
  line-height: var(--cc-message-line-height, 1.2rem);
}

.cc-window .cc-window-message, .cc-window .cc-window-message a, .cc-window .cc-window-message p {
  font-size: var(--cc-message-font-size, 14px);
  font-weight: var(--cc-message-font-weight, 400);
  color: var(--cc-message-text-color, #000);
  line-height: var(--cc-message-line-height, 1.2rem);
}

.cc-window .cc-window-message p {
  padding: 0 0 0.5rem;
}

.cc-window .cc-window-message a, .cc-window .cc-window-message a:hover, .cc-window .cc-window-message a:visited {
  color: var(--cc-message-link-color, #01579B);
  -webkit-text-decoration: var(--cc-message-link-decoration, underline);
  text-decoration: var(--cc-message-link-decoration, underline);
  font-weight: var(--cc-message-link-font-weight, 600);
}

#cc-window-settings .cc-window-settings-header {
  margin-bottom: var(--cc-settings-margin-bottom, 2rem);
}

#cc-window-settings .cc-window-settings-footer {
  margin-top: var(--cc-settings-margin-top, 2rem);
}

#cc-window-settings .cc-window-settings-cookie {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid var(--cc-settings-separator-color, #eee);
  gap: 3rem;
  padding: 16px 0;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-content {
  width: 100%;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-title {
  font-size: var(--cc-settings-title-size, 14px);
  font-weight: var(--cc-settings-title-weight, 600);
  margin-bottom: 0.5rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-title-dropdown {
  cursor: pointer;
  display: flex;
  gap: 1rem;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-desc {
  width: 100%;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-desc * {
  font-size: var(--cc-settings-font-size, 14px);
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-desc p {
  margin-bottom: 0.5rem;
}

.cc-window .cc-window-buttons, .cc-modal-window .cc-window-settings-buttons {
  text-align: var(--cc-buttons-align, right);
  padding: var(--cc-buttons-padding, 0 16px 16px 0);
}

.cc-window .cc-window-buttons button, .cc-modal-window .cc-window-settings-buttons button {
  display: initial !important;
  font-size: var(--cc-btn-font-size, 14px);
  font-weight: var(--cc-btn-font-weight, 600);
  margin: var(--cc-btn-margin, 24px 2px 0 2px);
  padding: var(--cc-btn-padding, 6px 12px);
  border-radius: var(--cc-btn-radius, 50px);
  cursor: pointer;
  outline: none;
  letter-spacing: 0.010714em;
}

.cc-window .cc-window-buttons button.cc-btn-accept {
  background-color: var(--cc-btn-accept-background, #388E3C);
  color: var(--cc-btn-accept-text-color, #ffffff);
  border: var(--cc-btn-accept-border, 0);
}

.cc-window .cc-window-buttons button.cc-btn-accept:hover {
  background-color: var(--cc-btn-accept-background-hover, #1B5E20);
}

.cc-window .cc-window-buttons button.cc-btn-reject {
  background-color: var(--cc-btn-reject-background, transparent);
  color: var(--cc-btn-reject-text-color, #C62828);
  border: var(--cc-btn-reject-border, 0);
}

.cc-window .cc-window-buttons button.cc-btn-reject:hover {
  background-color: var(--cc-btn-reject-background-hover, #FFEBEE);
}

.cc-window .cc-window-buttons button.cc-btn-info {
  background-color: var(--cc-btn-info-background, transparent);
  color: var(--cc-btn-info-text-color, #424242);
  border: var(--cc-btn-info-border, 0);
}

.cc-window .cc-window-buttons button.cc-btn-info:hover {
  background-color: var(--cc-btn-info-background-hover, #E0E0E0);
}

.cc-window .cc-window-buttons button.cc-btn-settings {
  background-color: var(--cc-btn-settings-background, #9E9E9E);
  color: var(--cc-btn-settings-text-color, #ffffff);
  border: var(--cc-btn-settings-border, 0);
}

.cc-window .cc-window-buttons button.cc-btn-settings:hover {
  background-color: var(--cc-btn-settings-background-hover, #424242);
}

.cc-window-settings-buttons button.cc-btn-settings-select {
  background-color: var(--cc-btn-settings-select-background, transparent);
  color: var(--cc-btn-settings-select-text-color, #424242);
  border: var(--cc-btn-settings-select-border, 0);
}

.cc-window-settings-buttons button.cc-btn-settings-select:hover {
  background-color: var(--cc-btn-settings-select-background-hover, #E0E0E0);
}

.cc-window-settings-buttons button.cc-btn-settings-accept {
  background-color: var(--cc-btn-settings-accept-background, #388E3C);
  color: var(--cc-btn-settings-accept-text-color, #ffffff);
  border: var(--cc-btn-settings-accept-border, 0);
}

.cc-window-settings-buttons button.cc-btn-settings-accept:hover {
  background-color: var(--cc-btn-settings-accept-background-hover, #1B5E20);
}

#cc-btn-dismiss {
  font-family: var(--cc-font-family, "Open Sans", Arial, sans-serif);
  background-color: var(--cc-btn-dismiss-background, #ddd);
  color: var(--cc-btn-dismiss-text-color, #000);
  border: var(--cc-btn-dismiss-border, 0);
  font-size: var(--cc-btn-dismiss-font-size, 14px);
  font-weight: var(--cc-btn-dismiss-font-weight, 400);
  margin: 2rem 0.3rem 0;
  padding: var(--cc-btn-dismiss-padding, 12px 16px);
  border-radius: var(--cc-btn-dismiss-radius, 24px);
  cursor: pointer;
  outline: none;
  z-index: 99999;
  filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.3));
  opacity: 0.5;
}

#cc-btn-dismiss:hover {
  opacity: 1;
}

.cc-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
}

.cc-modal-window {
  background-color: var(--cc-popup-background, #fff);
  color: var(--cc-popup-text-color, #333);
  margin: 10vh auto;
  border: var(--cc-window-border, 0);
  filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.3));
  width: var(--cc-popup-width, 600px);
  border-radius: var(--cc-popup-radius, 24px);
  padding: var(--cc-window-padding, 24px);
}

.cc-modal-content {
  color: var(--cc-popup-text-color, #001D35);
  padding: var(--cc-title-padding, 0 24px 24px 24px);
  font-size: var(--cc-message-font-size, 14px);
  font-weight: var(--cc-message-font-weight, 400);
  line-height: var(--cc-message-line-height, 1.2rem);
  margin-top: 24px;
  margin-bottom: 24px;
}

.cc-modal-window .cc-modal-content h2 {
  font-size: var(--cc-title-font-size, 16px);
  font-weight: var(--cc-title-font-weight, 600);
  color: var(--cc-title-text-color, #001D35);
  margin-bottom: 1rem;
}

.cc-modal-window .cc-modal-content p {
  padding: 0 0 0.5rem;
  font-size: var(--cc-message-font-size, 14px);
  line-height: var(--cc-message-line-height, 1.2rem);
}

.cc-modal-window .cc-modal-content .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
}

.cc-modal-window .cc-modal-content .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-modal-window .cc-modal-content .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c62828;
  transition: 0.4s;
}

.cc-modal-window .cc-modal-content .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: 0.4s;
}

.cc-modal-window .cc-modal-content input:checked + .slider {
  background-color: #1b5e20;
}

.cc-modal-window .cc-modal-content input:disabled + .slider {
  background-color: #ccc;
}

.cc-modal-window .cc-modal-content input:checked + .slider:before {
  transform: translate(18px);
}

.cc-modal-window .cc-modal-content .slider.round {
  border-radius: 34px;
}

.cc-modal-window .cc-modal-content .slider.round:before {
  border-radius: 50%;
}

.cc-modal-close {
  color: var(--cc-btn-close-color, #aaa);
  padding: 0 12px 12px 0;
  text-align: right;
  font-size: 22px;
  font-weight: 700;
}

.cc-modal-close:hover, .cc-modal-close:focus {
  color: var(--cc-btn-close-color-hover, #000);
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .cc-window.cc-pos-top-left, .cc-window.cc-pos-top-right, .cc-window.cc-pos-bottom-left, .cc-window.cc-pos-bottom-right, .cc-window.cc-pos-bottom-center, .cc-window.cc-pos-top-center {
    width: 100%;
    min-width: 100%;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  .cc-window.cc-pos-top-left, .cc-window.cc-pos-top-right, .cc-window.cc-pos-top-center {
    top: 0;
    --cc-window-margin-top: 0;
  }
  .cc-window.cc-pos-bottom-left, .cc-window.cc-pos-bottom-right, .cc-window.cc-pos-bottom-center {
    bottom: 0;
    --cc-window-margin-bottom: 0;
  }
  .cc-modal-window {
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 0;
  }
}
@keyframes cc-window-animation-in-top {
  0% {
    top: -80vh;
    visibility: visible;
  }
  to {
    top: var(--cc-window-margin-top, 24px);
    visibility: visible;
  }
}
@keyframes cc-window-animation-out-top {
  0% {
    top: var(--cc-window-margin-top, 24px);
  }
  to {
    top: -120vh;
  }
}
@keyframes cc-window-animation-in-bottom {
  0% {
    bottom: -80vh;
    visibility: visible;
  }
  to {
    bottom: var(--cc-window-margin-bottom, 24px);
    visibility: visible;
  }
}
@keyframes cc-window-animation-out-bottom {
  0% {
    bottom: var(--cc-window-margin-bottom, 24px);
  }
  to {
    bottom: -120vh;
  }
}
.cc-window.cc-animation-in.cc-pos-top, .cc-window.cc-animation-in.cc-pos-top-left, .cc-window.cc-animation-in.cc-pos-top-right, .cc-window.cc-animation-in.cc-pos-top-center {
  animation-name: cc-window-animation-in-top;
  visibility: hidden;
  animation-duration: var(--cc-animation-duration, 1s);
  animation-delay: var(--cc-animation-delay, 0.1s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.cc-window.cc-animation-out.cc-pos-top, .cc-window.cc-animation-out.cc-pos-top-left, .cc-window.cc-animation-out.cc-pos-top-right, .cc-window.cc-animation-out.cc-pos-top-center {
  animation-name: cc-window-animation-out-top;
  animation-duration: var(--cc-animation-duration, 1s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.cc-window.cc-animation-in.cc-pos-bottom, .cc-window.cc-animation-in.cc-pos-bottom-left, .cc-window.cc-animation-in.cc-pos-bottom-right, .cc-window.cc-animation-in.cc-pos-bottom-center {
  animation-name: cc-window-animation-in-bottom;
  visibility: hidden;
  animation-duration: var(--cc-animation-duration, 1s);
  animation-delay: var(--cc-animation-delay, 0.1s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.cc-window.cc-animation-out.cc-pos-bottom, .cc-window.cc-animation-out.cc-pos-bottom-left, .cc-window.cc-animation-out.cc-pos-bottom-right, .cc-window.cc-animation-out.cc-pos-bottom-center {
  animation-name: cc-window-animation-out-bottom;
  animation-duration: var(--cc-animation-duration, 1s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

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