﻿.select-btn {
    display: flex;
    justify-content: space-between;
    min-height: 34px;
    padding: 5px;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    background-color: #ffffff;
    border: solid thin #ccc;
    transition: width 300ms ease-in;
    color: #555;
}

    .select-btn:hover {
        border-color: #1bb9f5 !important;
        box-shadow: rgba(220, 220, 220, 0.3) 3px 3px 3px inset, #64cff8 0 0 5px;
    }

    .select-btn:focus {
        border-color: #1bb9f5 !important;
        box-shadow: rgba(220, 220, 220, 0.3) 3px 3px 3px inset, #64cff8 0 0 5px;
    }

    .select-btn .btn-text {
        font-family: inherit;
        font-size: 8.75pt;
        pointer-events: none;
    }

    .select-btn .arrow-dwn {
        width: 8px;
        height: 16px;
        transition: 0.3s;
        pointer-events: none;
    }

.selected-item {

    display: inline-block;
    border: 1px solid #77d3f7;
    background-color: #dff0ff;
    margin-inline-end: 5px;
}

    .selected-item .close-item {
        margin-left: 2px;
        top: 2px;
        position: relative;
    }

        .selected-item .close-item:hover {
            background-color: yellow;
        }

    .selected-item .remove-item {
        cursor: pointer;
    }

    .selected-item .item-title {
        font-size: 8pt;
    }

.select-btn .btn-items {
    
    color: #555;
    font-size: 9.7pt;
    padding: 0;
    margin-top: 3px;
    font-weight:inherit
}

.item-title {
    font-size: 10px;
    margin-right: 2px;
    bottom: 1px;
    position: relative;
}


.arrow-dwn .arrow {
    font-size: 10px;
    pointer-events: none;
}

.list-item {
    z-index: 1;
    margin-top: 0px;
    border-radius: 4px;
    background-color: #fff;
    border: solid thin #ccc;
    font-family: inherit;
    font-size: 8.75pt;
    transition: 0.3s;
    display: none;
    width: 300px;
    top: 50px;
    right: 0;
}

.select-btn.open ~ .list-item {
    display: block;
    max-height: 200px;
    overflow-x: auto;
    padding: 0px 7px 0px 0px;
    position: absolute;
}

.select-btn.open .arrow-dwn {
    transform: rotate(180deg)
}

.list-item .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 23px;
    padding: 5px;
    cursor: pointer;
    margin-top: 3px;
}

    .list-item .item:hover {
        background-color: #e0e0e6
    }

.item .item-text {
    color: #555;
    margin-right: 3px;
    width: 100%;
}

.item .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    border-radius: 2px;
    border: 1px solid #c0c0c0;
    transition: all 0.3s ease-in-out;
    margin-left: 4px;
}

.checkbox .check-icon {
    color: #fff !important;
    font-size: 17px;
    transform: scale(0);
    transition: all 0.1s ease-in-out
}

.item.checked .check-icon {
    transform: scale(1)
}

.item.checked .checkbox {
    background-color: #0caad5;
    border-color: #0caad5;
}


/*********************************************************************************************************************************************************/

/*.select-btn{
    display: flex;
    justify-content: space-between;
    min-height: 34px;
    padding: 6px 12px;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    background-color: #ffffff;
    border: solid thin #ccc;
    transition: width 300ms ease-in;
    color: #000;
}*/

/*.select-btn:hover {
        border-color: #1bb9f5 !important;
        box-shadow: rgba(220, 220, 220, 0.3) 3px 3px 3px inset, #64cff8 0 0 5px;
    }*/

/*.select-btn:focus {
        border-color: #1bb9f5 !important;
        box-shadow: rgba(220, 220, 220, 0.3) 3px 3px 3px inset, #64cff8 0 0 5px;
    }*/

    /*.select-btn.btn-text{
        font-family: inherit;
        pointer-events: none;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
    }

.select-btn.arrow-dwn{
        width: 8px;
        height: 8px;
        line-height:0;
        transition: 0.3s;
        pointer-events: none;
    }

.arrow-dwn.arrow{
    font-size: 10px;
    pointer-events: none;
}

.list-item{
    position: absolute;
    z-index: 1;
    margin-top: 0px;
    border-radius: 4px;
    background-color: #fff;
    border: solid thin #ccc;
    font-family: inherit;
    font-size: 8.75pt;
    transition: 0.3s;
    display: none;
    width: 300px;
    padding: 0;
}


.select-btn.open ~ .list-item{
    display: block;
    max-height: 200px;
    overflow-x: auto;
}

.select-btn.open .arrow-dwn{*/
    /*transform: rotate(180deg)*/
/*}

.list-item.item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 23px;
    padding: 5px;
    cursor: pointer;
    margin-top: 3px;
}

.list-item.item:hover {
        background-color: #e0e0e6
    }

.item.item-text{
    color: #555;
    margin-right: 3px;
    width: 100%;
    font-size: 12px;
}

.item.checkbox{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    border-radius: 2px;
    border: 1px solid #c0c0c0;
    transition: all 0.3s ease-in-out
}

.checkbox.check-icon{
    color: #fff !important;
    font-size: 17px;
    transform: scale(0);
    transition: all 0.1s ease-in-out
}

.item.checked.check-icon{
    transform: scale(1)
}

.item.checked.checkbox{
    background-color: #0caad5;
    border-color: #0caad5;
}
.selected-item {
    max-width: 110px;
    display: none;
    border: 1px solid #77d3f7;
    background-color: #dff0ff;
    margin-inline-end: 5px;
}

    .selected-item .close-item {
        margin-left: 2px;
        top: 2px;
        position: relative;
    }

        .selected-item .close-item:hover {
            background-color: yellow;
        }

    .selected-item .remove-item {
        cursor: pointer;
    }

    .selected-item .item-title {
        font-size: 8pt;
    }

.select-btn .btn-items {
    margin-right: -111px;
    pointer-events: none;
}

.item-title {
    font-size: 10px;
    margin-right: 2px;
    bottom: 1px;
    position: relative;
}*/