/* Repeatable Field */
.mw-settings-form .mw-rpf-clone {
    display: none;
}

.mw-settings-form {

    .mw-repeater-field {
        margin: 0;
        padding: 0;
        list-style: none;

        li {
            cursor: move;
            background: #fafafa;
            border: 1px solid #ededed;
            padding: 10px 15px;
            margin-bottom: 15px;
            position: relative;
            &:last-child {
                margin-bottom: 0;
            }
        }

        label {
            display: block;
            margin-bottom: 2px;
        }

        select,
        input {
            width: 100%;
        }

        p {
            margin: 5px 0;
        }

        .mw-rpf-remove {
            position: absolute;
            right: 10px;
            top: 5px;
            color: #a00;
            font-size: 22px;
            cursor: pointer;
        }

    }

    li.mw-rpf-placeholder {
        background: transparent !important;
        border: 1px dashed #aba9a9;
    }

    .mw-upload-field,
    .mw-repeater-field .mw-upload-field {

        input[type=text] {
            width: 70%;
        }

        .button {
            width: 28%;
            text-align: center;
        }

    }

}