.big-label {
  font-size: 24px;
}
.mbig-label {
  font-size: 20px;
}
input, textarea {
    display: block;
    width: 480px;
    height: 30px;
    margin: 10px 0;
    padding: 4px 8px;
    box-sizing: border-box;
    font-size: 14px;
}
select {
    width: 160px;
    height: 30px;
    box-sizing: border-box;
}
button {
    height: 30px;
    min-width: 40px;
    padding: 4px 8px;
    margin: 4px 0;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 13px;
}
button[onclick*="remove"] {
    font-size: 11px;
    height: 24px;
    padding: 2px 6px;
    min-width: unset;
}
.horizontal {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 10px 0;
}
.horizontal input {
    width: 80px;
    height: 30px;
    display: inline-block;
}

.horizontal label {
    margin-right: 10px;
    white-space: nowrap;
}
.role-wrapper {
    margin-bottom: 10px;
    padding-left: 0;
}
.role-wrapper > .horizontal::before {
    margin-left: 999px;
    font-weight: bold;
    color: #444;
    width: 40px;
    display: inline-block;
}
.name-section {
    margin-left: 40px;
}
.name-section .horizontal {
    margin-left: 10px;
}
.tag-checkbox {
    display: none;
}
.tag-label {
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    width: 80px;
    height: 80px;
}
.tag-label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tag-checkbox:checked + .tag-label {
    border-color: #00aaff;
}