/*---------------
  --------Multi Select Options-------- */



/**********Multi Dropdown*****************/
.multi-dropdown
{
    position: relative;
    margin: 15px 0px;
}


.multi-dropdown label{
    position: absolute;
    cursor: text;
    z-index: 2;
    top: 13px;
    left: 20px;
    font-size: 14px;
    background: white;
    color: gray;
    font-weight: normal;
    transition: all .3s ease;
    line-height: 1.38;
}

.multi-dropdown label:hover
{
    cursor: pointer;
    color: #1aa7ec;
}


.multi-dropdown select {
    font-size: 14px;
    background: white;
    color: #1aa7ec;
    font-weight: normal;
    text-align-last: center;
    width: 300px;
    border: 1px solid #1aa7ec;
}

.multi-dropdown span
{
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 46px;
}

.select_box_area {
    position: relative;
    display: inline-block;
}

.select_box_area p {
    margin-bottom: 0px;
    min-width: 300px;
    max-width: 300px;
    line-height: 24px;
    cursor: pointer;
    font-size: 14px;
    background: white;
    color: #1aa7ec;
    font-weight: normal;
    box-shadow: none;
    -webkit-border-radius: 44px;
    -moz-border-radius: 44px;
    -ms-border-radius: 44px;
    border-radius: 44px;
    display: block;
    border: solid 1px #ededed;
    transition: all .3s ease;
    padding: 15px;
    text-align: center;
}
.select_box_area p em {
    position: absolute;
    right: 15px;
    top: 13px;
    font-size: 20px;
    transition: all 0.3s linear; }
.select_box_area p em.angle-up {
    transform: rotate(180deg); }
.select_box_area p .option {
    position: relative;
    display: inline-block;
    padding-right: 15px; }
.select_box_area p .option::after {
    content: ",";
    position: absolute;
    right: 5px;
    top: 0; }
.select_box_area p .option:last-of-type {
    padding-right: 0px; }
.select_box_area p .option:last-of-type::after {
    display: none; }

.filter_list {
    padding: 0px;
    background: white;
    display: none;
    border: solid 1px #ededed;
    border-radius: 10px;
    position: absolute;
    z-index: 100;
    width: 100%;
}

.filter_list li {
    list-style: none;
    text-align: left;
    color: #1aa7ec;
    padding: 5px;
}
.filter_list li label {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 0px;
    font-size: 14px;
    cursor: pointer; }
.filter_list li input[type="checkbox"] {
    margin-right: 5px; }
.filter_list li + li {
    border-top: 1px solid #999999; }

.custom-select {
    display: none; }

/*---------------
  --------End Multi Select Options-------- */

@media(max-width: 767px)
{
    .select_box_area p
    {
        min-width: 300px;
    }
}


/*@media(max-width: 575px)*/
/*{*/
/*    .select_box_area p*/
/*    {*/
/*        min-width: 460px;*/
/*    }*/
/*}*/
