.product__price-tag {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 8px 8px 8px 0;
    background: linear-gradient(196.15deg, #1A3A73 24.99%, #3F8BCB 82.03%);
    z-index: 99;
    position: absolute;
    top: -15px;
    left: -20px;
}

.product__price-tag::after {
    content: "";
    position: absolute;
    border-left: 20px solid transparent;
    border-top: 10px solid #1A3A73;
    left: 0px;
    top: 50px;
}

.product__price-tag-price {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.custom-btn-close {
    position: absolute;
    right: 0;
}

.player-name-img-container {
    position: relative;
}

.outline-text-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.outline-text-container h2 {
    margin: 10px 0;
}

.outline-text-container h2:first-child {
    text-align: left;
}

.outline-text-container h2:last-child {
    text-align: right;
}

.player-img-container {
    z-index: 1;
    position: relative;
}

.player-container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.player-container:hover .box1 {
    box-shadow: 0px -12px 40px rgba(0, 0, 0, 0.3);
}

.player-container:hover .box2 {
    box-shadow: 0px -12px 25px rgba(0, 0, 0, 0.3);
}

.player-container:hover .box3 {
    box-shadow: 0px 12px 50px 5px rgba(0, 0, 0, 0.3);
}

.box1 {
    width: 200px;
    display: flex;
    justify-content: center;
    border-radius: 20px 20px 0 0;
    z-index: 3;
    position: relative;
    padding: 20px 20px 0 20px;
    transition: all .3s linear;
}

.box2 {
    width: 200px;
    padding: 15px 0;
    background-color: rgb(209, 219, 219);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    z-index: 2;
    transition: all .3s linear;
}

.box2 h3 {
    margin: 0;
    font-size: 16px;
    color: #222;
}

small {
    color: rgb(82, 82, 82);
    text-transform: lowercase;
    font-family: sans-serif;
}

.box3 {
    width: 180px;
    padding: 5px 0;
    background-color: #3F8BCB;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s linear;
}

.follow {
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: white;
}

a {
    text-decoration: none;
}