::-moz-selection {
    color: var(--ColorUltraDark);
    background: var(--ColorUltraLight);
}

::selection {
    color: var(--ColorUltraDark);
    background: var(--ColorUltraLight);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--ColorUltraDark);
}

::-webkit-scrollbar-thumb {
    background: var(--ColorNormal);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ColorUltraLight);
}

.link {
    cursor: pointer;
}
#overlay{
    position: fixed;
    top: 0;
    z-index: 61000;
    width: 105%;
    height:105%;
    display: none;
    background: rgba(0,0,0,0.6);
    margin: 0px 0px 0px -28px;
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px var(--ColorNormal) solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

[class^="count_"][data-count]:after {
    content: attr(data-count);
}

#loadmoreContainer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}
/* Video Container */
.video-container {
    height: 100%;
    overflow: hidden;
}

.video-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container:after {
    content: "";
    background: url("../img/video/videodot.png");
    background-size: 3px 3px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 101%;
    object-fit: cover;
    object-position: center;
}

/* Video Container */
/* Recent Container */
.recent-container {
    text-align: center;
    position: absolute;
    top: 0;
    z-index: 1;
}

.recent-section .recent-group {
    width: 100vw;
    min-height: 100vh;
    display: -webkit- flex;
    /* Safari */
    display: flex;
    /* Safari */
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
    user-select: none;
}
.recent-section .recent-breadcrumb{
    position: absolute;
    min-height: 345px;
    height: 345px;
    margin-top: -133px;
}
.recent-row {
    width: 456vw;
    display: -webkit- flex;
    /* Safari */
    display: flex;
    /* Safari */
    flex-direction: recent-row;
    align-items: flex-start;
    justify-content: space-around;
    transform: translate3d(25%, 0, 0);
    white-space: nowrap;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: recent-ticker;
    animation-name: recent-ticker;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
}

.recent-row:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.recent-row:nth-child(even) {
    animation-direction: reverse;
}

.recent-row span {
    font-family: "Soleto XBold", sans-serif;
    color: transparent;
    font-size: 50px;
    font-weight: bold;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--ColorNormal);
    text-transform: uppercase;
}
.recent-breadcrumb-color span{
    -webkit-text-stroke-color: var(--ColorUltraDark);
}

@-webkit-keyframes recent-ticker {
    0% {
        transform: translate3d(25%, 0, 0);
    }
    100% {
        transform: translate3d(-25%, 0, 0);
    }
}

@keyframes recent-ticker {
    0% {
        transform: translate3d(25%, 0, 0);
    }
    100% {
        transform: translate3d(-25%, 0, 0);
    }
}

/* Recent Container */
.zindex1 {
    z-index: 1 !important;
}

[id^="loadMoreItems"] {
    width: 100%;
}

.count {
    /*border: 1px solid #999;*/
    /*text-decoration:none;*/
    /*position:relative;*/
    /*padding:3px;*/
}
.count[data-count]:after {
    content:attr(data-count);
    /*position:absolute;*/
    /*top:-4px;*/
    /*right:-4px;*/
    /*font-size:.7em;*/
    /*background:var(--GColorUltraLight);*/
    /*color:var(--Black);*/
    /*font-weight: bold;*/
    /*width:20px;*/
    /*height:20px;*/
    /*text-align:center;*/
    /*line-height:20px;*/
    /*border-radius:50%;*/
    /*box-shadow:0 0 1px #333;*/
    /*z-index: 3;*/
}