﻿/*This file contains the overwritten content of chosen.css, chosen version 1.4.2 respective css.*/
/* This element is causing an issue—the sprite is not displaying clearly. */
/* Remove background icon from abbr  */
.chosen-container-single .chosen-single abbr {
    background: none !important;
    margin-top: 4px;
}

/* Remove border-radius */
.chosen-container-single .chosen-single,
.chosen-container-single .chosen-drop,
.chosen-container-multi .chosen-choices li.search-choice {
    border-radius: 0 !important;
}

/* Center text in single select */
.chosen-container-single .chosen-single {
    display: flex !important;
    align-items: center !important;
}

    .chosen-container-single .chosen-single span {
        display: block !important;
        width: 100%;
    }

    .chosen-container-single .chosen-single div {
        display: flex !important;
        align-items: center !important; /* Vertical centering */
    }

        .chosen-container-single .chosen-single div b {
            display: flex !important;
            align-items: center !important; /* Vertical centering */
        }

.chosen-container {
    width: 100% !important;
}

.chosen-search input[type='text'] {
    padding: 2px 4% !important;
    width: 90% !important;
    margin: 5px 2%;
}

.chosen-single {
    display: flex;
    align-items: center;
}


.chosen-drop {
    width: 100% !important;
}

.chosen-container.chosen-with-drop .chosen-drop {
    left: 0;
    margin-top: -36px;
}
