.pmnow-social-container {
    /* border: solid 2px red; */
    /* padding: 20px; */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;


}


.pmnow-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;

    svg {
        height: 18px;
        fill: white;
    }
}


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

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

.pmnow-social-button--drag {
    background-color: unset;


    svg {
        fill: #ccc;
    }
}

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

    label {
        display: block;

        input {
            margin-top: 10px;


        }
    }

    input[type=checkbox] {
        align-self: baseline;
    }

    /* label:nth-of-type(1) {
        input {
            width: 120px;
        }
    } */

    .input-small {
        width: 120px;
    }

    /* label:nth-of-type(2) {
        input {
            width: 300px;
        }
    } */

    .input-large {
        width: 300px;
    }

    /* label:nth-of-type(3) {
        input {
            width: 300px;
        }
    } */
}

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

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

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

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

.pmnow_social_buttons_preview {
    display: flex;
    gap: 10px;
    align-items: center;
    /* margin-top: 20px; */
}

@media screen and (width < 1500px) {

    .pmnow-social-button-field {
        /* border: Solid 1px red; */
        /* padding: 5px; */
        gap: 5px;


        .input-small {
            width: 80px;
        }

        .input-large {
            width: 120px;
        }
    }
}

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

        label {
            width: 100%;

            input:not([type="checkbox"]):not([type="color"]) {
                width: 100% !important;
                /* border: solid 2px blue; */
            }
        }
    }
}