/* Games Play Button Start */
.card-container {
    position: relative;
    width: auto;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
    
.card-container:before {
    /* empty pseudo */
    content: '';
    
    /* start transparent, include a transition bcuz */
    opacity: 0;
    transition: opacity 0.5s ease;
    
    /* covers the whole div */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
    max-width: 150px;
    margin-inline: auto; 
}

.card-container:hover:before {
    opacity: 1;
    border-radius: 8px;
}

.card-container img {
    position: absolute;
    display: block;
    max-width: 150px;
    height: auto;
    z-index: 1;
}

.btn-play {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
    padding: 0 40px;
    height: 40px;
    line-height: 40px;
    max-width: 260px;
    cursor: pointer;
    z-index: 3;
}

.card-container:hover .btn-play {
    opacity: 1;
}

#playButton:hover {
    cursor:pointer;
}

/* Shape */
#playTriangle {
    margin: 3px 0 0 13px !important;
    width: 0;
    /* height: auto; */
    font-size: 14px;
    letter-spacing: .5px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
    color: #00cc44;
    text-shadow: 1px 1px 3px #000000;
    /* border-top: 8px solid transparent;
    border-left: 15px solid #00cc44;
    border-bottom: 8px solid transparent; */
}

/* Shape */
#playCircle{
    margin: -50px auto 0 auto;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #00cc44;
    height: 60px;
    width: 60px;
    border-radius:75px;
    -moz-border-radius: 75px;
    -webkit-border-radius: 75px;
}

/* Play button shape */
.playButton {
    /* margin: 50px auto 0 auto; */
    width: 30px;
    transition: all .5s ease;
}

#playCircle:hover {
    border: 3px dotted #00cc44;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.animated { 
    -webkit-animation-duration: 1s; 
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
    animation-iteration-count:infinite; 
    -webkit-animation-iteration-count:infinite; 
} 

@-webkit-keyframes pulse { 
    0% { -webkit-transform: scale(1); } 
    50% { -webkit-transform: scale(1.1); } 
    100% { -webkit-transform: scale(1); } 
} 

@keyframes pulse { 
    0% { transform: scale(1); } 
    50% { transform: scale(1.1); } 
    100% { transform: scale(1); } 
} 

.pulse { 
    -webkit-animation-name: pulse; 
    animation-name: pulse; 
}

/* Games Play Button End */