/* GENERIC UNIVERSAL */
.multiSelectUI {
    border: 1px solid #797c7e;
    border-radius: 0px 0px 5px 5px;
    font-size: 13px;
    padding: 0px 5px 5px 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Albert Sans';
}

/* UI
MULTISELECT */
.custom-selected-tags {
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px 5px 0px 0px;
    border-left: 1px solid #797c7e;
    border-top: 1px solid #797c7e;
    border-right: 1px solid #797c7e;
    min-height: 41px;
    padding: 0px 3px;
}

.custom-tag {
    padding: 3px 10px;
    margin: 6px 2px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Albert Sans';
    font-weight: bold;
}

.custom-close {
    cursor: pointer;
    margin-left: 5px;
}

.custom-multi-select-container .custom-option-item {
    cursor: pointer;
    padding: 5px;
    margin-top: 5px;
    border-radius: 5px;
}

/* New class for selected options */
.multi-selected-option {
    background-color: #f1f1f1;
    font-weight: bold;
}



/* UI
SWITCH */

.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 26px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.warn {
    background-color: #f32121 !important;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

label:before {
    display: none !important;
    width: 0;
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}



/* UNIVERSAL UI BUTTONS */

.med-ctl-btn {
    background-color: rgb(29 29 29 / 95%);
    color: #fff;
    fill: #000;
    height: 25px;
    width: 25px;
    margin: 0px 4px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    transition: 0.5s;
}

.med-ctl-btn:hover {
    transition: 0.5s;
}


input[type="checkbox"] {
    display: none;
}


label {
    cursor: pointer;
    padding-left: 25px;
    position: relative;
  }
  
  label:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    position: absolute;
    left: 0;
    top: 2px;
  }
  
  
  input[type="checkbox"]:checked+label:before {
    background-color: #2196F3;
    border: 1px solid #2196F3;
  }