span.msg,
span.choose {
    position: relative;
    left: 8px;
    font-size: 18px;
    color: black;
    padding: 5px 0 10px;
    display: inherit
}

.dropdown2 {
    width: 100%;
    display: inline-block;
    background-color: #3f4753;
    border-radius: 2px;
    box-shadow: 0 10px 10px rgb(0 0 0 / 18%), 0 1px 1px rgba(8, 0, 17, .1), 0 3px 4px rgba(8, 0, 17, .14);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#74c8ff', endColorstr='#beefe7',GradientType=1 );
    transition: all .5s ease;
    position: relative;
    font-size: 16px;
    color: #2A2A2A;
    height: 100%;
    text-align: left
}
.dropdown2 .select {
    cursor: pointer;
    display: block;
    padding: 10px
}
.dropdown2 .select > i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px
}
.dropdown2:hover {
    box-shadow: 0 0 4px rgb(204, 204, 204)
}
.dropdown2:active {
    background-color: #f8f8f8
}
.dropdown2.active:hover,
.dropdown2.active {
    box-shadow: 0 0 4px rgb(204, 204, 204);
    border-radius: 2px 2px 0 0;
    background-color: #f8f8f8
}
.dropdown2.active .select > i {
    transform: rotate(-90deg)
}
.dropdown2 .dropdown2-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px rgb(204, 204, 204);
    border-radius: 0 1px 2px 2px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9
}
.dropdown2 .dropdown2-menu li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
}
.dropdown2 .dropdown2-menu {
    padding: 0;
    list-style: none
}
.dropdown2 .dropdown2-menu li:hover {
    background-color: #f2f2f2
}
.dropdown2 .dropdown2-menu li:active {
    background-color: #e2e2e2
}