

.my-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 16px;
    padding-top:50px;
    max-width: 575px;
}
body {
    counter-reset: section;
}

.path-list {
    font-size: 13px;
    color: #000000;
    margin-bottom: 16px;
    border-bottom: 1px solid #DBDFEB;
    width: 100%;
    padding-bottom: 16px;
}

.current-path {
    color : #636878 !important;
}

.title {
    font-size: 21px;
    font-weight: 600;
}

.home-btn , .list-btn {
    color: black;
    text-decoration: none;
} 

.tips {
    background-color: #E4E8F0;
    color: #636878;
    padding: 10px;
    width: 100%;
    margin-top: 16px;
    font-size: 13px;
}

.title-tips {
    margin-bottom: 8px;
}

.span-tips {
    color: #000000;
}

.title-tutorial {
    margin-top: 16px;
    font-size: 15px;
    color: #636878;
}

.title-slider {
    margin-top:16px;
    font-size: 15px;
    color: #333333;
    position: relative;
    padding-left: 20px;
}

.title-slider .slider-span-1 {
    font-weight: 600;
    color: #000000;
}

.title-slider .slider-span-2 {
    color: #F44444;
}

.title-slider::before {
    position: absolute;
    font-weight: 600;
    left: 0px;
    top: 2px;
    counter-increment: section;
    content: counter(section);
    border: 1px solid #000000;
    border-radius: 100%;
    width: 16px;
    text-align: center;
    line-height: 13px;
    height: 16px;
}

.container-slider {
    display: flex;
    align-items: center;
    column-gap: 16px;
    justify-content: center;
}

.container-slider .slide-btn {
    border: none;
    background-repeat: no-repeat;
    background-size: cover;
    width: 25px;
    height: 25px;
}

.container-slider .slide-right-btn-active {
    background-image: url('../course_img/right-active.png') ;
}

.container-slider .slide-right-btn-non-active {
    background-image: url('../course_img/right-non-active.png') ;
    
}

.container-slider .slide-left-btn-active {
    background-image: url('../course_img/left-active.png') ;
}

.container-slider .slide-left-btn-non-active {
    background-image: url('../course_img/left-non-active.png') ;
}

.container-slider path {
    font-weight: 600 !important;
}

.slider {
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* margin-left: auto; */
    /* margin-right: auto; */
    margin-top: 16px;
    /* width: 173px; */
    width: 60%;
    /* align-self: center; */
}
.slides {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}
.slide {
    width: 100%;
    flex-shrink: 0;
}
.slide img {
    width: calc(100% / 3);
    height: 100%;
    object-fit: cover;
}

.pointer-slide {
    display: flex;
    align-self: center;
    justify-content: center;
    padding: 10px;
    gap: 5px;
}

.pointer-slide .active {
    width: 16px !important;
    border-radius: 10px !important;
    background-color: #3F61FF !important;
    transition: background-color 0.5s ease-in-out;
}

.pointer-slide .non-active {
    width: 8px;
    height: 8px;
    background-color: #8F95AE;
    border-radius: 100%;
    transition: background-color 0.5s ease-in-out;
}
