.container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    background: linear-gradient(45deg, #209cff, #68e0cf);
    padding: 3rem 0;
}
.wrapper{
    border-radius: 15px;
}
h1{
    font-size: 1.1rem;
    font-family: sans-serif;
}
.sessions{
    border-radius: 12px;
    position: relative;
    padding: 0px
}
ul, li{
    list-style: none;
    padding: 0;
}
.lifirst{
    padding-bottom: 15px;
    border-left: 1px solid #abaaed;
    position: relative;
    padding-left: 20px;
    margin-left: 10px;
    &:last-child{
        border: 0px;
        padding-bottom: 0;
    }
    &:before{
        content: '';
        width: 15px;
        height: 15px;
        background: #8BC151;
        border: 1px solid #40f528a7;
        box-shadow: 2px 3px 3px #84ff0084;
        border-radius: 50%;
        position: absolute;
        left: -8px;
        top: 0px;
    }
}
.li{
    padding-bottom: 15px;
    border-left: 1px solid #abaaed;
    position: relative;
    padding-left: 20px;
    margin-left: 10px;
    &:last-child{
        border: 0px;
        padding-bottom: 0;
    }
    &:before{
        content: '';
        width: 15px;
        height: 15px;
        background: #ffffff;
        border: 1px solid #F57028;
        box-shadow: 2px 3px 3px #f5702897;
        border-radius: 50%;
        position: absolute;
        left: -8px;
        top: 0px;
    }
}

.rotate {
    animation: rotate-animation 0.5s linear;
}

@keyframes rotate-animation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}

.rotate-back {
    animation: rotate-back-animation 0.5s linear;
}

@keyframes rotate-back-animation {
    from {
        transform: rotate(180deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.snk_title{
    color: black;
    font-size: .9rem;
    padding-right: 5px;
    padding-top: 5px;
    vertical-align: bottom;
}

.snk_title_konten{
    color: black;
    font-size: .9rem;
    padding-right: 5px;
    vertical-align: bottom;
}

.snkkonten{
    color: black;
    vertical-align: top;
    font-size: .9rem;
    line-height: 23px;
    text-align: justify;
    padding-right: 5px;
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.floating-button.show {
    opacity: 1;
    visibility: visible;
}

.floating-button .bi {
    color: black;
    font-size: 16px;
}