form.admin div.xMulti {
    padding: 5px;
    margin-top: 5px;
    border: 1px solid #999;
}

form.admin div.xMulti .xSpace {
    vertical-align: top;
    display: inline-block;
    margin: 3px;
}

form.admin div.xMulti .xItem {
    vertical-align: top;
    padding: 5px 28px 5px 8px;
    margin: 3px;
    display: inline-block;
    color: #212121;
    text-decoration: none;
    background-color: #FFF;
    border: 1px solid #DADADA;
    border-radius: 2px;
    position: relative;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

form.admin div.xMulti .xItem .xRemove {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 3px;
    right: 3px;
    cursor: pointer;
}

form.admin div.xMulti .xItem .xRemove hr {
    border: none;
    width: 14px;
    height: 2px;
    background-color: #8e8e8e;
    position: absolute;
    top: 3px;
    left: 5px;
}

form.admin div.xMulti .xItem .xRemove hr:first-child {
    transform: rotate(45deg);
}

form.admin div.xMulti .xItem .xRemove hr:last-child {
    transform: rotate(-45deg);
}

form.admin div.xMulti .xItem .xRemove:hover hr {
    background-color: #000;
}

form.admin button.add {
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    padding: 5px 20px;
    display: inline-block;

    color: #fff;
    background-color: #1CC664;
    border-radius: 3px;
    border: none;
    cursor: pointer;

    vertical-align: top;

    -webkit-transition: background-color 0.5s ease, border 0.5s ease;
    -moz-transition: background-color 0.5s ease, border 0.5s ease;
    -ms-transition: background-color 0.5s ease, border 0.5s ease; /* IE10 is actually unprefixed */
    -o-transition: background-color 0.5s ease, border 0.5s ease;
    transition: background-color 0.5s ease, border 0.5s ease;

    -webkit-appearance: none;
}
/* *** */