.poster {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -5px;
}
.item-show {
    position: relative;
    width: 300px;
    margin: 5px;
}
.item-show a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    text-decoration: none;
}
.item-show a:hover {
    box-shadow: 2px 2px 4px var(--colorMain), -1px -1px 0 var(--colorRed);
}
.item-show header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 64px;
    line-height: 1.3;
    z-index: 100;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
    background: var(--bgBlack50);
    padding: 0 7px;
    color: var(--colorWhite);
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}
.item-show figure {
    display: block;
    position: relative;
    overflow: hidden;
}
.item-show figure::before {
    display: block;
    content: "";
    width: 100%;
    margin-top: 141.4285714%;
}
.item-show figure img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.show-carry,
.show-replace,
.show-drops,
.show-ticket-no {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--colorWhite);
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
}
.show-carry,
.show-replace,
.show-drops {
    text-shadow: 1px 1px 2px var(--colorRed), -1px -1px 2px var(--colorRed);
    letter-spacing: 2px;
}
.show-ticket-no {
    text-shadow: 1px 1px 2px var(--colorBlack), -1px -1px 2px var(--colorBlack);
}
.item-show footer {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 54px;
    line-height: 1.5;
    z-index: 100;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    background: var(--colorMain);
    background: var(--bgMain75);
    padding: 0 7px;
    color: var(--colorWhite);
}
.item-show footer time {
    display: flex;
    align-items: center;
    font-weight: 300;
}
.item-show footer time::before {
    margin: 0 7px 0 0;
}
.item-show footer .ico-date::before {
    font-size: 12px;
}
.item-show footer span {
    display: flex;
}
.item-show footer span::before {
    font-size: 12px;
    margin: 2px 10px 0 0;
}
.item-show label {
    position: absolute;
    top: 5px;
    right: 7px;
    background:var(--colorLight);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--colorRed);
    color: var(--colorBlack);
    padding: 0 0 0 2px;
}
@media only screen and (min-width:601px) and (max-width:960px) {
    .item-show {
        width: calc(50% - 10px);
        max-width: 400px;
    }
}
@media only screen and (max-width:600px) {
    .item-show {
        width: calc(100% - 10px);
        max-width: 400px;
        margin: 5px auto;
    }
}
h2.bg-light {
    background: var(--colorSnowWhite);
    background:linear-gradient(to top left,rgba(250,250,250) 0%,rgba(255,255,255) 50%,rgba(250,250,250) 100%);
    padding: 14px;
    margin: 2.5rem 0 0.5rem 0;
    border: 1px solid var(--colorLight);
    border-image: linear-gradient(to right top, var(--colorPlatin) 10%, var(--colorWhite) 25%, var(--colorWhite) 75%, var(--colorPlatin) 90%);
    border-image-slice: 1;
}
/* @media only screen and (min-width:781px) and (max-width:840px) {
    .item-show {
        width: calc(33.333% - 10px);
    }
}
@media only screen and (min-width:521px) and (max-width:780px) {
    .item-show {
        width: calc(50% - 10px);
    }
}
@media only screen and (max-width:520px) {
    .item-show {
        width: calc(100% - 10px);
    }
} */