.popover-toggle{
    cursor: pointer !important;
}
.book-link{
    cursor: pointer !important;
    color: #ff5e14 !important;
}
.popover-body{
    -webkit-animation: scale 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: scale 1s; /* Firefox < 16 */
     -ms-animation: scale 1s; /* Internet Explorer */
      -o-animation: scale 1s; /* Opera < 12.1 */
         animation: scale 1s;
}

.book-title{
    -webkit-animation: fadeInRight 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeInRight 2s; /* Firefox < 16 */
     -ms-animation: fadeInRight 2s; /* Internet Explorer */
      -o-animation: fadeInRight 2s; /* Opera < 12.1 */
         animation: fadeInRight 2s;
}
.book-context{
    -webkit-animation: fadeInRight 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeInRight 2s; /* Firefox < 16 */
     -ms-animation: fadeInRight 2s; /* Internet Explorer */
      -o-animation: fadeInRight 2s; /* Opera < 12.1 */
         animation: fadeInRight 2s;
}
.book-link{
    -webkit-animation: fadeInRight 3s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeInRight 3s; /* Firefox < 16 */
     -ms-animation: fadeInRight 3s; /* Internet Explorer */
      -o-animation: fadeInRight 3s; /* Opera < 12.1 */
         animation: fadeInRight 3s;
}

@keyframes scale {
    0% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
    }
    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* Firefox < 16 */
@-moz-keyframes scale {
    0% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
    }
    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes scale {
    0% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
    }
    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* Internet Explorer */
@-ms-keyframes scale {
    0% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
    }
    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* Opera < 12.1 */
@-o-keyframes scale {
    0% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
    }
    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

@-webkit-keyframes fadeInRight {
    0% {
       opacity: 0;
       -webkit-transform: translateX(20px);
    }
    100% {
       opacity: 1;
       -webkit-transform: translateX(0);
    }
 }
 
 @keyframes fadeInRight {
    0% {
       opacity: 0;
       transform: translateX(20px);
    }
    100% {
       opacity: 1;
       transform: translateX(0);
    }
 }

 /* Firefox < 16 */
@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
     }
     100% {
        opacity: 1;
        transform: translateX(0);
     }
}


/* Internet Explorer */
@-ms-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
     }
     100% {
        opacity: 1;
        transform: translateX(0);
     }
}

/* Opera < 12.1 */
@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
     }
     100% {
        opacity: 1;
        transform: translateX(0);
     }
}



.b-game-card {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 150%;
    perspective: 1000px;
}
.b-game-card__cover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
    background-size: cover;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
    transform-origin: top center;
    will-change: transform;
    transform: skewX(0.001deg);
    transition: transform 0.35s ease-in-out;
}
.b-game-card__cover::after {
    display: block;
    content: '';
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(226deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 35%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 60%);
    transform: translateY(-20%);
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.18, 0.9, 0.58, 1);
}
.b-game-card:hover .b-game-card__cover {
    transform: rotateX(7deg) translateY(-6px);
}
.b-game-card:hover .b-game-card__cover::after {
    transform: translateY(0%);
}
.b-game-card::before {
    display: block;
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 6px 12px 12px rgba(0, 0, 0, 0.4);
    will-change: opacity;
    transform-origin: top center;
    transform: skewX(0.001deg);
    transition: transform 0.35s ease-in-out, opacity 0.5s ease-in-out;
}
.b-game-card:hover::before {
    opacity: 0.6;
    transform: rotateX(7deg) translateY(-6px) scale(1.05);
}
