select.custom-multiselect {
    pointer-events: none;
}
.custom-multiselect.hidden {
    display: none;
}

.form .custom-multiselect-wrapper {
    position: relative;
}
.form .custom-multiselect-wrapper .custom-multiselect-header {
    position: relative;
    width: 100%;
	padding: 15px 0;
	border-bottom: 1px solid var(--blue);
    cursor: pointer;
    margin-top: 20px;
}
.form .custom-multiselect-wrapper .custom-multiselect-header::before {
	content: "";
	position: absolute;
    top: 2px;bottom: 0;
    right: 2px;
    margin: auto;
    width: 5px;
    height: 5px;
    border-right: 1px solid var(--darkblue);
    border-bottom: 1px solid var(--darkblue);
    transform: scaleX(1.25) rotate(45deg);
}

.form .custom-multiselect-wrapper .custom-multiselect-header label {
    pointer-events: none;
    opacity: .5;
}

.form .custom-multiselect-wrapper .custom-multiselect-content {
    position: absolute;
    top: 47px;
    left: 0;right: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}
.form .custom-multiselect-wrapper .custom-multiselect-content > div {
    padding: 30px;
    background-color: white;
    border-left: 1px solid var(--blue);
    border-right: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
}


.form .custom-multiselect-wrapper .custom-multiselect-content-options {
    max-height: 270px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-right: -10px;
    padding-right: 8px;
}
.form .custom-multiselect-wrapper .custom-multiselect-content-options::-webkit-scrollbar-track {
    background-color: transparent;
}
.form .custom-multiselect-wrapper .custom-multiselect-content-options::-webkit-scrollbar {
    width: 2px;
    background-color: transparent;
}
.form .custom-multiselect-wrapper .custom-multiselect-content-options::-webkit-scrollbar-thumb {
    background-color: #d0d1d1;
}

.form .custom-multiselect-wrapper .custom-multiselect-content-options > div {
    margin: -10px;
    display: flex;
    flex-wrap: wrap;
}
.form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div {
    padding: 10px;
    max-width: 50%;
    flex: 0 0 50%;
    display: flex;
}
.form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div label:last-child {
    flex: 1;
    font-size: 14px;
    color: var(--darkblue);
    line-height: 1.25;
    margin-top: 2px;
}


.form .custom-multiselect-wrapper .custom-multiselect-content-footer {
    margin-top: 40px;
}
.form .custom-multiselect-wrapper .custom-multiselect-content-footer .button {
    padding: 10px 13px;
    font-size: 12px;
}
.form .custom-multiselect-wrapper .custom-multiselect-content-footer .button:not(.button-fill)::after {
    background-color: white;
}
.form .custom-multiselect-wrapper .custom-multiselect-content-footer .button + .button {
    margin-left: 10px;
}

.form select.custom-multiselect[disabled] + .custom-multiselect-wrapper .custom-multiselect-tags span {
    pointer-events: none;
}

.form .custom-multiselect-wrapper .custom-multiselect-tags {
    margin: 10px -15px -10px;
}
.form .custom-multiselect-wrapper .custom-multiselect-tags.has-multiselect-tags {
    margin: 0;
}

.form .custom-multiselect-wrapper .custom-multiselect-tags > span {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    margin: 10px 15px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    line-height: 1;
    text-transform: uppercase;
}

.form .custom-multiselect-wrapper .custom-multiselect-tags.has-multiselect-tags > div {
    position: relative;
    padding: 20px;
    background-color: white;
    border: 1px solid #e0dede;
    margin-top: 30px;
    text-align: left;
}
.form .custom-multiselect-wrapper .custom-multiselect-tags.has-multiselect-tags > div + div {
    margin-top: 10px;
}
.form .custom-multiselect-wrapper .custom-multiselect-tags.has-multiselect-tags > div p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--darkblue);
    line-height: 1;
    margin: 0;
    margin-bottom: 20px;
}

.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close {
    position: absolute;
    top: 0;bottom: 0;
    left: 0;
    width: 10px;height: 10px;
    margin: auto;
}
.form .custom-multiselect-wrapper .custom-multiselect-tags.has-multiselect-tags > * > a.tag-close {
    width: 12px;height: 12px;
    top: 10px;bottom: auto;
    right: 10px;left: auto;
}
.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::before,
.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::after {
    content: "";
    position: absolute;
    top: 0;bottom: 0;
    margin: auto;
    width: 12px;
    height: 1px;
    background-color: var(--blue);
    transition: var(--transition);
}
.form .custom-multiselect-wrapper .custom-multiselect-tags.has-multiselect-tags > * > a.tag-close::before,
.form .custom-multiselect-wrapper .custom-multiselect-tags.has-multiselect-tags > * > a.tag-close::after {
    width: 15px;
    height: 2px;
    border-radius: 2px;
}
.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close:hover::before,
.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close:hover::after {
    background-color: var(--darkblue);
}
.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::before {
    transform: rotate(45deg);
}
.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::after {
    transform: rotate(-45deg);
}