.page-stand-list {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 20px 20px 0 20px;
}

.page-stand-list>.buttons-list {
    padding: 10px;
    margin-bottom: 40px;
    background: var(--ColorThemes1);
    color: var(--ColorThemes3);
    border: 1px solid var(--ColorThemes2);
    box-shadow: var(--shadow-l1);
    border-radius: var(--border-radius);
    overflow: auto;
    display: none;
}

.page-stand-list>.buttons-list>button,
.page-stand-list>.buttons-list>a {
    cursor: pointer;
    border-radius: calc(var(--border-radius) - 5px);
    padding: 0 10px;
    margin-right: 20px;
    min-width: fit-content;
    min-height: 40px;
    background: var(--PrimaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-stand-list>.buttons-list>button>span,
.page-stand-list>.buttons-list>a>span {
    color: var(--PrimaryColorText);
    font-size: var(--FontSize3);
    font-weight: normal;
}

.page-stand-list>.buttons-list>button>svg,
.page-stand-list>.buttons-list>a>svg {
    width: 20px;
    height: 20px;
    fill: var(--PrimaryColorText);
    margin-right: 10px;
}

.page-stand-list>.list-controls {
    padding: 10px;
    margin: 0px 0 10px 0;
    background: var(--ColorThemes1);
    color: var(--ColorThemes3);
    border: 1px solid var(--ColorThemes2);
    box-shadow: var(--shadow-l1);
    border-radius: var(--border-radius);
    overflow: auto;
    display: flex;
}

.page-stand-list>.list-controls>select {
    min-width: 140px;
    height: 30px;
    background-color: var(--ColorThemes2);
    border: 1px solid var(--ColorThemes0);
    box-shadow: var(--shadow-l1);
    color: var(--ColorThemes3);
    font-size: var(--FontSize1);
    cursor: pointer;
    padding: 0 5px;
    margin-right: 10px;
    border-radius: calc(var(--border-radius) - 5px - 2px);
}

.page-stand-list>details {
    border-radius: var(--border-radius);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 10px;
    background: var(--ColorThemes1);
    color: var(--ColorThemes3);
    border: 1px solid var(--ColorThemes2);
    box-shadow: var(--shadow-l1);
}

.page-stand-list>details[disabled]>summary,
.page-stand-list>details.disabled>summary {
    pointer-events: none;
    user-select: none;
}

.page-stand-list>details>summary::-webkit-details-marker,
.page-stand-list>details>summary::marker {
    display: none;
    content: "";
}

.page-stand-list>details>summary {
    width: calc(100% - 40px);
    cursor: pointer;
    color: var(--ColorThemes3);
    border-radius: var(--border-radius);
    font-size: var(--FontSize5);
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-stand-list>details>summary>span {
    font-weight: 500;
    width: 100%;
}

.page-stand-list>details>#list {
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
    justify-content: center;
    overflow-y: auto;
    align-items: flex-start;
    transition: .3s ease;
}

.page-stand-list>details>#list>.mess-list {
    height: 200px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.page-stand-list>details>#list>.mess-list[data-visible="true"] {
    display: flex;
}

.page-stand-list>details>#list>.mess-list>svg {
    width: 100px;
    height: 100px;
    fill: var(--ColorThemes3);
    opacity: 0.7;
}

.page-stand-list>details>#list>.mess-list>h3 {
    font-size: var(--FontSize5);
    color: var(--ColorThemes3);
    opacity: 0.7;
}

.page-stand-list>details>#list>.card {
    position: relative;
    width: 300px;
    height: 200px;
    background-color: var(--ColorThemes2);
    margin: 10px;
    overflow: hidden;
    cursor: pointer;
    border-radius: calc(var(--border-radius) - 5px);
}

@media (max-width: 2300px) {
    .page-stand-list>details>#list>.card {
        width: calc((100% / 5) - 40px);
    }
}

@media (max-width: 1960px) {
    .page-stand-list>details>#list>.card {
        width: calc((100% / 4) - 40px);
    }
}

@media (max-width: 1640px) {
    .page-stand-list>details>#list>.card {
        width: calc((100% / 3) - 40px);
    }
}

@media (max-width: 1280px) {
    .page-stand-list>details>#list>.card {
        width: calc((100% / 2) - 40px);
    }
}

@media (max-width: 650px) {
    .page-stand-list>details>#list>.card {
        width: 100%;
    }
}

@media(hover: hover) {
    .page-stand-list>details>#list>.card:hover {
        opacity: 0.8;
    }
}

.page-stand-list>details>#list>.card>i {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: blur(2px);
    /* background-repeat: round; */
    background-size: cover;
    background-position: center;
    background-color: var(--PrimaryColor);
}

.page-stand-list>details>#list>.card>a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
}


.page-stand-list>details>#list>.card>.contents {
    position: absolute;
    background: rgb(64 64 64 / 0.7);
    width: 100%;
    height: 100%;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

.page-stand-list>details>#list>.card>.contents>.image {
    position: absolute;
    width: 100%;
}

.page-stand-list>details>#list>.card>.contents>.image>img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.9) contrast(80%) saturate(110%) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

@media (prefers-color-scheme: dark) {
    .page-stand-list>details>#list>.card>.contents>.image>img {
        filter: brightness(0.6) contrast(80%) saturate(110%) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    }
}

.page-stand-list>details>#list>.card>.contents>.info {
    width: calc(100% - 20px);
    position: absolute;
    bottom: 0;
    margin: 10px;
    display: flex;
}

.page-stand-list>details>#list>.card>.contents>.info>div {
    width: 100%;
    height: 35px;
    display: flex;
    background: var(--ColorThemes0);
    align-items: center;
    justify-content: center;
    font-size: var(--FontSize1);
    color: var(--ColorThemes3);
    border-radius: calc(var(--border-radius) - 5px - 4px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-l1);
}

.page-stand-list>details>#list>.card>.contents>.info>div>span {
    color: var(--ColorThemes3);
    font-size: var(--FontSize3);
    font-weight: 300;
    z-index: 2;
}

.page-stand-list>details>#list>.card>.contents>.info>div>p {
    color: var(--ColorThemes3);
    font-size: var(--FontSize3);
    font-weight: 400;
    padding: 10px;
    z-index: 2;
}

.page-stand-list>details>#list>.card>.contents>.info>.button-edit {
    min-width: 35px;
    height: 35px;
    border-radius: calc(var(--border-radius) - 5px - 4px);
    background: var(--PrimaryColor);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    z-index: 20;
    box-shadow: var(--shadow-l1);
}

.page-stand-list>details>#list>.card>.contents>.info>.button-edit>svg {
    width: 20px;
    height: 20px;
    fill: var(--PrimaryColorText);
}