@media print {
    .sm-combobox {
        display: none !important;
    }
}
@media not print {
    .sm-combobox {
        display: flex;
    }
}
.sm-combobox {
	margin-top: 0.25em;
    margin-bottom: 0.25em;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.sm-combobox .select {
	width: 100%;
}
.sm-combobox .select-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
}
.sm-combobox .select-wrap:after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--main-low-visibility-color);
    position: absolute;
    right: 0;
    top: 0.75em;
    z-index: 1;
    padding-right: 0.8em;
    height: 100%;
    pointer-events: none;
}