﻿/*
// jquery.selectit plugin v1.0
// Tag Editor Field using jQuery
// Copyright (c) 2011-2024 Chris Pietschmann
// https://github.com/crpietschmann/jquery.selectit
// MIT License
*/
:root {
    --c_primary: #ff6a09;
    --c_white: #ffffff;
    
}

.selectit {
    background: #fff;
    border: 1px solid var(--G300, #cbcad7);
    border-radius: 0.30em;
    cursor: text;
    font-size: 0.7em;
    margin: 0.5em 0.5em 1.5em 0;
    padding: 0.5em;
    width: 97%;
    overflow: hidden;
    transition: border-color 0.2s;
}
.selectit.focus {
    border: solid 0.1em var(--c_primary);
}

.selectit span {
    display: block;
    float: left;
    margin: 0 0.5em 0.1em 0;
    position: relative;
}

.selectit .selectit-option {
    position: relative;
    color: var(--c_white);
    background-color: var(--c_primary);;
    border: 0.1em solid transparent;
    border-radius: 0.25em;
    padding: 0.5em 2em 0.5em 0.6em;
    transition: border-color 0.5s background-color 0.5s;
}
.selectit .selectit-option:hover {
    border-color: var(--c_white);
}

.selectit .selectit-new input:focus {
    outline: none;
}
.selectit .selectit-new2 input:focus {
    outline: none;
}
.selectit .selectit-new input {
    background: inherit;
    border: none;
    float: left;
    margin: 0.25em 0.3em 0 0;
    padding: 0.2em 0;
    width: 97%;
    font-size: 1.1em;
}

.selectit .selectit-new2 input {
    background: inherit;
    border: none;
    float: left;
    margin: 0.25em 0.3em 0 0;
    padding: 0.2em 0;
    width: 97%;
    font-size: 1.1em;
}

.selectit [data-role="remove"]::after {
    content: "\f057";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    fill: #fff;
    fill: var(--c_white);
    background: none;
    position: absolute;
    right: 5%;
    top: 15%;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 0 0.2em;
    text-decoration: none;
}

.selectit button.selectit-remove:hover {
    fill: #fff;
    background: #fff;
}
