.section-form-color .container {
    border: 0px;
    padding: 0px !important;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.podbor-all {
    border-radius: 5px;
    background: #ebebeb;
    width: 100%;
}

.podbor-all .tab-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0px;
}

.section-form-color form.form-color select {
    padding: 5px;
    font-weight: 500;
    min-width: 230px;
}

.section-form-color form.form-color button {
    background: #0072bc;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 10px;
    background: #529139;
    font-weight: 500;
    font-size: 16px;
}

.section-form-color form.form-color .form-color-output {
    display: flex;
    flex-direction: row;
    align-items: center;

}

.section-form-color form.form-color .form-color-output-item {
    display: flex;
}

.section-form-color form.form-color .form-color-output-item .column {
    padding: 10px;
}

.loader-container-auto {
    display: none;
    position: relative;
    padding: 10px 20px;
    height: 38px;
}

.loader-auto {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ebb22a;
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    animation: spin 2s linear infinite;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 1023px) {
    .section-form-color form.form-color .form-color-output {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-form-color form.form-color .form-color-output-item {
        display: flex;
        flex-direction: column;
    }

    .section-form-color form.form-color .form-color-output-item .column {
        padding: 5px 0 0 0px;
    }
    
    .section-form-color form.form-color button {
        margin: 10px;
    }
}