.mchecklist {}
.mchecklist.selected .field
{
	color:white;
    background: #007FFF;
    font-weight: bold;
}
.mchecklist.selected .field:after
{
	color:white;
}

.mchecklist.open {}
.mchecklist .field {
    border: 2px solid #e8e8e8;
    border-radius: 5px;
    height: 58px;
    /* line-height: 58px; */
    padding-left: 24px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.mchecklist .field:after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    right: 15px;
    color: #005aab;
    font-size: 25px;
    transform: translateY(-50%);
}

.mchecklist.disabled .field {
    color: rgba(0, 0, 0, 0.5);
}

.mchecklist.disabled .field:after {opacity:0.5;}

.mchecklist ._panel {
    background: white;
    padding: 10px;
    padding-top: 4px;
    padding-bottom: 0px;
    border: 2px solid #e8e8e8;
    position: absolute;
    display:none;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
    top: 34px;
}
.mchecklist.open ._panel {
                                  display:block;
                                  font-size: 14px;
                                  max-height: 378px;
                                  overflow-x: auto;
                                  -webkit-touch-callout: none; /* iOS Safari */
                                  -webkit-user-select: none; /* Safari */
                                  -khtml-user-select: none; /* Konqueror HTML */
                                  -moz-user-select: none; /* Old versions of Firefox */
                                  -ms-user-select: none; /* Internet Explorer/Edge */
                                  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
                                  overflow-x: hidden;
                                  }
.mchecklist ._panel .close {
    /* border: 2px solid #e8e8e8; */
    width: 23px;
    height: 23px;
    display: block;
    text-align: center;
    position: absolute;
    top: 5px;
    right: 5px;
}
.mchecklist ._panel .close:after {content:'\f00d';font-family: 'FontAwesome';}
.mchecklist ._panel ._text {
    padding-bottom: 10px;
    font-weight: 700;
}
.mchecklist ._panel ._list {}
.mchecklist ._panel ._list .text {
    padding-bottom: 10px;
}