:root {
  --editor-primary-color: #080808;

  --editor-secondary-color: #146EF5;
  --editor-secondary-hover-color: #0b50b7;

  --editor-inactive-color: #909FB5;

  --font-family-roboto: 'Roboto', 'Lato', sans-serif;
  --primary-color: #080808;
  --publuu-blue: #146EF5;
  --publuu-gray: #F2F2F2;
  --publuu-red: #b32929;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
  /* transition: opacity .25s ease-in-out, visibility .25s ease-in-out; */
  font-family: var(--font-family-roboto);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-content {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  width: 500px;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  gap: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  /* opacity: 0; */
  /* visibility: hidden; */
}

.modal-backdrop.fade-in {
  pointer-events: all;
}

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

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.fade-in {
  animation: fadeInBackdrop 0.3s ease-out forwards;
}

.fade-in .modal-content {
  animation: scaleInContent 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.fade-out {
  animation: fadeOutBackdrop 0.2s ease-in forwards;
}

.fade-out .modal-content {
  animation: scaleOutContent 0.2s ease-in forwards;
}

@keyframes fadeInBackdrop {
  from { opacity: 0; visibility: hidden; }
  to { opacity: 1; visibility: visible; }
}

@keyframes fadeOutBackdrop {
  from { opacity: 1; visibility: visible; }
  to { opacity: 0; visibility: hidden; }
}

@keyframes scaleInContent {
  from { 
    transform: scale(calc(var(--factor, 1) - 0.1));
    opacity: 0;
  }
  to { 
    transform: scale(var(--factor, 1));
    opacity: 1;
  }
}

@keyframes scaleOutContent {
  from { 
    transform: scale(var(--factor, 1));
    opacity: 1;
  }
  to { 
    transform: scale(calc(var(--factor, 1) - 0.05));
    opacity: 0;
  }
}

.tab-content-animate {
  animation: fadeInTab 0.3s ease-out forwards;
  opacity: 0; 
  min-height: 246px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none !important;
  outline: none !important;
}

.modal__close svg path {
  transition: .1s fill ease-in-out;
}

.modal__close:hover svg path {
  fill: #080808;
}





.modal-content.auth-modal-content {
  padding: 50px 60px 60px;
  gap: 10px;
  isolation: isolate;
  max-width: 470px;
  width: 100%;
  border-radius: 10px;
  position: relative;
}

.editor__modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.editor__modal__title {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: var(--editor-primary-color);
  margin-bottom: 0;
}

.editor__modal__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--editor-primary-color);
}

.editor__modal__controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  padding: 1px;
}

.main__form__providers {
  flex-direction: column;
}


.form__provider__btn {
  font-weight: 500;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 1.2;
  background-color: transparent;
  border: 1px solid var(--editor-primary-color);
  color: var(--editor-primary-color);
  border-radius: 50px;
  cursor: pointer;
  padding: 15px 30px;
  transition: background-color .1s ease-in-out, color .1s ease-in-out, border-color .1s ease-in-out, outline-color .1s ease-in-out;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.form__provider__btn:has(.loader) > * {
  transition: opacity .1s ease-in-out, visibility .1s ease-in-out;
}

.form__provider__btn .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .1s opacity ease-in-out, .1s visibility ease-in-out;
}

.form__provider__btn .icon img {
  width: 100%;
  height: 100%;
}

.form__provider__btn.loading .icon {
  opacity: 0;
  visibility: hidden;
}

.form__provider__btn .loader {
  height: 90%;
  left: 50%;
  max-height: 36px;
  max-width: 36px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  width: 90%;
  color: var(--editor-primary-color)
}

.form__provider__btn .loader {
  color: currentColor;
  pointer-events: none;
}

.form__provider__btn .loader circle {
  animation: spin 1s linear infinite;
  transform-origin: 50% 50%;
  stroke: currentColor;
}

.form__provider__btn.loading {
  background-color: #fff;
  cursor: default;
  pointer-events: none;
}

.form__provider__btn.loading .loader {
  opacity: 1;
  visibility: visible;
}

.form__provider__btn.loading>:not(.loader) {
  opacity: 0;
  visibility: hidden;
}

.form__provider__btn:not(.loading, :disabled):hover {
  background-color: #F3F7FE;
  border-color: var(--publuu-dark);
}

.form__provider__btn:disabled {
  cursor: not-allowed;
}





.editor__modal__views-wrapper {
  position: relative;
  overflow: hidden;
  transition: height .2s cubic-bezier(0.25, 1, 0.5, 1);
}

.editor__modal__views-wrapper.no-transition .editor__modal__view {
  transition: none !important;
}

.editor__modal__view {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  flex-direction: column;
  box-sizing: border-box;

  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  /* pointer-events: none; */
}

.editor__modal__view.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  /* pointer-events: auto; */
}









.main__form__wrapper {
  width: 100%;
}

.form__providers {
  margin-bottom: 0 !important;
  margin-top: 40px;
}

.main__form__wrapper .form--auth {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 1px;
}

.main__form__separator {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--editor-primary-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px 0;
}

.main__form__separator span {
  padding: 20px 12px;
  background-color: #fff;
  display: block;
  z-index: 1;
}

.main__form__separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #B3C0D3;
}

.main__form__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--editor-primary-color);
  font-family: var(--font-family-roboto);
  max-width: 280px;
  margin: 0 auto;
  margin-top: 20px;
}

.form--register + .main__form__footer {
  margin-top: 30px;
}

.main__form__footer a {
  color: var(--editor-secondary-color);
}

.main__form__footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.main__form__footer a:visited {
  color: var(--editor-secondary-color);
}

.modal--auth .form__btn {
  width: auto;
}











.grecaptcha-badge { 
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form__group {
  display: grid;
  grid-template-columns: 1fr;
}

.form__group--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form__control {
  position: relative;
}

.form__control__content {
  position: relative;
}

.form__control[disabled] {
  user-select: none;
  pointer-events: none;
  cursor: default;
  background-color: var(--publuu-gray);
  color: #a5a5a5;
}

.form__control__placeholder {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  font-family: var(--font-family-roboto);
  user-select: none;
  pointer-events: none;
  display: none;
  color: #8593A9;
  transition: .1s color ease-in-out;
}

.form__control__placeholder span {
  display: none !important;
}

.symbol--required {
  color: var(--editor-secondary-color);
}

.form__control :is(input, textarea) {
  width: 100%;
  padding: 9px 18px;
  border: 1px solid #B3C0D3;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--editor-primary-color);
  font-family: var(--font-family-roboto);
  resize: none;
  outline: 1px solid transparent;
  transition: .1s border-color ease-in-out, .1s outline ease-in-out;
}

.form__control :is(input, textarea).invalid + .form__control__placeholder {
  color: var(--publuu-red);
}

.form__control textarea + .form__control__placeholder {
  top: 10px;
  transform: none;
}

.form__control :is(input, textarea):focus {
  border-color: var(--editor-secondary-color);
  outline-color: var(--editor-secondary-color);
}

.form__control :is(input, textarea):disabled {
  background-color: var(--publuu-gray);
  color: #a5a5a5;
}

.form__control :is(input, textarea).invalid {
  outline-color: var(--publuu-red);
}

.form__control :is(input, textarea).invalid:focus {
  border-color: var(--publuu-red);
  outline-color: var(--publuu-red);
}

.form__control[disabled] :is(input, textarea) {
  background-color: var(--publuu-gray);
  color: #a5a5a5;
}

.form__control[disabled] :is(input, textarea) + .form__control__placeholder {
  color: #a5a5a5;
}

.form__control[disabled] :is(input, textarea)::placeholder {
  color: #a5a5a5;
}

/* .form__control :is(input, textarea):invalid {
  border-color: var(--publuu-red);
  outline-color: var(--publuu-red);
} */

.form__control :is(input, textarea):not(.with-placeholder)::placeholder {
  opacity: 0;
  visibility: hidden;
}

.form__control:has(:is(input, textarea):placeholder-shown) .form__control__placeholder {
  display: block;
}

.contact__form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form__btn {
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
}

:is(.form--register, .form--login) .form__btn {
  width: 100%;
  padding: 15px 20px;
}

.form__control__checkbox__label {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}

.form__control__checkbox__label[disabled] {
  pointer-events: none;
  cursor: default;
}

.form__control__checkbox__label input[type="checkbox"] {
  opacity: 0;
  /* visibility: hidden; */
  position: absolute;
  z-index: -1;
}

.form.disabled .form__control__checkbox__label .form__control__checkbox__text {
  color: #a5a5a5;
}

.form__control__checkbox__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--editor-primary-color);
  user-select: none;
}

.form__control__checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #B3C0D3;
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.form__control__checkbox__label input[type="checkbox"].invalid + .form__control__checkbox {
  border-color: var(--publuu-red);
}

.form__control__checkbox__label:has(input[type="checkbox"].invalid) .form__control__checkbox__text {
  color: var(--publuu-red);
}

.form__control__checkbox::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  width: 10px;
  height: 10px;
  background: var(--publuu-light-blue);
  border-radius: 1px;
  opacity: 0;
  visibility: hidden;
  transition: .1s opacity ease-in-out, .1s visibility ease-in-out, .1s transform ease-in-out, .1s background ease-in-out;
}

.form__control__checkbox__label input[type="checkbox"]:checked + .form__control__checkbox::before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  background: var(--editor-secondary-color);
}

.form__control__checkbox__label:has(input[type="checkbox"]:not(:checked)):hover .form__control__checkbox::before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  background: var(--publuu-light-blue);
}

.form__combobox__toggle {
  position: relative;
  cursor: pointer;
}

.form__combobox__toggle:hover input {
  background-color: var(--publuu-light-blue);
}

.form__combobox.active .form__combobox__toggle input {
  background-color: var(--publuu-light-blue);
}

.form__combobox.active .form__combobox__toggle__icon {
  transform: translateY(-50%) rotate(180deg);
}

.form__combobox__toggle__icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transform-origin: 50% 50%;
  transition: .15s transform ease-in-out, .1s opacity ease-in-out;
}

.form__combobox[disabled] .form__combobox__toggle__icon {
  opacity: .5;
}

input.form__combobox__toggle__input {
  user-select: none !important;
  pointer-events: none;
  transition: .1s background-color ease-in-out;
}

input.form__combobox__toggle__input:focus {
  outline-color: transparent;
  border-color: #C0C0C0;
}

.form__combobox__dropdown {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  z-index: 3;
  border: 1px solid #C0C0C0;
  border-radius: 5px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--editor-primary-color);
  font-family: var(--font-family-roboto);
  opacity: 0;
  visibility: hidden;
  transform: scale(.95);
  transform-origin: 50% 0;
  transition: .1s opacity ease-in-out, .1s visibility ease-in-out, .1s transform ease-in-out;
}

.form__combobox.active .form__combobox__dropdown {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.form__combobox__search {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #C0C0C0;
  padding: 0 12px;
}

.form__combobox__search__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

input.form__combobox__search__input {
  border: none;
  outline: none;
  padding-left: 0;
}

.form__combobox__list {
  overflow: auto;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.form__combobox__item {
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  background-color: transparent;
  transition: .1s background-color ease-in-out;
  position: relative;
}

.form__combobox__item * {
  pointer-events: none;
}

.form__combobox__item::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) scale(.95);
  width: 14px;
  height: 14px;
  /* background-image: url(/assets/icons/check--blue.svg); */
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  transition: .05s opacity ease-in-out, .05s visibility ease-in-out, .05s transform ease-in-out;
}

.form__combobox__item:is(:hover, [selected]) {
  background-color: var(--publuu-light-blue);
}

.form__combobox__item[selected]::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.form__control__error {
  font-size: 14px;
  font-weight: 500;
  color: var(--publuu-red);
  text-align-last: left;
}

.form__control__error .text-danger {
  margin-top: 5px;
  display: block;
  color: var(--publuu-red) !important;
}

.form__error {
  text-align: center;
}

.form__error .text-danger {
  margin-top: 20px;
}

.form__message {
  font-size: 14px;
  font-weight: 500;
  color: var(--editor-primary-color);
  text-align: center;
  text-transform: capitalize;
}

.form__message.form__message--success {
  color: var(--publuu-green);
}

.form__message.form__message--error {
  color: var(--publuu-red);
}

.form__message span {
  margin-top: 10px;
  display: block;
}

.form:has(.form__message span) .form__btn {
  margin-top: 10px;
}

.form__combobox__item__message {
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.form__separator {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--editor-primary-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px 0;
}

.form__separator span {
  padding: 20px 12px;
  background-color: #fff;
  display: block;
  z-index: 1;
}

.form__separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  transform: translateY(-50%);
  width: 90%;
  height: 1px;
  background-color: #C0C0C0;
}

.form__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--editor-primary-color);
  max-width: 280px;
  margin: 20px auto 0;
}

.form__footer a {
  color: var(--editor-secondary-color);
}

.form__footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form__providers {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  width: 100%;
}

.form__provider__btn {
  width: 100%;
  position: relative;
  font-weight: 500;
  border-color: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-block: 8px;
}

.form__provider__btn .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .1s opacity ease-in-out, .1s visibility ease-in-out;
}

.form__provider__btn .icon img {
  width: 100%;
  height: 100%;
}

.form__provider__btn.loading .icon {
  opacity: 0;
  visibility: hidden;
}

.form__provider__btn .loader {
  color: var(--editor-primary-color);
}

.form__provider__btn:not(:disabled):hover {
  background-color: #F3F7FE;
  border-color: var(--publuu-dark);
}

.form__switch__label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form__switch__label input {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: absolute;
}

.form__switch__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--editor-primary-color);
  user-select: none;
}

.form__switch__toggle {
  background: var(--editor-primary-color);
  width: 42px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 30px;
  padding: 4px;
  transition: .15s background ease-in-out;
  position: relative;
}

.form__switch__toggle__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.form__switch__toggle__inner div {
  position: absolute;
  background-color: #fff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: .1s left ease-in-out;
  left: 0;
}

.form__switch__label input:checked + .form__switch__toggle {
  background-color: var(--editor-secondary-color);
}

.form__switch__label input:checked + .form__switch__toggle .form__switch__toggle__inner div {
  left: calc(100% - 12px);
}

.form__switch__label:has(input:disabled) {
  cursor: not-allowed;
  opacity: .5;
}

.form__switch__label:has(input:disabled) .form__switch__toggle {
  pointer-events: none;
}

.form__control__radio {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__control__radio label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.form__control__radio input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.form__control__radio__toggle__wrapper {
  width: 16px;
  height: 16px;
}

.form__control__radio__toggle {
  display: flex;
  align-items: center;
  border: 2px solid #B3C0D3;
  width: 100%;
  padding: 2px;
  border-radius: 10px;
  transition: .1s border-color ease;
  height: 100%;
  justify-content: center;
}

.form__control__radio__toggle div {
  border-radius: 50%;
  transition: .1s transform ease, .1s background-color ease;
  width: 8px;
  height: 8px;
  background-color: transparent;
}

.form__control__radio label:has(input:disabled) .form__control__radio__toggle {
  border-color: #B3C0D3 !important;
}

.form__control__radio label:has(input:disabled:checked) .form__control__radio__toggle div {
  background-color: #B3C0D3 !important;
}

.form__control__radio input:checked + .form__control__radio__toggle__wrapper .form__control__radio__toggle {
  border-color: var(--editor-secondary-color);
}

.form__control__radio input:checked + .form__control__radio__toggle__wrapper .form__control__radio__toggle div {
  background-color: var(--editor-secondary-color);
}

.form__control__radio span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--editor-primary-color);
  transition: .1s color ease;
}

.form__control__radio input:checked ~ span {
  font-weight: 500;
}

.form__control__radio label:has(input:disabled) {
  color: #B3C0D3;
  cursor: default;
}

.form__control__radio label:has(input:disabled) span {
  color: #B3C0D3;
}

.form__control__radio label:has(input:disabled) .form__control__radio__toggle {
  border-color: #B3C0D3 !important;
}

.form__control__radio label:has(input:disabled:checked) .form__control__radio__toggle div {
  background-color: #B3C0D3 !important;
}

@media (max-width: 480px) {
  .modal-content.auth-modal-content {
    padding: 40px 20px;
  }
}

.form__btn {
  margin: 0;
  font-family: var(--font-family-roboto);
  outline: none;
  border: 2px solid var(--editor-primary-color);
  border-radius: 50px;
  cursor: pointer;
  transition: .15s background-color ease-in-out, .15s color ease-in-out, .15s border-color ease-in-out, .15s outline-color ease-in-out;
  color: #fff;
  position: relative;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  width: 100%;
  padding: 15px 20px;
  border-color: var(--editor-secondary-color);
  background-color: var(--editor-secondary-color);
}

.form__btn:not(:disabled, .loading):hover {
  border-color: var(--editor-secondary-hover-color);
  background-color: var(--editor-secondary-hover-color);
  color: #fff;
}

.btn--with-loader.loading {
  pointer-events: none !important;
  cursor: default;
  background-color: #fff;
}

.btn--with-loader.loading > :not(.loader) {
  opacity: 0;
  visibility: hidden;
}

.btn--with-loader.loading .loader {
  opacity: 1;
  visibility: visible;
}

.btn--with-loader * {
  transition: .1s opacity ease-in-out, .1s visibility ease-in-out;
}

.btn--with-loader .loader {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--editor-secondary-color);
  flex-shrink: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 36px;
  max-height: 36px;
  width: 90%;
  height: 90%;
  opacity: 0;
  visibility: hidden;
  transition: .1s opacity ease-in-out, .1s visibility ease-in-out;
}

.form__provider__btn.btn--with-loader .loader {
  color: var(--editor-primary-color);
}

.btn--with-loader .loader svg {
  color: currentColor;
  pointer-events: none;
}

.btn--with-loader .loader svg circle {
  transform-origin: 50% 50%;
  animation: 1s spin infinite linear;
  stroke: currentColor;
}
