.none {
    display: none;
}

.dropdown-group
{
    border: 1px solid #0098c1;
    height: 42px;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 300;
    color: #0098c1;
    outline: none;
    cursor: pointer;
    background-color: #f2f2f2;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.dropdown-title
{
	color: #787878;
	margin-bottom: 5px;
	margin-left: 107px;
}
.dropdown-name
{
	height: 42px;
    line-height: 42px;
    font-size: 20px;
	cursor: pointer;
}

.dropdown-items
{
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid #F2F2F3;
	left: -9px;
	position: relative;
	top: -1px;
	/* width: 398px; */
	display: none;
	z-index: 50;
}
.dropdown-items li
{
	height: 32px;
	line-height: 32px;
	padding-left: 10px;
	list-style-type: none;
	cursor: pointer;
}




.priority-items {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #F2F2F3;
    position: absolute;
    left: 0;
    z-index: 50;
    padding-top: 15px;
    overflow-y: scroll;
    max-height: 30vh;
    display: flex;
    flex-wrap: wrap;    

}

.priority-wrap {
    margin-left: 105px;
    width: 400px;
}

.priority-check-all {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #f9f9f9;
    padding: 7.5px 7.5px 3.75px;
    border: 1px solid #0098c1;
    border-radius: 0;
    font-size: 14px;
    overflow: hidden;

    padding: 5px 10px;
    height: 42px;
    cursor: pointer;
    -webkit-appearance: none;
    background-color: transparent;
}

.check-all {
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 20px;
    line-height: 29px;
    font-weight: lighter;
    color: #0098c1;
    cursor: pointer;
}

.check-group {
    margin: 0;
    border: none;
    background-color: transparent;
    padding: 6px 35px;
    position: relative;
    font-size: 24px;
    line-height: 29px;
    font-weight: lighter;
    color: #0098c1;
    user-select: none;
    width: 25%;

}
.check-group::before {
    position: absolute;
    display: block;
    content: "";
    width: 17px;
    height: 17px;
    top: 13px;
    left: 10px;
    border: 1px solid #0098c1;
}

.check-priority input[type='checkbox'] {
    display: none;
}

.check-priority input[type='checkbox']:checked + .check-group::before {
    display: inline-block;
    background: url("/assets/img/icons-sprite.svg#bckg-check") 50% 50% / 13px 12px no-repeat;
}