﻿.welcome-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
}

.qf-image-container {
    display: flex;
}

.qf-image-thumbnails-container {
    position: relative;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100px;
    overflow: auto;
    background-color: #EEE;
    border-right: solid 1px #d8d7d9;
}

.qf-image-thumbnails {
    width: 100%;
    position: absolute;
    margin: 0;
    padding-bottom: 60px;
    list-style-type: none;
    box-sizing: border-box;
}

.qf-image-thumbnails img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.qf-image-thumbnails li {
    border: 2px solid transparent;
    cursor: grab;
}

.qf-image-thumbnails li.selected {
    border-color: hsl(200, 20%, 30%);
}

.qf-image-thumbnails .dndPlaceholder {
    background-color: #ddd;
    display: block;
    height: 50px;
}

.qf-image-thumbnails .dndDraggingSource {
    display: none;
}

.qf-image-trash {
    width: 100%;
    height: 60px;
    padding: 5px;
    z-index: 1;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    border: 1px solid transparent;
    position: sticky;
    top: calc(100% - 60px);
}

.qf-image-trash.dndDragover {
    border-color: #333;
}

.qf-image-trash * {
    width: 100%;
    height: 100%;
}

.qf-image-trash li {
    display: none;
}

.qf-image-select {
    cursor: pointer;
    flex-grow: 5;
    flex-basis: 0;
    max-height: 500px;
    object-fit: contain;
}

.qf-macro-select-container {
    left: 50%;
    width: 200px;
    height: 110px;
    position: absolute;
    transform: translate(-50%, -50%);
}

.qf-macro-select {
    padding: 10px 5px 10px !important;
    cursor: pointer;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0.9;
}

.qf-macro-select:hover {
    opacity: 1;
}

.qf-image-select:hover {
    border-color: #BBB;
}

.qf-image-select:hover .icon {
    color: #BBB;
}

.qf-macro-select .icon {
    margin: 0 !important;
}

.qf-macro-select-empty {
    height: 100%;
}

.qf-macro-select-preview {
    pointer-events: none;
    cursor: default;
    width: 100%;
    height: 100%;
}

.image-macro {
    max-height: 70px;
    object-fit: contain;
}

.qf-macro-delete {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -16px;
    right: -16px;
    background: white;
    border-radius: 50%;
    border: black solid 1px;
    cursor: pointer;
}

.qf-macro-delete:hover {
    background: #EEE;
}

.qf-tile-header {
    display: none;
    justify-content: space-between;
    align-items: flex-end;
}

.umb-control.-active .qf-tile-header {
    display: flex;
}

.qf-file-names {
    margin: 0 10px;
    font-weight: bold;
    line-height: 2em;
    vertical-align: middle;
}

.qf-clear-btn {
    height: unset;
    margin: 10px;
    position: relative;
    box-sizing: border-box;
}

.qf-btn-tooltip {
    visibility: hidden;
    padding: 5px 10px;
    border-radius: 6px;
    text-align: center;
    color: white;
    background-color: #333;
    position: absolute;
    top: 40px;
    right: 0;
    width: 120px;
    box-sizing: border-box;
    z-index: 1;
}

.qf-btn-tooltip::after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 25px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
}

.qf-clear-btn:hover .qf-btn-tooltip {
    visibility: visible;
}

.qf-video-icon {
    width: 100%;
    height: unset;
}

.qf-video-icon svg {
    height: 400px;
}

.call-to-action a {
    background-color: white;
    border: 2px solid #333;
    box-sizing: border-box;
    width: 100%;
}