<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">form label {
    margin-bottom: 0;
}

.unit-form .dropdown-item {
  white-space: break-spaces;
  word-break: break-word;
}

[form-style] .form-control,
[form-style] .dropdown-menu,
[form-style] .dropdown-item,
[form-style] .dropdown-item.active,
[form-style] .dropdown-item:active {
    color: unset;
    font-size: unset;
}

.unit-form__select-box:after {
    content: "\e65c";
    font-family: iconfont;
    color: #000;
    position: absolute;
    right: var(--x);
    top: 2px;
    padding-top: var(--y);
    pointer-events: none;
}

[form-style] .unit-form__select-box:after {
    color: inherit;
}

.unit-form .unit-form__select-options {
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    border: solid 1px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
    /*background-color: inherit;*/
}

.unit-form .unit-form__select-option:active,
.unit-form .unit-form__select-option:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

.unit-form .unit-form__select-option {
    min-height: 32px;
}

form .dropdown {
    position: relative;
}

form .unit-form__select-box {
    flex-grow: 1;
}

.unit-form__checkbox img {
    position: relative;
    --loading-size: 1rem;
    --loading-bg: rgba(245, 245, 245, 1);
}

.unit-form__checkbox img.loading:before {
    background: var(--loading-bg);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.unit-form__checkbox img.img-error {
    opacity: 0;
}

.unit-form__checkbox-list {
    display: flex;
    flex-grow: 1;
}

.unit-form__checkbox-list-inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    /*gap: 16px;*/
    flex-grow: 1;
    flex-wrap: wrap;
    row-gap: 10px;
}

.unit-form__item {
    display: flex;
}

.unit-form__item.unit-form__item-submit {
    display: block;
}

.unit-form__item-inner {
    flex-grow: 1;
}

.checkbox-use-img .unit-form__checkbox-label {
    padding-top: 8px;
    text-align: center;
    display: flex;
    flex-direction: row;
}

.unit-form__checkbox-label {
    text-align: left;
}

.unit-form__checkbox-inner {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

form .unit-form__checkbox-list.unit-form__control,
form .unit-form__checkbox-list.unit-form__control ~ .unit-form__label {
    padding-top: var(--y);
    padding-bottom: var(--y);
}

form .unit-form__checkbox-list.unit-form__control:not(.checkbox-use-img) .unit-form__checkbox-list-inner {
    padding-top: calc(var(--y) + 15px);
}

form .unit-form__checkbox-list.unit-form__control.checkbox-use-img .unit-form__checkbox-list-inner {
    padding-top: calc(var(--y) + 15px);
}

.checkbox-use-img .unit-form__checkbox-inner {
    flex-direction: column;
}

.checkbox-use-img .unit-form__checkbox-input-box {
    width: 100%;
}

.checkbox-use-img .unit-form__checkbox-inner &gt; .unit-form__checkbox-label {
    --label-shrink-width: 26px;
    width: 100%;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

.checkbox-use-img .unit-form__checkbox-inner &gt; .unit-form__checkbox-label &gt; .label-shrink {
    width: var(--label-shrink-width);
}

.checkbox-use-img .unit-form__checkbox-inner &gt; .unit-form__checkbox-label &gt; .label-content {
    flex-grow: 1;
}

.checkbox-use-img .unit-form__checkbox .label-content {
    width: calc(100% - var(--label-shrink-width));
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.unit-form__checkbox-list .unit-form__checkbox {
    padding-left: 0;
    padding-right: 0;
}

.unit-form__checkbox-input-box {
    margin: 0;
}

.unit-form__checkbox-inner &gt; .unit-form__checkbox-input-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.unit-form__checkbox {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: flex-start;
}

.checkbox-use-img .unit-form__checkbox-inner {
    min-width: 116px;
    max-width: 118px;
}

.unit-form__checkbox .custom-checkbox {
    width: 18px;
    height: 18px;
    position: relative;
    margin: 2px 8px 0 0;
    background: #f5f5f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: solid 1px rgba(0, 0, 0, .1);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.unit-form__checkbox .custom-checkbox input[type="checkbox"] {
    opacity: 0;
}

.unit-form__checkbox img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    display: block;
}

.unit-form__checkbox input[type="checkbox"] ~ .checked {
    display: none;
    background: var(--main-color);
    color: #f5f5f5;
    font-size: 10px;
    line-height: 16px;
    font-weight: lighter;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
}

.unit-form__checkbox input[type="checkbox"]:checked ~ .checked {
    display: block;

}

[checkbox-style="2"] .unit-form__checkbox img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
[checkbox-style="2"] .unit-form__checkbox-label {
  padding-top: 0;
}
[checkbox-style="2"] .unit-form__checkbox-inner {
  min-width: unset;
  max-width: unset;
}
[checkbox-style="2"].checkbox-use-img .unit-form__checkbox-inner&gt;.unit-form__checkbox-input-box {
  align-items: flex-start;
}
[checkbox-style="2"].checkbox-use-img .unit-form__checkbox .label-content {
  text-align: left;
  align-self: center;
}
[checkbox-style="2"] .unit-form__checkbox .label-content{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.unit-form{
    overflow: hidden;
}</pre></body></html>