.wsf-form {
   transition: opacity 0.2s ease;
}

/* smooth fade */

.cdb-loader {
   display: none;
   position: absolute;
   inset: 0;
   z-index: 50;
   align-items: start;
   justify-content: center;
}

.cdb-spinner {
   width: 40px;
   height: 40px;
   border: 4px solid #d9e2ec;
   border-top-color: #002E5D;
   border-radius: 50%;
   animation: cdb-spin 0.7s linear infinite;
}

@keyframes cdb-spin {
   to {
      transform: rotate(360deg);
   }
}