@charset "utf-8";


.form-skeleton {
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    container-type: inline-size;
    container-name: form;
}

.form-skeleton.is-loaded {
    display: none;
}

.form-skeleton * {
    color: transparent;
    overflow: hidden;
    position: relative;
}

.form-skeleton .skeleton {
  background-color: #ddd;
  border-radius: 3px;
}

.form-skeleton .skeleton::before {
    animation: skeleton_flash 1.5s linear infinite;
    background-image: linear-gradient(90deg, #ffffff00, #ffffff88, #ffffff00);
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    will-change: animation;
    z-index: 2;
}

@keyframes skeleton_flash {
    0% {
        transform: translateX(-100%)
    }
    100% {
        transform: translateX(100%)
    }
}

.form-skeleton .wrapper {
  margin: 0 0 18px;
}

@container form (min-width: 400px) {
    .form-skeleton .inputs-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .form-skeleton .inputs-wrapper .wrapper:first-child {
        padding-right: min(55px, 10%);
    }
}

.form-skeleton .label {
    height: 20px;
    margin-bottom: 4px;
    width: 60px;
}

.form-skeleton .input {
    height: 40px;
    width: 100%;
}

.form-skeleton .desc {
    height: 16px;
    margin-bottom: 6px;
    width: 100%;
}

.form-skeleton .checkbox {
    height: 21px;
    margin-bottom: 4px;
    width: 180px;
}

.form-skeleton .areatext {
    height: 66px;
    width: 100%;
}

.form-skeleton .button {
    height: 40px;
    margin: 35px auto;
    width: 176px;
}