.main-row {
    padding: 0 3.5rem;
    margin-top: 100px;
}



.code_preview{
    position: relative;
    background-color: rgb(246, 247, 248);
    border-radius: 5px;
    padding: 1rem;
    color:#000;
}

.code_preview code{
    color: #000 !important;
}

th {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.table,
td {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.table>:not(caption)>*>* {
    padding: 0.8rem 2rem;
}

/* breadcrumb css */
.breadcrumb-item+.breadcrumb-item::before {
    content: "›"
}

.breadcrumb-link {
    text-decoration: none;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

.left-panel {
    border-radius: 0.5rem;
    background-color: var(--secondary-color);
    padding: 2rem 1rem;
    /* box-shadow: 1px 2px 12px rgb(0 0 0 / 15%); */
    border: none;
}

.right-panel {
    border-radius: 0.5rem;
    background-color: var(--white-color);
    padding: 0rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* box-shadow: 1px 2px 12px rgb(0 0 0 / 15%); */
}

.right-panel .links-heading {
    /* border-radius: 0.5rem; */
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    font-size: 22px;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem;
    margin: 0;
}

.right-panel .other-tool-link {
    color: var(--black-color);
    text-decoration: none;
    padding: 1rem;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.main-content {
    color: var(--black-color);
    text-decoration: none;
    padding: 1rem 0;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: var(--white-color);
    border-radius: 0.5rem;
    /* box-shadow: 1px 2px 12px rgb(0 0 0 / 15%); */
}



.right-panel .other-tool-link:hover {
    transition: all .5s linear;
    background-color: var(--secondary-color);
}

.headings {
    text-align: center;
}

.page-h1 {
    font-size: 30px;
    font-weight: 600;
}


/* accordion css */
/* .accordion {
    margin: 20px auto;
} */

.accordion-item {
    border: none;
    position: relative;
    border-radius: 0px !important;
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
    box-shadow: 0px 4px 12px rgba(37, 38, 94, .01);
}

.accordion-header {
    padding: 10px 20px;
    cursor: pointer;
    /* background-color: var(--secondary-color); */
}

.feature-heading,
.howto-title {
    font-size: 1.2rem;
    margin: 0px;
     font-weight: 600;
}

.features-content {
    padding: 20px;
}

.accordion-angle-bottom-icon {
    display: none;
}

.accordion-angle-bottom-icon,
.accordion-angle-right-icon {
    position: absolute;
    z-index: 99999;
    top: 0;
    right: 0;
}


/* feature highlights css */


.feature-description,.feature-title{
    /* text-align: left; */
}
.feature-title,
.faq-question {
    font-size: 17px;
    font-weight: 600;
}

.feature-description,
.howto-steps,
.faq-answer {
    color: #5c5e60;
    font-size: 14px;
}

.faq__content{
    padding-right: 48px;
}

summary {
    list-style: none;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    padding: 0;
    margin-bottom: 1rem;
    outline: none;
    border-radius: 0.25rem;
    text-align: left;
    cursor: pointer;
    position: relative;
    border-radius: 0;
    display: flex;
    align-items: center;
    padding-right: 48px;
}

summary::after {
    content: "";
    position: absolute;
    right: 0;
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);

}

details:not([open]) summary::after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}


.howto-steps {
    /* padding-left: 0.5rem; */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    list-style: none;
}

pre {
    background: #404040;
    color: #fff;
    padding: 1rem;
    border-radius: 4px;
}

@media (max-width:768px) {
    .main-row {
        padding: 0px;
        margin-top: 120px;
    }

    .headings .page-h1 {
        font-size: 25px;
    }

    .headings p {
        font-size: 12px;
    }
    .faq__content{
        font-size: 14px;
    }

    /* .feature-title,
    .faq-question {
        font-size: 14px;
    } */

    .feature-description,
    .howto-steps,
    .faq-answer {
        font-size: 14px;
    }

    .accordion-header {
        padding: 10px 10px;
    }

    .features-content {
        padding: 10px;
    }

    .feature-heading {
        font-size: 20px;
        line-height: 25px;
       
    }

    .howto-steps {
        padding-left: 0px;
    }

    .accordion-angle-bottom-icon svg {
        width: 40px;
        height: 40px;
    }

    .accordion-angle-right-icon svg {
        width: 40px;
        height: 40px;
    }
}