@charset "UTF-8";

/**
 * @author zhixin wen <wenzhixin2010@gmail.com>
 */

.ms-offscreen {
    position: absolute !important;
    top: auto !important;
    left: auto !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    clip: rect(0 0 0 0) !important;
    overflow: hidden !important;
}

.ms-parent {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.ms-choice {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

.ms-choice.disabled {
    background-color: #F4F4F4;
    background-image: none;
    border: none;
    cursor: default;
}

.ms-choice>span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    padding-top: 15px;
    padding-left: 17px;
    padding-right: 32px;
    padding-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ms-choice>span.placeholder {
    color: #A0A0A0;
    font-weight: 400;
}

.ms-choice>div.icon-close {
    position: absolute;
    top: 0px;
    right: 16px;
    width: 16px;
    height: 100%;
}

.ms-choice>div.icon-close:before {
    content: '×';
    position: absolute;
    top: 50%;
    margin-top: -14px;
    color: #888;
    font-weight: bold;
}

.ms-choice>div.icon-close:hover:before {
    color: #333;
}

.ms-choice>div.icon-caret {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 0;
    height: 0;
    margin-top: -2px;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #CCCCCC transparent transparent transparent;
}

.ms-choice>div.icon-caret.open {
    border-width: 0 4px 5px 4px;
    border-color: transparent transparent #CCCCCC transparent;
}

.ms-drop {
    display: none;
    position: absolute;
    width: 100%;
    padding: 0;
    margin-top: 4px;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid rgba(181, 205, 52, 1);
    color: #000000;
    font-size: 14px;
    line-height: 16px;
    overflow: hidden;
    animation: ms-drop-anima 0.18s ease-in-out forwards;
    z-index: 1000;
}

@keyframes ms-drop-anima {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.ms-drop.bottom {
    top: 100%;
}

.ms-drop.top {
    bottom: 100%;
}

.ms-search {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    background-image: url(../../assets/search.svg);
    background-position: 10px 12px;
    background-repeat: no-repeat;
    background-size: 16px auto;
    white-space: nowrap;
    z-index: 10000;
}

.ms-search input {
    width: 100%;
    height: 100%;
    padding: 9px;
    padding-left: 32px;
    padding-right: 11px;
    margin: 0;
    box-sizing: border-box;
    border-radius: 0;
    border: none;
    background-color: transparent;
    color: #B5CD34;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    box-shadow: none;
    outline: 0;
}

.ms-drop ul {
    overflow: auto;
    margin: 0;
    padding: 0;
}

.ms-drop ul::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    border-radius: 30px;
}

.ms-drop ul::-webkit-scrollbar-thumb {
    background: #E2E2E2;
    border-radius: 30px;
    border: solid 3px #FFFFFF;
    height: 72px;
}

.ms-drop ul::-webkit-scrollbar-thumb:hover {
    background: #D4D4D4;
}

.ms-drop ul::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 30px;
}

.ms-drop ul>li {
    position: static;
    display: list-item;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    background-image: none;
    transition: 0.18s;
}

.ms-drop ul>li .disabled {
    font-weight: normal !important;
    opacity: 1;
    cursor: default;
}

.ms-drop ul>li.multiple {
    display: block;
    float: left;
}

.ms-drop ul>li.group {
    clear: both;
}

.ms-drop ul>li.multiple label {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ms-drop ul>li label {
    position: relative;
    display: flex;
    column-gap: 8px;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 11px;
    padding-right: 11px;
    margin: 0;
    box-sizing: border-box;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.ms-drop ul>li label.optgroup {
    font-weight: 700 !important;
    color: #B5CD34 !important;
}

.ms-drop ul>li.hide-radio {
    padding: 0;
}

.ms-drop ul>li:focus,
.ms-drop ul>li:hover {
    background-color: rgba(181, 205, 52, 0.15);
}

.ms-drop ul>li:hover {
    background-color: rgba(181, 205, 52, 0.15);
}

.touch .ms-drop ul>li:hover {
    background-color: transparent;
}

.ms-drop ul>li:active,
.touch .ms-drop ul>li:active {
    background-color: rgba(181, 205, 52, 0.15);
}

.ms-drop ul>li.group:focus,
.ms-drop ul>li.group:hover {
    background-color: transparent !important;
}

.ms-drop ul>li.group:hover {
    background-color: transparent !important;
}

.touch .ms-drop ul>li.group:hover {
    background-color: transparent !important;
}

.ms-drop ul>li.group:active,
.touch .ms-drop ul>li.group:active {
    background-color: transparent !important;
}

.ms-drop ul>li.hide-radio.selected {
    color: #B5CD34;
}

.ms-drop ul>li.hide-radio label {
    display: block;
    padding-top: 8px;
    padding-bottom: 9px;
    padding-left: 11px;
    padding-right: 11px;
    margin: 0;
    box-sizing: border-box;
}

.ms-drop ul>li.hide-radio input {
    display: none;
}

.ms-drop ul>li.option-level-1 label {
    padding-left: 28px;
}

.ms-drop input[type="radio"],
.ms-drop input[type="checkbox"] {
    flex: none;
    position: relative;
    margin-top: 0;
    margin-left: 0;
}

.ms-drop input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    width: 17px;
    height: 17px;
    margin: 0;
    box-sizing: border-box;
    background-color: transparent;
    border-radius: 4px;
    border: solid 2px rgba(181, 205, 52, 0.45);
    transition: 0.18s;
}

.ms-drop input[type="checkbox"]:checked {
    background-color: #B5CD34;
    border-color: #B5CD34;
}

.ms-drop input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 4px;
    width: 5px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    background-color: transparent;
    transition: 0.18s;
}

.ms-drop input[type="checkbox"]:focus {
    outline: none;
    outline-offset: unset;
}

.ms-drop input[type="checkbox"]:disabled {
    color: #959495;
    cursor: not-allowed;
}

.ms-drop .ms-no-results {
    display: none;
    padding-top: 8px;
    padding-bottom: 9px;
    padding-left: 11px;
    padding-right: 11px;
    margin: 0;
    box-sizing: border-box;
    color: #999999;
}