/* Spinner */

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #055481;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    animation: spin 2s linear infinite;
    margin: 64px auto;
    /* Center the spinner */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

/* Form */

#orf-form .form-group {
    margin-bottom: 24px;
}

#orf-form label {
    font-weight: 700;
    line-height: 1.3;
}

.required {
    color: #790000;
}

#line-loading {
    padding: 7px 15px;
    border: 2px solid color(srgb 0.9112 0.9113 0.9113);
    opacity: 0.4;
}

#line:disabled {
    opacity: 0.4;
}

#transportTime {
    padding: 6px 14px;
    border: 2px solid #e8e8e8;
}

/* Alert */

#alert-container {
    background-color: #f3f3f3;
    margin-bottom: 30px;
    display: flex;
}

.alert-icon {
    padding: 40px 15px 34px;
    background-color: #009ece;
}

.alert-icon svg {
    fill: white;
    width: 24px;
    height: 24px
}

#alert-content {
    flex-basis: unset;
    display: flex;
    align-items: center;    
    padding-left: 15px;      
}