.langs {
    width: 200px;
    box-sizing: border-box;
}
.langs .dropdown {
    position: relative;
}
.langs .dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    position: absolute;
    left: 0;
    top: 35px;
    border-radius: 3px;
}
.langs .dropdown:hover .dropdown-menu a {
    font-weight: 500;
}
.langs .dropdown .dropdown-menu {
    display: none;
}
.langs .dropdown .header-lang__btn .header-lang__text {
    color: #fff;
    font-weight: 600;
}
.langs .dropdown .header-lang__btn {
    padding: 10px 0;
}
table{
    border: 1px solid #eee;
    table-layout: fixed;
    min-width: 100%;
    margin-bottom: 30px;
}
table th {
    font-weight: bold;
    padding: 5px;
    background: #efefef;
    border: 1px solid #dddddd;
}
table td{
    padding: 15px 10px;
    border: 1px solid #eee;
    text-align: left;
    word-break: break-word;
}
table tbody tr:nth-child(even){
    background: #fff;
}
table tbody tr:nth-child(odd){
    background: #f9f9f9;
}
.left-side {
    width: 70%;
}
.content-inner {
    width: 80%;
}
/*******************************************************/
.faq {
    margin-top: 20px;
}
.faqitem .fheader {
    padding: 15px 25px 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
}
.faqitem .fheader .faq-head {
    display: flex;
    align-items: center;
    gap: 30px;
}
.faqitem .fheader .faq-head > h3 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}
.faqitem:not(.jquery-accordion-active) .header > p {
    /*color: #91939B;*/
}
.faqitem .fheader img.icon-minus {
    display: none;
}
.faqitem.jquery-accordion-active img.icon-minus {
    display: block;
}
.faqitem.jquery-accordion-active img.icon-plus {
    display: none;
}
.faqitem .content {
    padding: 0 90px 15px 20px;
    color: #636363;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.faqitem .content h2 {
    color: #333;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}
.faqitem .content h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}
.faqitem .content p {
    font-size: 16px;
    margin: 0;
}
.faq.jquery-accordion .faqitem {
    background: #fff;
    /*border-radius: 8px;*/
    /*margin: 10px 0;*/
}
.faq.jquery-accordion .faqitem.jquery-accordion-active {
    background: #fff;
    border-radius: 3px;
}
.faq.jquery-accordion .faqitem:first-child {
    border: none;
    border-radius: 3px;
    background: #FFF;
}
.faq.jquery-accordion .faqitem.jquery-accordion-active .header {
    position: relative;
}
.faq.jquery-accordion .faqitem.jquery-accordion-active .header .faq-head > h3 {
    color: #000;
}
/*********************************/
.ordinary-page a {
    color: #0033a9;
    text-decoration: underline;
}











/*********************************/

@media (max-width: 991px) {
    .left-side {
        width: 100%;
    }
    .content-inner {
        width: 100%;
    }
}