.user-guide-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding-top: 45px;
}



ul.user-guide-list li {
    color: #33475B;
    list-style: none;
}

.user-guide-list {
    padding: 0;
}

ul.user-guide-list li h6 {
    width: calc(100% - 29px);
}

.user-guide-list li.active h6, .user-guide-list li:hover h6 {
    color: #FF8263;
}

.user-guide-list li.active svg path, .user-guide-list li:hover svg path {
    fill: #FF8263;
}

div#user-guide-content h6, div#user-guide-content p {
    margin-bottom: 16px;
}

div#user-guide-content h6 + p {
    margin-bottom: 40px;
}
@media (min-width: 768px){

    label.label-select-app {
    display: none;
}
    div#user-guide-titles {
        width: 265px;
    }

    div#user-guide-content {
        width: calc(100% - 270px);
        padding-left: 100px;
        padding-bottom: 90px;
    }

    
    .user-guide-list li a {
        list-style: none;
        display: inline-flex;
        align-items: flex-start;
        padding: 24px 0;
        border-bottom: 1px solid #C9C9C9;
        cursor: pointer;
        gap: 8px;
        text-decoration: none;
        width: 100%;
    }


    ul.user-guide-list li:first-child a {
        padding-top: 0;
    }
}

@media (max-width: 1024px){
    div#user-guide-content {
        padding-left: 20px;
    }
}

@media (max-width: 767px){
    div#user-guide-content {
        padding-top: 68px;
    }

    .user-guide-list {
        display: none;
        box-shadow: 0 0 24px rgba(0,0,0,0.1);
        border-radius: 8px;
        width: 100%;
    }

    ul.user-guide-list li {
        width: 100%;
        padding: 16px 12px;
        color: #000000;
    }

    ul.user-guide-list li svg {
        display: none;
    }

    label.label-select-app {
        border: 2px solid #33475B;
        border-radius: 8px;
        width: 100%;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0;
        color: #000000;
        padding: 16px 12px;
        display: block;
        margin-bottom: 16px;
        position: relative;
    }

    label.label-select-app::after{
        content: '';
        width: 24px;
        height: 24px;
        position: absolute;
        right: 16px;
        top: 12px;
        transition: all .3s;
        background-image: url(../images/keyboard-arrow-up.svg);
        transform: rotate(-180deg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    label.label-select-app.active::after{
        transform: rotate(0deg);
    }
    div#user-guide-titles {
        width: 100%;
    }

    div#user-guide-content h4.info-title {
    display: none;
}
}