@import url("300-400-500-600-700.woff2.css");

body {
  /* Default variables */
  --andes-color-yellow-500: #ffe600;
  --andes-color-blue-100: rgba(65, 137, 230, 0.1);
  --andes-color-blue-150: rgba(65, 137, 230, 0.15);
  --andes-color-blue-200: rgba(65, 137, 230, 0.2);
  --andes-color-blue-300: rgba(65, 137, 230, 0.3);
  --andes-color-blue-400: rgba(65, 137, 230, 0.4);
  --andes-color-blue-500: #3483fa;
  --andes-color-blue-600: #2968c8;
  --andes-color-blue-700: #1f4e96;
  --andes-color-blue-800: #183c73;
  --andes-color-fill-brand: var(--andes-color-yellow-500);
  --andes-color-text-brand: rgba(0, 0, 0, 0.9);

  /* Custom variables */
  --asset-activation-color: #000;
  --asset-activation-opacity: 0.04;
  --andes-main-brand-color: var(--andes-color-fill-brand);
  --andes-main-logo-url: url("https://http2.mlstatic.com/storage/cpp/static-files/2f14a4f2-b546-4b40-92a5-617e7b3b7b46.svg");
  --andes-main-logo-width: 32px;
  --andes-main-logo-height: 32px;
  --mp-bg-transparent-padding: 8px 0;
  --mp-bg-white-padding: 8px 16px;
}

.mp-code-wrapper {
  font-size: 14px;
  display: inline-flex;
}

.mp-code-button {
  color: var(--andes-color-blue-500);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.mp-feedback-text,
.mp-feedback-icon {
  display: none;
}

.mp-skeleton {
  width: 100%;
  height: 50px;
  background: #e0e0e0;
  border-radius: 4px;
  animation: skeleton-loading 1.5s infinite ease-in-out;
}

@keyframes skeleton-loading {
  0% {
    background-color: #e0e0e0;
  }
  50% {
    background-color: #f0f0f0;
  }
  100% {
    background-color: #e0e0e0;
  }
}

.mp-credits-modal--code {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid #ededed;
}

.mp-credits-modal--code__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px 14px;
}

.mp-credits-modal--code__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #ededed;
}

.mp-credits-modal--code__icon {
  width: 32px;
  height: 32px;
}

.mp-credits-modal--code__text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.mp-credits-modal--code__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: #000;
}

.mp-credits-modal--code__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #0000008C;
}

.mp-credits-modal--code__divider {
  width: calc(100% - 44px);
  margin: 0 auto;
  border: 1.34px dashed #ededed;
}

.mp-credits-modal--code__button-wrapper {
  padding: 12px 15px;
}

.mp-credits-modal--code__button {
  width: 100%;
  padding: 8px 0;
  border-radius: 5px;
  background-color: var(--andes-color-blue-500);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mp-credits-modal--code__button-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
}

.mp-content-tooltip {
  display: flex;
  align-items: center;
  max-width: 438px;
  gap: 12px;
  border-radius: 6px;
}

.mp-content-tooltip .mp-flex-column {
  display: flex;
  gap: 0;
  flex-direction: column;
  width: 100%;
}

.mp-content-tooltip .mp-flex-column .mp-text-style {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  color: #1a1a1a;
}

.mp-content-tooltip .mp-flex-column .mp-text-style .mp-text-link {
  margin: 0;
  padding: 0;
  line-height: 20px;
  font-size: 14px;
  text-decoration: underline;
  color: var(--andes-color-blue-500);
}

button#mp-modal-open {
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
  align-items: center;
}

/* ###### */

#mp-credits-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.3);
  color: #000;
  text-align: center;
  transition: opacity 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

#mp-credits-modal *,
.mp-content-tooltip * {
  font-family:
    "Proxima Nova",
    -apple-system,
    "Helvetica Neue",
    Helvetica,
    "Roboto",
    Arial,
    sans-serif;
}

.mp-modal-hide {
  opacity: 0;
  pointer-events: none;
}

.mp-modal-show {
  opacity: 1;
  pointer-events: all;
}

.mp-bg-transparent {
  background: transparent;
  padding: var(--mp-bg-transparent-padding);
}

.mp-bg-white {
  background: #fff;
  padding: var(--mp-bg-white-padding);
}

#mp-credits-modal .mp-credits-modal-container {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mp-credits-modal-step-circle {
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
}

.mp-credits-step-line {
  position: absolute;
  left: calc(26px / 2);
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% - 26px);
  border: 1px dashed #000;
  opacity: 0.2;
}

.mp-step-mark {
  font-size: 12px;
  color: var(--andes-color-blue-500);
  text-align: center;
  font-weight: 400;
  line-height: 11px;
}

.mp-credits-modal-step-circle-text {
  color: rgba(0, 0, 0, 0.9);
  font-size: 14px;
  font-style: normal;
  text-align: start;
  font-weight: 400;
  line-height: 18px;
}

.mp-credits-modal-how-to-use {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.mp-credits-modal-how-to-use > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.mp-credits-modal-container-content {
  display: flex;
  width: 420px;
  padding: 32px;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  border-radius: 6px;
  background: var(--Text-andes-text-color-inverted, #fff);
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.1);
}

.mp-credits-modal-content-centralize {
  height: 100%;
  display: flex;
  align-items: center;
}

.mp-credits-modal-content {
  padding: 1px;
}

.mp-credits-modal-container-content img {
  margin: 0;
  padding: 0;
}

.mp-logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-credits-modal-title {
  margin-top: 24px;
}

.mp-credits-modal-titles > div > span {
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}

.mp-credits-modal-titles > div + div > span {
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
}

.mp-credits-modal-titles > div > span {
  font-weight: 600;
}

.mp-credits-modal-titles p {
  padding-top: 16px;
  font-weight: 400;
  text-align: center;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
}

.mp-credits-modal-titles h2 {
  text-align: left;
  padding-top: 8px;
  margin: 0;
}

.mp-credits-modal-FAQ {
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  gap: 16px;
  color: rgba(0, 0, 0, 0.55);
}

#mp-modal-footer-link {
  text-decoration: none;
  color: var(--andes-color-blue-500);
}

.mp-credits-modal-FAQ p {
  margin: 0;
}

.mp-credits-step {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

.mp-credits-modal-close-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.mp-credits-modal-close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  width: 32px;
  height: 32px;
  background: none;
}

.mp-credits-modal-close-button:hover {
  background: #f9f9f9;
}

#mp-open-modal {
  cursor: pointer;
  white-space: nowrap !important;
}

div[data-block-handle="tooltips_credits"] {
  align-items: center;
  justify-content: center;
}

.mp-credits-logo {
  content: var(--andes-main-logo-url);
  width: var(--andes-main-logo-width);
  height: var(--andes-main-logo-height);
}

@media only screen and (max-width: 768px) {
  .mp-credits-modal-container-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 360px;
    margin: 0.5rem auto;
  }

  .mp-mobile {
    transform: translate(0, 0vh);
    transition: transform 3s;
  }

  .mp-logo-img {
    height: 140px !important;
  }

  .mp-logo-img img {
    margin-top: 18px !important;
    width: 195px !important;
    height: 122px !important;
  }

  .mp-credits-modal-container-content {
    width: fit-content;
  }
}
