#hero-section-helpdesk{
    background-color: #F7F5EF;
    margin-top: 0px;
    padding-top: 100px;
    padding-bottom: 100px;
}
.col-hero-helpdesk h1{
    /* font-size: 48px; */
    font-size: 3.33vw;
    font-weight: 500;
    line-height: 1.2;
    color: var(--Core-Base-Black);
    text-align: left;
    margin-top: 10px;
}
.col-hero-helpdesk p{
    font-size: 14px;
    font-weight: 400;
    color: var(--Core-Base-Black);
}
#related-posts-section{
    margin-top: 200px;
}
.row-related{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.col-related-title h2{
    /* font-size: 48px; */
    font-size: 3.33vw;
    color: #1C222B;
    font-weight: 500;
    margin: 0;
}
.row-related-posts{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
}
.col-related{
    height: 400px;
    border-radius: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    border: 1px solid #D7DFE9;
    background-color: #F7F5EF;
    box-shadow: 0px 9px 17px 1px rgba(215,223,233,0.69);
    -webkit-box-shadow: 0px 9px 17px 1px rgba(215,223,233,0.69);
    -moz-box-shadow: 0px 9px 17px 1px rgba(215,223,233,0.69);
}
.col-related a{
    display: block;
    height: 100%;
    padding: 30px;
    position: relative;
}
.col-related p{
    position: absolute;
    bottom: 30px;
    color: #1C222B;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.col-related p img{
    width: 13px;
    margin-left: 8px;
    rotate: -90deg;
}
.col-text span{
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    font-size: 14px;
    color: var(--Core-Base-Black);
}
.col-text span img{
    width: 20px;
    margin-right: 10px;
}
.col-text h2{
    /* font-size: 40px; */
    font-size: 2.77vw;
    color: var(--Core-Base-Black);
    font-weight: 500;
    margin-top: 30px;
    line-height: 1.3;
}

.col-sft{
    border: 1px solid #EBEBEB;
    border-radius: 15px;
}
.col-sft{
    padding: 30px;
    margin-top: 30px;
    background-color: #1E1043;
}
.col-sft a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.col-sft a>img{
    width: 20px;
    margin-right: 5px;
}
.col-sft h3{
    /* font-size: 24px; */
    font-size: 1.66vw;
    font-weight: 400;
    color: var(--Core-Base-White);
    line-height: 1.4;
}
.col-sft p{
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}
.table-of-contents ol{
    padding-left: 30px;
    list-style-type: disc;
}

.todo-list{
    background-color: #F9FAFB;
    border-radius: 15px;
    padding: 40px 35px;
    padding-left: 50px !important;
    margin-bottom: 50px;
    list-style-type: none !important;
}
.col-post-content .todo-list li{
    list-style-type: none !important;
}
.todo-list li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(/static/img/icons/check-helpdesk.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    opacity: 1;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}
.col-key-takeaways ul li, .todo-list li, .todo-list li span {
    color: #1C222B;
}


.row-cat-section{
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    gap: 30px;
}
#cat-search-section{
    border-bottom: 2px solid #D7DFE9;
    margin-top: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}
#category-list{
    display: flex;
    flex-wrap: wrap;
    /* min-width: max-content; */
    /* gap: 40px; */
    gap: 14px 35px;
    padding: 0 25px;
    /* color: var(--Core-Lavender); */
}
#category-list li{
    list-style-type: disc;
    color: var(--Core-Lavender);
    transition: all 0.3s ease;
    position: relative;
}
/* #category-list li.all-categories{
    order: -2;
}
#category-list li.active{
    order: -1;
} */
#category-list li.active,
#category-list li:hover{
    color: var(--Core-Violet);
    transition: all 0.3s ease;
}
#category-list li a{
    font-size: 14px;
    color: #8897AE;
    font-weight: 300;
    line-height: 1.2;
    transition: color 0.3s ease;
}
#category-list li.active a,
#category-list li a:hover{
    color: var(--Core-Base-Black);
    transition: all 0.3s ease;
}
/* #category-list li.active::before {
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -10px;
    background-color: var(--Core-Violet);
} */


.bm-Search{
    position: relative;
}
.ais-search-box--input,
.ais-search-box{
    width: 100%;
    max-width: 100%;
    background-color: #F0F3F9;
    border-radius: 10px;
}
.ais-hits.bm-Search__hits{
    width: 100%;
    top: 10px;
}
.bm-Search__pagination{
    position: absolute;
}
.table-of-contents li.active a{
    color: var(--Core-Violet);
    font-weight: 500;
}


/* Lists style */
strong{
    font-weight: 500;
}
.col-post-info ol{
    padding-left: 20px;
}
.col-post-info ol li:not(:last-child){
    margin-bottom: 10px;
}
.col-post-info ol li::marker{
    font-weight: 500;
}
/* |, ||, ||| - Separator start */
.helpdesk-separator{
    border-width: 0 0 0 5px;
    border-style: solid;
    line-height: 22px;
    padding: 14px 10px 15px 22px;
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-weight: 300;
}
.helpdesk-separator a{
    color: var(--Core-Base-Black) !important;
    font-weight: 500;
    text-decoration: underline;
}
.helpdesk-separator[data-type="|"] {
    display: block;
    background: #E2FFDD;
    border-color: #52D53A;
}
.helpdesk-separator[data-type="||"] {
    background: #FFFCD9;
    border-color: #FBE900;
}
.helpdesk-separator[data-type="|||"] {
    background: #FFF4E1;
    border-color: #FFA40D;
}
/* |, ||, ||| - Separator start */

@media(min-width: 1000px){
    .col-post-content img{
        width: 50%;
        /* width: 80%; */
        margin: 0 auto;
    }
}
@media(min-width: 1000px){
    /* .col-cat{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .col-cat::-webkit-scrollbar {
        height: 4px;
    }
    #category-list{
        min-width: max-content;
    } */
}
@media(min-width: 1440px){
    .col-hero-helpdesk h1{
        font-size: 48px;
    }
    .col-related-title h2{
        font-size: 48px;
    }
    .col-text h2{
        font-size: 40px;
    }
    .col-sft h3{
        font-size: 24px;
    }
}
@media(max-width: 1150px){
    #content-section {
        padding: 0 20px 0 20px;
    }
}
@media(max-width: 1000px){
    .col-post-content a{
        word-break: break-word;
    }
    .col-related-title h2,
    .col-text h2{
        font-size: 32px;
    }
    #related-posts-section {
        margin-top: 100px;
    }
    .row-related{
        flex-wrap: wrap;
        gap: 10px;
    }
    .row-related-posts{
        grid-template-columns: 1fr;
    }
    .col-related {
        height: 350px;
    }
     .col-sft h3{
        font-size: 16px;
        border-bottom: none;
    }
    .col-sft {
        padding: 20px;
    }
    .col-sft h3{
        font-size: 20px;
    }

    #cat-search-section{
        background-color: #F7F5EF;
    }

    #hero-section-helpdesk{
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .row-cat-section{
        grid-template-columns: 1fr;
        gap: 0px;
    }
    #category-list{
        flex-wrap: wrap;
        min-width: unset;
        gap: 20px;
        /* position: absolute; */
        position: relative;
        z-index: 2;
        background-color: #F7F5EF;
        border: 1px solid #D7DFE9;
        border-radius: 10px; 
        margin: 0;
        /* padding-top: 20px;
        padding-bottom: 20px; */
        padding-top: 10px;
        padding-bottom: 10px;
        /* width: 93%;
        left: 50%;
        transform: translateX(-50%); */
    }
    #category-list li{
        width: 100%;
    }
    #category-list li.active::before{
        display: none;
    }
    #category-list li.active{
        order: -1;
        /* padding: 10px 0; */
        padding: 0;
    }
    #category-list::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url(/static/img/icons/down-arrow.svg);
        rotate: 0deg;
        background-size: contain;
        background-repeat: no-repeat;
        transition: filter 0.5s ease-in-out, transform 0.5s;
        position: absolute;
        right: 10px;
        top: 17px;
    }
    #category-list.open::after {
        transform: rotate(180deg);
        transition: transform 0.5s;
    }
    #category-list li{
        display: none;
    }
    #category-list li.active, 
    #category-list.open li {
        display: block;
    }

    .col-toc h3 {
        font-size: 16px;
    }
    .col-hero-helpdesk h1{
        font-size: 32px;
    }
    .col-content-left {
        order: 1;
    }
    .col-content-right {
        order: 2;
    }

    .ais-search-box--input,
    .ais-search-box{
        background-color: var(--Core-Base-White);
    }
}
@media(max-width: 376px){
    .col-sft a{
        padding: 10px 0;
    }
}
@media(max-width: 321px){
    .col-sft h3{
        font-size: 15px;
    }
}