﻿.list-loading-wrapper {
    background: rgba(230, 230, 230, 0.37);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.list-loading-wrapper .list-loading {
    border-radius: 12px;
    box-shadow: 0 0 35px 1px #ddd;
    position: absolute;
    left: calc(50% - 110px);
    top: 75px;
    text-align: center;
    width: 220px;
    height: 128px;
    opacity: 0.8;
    padding-top: 100px;
}

.fullscreen-overlay-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-12);
    overflow: hidden;
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#videoModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.85);
}

.content-box {
    padding: 0.87rem 0;
}

.content-box .title {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.87rem;
}

.content-box .property {}

.content-box .property svg {
    width: 1.7rem;
    height: 1.7rem;
    fill: var(--accent-color);
}

.content-box .property .value {
    display: block;
    font-size: 1rem;
}

#videoModal .modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 100%;
    max-width: 100%;
    margin: auto;
    position: relative;
}

#videoModal video {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 90%;
    border-radius: var(--radius-12);
}

.close-modal-btn {
    position: absolute;
    top: 0;
    right: 5px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0 10px;
    line-height: 1;
    z-index: 2;
}

.close-modal-btn:hover {
    color: #ccc;
}