.liveCasino-about {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    height: auto;
    background: #19191C;
     padding: 0 60px; 
    max-width: 100%;
}

.liveCasino-about>button {
    border: none;
    background-color: transparent;
}

.liveCasino-about-title {
    background-color: #292935;
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    text-transform: uppercase;
}



.liveCasino-about-info {
    display: none;

}

.liveCasino-about-info.aboutActive {
    display: block;
    border-radius: 8px;
    padding: 12px 24px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #EBEBF4;
    text-align: left;
    animation: showSlow 0.5s ease-in-out forwards;
    background-color: #292935;
}

@keyframes showSlow {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

.liveCasino-about-title.aboutActive img {
    transform: rotate(180deg);
}

/*** RESPONSIVE DESIGN ***/

/* Mobiles */
@media only screen and (max-width: 320px) {
    .vs4StepsContainer {
        padding: 25px;
    }

    .vs4Steps {
        flex-direction: column;
        gap: 50px;
        padding: 5px;
    }

    .vs4Steps-content button {
        width: 100%;
    }

    .liveCasino-about {
        padding: 15px 20px 20px;
    }
}

@media only screen and (min-width: 321px) and (max-width: 767px) {
    .vs4StepsContainer {
        padding: 25px;
    }

    .vs4Steps {
        flex-direction: column;
        gap: 50px;
        padding: 5px;
    }

    .vs4Steps-content button {
        width: 100%;
    }
    .liveCasino-about {
        padding: 15px 20px 20px;
    }

}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {}

/* Laptop */
@media only screen and (min-width: 992px) and (max-width: 1365px) {}

@media only screen and (min-width: 1366px) {}