.tvx-subtitle {
    line-height: 16px;
    display: block;
    margin: 6px 0 6px 0;
    font-family: var(--app-font-bold);
    font-size: 14px;
    color: var(--app-dark-grey);
}

.tvx-subheader {
    font-family: var(--app-font-medium);
    color: var(--app-dark-grey);
    margin: 6px 0;
    font-size: 12px;
}

.tvx-label {
    font-size: 10px;
    font-family: var(--app-font-bold);
    color: var(--app-icon);
}

.tvx-bold-text {
    font-family: var(--app-font-bold);
}

.tvx-strong-text {
    font-family: var(--app-font-medium);
    line-height: 1.5;
    font-size: 12px;
}

.tvx-description {
    color: var(--app-dark-grey);
    font-family: var(--app-font-regular);
    font-size: 12px;
    display: block;
    line-height: 1.5;
    margin: 0 0 6px 0;
}

.tvx-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0;
}

.tvx-list-item > span {
    color: var(--app-mid-grey);
    font-size: 12px;
    line-height: 18px;
}

.tvx-radio-description-pair {
    display: flex;
    flex-direction: column;
}

.tvx-radio-description-pair * {
    line-height: 1.5;
    word-break: normal;
}

.tvx-radio-description-pair *:last-child {
    font-size: 10px;
    color: var(--app-mid-grey);
    display: flex;
}

button[class^="tvx-button-"] {
    width: 100%;
    height: 36px;
    margin: 6px 0;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--app-white);
    line-height: 18px;
    font-family: var(--app-font-medium);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    box-shadow: none;
}

button.tvx-button-simple {
    width: auto;
    border: none;
    background: none;
    margin-left: 32px;
    height: 15px;
    font-family: var(--app-font-medium);
    font-size: 12px;
    font-weight: 500;
    color: var(--app-btn-color);
    padding: 0;
}

button.tvx-button-simple:hover {
    cursor: pointer;
    color: var(--app-btn-color-hover);
}

button.tvx-button-simple:disabled {
    color: var(--app-light-grey);
    cursor: not-allowed;
}

.flex {
    display: flex;
}

.counter {
    color: var(--app-main-color);
}

button.tvx-button-ghost {
    border: 1px solid var(--app-btn-color);
    color: var(--app-btn-color);
}

button.tvx-button-ghost:hover {
    cursor: pointer;
    border-color: var(--app-btn-color-hover);
    color: var(--app-btn-color-hover);
}

button.tvx-button-ghost:disabled {
    border-color: var(--app-ornament);
    color: var(--app-ornament);
    cursor: not-allowed;
}

button.tvx-button-ghost-white {
    border: 1px solid var(--app-white);
    color: var(--app-btn-color);
}

button.tvx-button-ghost-white:hover {
    cursor: pointer;
    border-color: var(--app-btn-color-hover);
    color: var(--app-btn-color-hover);
}

button.tvx-button-ghost-white:disabled {
    border-color: var(--app-ornament);
    color: var(--app-ornament);
    cursor: not-allowed;
}

button.tvx-button-ghost-white:focus {
    outline: 0;
}

button.tvx-button-ghost-destroy {
    border: 1px solid var(--app-white);
    color: var(--app-btn-color);
}

button.tvx-button-ghost-destroy:hover {
    cursor: pointer;
    border-color: var(--app-notification);
    color: var(--app-notification);
}

button.tvx-button-ghost-destroy:disabled {
    border-color: var(--app-ornament);
    color: var(--app-ornament);
    cursor: not-allowed;
}

button.tvx-button-ghost-destroy:focus {
    outline: 0;
}

button.tvx-button-solid {
    border: none;
    color: var(--app-white);
    background-color: var(--app-btn-color);
}

button.tvx-button-solid:hover {
    cursor: pointer;
    background-color: var(--app-btn-color-hover);
}

button.tvx-button-solid:disabled {
    background-color: var(--app-ornament);
    cursor: not-allowed;
}

button.tvx-button-solid:focus {
    outline: 0;
}

button.tvx-button-destroy {
    border: none;
    color: var(--app-white);
    background-color: var(--app-notification);
}

button.tvx-button-destroy:hover {
    cursor: pointer;
    background-color: #d43f37;
}

button.tvx-button-destroy:disabled {
    background-color: var(--app-ornament);
    cursor: not-allowed;
}

.tvx-button-destroy-ghost {
    background-color: var(--app-white);
    border-color: var(--app-notification);
    color: var(--app-notification);
    border: 1px solid;
}

.tvx-button-destroy-ghost:hover {
    cursor: pointer;
    border-color: var(--app-notification);
    color: var(--app-white);
    background-color: var(--app-notification);
}

.tvx-button-destroy-ghost:disabled {
    border-color: var(--app-ornament);
    color: var(--app-ornament);
    cursor: not-allowed;
}

img.icon:hover {
    cursor: pointer;
    filter: opacity(0.6);
}

.tvx-input-field, .tvx-select, .tvx-textarea-input {
    width: 100%;
    margin: 6px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tvx-input-field > label, .tvx-select > label, .tvx-textarea-input > label {
    font-size: 10px;
    font-family: var(--app-font-bold);
    color: var(--app-icon);
    margin-bottom: 6px;
    line-height: 12px;
}

.tvx-input-field > label.disabled, .tvx-select > label.disabled, .tvx-textarea-input > label.disabled {
    color: var(--app-mid-grey);
}

.tvx-input-field > *[type=text], .tvx-input-field *[type=number], .tvx-input-field *[type=date], .tvx-input-field *[type=time], .tvx-input-field *[type=email], .tvx-input-field *[type=search], .tvx-input-field *[type=password], .tvx-input-field textarea, .tvx-select > *[type=text], .tvx-select *[type=number], .tvx-select *[type=date], .tvx-select *[type=time], .tvx-select *[type=email], .tvx-select *[type=search], .tvx-select *[type=password], .tvx-select textarea, .tvx-textarea-input > *[type=text], .tvx-textarea-input *[type=number], .tvx-textarea-input *[type=date], .tvx-textarea-input *[type=time], .tvx-textarea-input *[type=email], .tvx-textarea-input *[type=search], .tvx-textarea-input *[type=password], .tvx-textarea-input textarea {
    width: 100%;
    border-radius: 4px;
    border: solid 1px var(--app-ornament);
    background-color: var(--app-white);
    margin: 0;
    font-size: 12px;
    box-sizing: border-box;
    color: var(--app-dark-grey);
    line-height: 18px;
}

.tvx-input-field > *[type=text]:focus, .tvx-input-field *[type=number]:focus, .tvx-input-field *[type=date]:focus, .tvx-input-field *[type=time]:focus, .tvx-input-field *[type=email]:focus, .tvx-input-field *[type=search]:focus, .tvx-input-field *[type=password]:focus, .tvx-input-field textarea:focus, .tvx-select > *[type=text]:focus, .tvx-select *[type=number]:focus, .tvx-select *[type=date]:focus, .tvx-select *[type=time]:focus, .tvx-select *[type=email]:focus, .tvx-select *[type=search]:focus, .tvx-select *[type=password]:focus, .tvx-select textarea:focus, .tvx-textarea-input > *[type=text]:focus, .tvx-textarea-input *[type=number]:focus, .tvx-textarea-input *[type=date]:focus, .tvx-textarea-input *[type=time]:focus, .tvx-textarea-input *[type=email]:focus, .tvx-textarea-input *[type=search]:focus, .tvx-textarea-input *[type=password]:focus, .tvx-textarea-input textarea:focus {
    box-shadow: none;
    border-color: var(--app-btn-color);
}

.tvx-input-field > *[type=text]:after, .tvx-input-field *[type=number]:after, .tvx-input-field *[type=date]:after, .tvx-input-field *[type=time]:after, .tvx-input-field *[type=email]:after, .tvx-input-field *[type=search]:after, .tvx-input-field *[type=password]:after, .tvx-input-field textarea:after, .tvx-select > *[type=text]:after, .tvx-select *[type=number]:after, .tvx-select *[type=date]:after, .tvx-select *[type=time]:after, .tvx-select *[type=email]:after, .tvx-select *[type=search]:after, .tvx-select *[type=password]:after, .tvx-select textarea:after, .tvx-textarea-input > *[type=text]:after, .tvx-textarea-input *[type=number]:after, .tvx-textarea-input *[type=date]:after, .tvx-textarea-input *[type=time]:after, .tvx-textarea-input *[type=email]:after, .tvx-textarea-input *[type=search]:after, .tvx-textarea-input *[type=password]:after, .tvx-textarea-input textarea:after {
    content: "";
    display: table;
    clear: both;
}

.tvx-input-field > *[type=text].error, .tvx-input-field *[type=number].error, .tvx-input-field *[type=date].error, .tvx-input-field *[type=time].error, .tvx-input-field *[type=email].error, .tvx-input-field *[type=search].error, .tvx-input-field *[type=password].error, .tvx-input-field textarea.error, .tvx-select > *[type=text].error, .tvx-select *[type=number].error, .tvx-select *[type=date].error, .tvx-select *[type=time].error, .tvx-select *[type=email].error, .tvx-select *[type=search].error, .tvx-select *[type=password].error, .tvx-select textarea.error, .tvx-textarea-input > *[type=text].error, .tvx-textarea-input *[type=number].error, .tvx-textarea-input *[type=date].error, .tvx-textarea-input *[type=time].error, .tvx-textarea-input *[type=email].error, .tvx-textarea-input *[type=search].error, .tvx-textarea-input *[type=password].error, .tvx-textarea-input textarea.error {
    border-color: var(--app-notification);
}

.tvx-input-field > *[type=text][type=search], .tvx-input-field *[type=number][type=search], .tvx-input-field *[type=date][type=search], .tvx-input-field *[type=time][type=search], .tvx-input-field *[type=email][type=search], .tvx-input-field *[type=search][type=search], .tvx-input-field *[type=password][type=search], .tvx-input-field textarea[type=search], .tvx-select > *[type=text][type=search], .tvx-select *[type=number][type=search], .tvx-select *[type=date][type=search], .tvx-select *[type=time][type=search], .tvx-select *[type=email][type=search], .tvx-select *[type=search][type=search], .tvx-select *[type=password][type=search], .tvx-select textarea[type=search], .tvx-textarea-input > *[type=text][type=search], .tvx-textarea-input *[type=number][type=search], .tvx-textarea-input *[type=date][type=search], .tvx-textarea-input *[type=time][type=search], .tvx-textarea-input *[type=email][type=search], .tvx-textarea-input *[type=search][type=search], .tvx-textarea-input *[type=password][type=search], .tvx-textarea-input textarea[type=search] {
    padding-left: 28px;
    background: url(/img/svg/search-darkgrey.svg) no-repeat 6px center;
    background-size: 18px;
}

.tvx-input-field > *[type=text][disabled], .tvx-select > *[type=text][disabled], .tvx-textarea-input > *[type=text][disabled] {
    color: var(--app-mid-grey);
    background: var(--app-super-light-grey) url("/img/svg/lock-24-px.svg") calc(100% - 4px) 5px no-repeat;
}

.tvx-input-field > input, .tvx-select > input, .tvx-textarea-input > input {
    height: 30px;
}

.tvx-input-field > textarea, .tvx-select > textarea, .tvx-textarea-input > textarea {
    height: 60px;
    resize: vertical;
}

.tvx-input-field > select, .tvx-select > select, .tvx-textarea-input > select {
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    height: 30px;
    padding: 0 0 0 12px;
    font-size: 12px;
    line-height: 1;
    background: url("/img/svg/arrow-drop-down-24-px.svg") calc(100% - 4px) 5px no-repeat;
}

.tvx-input-field > select::-ms-expand, .tvx-select > select::-ms-expand, .tvx-textarea-input > select::-ms-expand {
    display: none;
}

.tvx-input-field > select > option, .tvx-select > select > option, .tvx-textarea-input > select > option {
    font-family: var(--app-font-regular);
}

.tvx-input-field > select > option:hover, .tvx-select > select > option:hover, .tvx-textarea-input > select > option:hover {
    cursor: pointer;
}

.tvx-input-field > *[disabled], .tvx-select > *[disabled], .tvx-textarea-input > *[disabled] {
    color: var(--app-mid-grey);
    background: var(--app-super-light-grey) url("/img/svg/lock-24-px.svg") calc(100% - 4px) 5px no-repeat;
}

.tvx-select-and-input {
    display: flex;
    justify-content: center;
}

.tvx-select-and-input > div:first-child {
    width: 20%;
    margin-right: 6px;
}

.tvx-select-and-input > div:last-child {
    width: 80%;
}

.tvx-input-radio {
    display: flex;
    width: 352px;
    align-items: center;
    margin: 6px 0;
}

.tvx-input-radio > input {
    margin: 0 12px 0 0;
    accent-color: var(--app-btn-color);
}

.tvx-input-radio > label {
    line-height: 18px;
    font-family: var(--app-font-regular);
    font-size: 12px;
    color: var(--app-dark-grey);
    margin: 0;
}

.tvx-input-radio > label.disabled {
    color: var(--app-ornament);
}

.tvx-input-radio .tvx-radio-btn-img {
    width: 28px;
    margin-right: 10px;
}

.tvx-group-select {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.tvx-group-select .tvx-select {
    margin-left: 12px;
}

.dropdown-menu .active > a, .dropdown-menu .active > a:hover {
    background-color: var(--app-btn-color);
    background-image: none;
}

[class^="hint-component-"], [class*=" hint-component"], .hint-component {
    width: 100%;
    margin: 6px 0 6px 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: var(--app-super-light-grey);
    padding: 12px;
    box-sizing: border-box;
    line-height: 1.5;
    font-size: 10px;
    font-family: var(--app-font-regular);
    color: var(--app-icon);
}

.hint-component-strong-no-icon {
    background-color: var(--app-light-yellow);
}

.hint-component-error-no-icon {
    background-color: var(--app-red-lighten-10);
}

[class^="hint-component-"][class$="-strong"], [class^="hint-component-"][class*="-strong "], [class*=" hint-component"][class$="-strong"], [class*=" hint-component"][class*="-strong "], .hint-component[class$="-strong"], .hint-component[class*="-strong "] {
    padding: 12px 12px 12px 36px;
    background: var(--app-light-yellow) url("/img/svg/info-flow-dark-grey.svg") 10px no-repeat;
    color: var(--app-dark-grey);
}

[class^="hint-component-"][class$="-error"], [class^="hint-component-"][class*="-error"], [class*=" hint-component"][class$="-error"], [class*=" hint-component"][class*="-error"], .hint-component[class$="-error"], .hint-component[class*="-error"] {
    padding: 12px 12px 12px 36px;
    background: rgba(248,78,70, 0.1) url("/img/svg/report-24-px.svg") 10px no-repeat;
    color: var(--app-notification);
}

[class^="hint-component-"][class$="-multiline"], [class^="hint-component-"][class*="-multiline"], [class*=" hint-component"][class$="-multiline"], [class*=" hint-component"][class*="-multiline"], .hint-component[class$="-multiline"], .hint-component[class*="-multiline"] {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

[class^="hint-component-"][class$="-multiline"] *:not(:last-child), [class^="hint-component-"][class*="-multiline"] *:not(:last-child), [class*=" hint-component"][class$="-multiline"] *:not(:last-child), [class*=" hint-component"][class*="-multiline"] *:not(:last-child), .hint-component[class$="-multiline"] *:not(:last-child), .hint-component[class*="-multiline"] *:not(:last-child) {
    margin-bottom: 12px;
}

.tvx-sound-upload {
    width: 352px;
    padding: 12px;
    border: 1px solid var(--app-background-color);
    box-sizing: border-box;
}

.tvx-sound-upload .tvx-file-upload {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.tvx-sound-upload .tvx-file-upload button {
    width: 130px;
    height: 28px;
    margin: 0 12px 0 0;
}

.tvx-sound-upload .tvx-file-upload .file-label {
    font-family: var(--app-font-regular);
    font-size: 12px;
}

.tvx-drag-drop {
    width: 352px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.tvx-drag-drop .drag-drop {
    height: 80px;
    background-color: var(--app-background-color);
    border-radius: 5px;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    color: var(--app-mid-grey);
    margin: 5px 0;
}

.tvx-drag-drop .is-dragover {
    background-color: var(--app-ornament);
}

.tvx-drag-drop .choose-file {
    text-align: center;
    margin: 5px 0 0 0;
    cursor: pointer;
}

ul.tvx-ul {
    width: 100%;
    display: inline-block;
    list-style-type: disc;
    margin-block-start: 6px;
    margin-block-end: 6px;
    margin-inline-start: 6px;
    margin-inline-end: 0;
    padding-inline-start: 18px;
    padding-inline-end: 6px;
}

ul.tvx-ul > li {
    height: 24px;
    font-size: 18px;
}

ul.tvx-ul > li > span {
    font-size: 12px;
}

.more-options-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 24px;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 22px;
    box-sizing: border-box;
}

.more-options-container .tvx-more-button {
    margin-bottom: 2px;
    cursor: pointer;
    background: transparent;
    border-radius: 100%;
    padding: 6px;
}

.more-options-container .tvx-more-button:hover {
    cursor: pointer;
    background: var(--app-super-light-grey);
}

.more-options-container .tvx-more-button-box {
    background-color: var(--app-white);
    width: 188px;
    padding: 10px 0;
    border-radius: 2px;
    box-shadow: 0 2px 3px 0 rgba(93, 93, 93, 0.5);
    box-sizing: border-box;
}

.more-options-container .tvx-more-button-box .tvx-more-button-box-option {
    width: 100%;
    box-sizing: border-box;
    padding: 2px 18px;
}

.more-options-container .tvx-more-button-box .tvx-more-button-box-option:hover {
    background-color: var(--app-super-light-grey);
    cursor: pointer;
}

.tvx-horizontal-line {
    margin: 6px 0;
    border-top: 1px solid var(--app-background-color);
}

.tvx-feature-row {
    display: flex;
    align-items: center;
}

.tvx-feature-row .tvx-feature-item {
    padding: 24px 0;
    margin: 0 6px;
}

.tvx-feature-row .tvx-feature-item > img {
    height: 22px;
    width: 22px;
}

.tvx-feature-row .tvx-feature-item.tvx-first-item {
    margin-right: 6px;
}

.tvx-feature-row .tvx-feature-item.tvx-las-item {
    margin-left: 6px;
}

div[class^="tvx-panel-select-"] {
    width: 100%;
    margin: 6px 0;
    border-radius: 4px;
    font-size: 10px;
    font-family: var(--app-font-regular);
    box-shadow: none;
    padding: 8px;
}

div[class^="tvx-panel-select-"] .grid-container {
    display: grid;
    grid-template-columns:auto auto;
    width: 100%;
}

div[class^="tvx-panel-select-"] .grid-container .grid-item1 {
    text-align: left;
    margin-inline: 5px;
}

div[class^="tvx-panel-select-"] .grid-container .grid-item2 {
    text-align: right;
    margin-inline: 5px;
}

.tvx-panel-select-button {
    background-color: var(--app-white);
    border: 1pt solid var(--app-light-grey);
}

.tvx-panel-select-button:hover {
    cursor: pointer;
    border: 1pt solid black;
    color: var(--app-btn-color-hover);
}

.tvx-panel-select-button:disabled {
    border-color: var(--app-ornament);
    color: var(--app-ornament);
    cursor: not-allowed;
}

.tvx-panel-select-notbutton {
    background-color: var(--app-super-light-grey);
}

.transition-all {
    transition: all 0.5s ease;
}

.tvx-link-edit {
    color: var(--app-main-color);
    text-decoration: underline;
}

.tvx-link-edit:hover {
    color: var(--app-main-color);
}
