.hidden {
    display: none;
}

.loader {
    width: 40px;
    aspect-ratio: 1;
    background: #000;
    animation: l1 1s infinite;
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 50%;
    right: 50%;
    z-index: 999;
}

.loader-bg {
    position: fixed;
    background: #000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.4;
}

@keyframes l1 {
    0% {
        transform: perspective(150px) rotateX(0deg)
    }
    100% {
        transform: perspective(150px) rotateX(180deg)
    }
}

.btn-group {
    display: flex;
}

.d-flex {
    display: flex;
}

.d-flex.justify-content-between {
    justify-content: space-between;
}

.webform-section .type-text {
    width: 100%;
}

button.btn-outline-primary.btn.btn-sm {
    border-color: #FE7333;
    color: #FE7333;
}

.transport {
    border: 1px solid #cdcdcd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.btn-outline {
    width: 100%;
    padding: 12px 20px;
}

.webform-section .input-button:disabled {
    background: #FE7333 !important;
    background-color: rgb(254, 115, 51) !important;
    opacity: 0.5;
    border: 2px solid #FE7333 !important;
}
