@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    /* 50% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.7);
        opacity: 0.5;
    } */

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* .play-button:before {
    -webkit-animation: pulse 2s ease-out infinite;
    animation: pulse 2s ease-out infinite;
    background-color: #fff;
    background-image: url("{{$_SERVER['APP_URL']}}/template/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
    content: "";
    display: block;
    height: 200px;
    left: -28px;
    position: absolute;
    top: -25px;
    transform: scale(1);
    width: 200px;
} */

.play-button {
    position: relative;
    border: 0;
    border-radius: 50%;

    width: 200px;
    height: 200px;
    padding-left: 10px;
    background-color: transparent;
}

.play-button:before {
    content: "";
    position: absolute;
    z-index: 10;
    left: 50%;
    /* background-image: url("{{$_SERVER['APP_URL']}}/template/logo.png"); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 200px;
    height: 200px;
    background-color: #FFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    /* background-image: url("{{$_SERVER['APP_URL']}}/template/logo.png"); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 200px;
    height: 200px;
    background-color: #FFF;
    border-radius: 50%;
    transition: all 200ms;
}
.navbar.sticky {
        /* background: #873257cf !important; */
        background: #2d7be5cf !important;
    }
    /* .navbar .nav_fixed .logo {
        width: 30%;
    }
    .navbar.sticky .nav_fixed .logo {
        width: 20%;
    } */
    .navbar .nav_fixed .logo img{
        width: 30%;
        margin: 0;
    }
    .navbar.sticky .nav_fixed .logo img{
        width: 20%;
        margin: 0;
    }
@media screen and (max-width: 767px) {
    .navbar .nav_fixed {
        display: flex;
        margin: auto;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .play-button:after {
        width: 100px;
        height: 100px;
    }

    .play-button:before {
        width: 100px;
        height: 100px;
    }

    .play-button {
        width: 100px;
        height: 100px;
    }

    .navbar .nav_fixed .logo {
        width: 75%;
    }

    .navbar.sticky .nav_fixed .logo {
        width: 35%;
    }
    .navbar .nav_fixed .logo img{
        width: 100%;
    
    }
    .navbar.sticky .nav_fixed .logo img{
        width: 100%;
        
    }
    .navbar.sticky {
        /* background: #873257cf !important; */
        background: #2d7be5cf !important;
    }

    .navbar.sticky ul li a {
        /* 0.5rem !important */
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;

    }

    .navbar ul li a {
        /* 0.5rem !important */
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;

    }

    .navbar.sticky .nav_fixed {
        justify-content: space-between;
    }
}
.badge-primary:hover {
    color: #fff !important;
    text-decoration: none !important;
    background: #609bea !important;
}
.badge-primary {
    /* background: #7e2457; */
    background: #2d7be5;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
}
.my__list {
    font-weight:900;
}
.my__list a:hover{
    text-decoration: none !important;
}