.knowledge {
    display: flex;
    align-items: baseline;
}

.knowledge section {
    display: flex;
    flex-direction: column;
    margin: 45px 9px 52px;

    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.17);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

.knowledge h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #1f1f1f;
    padding: 24px 0 10px;
}

.knowledge h3 {
    display: inline-flex;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    color: #1f1f1f;
    padding: 30px 0 0 0;
}

.knowledge p {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #1f1f1f;
}

.knowledge p b {
    font-size: 13.5px;
}

.knowledge a {
    text-decoration: none;
    color: #3598db;
}

.knowledge a:hover {
    color: #52b85c;
    outline: none;
}

.knowledge .page_title {
    display: flex;
    justify-content: center;
    padding: 52px 0 0 0;
}

/*--------------------------PAGE_NAVIGATION--------------------------------------------------------*/

#knowledge_base_navigation {
    width: 315px;
    padding: 20px;
}

#knowledge_base_navigation li {
    min-height: 56px;
}

#knowledge_base_navigation a {
    display: inline-block;
    border-bottom: 1px solid #dadada;
}

#knowledge_base_navigation a:hover {
    border-bottom-width: 2px;
    border-bottom-color: #52b85c;
    color: #666;
}

#knowledge_base_navigation .navigation_last_link {
    border-bottom-color: #fff;
}

#knowledge_base_navigation .navigation_last_link:hover,
#knowledge_base_navigation .navigation_last_link:focus {
    border-bottom: 2px solid;
    border-bottom-color: #52b85c;
}

#knowledge_base_navigation .active_page,
#knowledge_base_navigation .navigation_last_link .active_page {
    color: #000;
    border-bottom-width: 2px;
    border-bottom-color: #52b85c;
}

#knowledge_base_navigation .active_page:hover {
    color: #000;
}

.main_sections li {
    font-size: 14px;
    line-height: 54px;
}

.main_sections li a {
    width: 100%;
    color: #666;
}

#drop_menu,
.submenu {
    display: none;
}


#drop_menu:checked ~ .submenu {
    display: block;
}

.drop_menu_visibility {
    cursor: pointer;
    padding: 14px 80px 20px 0;
}

.submenu li {
    font-size: 14px;
    line-height: 45px;
    padding: 0 0 0 20px;
}

.submenu li a {
    width: 225px;
    color: #929497;
}

.drop_menu_arrow {
    border: none;
    float: right;

    padding: 22px 3px;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.long_titles {
    line-height: 25px;
    padding: 12px 0;
}

/*--------------------------DESCRIPTION--------------------------------------------------------*/

#knowledge_base_content {
    width: 100%;
    padding: 0;
}

#knowledge_base_content img {
    border: 1px solid #e5e5e5;
    margin: 10px 0;
}

.knowledge-img {
    width: 100% !important;
}

.question-img {
    display: inline !important;
    margin: 0 !important;
}

#knowledge_base_navigation {
    width: 315px;
}

/*--------------------------ADAPTIVE--------------------------------------------------------*/

@media screen and (min-width: 320px) {
    .knowledge {
        display: flex;
        flex-direction: column;
    }

    .knowledge_base_navigation_general {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /*align-items: center;*/
        width: 100%;
    }

    .knowledge_base_navigation_general .drop_menu_burger_label {
        width: 100%;
        justify-content: space-between;
    }

    .knowledge_base_navigation_general .drop_menu_burger_label {
        display: flex;
        align-items: center;
        color: #fff;
        height: 40px;
        background: #3598d9;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        border-radius: 10px;
        width: 100%;
        justify-content: space-between;
    }

    .knowledge_base_navigation_general .drop_menu_burger_img {
        padding-right: 20px;
    }

    .knowledge_base_navigation_general .drop_menu_burger_label span {
        padding-left: 20px;
    }

    #drop_menu_burger,
    #knowledge_base_navigation {
        display: none;
    }

    #drop_menu_burger:checked ~ #knowledge_base_navigation {
        display: flex;
        width: auto;
        height: 531px;
        padding: 11px 20px;
        z-index: 1;
        /* overflow-x: hidden; */
        overflow-y: auto;
        margin: 0 0 43px 0;
    }

    #knowledge_base_navigation li {
        min-height: 40px;
    }

    .main_sections li {
        line-height: 40px;
    }

    .drop_menu_visibility {
        padding: 14px 75px 20px 0;
    }

    .drop_menu_arrow {
        padding: 17px 3px;
    }

    #knowledge_base_navigation .submenu li a {
        width: 225px;
    }

    .knowledge h2 {
        font-size: 23px;
        padding: 20px 20px;
        line-height: 24px;
    }

    .knowledge h3 {
        font-size: 17px;
        padding: 30px 0 10px 20px;
    }

    .knowledge p {
        font-size: 17px;
        line-height: 20px;
        padding: 10px 20px;
        word-break: break-word;
    }

    .knowledge p b {
        font-size: 17px;
    }

    #knowledge_base_content img {
        display: none;
    }

    .knowledge section {
        margin: 0;
    }

    .knowledge section {
        margin-top: 20px;
    }
}

@media screen and (min-width: 461px) {

    .knowledge {
        align-items: center;
    }

    .main_sections li {
        line-height: 40px;
    }

    .drop_menu_visibility {
        padding: 14px 230px 20px 0;
    }

    #knowledge_base_navigation .submenu li a {
        width: 380px;
    }
}

@media screen and (min-width: 749px) {
    .knowledge {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    .knowledge_base_navigation_general .drop_menu_burger_label {
        display: none;
    }

    #knowledge_base_navigation {
        display: flex;
        width: 202px;
        margin: 0 0 50px 0;
    }

    #knowledge_base_navigation li {
        min-height: 40px;
    }

    #knowledge_base_content {
        padding: 0 20px 30px;
    }

    .main_sections li {
        line-height: 40px;
    }

    .drop_menu_visibility {
        padding: 14px 7px 20px 0;
    }

    .drop_menu_arrow {
        padding: 17px 3px;
    }

    #knowledge_base_navigation .submenu li a {
        width: 152px;
    }

    .knowledge h2 {
        font-size: 22px;
        padding: 20px 0 10px;
        line-height: 22px;
    }

    .knowledge h3 {
        font-size: 15px;
        padding: 30px 0 0 0;
    }

    .knowledge p {
        font-size: 15px;
        line-height: 18px;
        padding: 10px 0;
    }

    .knowledge p b {
        font-size: 14.5px;
    }

    .knowledge section {
        margin: 0 9px 52px;
    }

    .knowledge_base_navigation_general {
        width: auto;
    }
}

@media screen and (min-width: 749px) and (max-width: 980px) {
    #knowledge_base_content img {
        display: block;
        border: 1px solid #e5e5e5;
        margin: 10px 0;
        width: auto;
        height: auto;
    }
}

@media screen and (min-width: 981px) {
    .knowledge {
        align-items: flex-start;
    }

    #knowledge_base_navigation {
        width: 295px;
        padding: 30px;
    }

    #knowledge_base_navigation li {
        min-height: 56px;
    }

    #knowledge_base_content {
        padding: 0 30px 30px;
    }

    .main_sections li {
        line-height: 54px;
    }

    .drop_menu_visibility {
        padding: 14px 74px 20px 0;
    }

    .drop_menu_arrow {
        padding: 22px 3px;
    }

    #knowledge_base_navigation .submenu li a {
        width: 205px;
    }

    .knowledge section {
        margin: 0 0 52px 20px;
    }

    .knowledge h2 {
        font-size: 20px;
        padding: 30px 0 10px;
    }

    .knowledge p {
        font-size: 14px;
    }

    .knowledge p b {
        font-size: 13.5px;
    }

    #knowledge_base_content img {
        display: block;
    }
}

@media screen and (min-width: 1281px) {
    #knowledge_base_navigation {
        width: 315px;
    }

    #knowledge_base_content {
        padding: 0 30px 30px;
    }

    .drop_menu_visibility {
        padding: 14px 80px 20px 0;
    }

    #knowledge_base_navigation .submenu li a {
        width: 225px;
    }
}

/*--------------------------CHOICE COUNTRY--------------------------------------------*/

.block-search-knowledge {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

.block-country-knowledge {
    height: 34px;
    border: 1px solid #BBBBBB;
    box-sizing: border-box;
    color: #000000;
    width: auto;;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.search-topic {
    height: 34px;
    border: 1px solid #BBBBBB;
    box-sizing: border-box;
    flex-grow: 1;
    color: #000000;
    padding: 8px;
    font-size: 14px;
    width: auto;
}

.name-country-knowledge {
    display: flex;
    align-items: center
}

.name-country-knowledge img {
    margin-right: 10px;
}

.dropdown-list {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    overflow: auto;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 3;
    border-radius: 0 0 8px 8px;
    top: 33px;
    left: 0;
    min-width: 100%;
}

.block-country-knowledge.active .dropdown-list {
    display: block;
}

.dropdown-list .name-country-knowledge:hover {
    background: #DCDCDC;
}

.dropdown-arrow {
    width: 13px;
    background-image: url(/web/site/assets/img/style/down.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 5px;
    margin-left: 5px;
}

.block-country-knowledge.active .dropdown-arrow {
    transform: rotate(180deg);
}