.find-a-pro-iframe {
  position: relative;
}

.find-a-pro-iframe__frame {
  transition: height 0.3s ease-out;
  will-change: height;
}

.find-a-pro-iframe__loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgb(255, 255, 255);
  z-index: 9999;
  transition: opacity 0.2s ease;
}

.find-a-pro-iframe__loader--hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.find-a-pro-iframe__spinner {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 6px solid #e0e0e0;
  border-top-color: #005a8c;
  border-right-color: #005a8c;
  animation: find-a-pro-spinner 0.8s linear infinite;
  flex-shrink: 0;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.find-a-pro-iframe__loader-text {
  margin-top: 16px;
  font-size: 16px;
  color: #005a8c;
  font-weight: 500;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@keyframes find-a-pro-spinner {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
