/**
* CONTAINER
*/
.wld-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
/* wordpress sometimes puts iframe inside a p */
.wld-container > p {
  width: 100%;
  margin: 0;
}

/**
* IFRAME
*/

.wld-widget,
iframe[src*='wgrdv'] {
  border: none;
}
.wld-widget.loading,
iframe[src*='wgrdv'].loading {
  visibility: hidden;
}

/**
* LOADER
*/
.wld-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  box-sizing: border-box;
  border-color: transparent;
  border-top: 2px solid #000000;
  border-radius: 100%;

  -webkit-animation: nprogress-spinner 800ms linear infinite;
  animation: nprogress-spinner 800ms linear infinite;
}
.wld-spinner.loading {
  display: block;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/**
* MODAL
*/
#wld-modal .wld-container,
#wld-modal .wld-container .wld-widget,
#wld-modal .wld-container iframe[src*='wgrdv'] {
  height: 100%;
}

body.wld-modal-is-open {
  overflow: hidden;
}

.wld-modal-close-button {
  align-self: end;
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  z-index: 1;
  padding: 6px;
  border: none;
  background-color: #ffffff;
  color: rgb(153, 153, 153);
}
.wld-modal-close-button svg {
  stroke: currentColor;
  stroke: 1;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.wld-modal-outer-container {
  padding: 1rem;
  max-width: 1232px;
  background-color: white;
  overflow-y: auto;
  box-sizing: border-box;
}
.wld-modal-inner-container {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#wld-modal[data-wld-modal-open='false'] {
  z-index: -1;
  display: none;
}

#wld-modal[data-wld-modal-open='true'] {
  z-index: 99999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(0 0 0 / 0.2);
  box-sizing: border-box;
}
@media screen and (min-width: 520px) {
  #wld-modal[data-wld-modal-open='true'] {
    padding: 1rem;
  }
  .wld-modal-outer-container {
    border-radius: 0.25rem;
  }
}

/**
* POWERED BY
*/
.wld-powered-by {
  font-size: 10px;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

/* wordpress sometimes adds brs */
.wld-powered-by br {
  display: none;
}

.wld-powered-by > span {
  padding: 0.5rem 0;
}

.wld-powered-by .wld-powered-by-powered-by {
  padding: 0 2px;
}

.wld-powered-by .wld-powered-by-back-link {
  font-weight: 600;
  padding: 0 2px;
  text-decoration: none;
  color: inherit;
}
.wld-powered-by .wld-powered-by-back-link .wld-powered-by-des {
  font-weight: initial;
}

.wld-modal-open-button * {
  pointer-events: none !important;
}
