.select2-search__field {
    width: 100% !important;
}
.select2-selection__rendered {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    margin-left: 10px;
}

.fit-image {
    width: 80%;
    object-fit: cover;
    height: 200px; /* only if you want fixed height */
}

.fit-image-profile {
    width: 100px;
    object-fit: cover;
    height: 100px; /* only if you want fixed height */
}

.span4 img {
    margin-right: 10px;
}
.span4 .img-left {
    float: left;
}
.span4 .img-right {
    float: right;
}

.panel-title {
    position: relative;
}

.panel-title::after {
    content: "\f107";
    color: #333;
    top: -2px;
    right: 0px;
    position: absolute;
    font-family: "FontAwesome";
    float: left;
}

.panel-title[aria-expanded="true"]::after {
    content: "\f106";
}

/* SLIDER CSS */
.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: blue;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4caf50;
    cursor: pointer;
}
