.ala-social-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.ala-social-container--justify {
    justify-content: space-between;
}

.ala-social-button {
    transition: 0.5s;
    border-radius: 100%;
    width: 32px;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #333;
}

.ala-social-button svg {
    height: 18px;
    fill: #FFFFFF;
    fill: currentColor;

}

.ala-social-button-add {
    color: #FFFFFF;
}


.ala-social-button:hover {
    filter: brightness(130%)
}

.ala-social-button--add {
    background-color: blue;
}

.ala-social-button--drag {
    background-color: unset;
}

.ala-social-button--drag svg {
    fill: #ccc;
}

.ala-social-button-field {
    background: white;
    margin-bottom: 5px;
    border: Solid 1px #E1E1E1;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ala-social-button-field label {
    display: block;

}

.ala-social-button-field label input {
    margin-top: 10px;


}

.ala-social-button-field input[type=checkbox] {
    align-self: baseline;
}

.ala-social-button-field .input-small {
    width: 120px;
}

.ala-social-button-field .input-large {
    width: 300px;
}



.ala-social-button-field--new {
    border: Solid 1px #cccccc;
    background: white;
    padding: 10px;
    display: flex;
    gap: 20px;
    margin-top: 20px
}

.ala-social-button-field--first {
    border: none;
    padding: 0;
}

.ala-social-button-field--disabled {
    opacity: 0.5;
}

.ala-social-button-remove {
    color: red !important;
    border: solid 1px rgba(255, 0, 0, 0.3) !important;
}

.ala_social_buttons_preview {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media screen and (width < 1500px) {

    .ala-social-button-field {
        gap: 5px;

    }

    .ala-social-button-field .input-small {
        width: 80px;
    }

    .ala-social-button-field .input-large {
        width: 120px;
    }
}

@media screen and (width < 1000px) {
    .ala-social-button-field {
        display: grid;
        grid-template-columns: 1fr;

    }

    .ala-social-button-field label {
        width: 100%;
    }

    input:not([type="checkbox"]):not([type="color"]) {
        width: 100% !important;
    }
}