.bootstrap-duallistbox-container .filter {
    width: 100%;
    padding: var(--form-component-padding);
    height: var(--form-component-height);
    border-radius: var(--radius);
    border-color: var(--grey-02);
    font-size: 15px;
    appearance: none;
}

.bootstrap-duallistbox-container .info-container {
    margin: 0px 0px 2px 2px;
    font-size: var(--font-size);
}

.bootstrap-duallistbox-container select.form-control {
    background-image: none;
}

@media (max-width: 576px) {
    .bootstrap-duallistbox-container select.form-control {
        height: 100px;
    }
    .bootstrap-duallistbox-container .box1 {
        margin-bottom: 24px;
    } 
}

.bootstrap-duallistbox-container select.form-control option {
    padding: 6px 12px;
    transition: var(--time-01);
}

.bootstrap-duallistbox-container select.form-control option:hover {
    background-color: var(--secondary);
}
.bootstrap-duallistbox-container .btn.removeall,
.bootstrap-duallistbox-container .btn.moveall {
    text-align: center;
    justify-content: center;
    border-radius: var(--radius);
    margin: 8px 0;
}

.bootstrap-duallistbox-container i.fa-arrow-right,
.bootstrap-duallistbox-container i.fa-arrow-left { font-family: 'icomoon' !important; }
.bootstrap-duallistbox-container i.fa-arrow-right:before { content: "\e9a5" !important; }
.bootstrap-duallistbox-container i.fa-arrow-left:before { content: "\e99a" !important; }

.bootstrap-duallistbox-container .info-container .info {
    font-size: var(--font-size);
}

.bootstrap-duallistbox-container .btn-group.buttons .btn.moveall,
.bootstrap-duallistbox-container .btn-group.buttons .btn.removeall {
    color: var(--btn-move-remove-all-duallistbox-text-color) !important;
    background-color: var(--btn-move-remove-all-duallistbox-background-color) !important;
    border-color: transparent !important;
    border-radius: 8px !important;
}

.bootstrap-duallistbox-container .btn-group.buttons .btn.moveall:hover,
.bootstrap-duallistbox-container .btn-group.buttons .btn.removeall:hover {
    color: var(--btn-move-remove-all-duallistbox-text-color-hover) !important;
    background-color: var(--btn-move-remove-all-duallistbox-background-color-hover) !important;
    transition: .3s !important;
}

.bootstrap-duallistbox-container select.form-control {
	scrollbar-width: thin !important;
}

.bootstrap-duallistbox-container select.form-control::-webkit-scrollbar-track {
	background-color: var(--white-02) !important;
	-webkit-box-shadow: inset 0 0 6px var(--white-02) !important;
    box-shadow: inset 0 0 6px var(--white-02) !important;
}
.bootstrap-duallistbox-container select.form-control::-webkit-scrollbar {
	background-color: var(--white-02) !important;
	width: 5px !important;
	height: 5px;
}
.bootstrap-duallistbox-container select.form-control::-webkit-scrollbar-thumb {
	background-color: var(--scroll-thumb-base-custom-color) !important;
	border-radius: 10px;
}

.bootstrap-duallistbox-container .info-container {
    display: flex;
    justify-content: space-between;
}

.bootstrap-duallistbox-container .info-container .btn.pull-right.btn-light.btn-xs {
    padding: 0 !important;
    height: initial !important;
    border: none !important;
    background-color: transparent !important;
    min-width: 40px !important;
    box-shadow: none !important;
    color: var(--primary) !important;
    font-size: var(--font-size) !important;
    float: none;
}

.bootstrap-duallistbox-container .info-container .btn.pull-right.btn-light.btn-xs:hover {color: var(--tertiary) !important;}

.bootstrap-duallistbox-container .info-container .btn.pull-right.btn-light.btn-xs:focus, 
.bootstrap-duallistbox-container .info-container .btn.pull-right.btn-light.btn-xs:active, 
.bootstrap-duallistbox-container .info-container .btn.pull-right.btn-light.btn-xs:focus-visible, 
.bootstrap-duallistbox-container .info-container .btn.pull-right.btn-light.btn-xs:not(:disabled):not(.disabled):active {
    box-shadow: none;
    border: none !important;
    color: var(--tertiary) !important;
}

@media (max-width: 576px) {
    .bootstrap-duallistbox-container {
        --bs-gutter-y: 1rem;
    }
    .bootstrap-duallistbox-container .box1 > label,
    .bootstrap-duallistbox-container .box2 > label {
        margin-left: 2px;
    }
    .bootstrap-duallistbox-container select.form-control {
        height: 100px !important;
    }
}