@font-face {
  font-family: "Space Grotesk";
  src: url(../assets/fonts/SpaceGrotesk.woff2) format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url(../assets/fonts/Inter.woff2) format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --wpjpf-primaryColor: #8e54e9;
  --wpjpf-light: #fff;
  --wpjpf-mediumDark: #252436;
  --wpjpf-dark: #000000;
  --wpjpf-loaders: #fff;
  --wpjpf-gray: #adb5bd;
  --wpjpf-gutter: 2vw;
  --wpjpf-primary-font: "Inter", sans-serif;
  --wpjpf-secondary-font: "Space Grotesk", serif;

  --wpjpf-success-color-bg: #d4edda;
  --wpjpf-success-color-border: #c3e6cb;
  --wpjpf-success-color-text: #155724;

  --wpjpf-danger-color-bg: #f8d7da;
  --wpjpf-danger-color-border: #f5c6cb;
  --wpjpf-danger-color-text: #721c24;
}

/****************************** Reset ******************************/

.toplevel_page_wpjpf-options #wpcontent {
  padding-left: 0;
}

/****************************** Free elements ******************************/

.wpjpf-topbar {
  background-color: var(--wpjpf-primaryColor);
  color: var(--wpjpf-light);
  display: flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
  position: sticky;
  top: 32px;
  z-index: 100;
}

#wpjpf-loading-mask {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 9999;
}

#wpjpf-toast {
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 15px 25px;
  z-index: 9999;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: #fff;
}

#wpjpf-toast span {
  display: none;
}

.wpjpf-toast--success {
  background-color: #4caf50;
}

.wpjpf-toast--error {
  background-color: #f44336;
}

#wpjpf-toast.active {
  animation: toastAppear 3s ease-out forwards;
}

@keyframes toastAppear {
  0% {
    opacity: 0;
    top: 0;
  }
  10% {
    opacity: 1;
    top: 5vh;
  }
  90% {
    opacity: 1;
    top: 5vh;
  }
  100% {
    opacity: 0;
    top: 0;
  }
}

.wpjpf-premium-features {
  background-color: var(--wpjpf-dark);
  border-radius: 20px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: var(--wpjpf-gutter);
  align-items: center;
  color: var(--wpjpf-light);
}

.wpjpf-premium-features__title {
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.wpjpf-premium-features__content {
  display: flex;
  justify-content: center;
  gap: 2vw;
  width: 100%;
}

.wpjpf-premium-features__content__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px dashed var(--wpjpf-primaryColor);
  border-radius: 20px;
  padding: 20px 40px;
  max-width: 600px;
  box-sizing: border-box;
}

.wpjpf-premium-features__content__item li {
  font-family: var(--wpjpf-secondary-font);
  font-size: 18px;
  margin-bottom: 15px;
}

.wpjpf-premium-features__content__item img {
  width: 50px;
  height: 50px;
}

.wpjpf-premium-features__content__item p {
  font-size: 30px;
  font-family: var(--wpjpf-secondary-font);
  color: var(--wpjpf-primaryColor);
  font-weight: 700;
}

.wpjpf-premium-features__content__item ul {
  list-style-image: url(../assets/images/check.svg);
  color: var(--wpjpf-light);
}

/****************************** Settings ******************************/

#wpjpf-settings p {
  margin: 0;
}

#wpjpf-settings {
  font-family: var(--wpjpf-primary-font);
  font-size: 16px;
  padding: var(--wpjpf-gutter);
}

.wpjpf-settings-premium-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--wpjpf-light);
  background-color: var(--wpjpf-gray);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
}

.wpjpf-settings-premium-label img {
  filter: brightness(0) invert(1);
}

.wpjpf-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--wpjpf-light);
  border-radius: 16px;
  padding: 16px 40px;
  margin-bottom: 10px;
}

.wpjpf-settings-header__title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wpjpf-settings-header__title img {
  max-width: 200px;
}

.wpjpf-settings-header__title span {
  font-size: 14px;
  font-weight: 400;
  color: var(--wpjpf-dark);
  border: 1px dashed var(--wpjpf-primaryColor);
  padding: 6px 12px;
  border-radius: 10px;
}

.wpjpf-settings-header__links {
  display: flex;
  gap: 5px;
  font-size: 14px;
}

.wpjpf-settings-header__links li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.wpjpf-settings-header__links a {
  color: var(--wpjpf-dark);
  text-decoration: none;
}

.wpjpf-settings-header__links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wpjpf-settings-main {
  position: relative;
  display: flex;
  gap: var(--wpjpf-gutter);
  margin-bottom: 10px;
}

/****************************** Licence ******************************/

#wpjpf-licence {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: var(--wpjpf-light);
  border-radius: 16px;
  padding: 16px 40px;
  margin-bottom: var(--wpjpf-gutter);
}

.wpjpf-activation-status {
  border-radius: 16px;
  padding: 5px 15px;
  border: 1px solid transparent;
}

.wpjpf-activation-status--active {
  color: var(--wpjpf-success-color-text);
  background-color: var(--wpjpf-success-color-bg);
  border-color: var(--wpjpf-success-color-border);
}

.wpjpf-activation-status--inactive {
  color: var(--wpjpf-danger-color-text);
  background-color: var(--wpjpf-danger-color-bg);
  border-color: var(--wpjpf-danger-color-border);
}

#wpjpf-activate-licence-btn,
#wpjpf-deactivate-licence-btn {
  font-family: var(--wpjpf-secondary-font);
  padding: 5px 15px;
  text-wrap: nowrap;
  border-radius: 16px;
  cursor: pointer;
  border: 1px solid var(--wpjpf-primaryColor);
  background: transparent;
}

#wpjpf-activate-licence-btn:hover,
#wpjpf-deactivate-licence-btn:hover {
  background: var(--wpjpf-primaryColor);
  color: var(--wpjpf-light);
}

/****************************** Menu ******************************/

.wpjpf-settings__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--wpjpf-dark);
  font-size: 16px;
  color: var(--wpjpf-light);
  border-radius: 20px;
  margin: 0;
  padding: var(--wpjpf-gutter);
  height: fit-content;
  width: 300px;
  margin-bottom: var(--wpjpf-gutter);
  position: sticky;
  top: 50px;
}

.wpjpf-settings__menu li {
  font-family: var(--wpjpf-secondary-font);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  padding: 15px;
  border-radius: 20px;
}

.wpjpf-settings__menu li img {
  width: 20px;
  aspect-ratio: 1 / 1;
}

.wpjpf-settings__menu li:hover {
  background-color: var(--wpjpf-mediumDark);
}

.wpjpf-settings__menu li.active {
  background-color: var(--wpjpf-mediumDark);
}

/****************************** Form content ******************************/

.wpjpf-settings__content {
  flex-grow: 1;
  width: 100%;
}

.wpjpf-settings__menu-content {
  display: none;
  flex-direction: column;
  gap: var(--wpjpf-gutter);
  background-color: var(--wpjpf-light);
  border-radius: 20px;
  padding: var(--wpjpf-gutter);
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.wpjpf-settings__menu-content.active {
  display: flex;
  position: relative;
  opacity: 1;
  visibility: visible;
}

.wpjpf-settings__menu-content__title {
  font-family: var(--wpjpf-secondary-font);
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 25px;
  font-weight: 900;
  border-bottom: 1px dashed var(--wpjpf-primaryColor);
  padding-bottom: calc(var(--wpjpf-gutter) / 2);
}

.wpjpf-settings__menu-content__tip {
  border: 1px dashed var(--wpjpf-primaryColor);
  border-radius: 20px;
  padding: 10px;
  width: fit-content;
  font-size: 12px;
  background-color: #f7eefe;
  color: var(--wpjpf-dark);
  height: fit-content;
}

.wpjpf-settings__menu-content__tip a {
  color: var(--wpjpf-primaryColor);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.wpjpf-settings__menu-content__tip a:hover {
  color: var(--wpjpf-dark);
}

.wpjpf-settings__activate {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.wpjpf-settings__activate input {
  opacity: 0;
  width: 0;
  height: 0;
}

.wpjpf-settings__activate__toggle {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--wpjpf-light);
  transition: 0.3s ease;
  border: 1px solid var(--wpjpf-dark);
  border-radius: 13px;
}

.wpjpf-settings__activate__toggle:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 2px;
  top: 2px;
  bottom: 2px;
  background-color: var(--wpjpf-dark);
  transition: 0.3s ease;
  border-radius: 50%;
}

.wpjpf-settings__activate input:checked + .wpjpf-settings__activate__toggle {
  background-color: var(--wpjpf-primaryColor);
}

.wpjpf-settings__activate
  input:checked
  + .wpjpf-settings__activate__toggle:before {
  transform: translateX(25px);
}

.wpjpf-settings__menu-content__more {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--wpjpf-primaryColor);
  border-radius: 16px;
  cursor: pointer;
  width: 250px;
  padding: 16px 10px;
  color: var(--wpjpf-dark);
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}

.wpjpf-settings__menu-content__more:hover {
  background-color: var(--wpjpf-dark);
  color: var(--wpjpf-light);
  border: 2px solid var(--wpjpf-dark);
}

.wpjpf-settings__menu-content__option {
  display: flex;
  gap: 25px;
}

.wpjpf-settings__menu-content__label {
  width: 25%;
  max-width: 200px;
  height: fit-content;
}

.wpjpf-settings__menu-content__option input[type="text"],
.wpjpf-settings__menu-content__option__input,
.wpjpf-settings__menu-content__text {
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.wpjpf-settings__menu-content__option input[type="checkbox"] {
  margin: 0;
  border: 1px solid var(--wpjpf-primaryColor);
}

.wpjpf-settings__menu-content__option input[type="checkbox"]:checked {
  background-color: var(--wpjpf-primaryColor);
}

.wpjpf-settings__menu-content__option input[type="checkbox"]:checked::before {
  filter: invert(1) brightness(100);
}

.wpjpf-settings__menu-content__option input[type="range"] {
  cursor: pointer;
  accent-color: var(--wpjpf-primaryColor);
}

.wpjpf-settings__menu-content__option input:not([type="range"]):focus {
  border-color: var(--wpjpf-primaryColor);
  box-shadow: 0 0 0 1px var(--wpjpf-primaryColor);
}

.wpjpf-settings__menu-content__option__input select {
  border-color: var(--wpjpf-primaryColor);
}

.wpjpf-settings__menu-content__option input[type="radio"] {
  border-color: var(--wpjpf-primaryColor);
}

.wpjpf-settings__menu-content__option input[type="radio"]:checked::before {
  background-color: var(--wpjpf-primaryColor);
}

.wpjpf-settings__submit-btn,
#wpjpf-settings input.button.wpjpf-settings__submit-btn {
  font-family: var(--wpjpf-secondary-font);
  font-size: 18px;
  font-weight: 700;
  width: fit-content;
  background-color: var(--wpjpf-primaryColor);
  border: 1px solid var(--wpjpf-primaryColor);
  border-radius: 20px;
  color: var(--wpjpf-light) !important;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none !important;
  box-shadow: none;
  line-height: 1;
}

.wpjpf-settings__submit-btn:hover,
#wpjpf-settings input.button.wpjpf-settings__submit-btn:hover {
  background-color: var(--wpjpf-light);
  color: var(--wpjpf-dark) !important;
}

.wpjpf-settings__submit-btn--secondary {
  background-color: var(--wpjpf-dark);
  color: var(--wpjpf-light);
}

.wpjpf-settings__submit-btn--secondary:hover {
  background-color: var(--wpjpf-light);
  color: var(--wpjpf-dark);
}

#wpjpf-settings .wpjpf-settings__menu input.button.wpjpf-settings__submit-btn {
  width: 100%;
  margin: 25px 0 5px;
}

.wpjpf-settings__menu-content__colors-wrapper {
  flex: 3;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.wpjpf-settings__menu-content__colors-wrapper input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.wpjpf-settings__menu-content__colors-wrapper input[type="radio"] + label {
  position: relative;
  border: 1px solid var(--wpjpf-dark);
  background-color: var(--bullet-color);
  width: 35px;
  height: 35px;
  border-radius: 5px;
}

.wpjpf-settings__menu-content__colors-wrapper
  input[type="radio"]
  + label:hover {
  border-color: var(--wpjpf-primaryColor);
}

.wpjpf-settings__menu-content__colors-wrapper
  input[type="radio"]:checked
  + label::after {
  content: url(../assets/images/check.svg);
  position: absolute;
  right: -10px;
  top: -10px;
  padding: 5px;
  background-color: var(--wpjpf-primaryColor);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpjpf-settings__menu-content__colors-wrapper input[type="color"] {
  width: 37px;
  height: 37px;
  border-radius: 5px;
  flex: unset;
  cursor: pointer;
}

/****************************** Transitions wrapper ******************************/

.wpjpf-settings__menu-content__transitions-wrapper {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.wpjpf-settings__menu-content__transitions-wrapper input[type="radio"] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.wpjpf-settings__menu-content__transitions-wrapper
  .wpjpf-settings__menu-content__tip {
  width: 100%;
}

.wpjpf-settings__menu-content__transitions-wrapper input[type="radio"] + label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--wpjpf-gray);
  border-radius: 16px;
  cursor: pointer;
  width: 250px;
  padding: 16px 10px;
  color: var(--wpjpf-dark);
  font-size: 16px;
  text-align: center;
  font-weight: 700;
}

.wpjpf-settings__menu-content__transitions-wrapper
  input[type="radio"]
  + label:hover {
  border-color: var(--wpjpf-primaryColor);
}

.wpjpf-settings__menu-content__transitions-wrapper div a {
  border: 1px solid var(--wpjpf-primaryColor);
  padding: 5px 10px;
  font-size: 14px;
  text-decoration: none;
  color: var(--wpjpf-dark);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wpjpf-settings__menu-content__transitions-wrapper
  input[type="radio"]:checked
  + label {
  border-color: var(--wpjpf-primaryColor);
  background-color: var(--wpjpf-primaryColor);
  color: var(--wpjpf-light);
}

.wpjpf-settings__menu-content__transitions-wrapper
  input[type="radio"]:checked
  + label::after {
  content: url(../assets/images/check.svg);
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: var(--wpjpf-primaryColor);
  padding: 10px;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 3px solid #fff;
}

/****************************** Laoders wrapper ******************************/

.wpjpf-settings__menu-content__loaders-wrapper {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}

.wpjpf-settings__menu-content__loaders-wrapper
  .wpjpf-settings__menu-content__more {
  aspect-ratio: 16 / 9;
  width: calc(33% - 2vw);
}

.wpjpf-settings__menu-content__loaders-wrapper input[type="radio"] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.wpjpf-settings__menu-content__loaders-wrapper input[type="radio"] + label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid transparent;
  background-color: var(--wpjpf-dark);
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  width: calc(33% - 2vw);
}

.wpjpf-settings__menu-content__loaders-wrapper
  input[type="radio"]
  + label::before {
  content: attr(data-name);
  position: absolute;
  right: 5px;
  top: 5px;
  color: var(--wpjpf-light);
  background-color: #000;
  border-radius: 16px;
  padding: 5px 10px;
  font-size: 12px;
  z-index: 2;
}

.wpjpf-settings__menu-content__loaders-wrapper
  input[type="radio"]:checked
  + label {
  border-color: var(--wpjpf-primaryColor);
  --wpjpf-loaders: #8e54e9;
}

.wpjpf-settings__menu-content__loaders-wrapper
  input[type="radio"]:checked
  + label::before {
  background-color: var(--wpjpf-primaryColor);
}

.wpjpf-settings__menu-content__loaders-wrapper
  input[type="radio"]:checked
  + label::after {
  content: url(../assets/images/check.svg);
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: var(--wpjpf-primaryColor);
  padding: 10px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.wpjpf-settings__menu-content__loaders-wrapper .premium-label {
  position: absolute;
  right: 5px;
  bottom: 5px;
}

.wpjpf-settings__menu-content__loaders-wrapper
  input[type="radio"]:disabled
  + label {
  border-color: var(--wpjpf-gray);
  cursor: not-allowed;
}

.wpjpf-settings__menu-content__loaders-wrapper
  input[type="radio"]:disabled
  + label::before {
  background-color: var(--wpjpf-gray);
  cursor: not-allowed;
}

.wpjpf-settings__logo-wrapper {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: var(--wpjpf-gutter);
}

.wpjpf-settings__logo-wrapper label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wpjpf-gray);
  border-radius: 16px;
  aspect-ratio: 1/1;
  max-width: 185px;
  width: 100%;
  background-color: #ddd;
}

.wpjpf-settings__logo-wrapper label img:not(.wpjpf__custom__logo--icon) {
  width: 100%;
  height: auto;
}

.wpjpf__custom__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.wpjpf__custom__logo--remove {
  color: var(--wpjpf-primaryColor);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.wpjpf__custom__logo--remove:hover {
  text-decoration: underline;
  color: var(--wpjpf-dark);
}

.wpjpf-settings__premium {
  color: var(--wpjpf-light);
  background-color: var(--wpjpf-primaryColor);
  border-radius: 3px;
  padding: 15px var(--wpjpf-gutter);
  height: fit-content;
}

.wpjpf-settings__premium p {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.wpjpf-settings__premium a.purchase-link {
  background-color: var(--wpjpf-light);
  border: 2px solid var(--wpjpf-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  border-radius: 5px;
  color: var(--wpjpf-dark);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.wpjpf-settings__premium a.purchase-link img {
  width: 25px;
  filter: invert(1);
}

.wpjpf-settings__premium a.purchase-link:hover {
  background-color: transparent;
  color: var(--wpjpf-light);
}

.wpjpf-settings__premium a.purchase-link:hover img {
  filter: invert(0);
}

/****************************** Loaders ******************************/

.spinner-basic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 10px solid var(--wpjpf-loaders);
}

label:hover .spinner-basic {
  animation: SpinnerBasic 1s infinite linear alternate,
    SpinnerBasic2 2s infinite linear;
}

@keyframes SpinnerBasic {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }

  12.5% {
    clip-path: polygon(
      50% 50%,
      0 0,
      50% 0%,
      100% 0%,
      100% 0%,
      100% 0%,
      100% 0%
    );
  }

  25% {
    clip-path: polygon(
      50% 50%,
      0 0,
      50% 0%,
      100% 0%,
      100% 100%,
      100% 100%,
      100% 100%
    );
  }

  50% {
    clip-path: polygon(
      50% 50%,
      0 0,
      50% 0%,
      100% 0%,
      100% 100%,
      50% 100%,
      0% 100%
    );
  }

  62.5% {
    clip-path: polygon(
      50% 50%,
      100% 0,
      100% 0%,
      100% 0%,
      100% 100%,
      50% 100%,
      0% 100%
    );
  }

  75% {
    clip-path: polygon(
      50% 50%,
      100% 100%,
      100% 100%,
      100% 100%,
      100% 100%,
      50% 100%,
      0% 100%
    );
  }

  100% {
    clip-path: polygon(
      50% 50%,
      50% 100%,
      50% 100%,
      50% 100%,
      50% 100%,
      50% 100%,
      0% 100%
    );
  }
}

@keyframes SpinnerBasic2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }

  49.99% {
    transform: scaleY(1) rotate(135deg);
  }

  50% {
    transform: scaleY(-1) rotate(0deg);
  }

  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}

.spinner-2 {
  width: 56px;
  height: 56px;
  position: relative;
  backface-visibility: hidden;
}

.spinner-2 span {
  left: 22px;
  top: 0px;
  position: absolute;
  background: var(--wpjpf-loaders);
  width: 6px;
  height: 12px;
  border-radius: 6px / 12px;
  transform-origin: 3px 28px;
  box-sizing: border-box;
}

label:hover .spinner-2 span {
  animation: Spinner2 linear 1s infinite;
}

label .spinner-2 span:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -0.9166666666666666s;
}
label .spinner-2 span:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -0.8333333333333334s;
}
label .spinner-2 span:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.75s;
}
label .spinner-2 span:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.6666666666666666s;
}
label .spinner-2 span:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.5833333333333334s;
}
label .spinner-2 span:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.5s;
}
label .spinner-2 span:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.4166666666666667s;
}
label .spinner-2 span:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.3333333333333333s;
}
label .spinner-2 span:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.25s;
}
label .spinner-2 span:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.16666666666666666s;
}
label .spinner-2 span:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.08333333333333333s;
}
label .spinner-2 span:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes Spinner2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.spinner-3 {
  position: relative;
  width: 15px;
  height: 15px;
}

.spinner-3 span {
  background-color: var(--wpjpf-loaders);
  border-radius: 50%;
  height: 100%;
  position: absolute;
  width: 100%;
}

label:hover .spinner-3 span {
  animation: Spinner3 2s infinite backwards;
}

label:hover .spinner-3 span:nth-child(1) {
  animation-delay: 0.15s;
}
label:hover .spinner-3 span:nth-child(2) {
  animation-delay: 0.3s;
}
label:hover .spinner-3 span:nth-child(3) {
  animation-delay: 0.45s;
}
label:hover .spinner-3 span:nth-child(4) {
  animation-delay: 0.6s;
}
label:hover .spinner-3 span:nth-child(5) {
  animation-delay: 0.75s;
}

.spinner-3 span:nth-child(1) {
  background-color: color-mix(in srgb, var(--wpjpf-loaders) 90%, transparent);
}

.spinner-3 span:nth-child(2) {
  background-color: color-mix(in srgb, var(--wpjpf-loaders) 80%, transparent);
}

.spinner-3 span:nth-child(3) {
  background-color: color-mix(in srgb, var(--wpjpf-loaders) 70%, transparent);
}

.spinner-3 span:nth-child(4) {
  background-color: color-mix(in srgb, var(--wpjpf-loaders) 60%, transparent);
}

.spinner-3 span:nth-child(5) {
  background-color: color-mix(in srgb, var(--wpjpf-loaders) 50%, transparent);
}

@keyframes Spinner3 {
  0% {
    transform: rotate(0deg) translateY(-200%);
  }

  60%,
  100% {
    transform: rotate(360deg) translateY(-200%);
  }
}

.spinner-4 {
  width: 56px;
  height: 56px;
  display: grid;
  border: 5px solid transparent;
  border-radius: 50%;
  border-color: color-mix(in srgb, var(--wpjpf-loaders) 20%, transparent)
    transparent;
}

label:hover .spinner-4 {
  animation: Spinner4 1s infinite linear;
}

.spinner-4::before,
.spinner-4::after {
  content: "";
  grid-area: 1/1;
  margin: 2.2px;
  border: inherit;
  border-radius: 50%;
}

.spinner-4::before {
  border-color: var(--wpjpf-loaders) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.spinner-4::after {
  margin: 9px;
}

@keyframes Spinner4 {
  100% {
    transform: rotate(1turn);
  }
}

.dots-basic {
  width: 56px;
  height: 13.4px;
  background: radial-gradient(
      circle closest-side,
      var(--wpjpf-loaders) 90%,
      #0000
    )
    0 0/33% 100% space;
  clip-path: inset(0 -34% 0 0);
}

label:hover .dots-basic {
  animation: DotsBasic 1s steps(4) infinite;
}

@keyframes DotsBasic {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 -34% 0 0);
  }
}

.dots-2 {
  position: relative;
  width: 56px;
  height: 56px;
  display: inline-block;
  overflow: hidden;
  background: none;
}

.dots-2::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--wpjpf-loaders);
  left: 21px;
  top: 21px;
}

label:hover .dots-2::after {
  animation: Dots2 1s linear infinite;
}

@keyframes Dots2 {
  0%,
  100% {
    animation-timing-function: cubic-bezier(0.45, 0, 0.9, 0.55);
  }
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 21px);
    animation-timing-function: cubic-bezier(0, 0.45, 0.55, 0.9);
  }
  100% {
    transform: translate(0, 0);
  }
}

.dots-3 {
  width: 56px;
  height: 26.9px;
  background: radial-gradient(
        circle closest-side,
        var(--wpjpf-loaders) 90%,
        #0000
      )
      0% 50%,
    radial-gradient(circle closest-side, var(--wpjpf-loaders) 90%, #0000) 50%
      50%,
    radial-gradient(circle closest-side, var(--wpjpf-loaders) 90%, #0000) 100%
      50%;
  background-size: calc(100% / 3) 13.4px;
  background-repeat: no-repeat;
}

label:hover .dots-3 {
  animation: Dots3 1s infinite linear;
}

@keyframes Dots3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }

  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }

  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }

  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}

.dots-4 {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  clip-path: inset(-50px);
  color: var(--wpjpf-loaders);
  box-shadow: -24px 18px, 0px 18px, 24px 18px;
  transform: translateY(-16px);
}

label:hover .dots-4 {
  animation: Dots4 1s infinite linear;
}

@keyframes Dots4 {
  0% {
    box-shadow: -75px 18px, -75px 18px, -75px 18px;
  }
  15% {
    box-shadow: -75px 18px, -75px 18px, 24px 18px;
  }

  30% {
    box-shadow: -75px 18px, 0px 18px, 24px 18px;
  }

  40%,
  60% {
    box-shadow: -24px 18px, 0px 18px, 24px 18px;
  }

  70% {
    box-shadow: -24px 18px, 0px 18px, 75px 18px;
  }

  85% {
    box-shadow: -24px 18px, 75px 18px, 75px 18px;
  }

  100% {
    box-shadow: 75px 16.8px, 75px 16.8px, 75px 16.8px;
  }
}

.bars-basic {
  width: 50.4px;
  height: 67.2px;
  --color: linear-gradient(var(--wpjpf-loaders) 0 0);
  background: var(--color) 0% 100%, var(--color) 50% 100%,
    var(--color) 100% 100%;
  background-size: 10.1px 65%;
  background-repeat: no-repeat;
}

label:hover .bars-basic {
  animation: BarsBasic 1s infinite linear;
}

@keyframes BarsBasic {
  20% {
    background-position: 0% 50%, 50% 100%, 100% 100%;
  }

  40% {
    background-position: 0% 0%, 50% 50%, 100% 100%;
  }

  60% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }

  80% {
    background-position: 0% 100%, 50% 100%, 100% 0%;
  }
}

.bars-2 {
  width: 56px;
  height: 56px;
  --gradient: linear-gradient(var(--wpjpf-loaders) 0 0);
  background: var(--gradient), var(--gradient), var(--gradient);
  background-repeat: no-repeat;
  background-size: 10px 100%;
}

label:hover .bars-2 {
  animation: Bars2 1s infinite, Bars2Bis 1s infinite;
}

@keyframes Bars2 {
  0%,
  100% {
    background-size: 10px 100%;
  }

  33%,
  66% {
    background-size: 10px 40%;
  }
}

@keyframes Bars2Bis {
  0%,
  33% {
    background-position: 0 0, 50% 100%, 100% 100%;
  }

  66%,
  100% {
    background-position: 100% 0, 0 100%, 50% 100%;
  }
}

.bars-3 {
  width: 56px;
  height: 56px;
  --gradient: linear-gradient(var(--wpjpf-loaders) 0 0);
  background: var(--gradient) 0 0, var(--gradient) 50% 50%,
    var(--gradient) 100% 100%;
  background-repeat: no-repeat;
  background-size: 10px 100%;
}

label:hover .bars-3 {
  animation: Bars3 1s infinite alternate;
}

@keyframes Bars3 {
  0%,
  10% {
    background-size: 10px 100%;
  }

  50% {
    background-size: 10px 10px;
  }

  90%,
  100% {
    background-size: 100% 10px;
  }
}

.bars-4 {
  width: 56px;
  height: 56px;
  background: linear-gradient(
        #0000 calc(1 * 100% / 6),
        var(--wpjpf-loaders) 0 calc(3 * 100% / 6),
        #0000 0
      )
      left bottom,
    linear-gradient(
        #0000 calc(2 * 100% / 6),
        var(--wpjpf-loaders) 0 calc(4 * 100% / 6),
        #0000 0
      )
      center bottom,
    linear-gradient(
        #0000 calc(3 * 100% / 6),
        var(--wpjpf-loaders) 0 calc(5 * 100% / 6),
        #0000 0
      )
      right bottom;
  background-size: 10.1px 100%;
  background-repeat: no-repeat;
}

label:hover .bars-4 {
  animation: Bars4 1.5s infinite linear;
}

@keyframes Bars4 {
  0% {
    background-size: 10.1px 600%;
  }
  100% {
    background-size: 10.1px 600%;
    background-position: left top, center top, right top;
  }
}

.progressbar-basic {
  width: 100px;
  height: 20px;
  background: linear-gradient(var(--wpjpf-loaders) 0 0) left/0% 100% no-repeat
    color-mix(in srgb, var(--wpjpf-loaders) 20%, transparent);
}

label:hover .progressbar-basic {
  animation: ProgressBarBasicAnimation 2s infinite linear;
}

@keyframes ProgressBarBasicAnimation {
  100% {
    background-size: 100% 100%;
  }
}

.progressbar-2 {
  width: 100px;
  height: 20px;
  border-radius: 20px;
  color: var(--wpjpf-loaders);
  border: 2px solid;
  position: relative;
}

.progressbar-2::before {
  content: "";
  position: absolute;
  margin: 2px;
  inset: 0 100% 0 0;
  border-radius: inherit;
  background: currentColor;
}

label:hover .progressbar-2::before {
  animation: ProgressBar2 2s infinite linear;
}

@keyframes ProgressBar2 {
  100% {
    inset: 0;
  }
}

.pulse-basic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--wpjpf-loaders);
  box-shadow: 0 0 0 0 var(--wpjpf-loaders);
}

label:hover .pulse-basic {
  animation: PulseBasicAnimation 1s infinite;
}

@keyframes PulseBasicAnimation {
  100% {
    box-shadow: 0 0 0 30px #0000;
  }
}

.pulse-2 {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--wpjpf-loaders);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--wpjpf-loaders) 50%, transparent);
}

label:hover .pulse-2 {
  animation: Pulse2 1.5s infinite linear;
}

.pulse-2:before,
.pulse-2:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--wpjpf-loaders) 50%, transparent);
  animation: inherit;
  animation-delay: -0.5s;
}

.pulse-2:after {
  animation-delay: -1s;
}

@keyframes Pulse2 {
  100% {
    box-shadow: 0 0 0 45px #0000;
  }
}

/****************************** Responsive ******************************/

@media only screen and (max-width: 991px) {
  .wpjpf-settings-header {
    flex-direction: column-reverse;
  }
  .wpjpf-settings-main {
    flex-direction: column;
  }
  .wpjpf-settings__menu {
    width: auto;
    position: unset;
    padding: 25px;
  }
}
