.loader-manager {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  z-index: 100;
}
.o-notification-manager {
  position: fixed;
  top: var(--spacing-900);
  z-index: var(--zindex-toast);
  right: 60px;
}
@media screen and (max-width: 1280px) {
  .o-notification-manager {
    top: 180px;
  }
}
.o-notification-manager .list-close-btn,
.o-notification-manager .list-expand-btn {
  position: absolute;
  right: -45px;
  top: 0px;
}
.o-notification-manager .list-stack-btn {
  position: absolute;
  right: -45px;
  bottom: 0px;
}
.o-notification-manager__toast-list {
  position: absolute;
}
.o-notification-manager__toast-list .a-toast {
  position: absolute;
  will-change: transform, top;
  transition: top 0.4s;
  z-index: 100;
  right: 0px;
  top: 0px;
}
.o-notification-manager__toast-list .a-toast:not(:first-child) {
  z-index: 99;
}
.o-notification-manager__toast-list--expanded {
  display: flex;
  flex-direction: column;
}
.o-notification-manager__toast-list--expanded .notifications-enter-active,
.o-notification-manager__toast-list--expanded .notifications-leave-active {
  transition: transform 0.4s;
}
.o-notification-manager__toast-list--expanded .notifications-enter,
.o-notification-manager__toast-list--expanded .notifications-leave-to {
  transform: translateX(calc(290px + var(--spacing-900)));
}
.o-notification-manager__toast-list--stacked .a-toast__copy {
  max-height: 2.5em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.o-notification-manager__toast-list--stacked .a-toast:not(:first-child) {
  transform: translateX(5px) translateY(5px);
}
.o-notification-manager__toast-list--stacked .notifications-enter-active,
.o-notification-manager__toast-list--stacked .notifications-leave-active {
  transition: transform 0.4s;
}
.o-notification-manager__toast-list--stacked .notifications-enter,
.o-notification-manager__toast-list--stacked .notifications-leave-to {
  transform: translateX(calc(290px + var(--spacing-900)));
}
.policy {
  background-color: var(--color-gray-25);
  min-height: 100vh;
  min-width: 100vw;
}
.user-auth {
  height: 100%;
}
.user-auth .tab-list {
  display: flex;
  margin: 40px 0 30px;
}
.user-auth .tab-list__item {
  flex: 1 0 calc(50% - 20px);
}
.user-auth .tab-list__item + .tab-list__item {
  margin-left: 40px;
}
.user-auth .tab-panel {
  height: 100%;
}
.submit {
  display: grid;
  justify-content: flex-end;
}

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

.tertiary-actions {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 40px 0;
}

.external-login {
  margin-top: 40px;
}

.decorator__hr {
  flex: 1;
  border: 1px solid var(--color-gray-500);
  height: 0px;
}
.decorator__text {
  margin: 0px 20px;
}

.provider-button {
  margin-bottom: 20px;
  width: 400px;
  height: 48px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #d9dce5;
  border-radius: 5px;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
}
.cookie-bar {
  background: var(--color-gray-100);
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 15px;
  width: 100vw;
  z-index: 99999;
}

.slide-enter-active,
.slide-leave-active {
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  overflow: hidden;
}

.slide-enter,
.slide-leave-active {
  transform: translateY(calc(100% + 10px));
}
.auth-layout {
  min-width: 100vw;
  min-height: 100vh;
  background-size: cover;
  background-position: right;
}
.auth-layout .auth-section-container {
  min-height: 100vh;
}
.auth-layout .auth-section {
  min-height: 100%;
  max-height: 100vh;
  background-color: #f5f6fa;
  overflow-y: auto;
}
@media screen and (min-width: 769px) {
  .auth-layout .auth-section {
    background-color: rgba(245, 246, 250, 0.8);
    backdrop-filter: blur(20px);
  }
}
.auth-layout .auth-section .logo-wrapper {
  min-height: 120px;
}
.auth-layout .auth-section .auth-logo {
  width: 120px;
}
