#burger-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1999900;
}
#burger-overlay.display{
    display: block;
}
#burger {
    position: fixed;
    overflow: auto;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 100%;
    z-index: 2000000;
    background: #ffffff;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    transition: all .3s ease;
}
#burger::-webkit-scrollbar {
    display: none; /* Chrome and Safari */
}

body.burger-active {
    overflow: hidden;
}
body.burger-active #burger-overlay {
    display: block;
}
body.burger-active #burger {
    right: 0;
}

.burger-title {
    line-height: 40px;
    padding-left: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}
.burger-title:before {
    color: var(--bf-primary-color);
    content: "|";
    font-size: 20px;
    padding: 0 10px 0 0;
}

#burger .burger__search, #burger .burger__cat, #burger .burger__profile, #burger .burger__signup, #burger .burger__signin, #burger .burger__forgot {
    display: none;
}

body.burger-menu-active #burger .burger__cat {
    display: block;
}
body.burger-menu-active #burger .burger__search {
    display: flex;
}

body.burger-account-active #burger .burger__profile, body.burger-account-active #burger .burger__signin, body.burger-account-active #burger .burger__signup {
    display: block;
}

body.burger-forgot-active #burger .burger__forgot {
    display: block;
}

.burger__acc a {
    padding: 20px 0;
    font-size: 9px;
    display: inline-block;
    color: var(--bf-focus-color);
}

.burger__inner {
    padding: 20px;
}

.clear {
    clear: both;
}

.burger__header {
    width: 100%;
    background-color: var(--bf-primary-color);
    height: 50px;
    display: flex;
    justify-content: flex-end;
}
.burger__header > .burger__header__close {
    flex: 1;
    line-height: 50px;
    width: 50px;
    max-width: 50px;
    background: url('/bundles/app/images/theme2020/btn_close_white.png') no-repeat center center;
    background-size: auto 25px;
    display: block;
    text-decoration: none;
}

.burger__search {
    background: #eff3f6;
    border-radius: 7px;
    height: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
}
#burger__search__input::placeholder {
    color: #6d6d6d;
}
#burger__search__input {
    flex: 1;
    height: 40px;
    line-height: 40px;
    outline: 0;
    border: 0;
    background: transparent;
    padding-left: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #0c0c0c;
    background-image: url('/bundles/app/images/theme2020/pic_search_blue.png');
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}
#burger__search__submit {
    flex: 1;
    height: 26px;
    line-height: 26px;
    max-width: 80px;
    width: 80px;
    margin-right: 10px;
    border-radius: 7px;
    outline: 0;
    border: 0;
    background: transparent;
    padding-left: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #ffffff;
    background: var(--bf-primary-color);
    cursor: pointer;
}

.burger__cat__row {
    background: #eff3f6;
    border-radius: 7px;
    padding: 8px;
    margin: 15px 0 0 0;
}
.burger__cat__row__title {
    display: flex;
    height: 40px;
    align-items: center;
}
.burger__cat__row__title__logo {
    flex: 1;
    height: 40px;
    max-width: 40px;
    min-width: 40px;
    border-radius: 8px;
    background-position: center center;
    background-color: #ffffff;
    background-size: 30px 30px;
    background-repeat: no-repeat;
}
.burger__cat__row__title__logo a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.burger__cat__row__title__title {
    flex: 1;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    text-transform: uppercase;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
}
.burger__cat__row__title__title a {
    color: #0c0c0c;
    text-decoration: none;
}
.burger__cat__row__title__action {
    flex: 1;
    height: 40px;
    max-width: 40px;
    min-width: 40px;
}
.burger__cat__row__title__action a {
    display: block;
    margin: 7px auto 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    background: url('/bundles/app/images/theme2020/pic_chevron_down_white.png') var(--bf-primary-color) no-repeat center center;
    background-size: 16px auto;
    background-position: center 6px;
    color: #ffffff;
    line-height: 27px;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
}
.burger__cat__row.submenus-active .burger__cat__row__title__action a {
    background: url('/bundles/app/images/theme2020/pic_dash_white.png') var(--bf-primary-color) no-repeat center center;
    background-size: 16px auto;
    background-position: center 6px;
}

.burger__cat__row__submenus {
    list-style-type: none;
    padding: 20px 0 0 0;
    margin: 0;
    display: none;
}
.burger__cat__row.submenus-active .burger__cat__row__submenus {
    display: block;
}
.burger__cat__row__submenus > li {
    line-height: 40px;
    padding-left: 10px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
}
.burger__cat__row__submenus > li a {
    color: #0c0c0c;
    text-decoration: none;
}
.burger__cat__row__submenus > li:before {
    color: var(--bf-primary-color);
    content: "|";
    font-size: 18px;
    padding: 0 10px 0 0;
}
.burger__cat__row__submenus > li > ul {
    list-style-type: none;
    padding: 0 0 0 30px;
}
.burger__cat__row__submenus > li > ul > li {
    position: relative;
    line-height: 40px;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: -.5px;
}
.burger__cat__row__submenus > li > ul > li:hover:before {
    content: ' ';
    position: absolute;
    left: -50px;
    top: 0;
    width: calc(100% + 60px);
    height: 100%;
    background: #dde0e3;
    z-index: 0;
}
.burger__cat__row__submenus > li > ul > li > a {
    display: block;
    position: relative;
    padding-right: 40px;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.burger__cat__row__submenus > li > ul > li > a:after {
    position: absolute;
    right: 0;
    font-weight: 400;
    content: ' ';
    color: var(--bf-primary-color);
    background: url('/bundles/app/images/theme2020/pic_chevron_right_blue.png') no-repeat center center;
    background-size: auto 20px;
    font-size: 30px;
    line-height: 40px;
    height: 100%;
    width: 30px;
}

.burger__cat__all {
    margin: 15px 0 15px 0;
}
.burger__cat__all a {
    display: block;
    width: 100%;
    border: 1px var(--bf-primary-color) solid;
    background: var(--bf-primary-color-transparent-light);
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: var(--bf-primary-color);
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 7px;
}

.burger__acc {
    margin-bottom: 80px;
}

.burger__acc input[type="text"], .burger__acc input[type="email"], .burger__acc input[type="password"] {
    width: 100%;
    outline: 0;
    display: block;
    border: 0;
    font-family: 'Roboto', Arial, sans-serif;
    border-bottom: 1px #c3c3c3 solid;
    font-size: 14px;
    font-weight: 400;
    margin-top: 20px;
}
.burger__acc button[type="submit"] {
    margin: 20px auto 0 auto;
    display: block;
    background: var(--bf-primary-color);
    color: #ffffff;
    width: 50%;
    height: 30px;
    border: 0;
    outline: 0;
    cursor: pointer;
    border-radius: 7px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Roboto', Arial, sans-serif;
}

.burger__profile h2 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}
.burger__profile h2::before {
    font-size: 20px;
    font-weight: 800;
    padding: 0 5px 0 0;
    content: "|";
    color: var(--bf-primary-color);
}

.burger__profile__name {
    text-align: center;
    font-size: 24px;
}
.burger__profile__avatar {
    background: url('/bundles/app/images/theme2020/btn_profile_white.png') var(--bf-primary-color) no-repeat center center;
    background-size: auto 30px;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin: 10px auto;
}

.burger__profile__edit {
    margin-top: 10px;
}

.burger__profile__edit label {
    color: #aaaaaa;
    font-size: 12px;
    cursor: pointer;
}

.burger__profile__edit .input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px #c3c3c3 solid;
}

.burger__profile__edit .input-row input {
    flex: 1;
    max-width: calc(100% - 40px);
    height: 30px;
    color: #000000;
    border: 0;
    margin: 0;
}
.burger__profile__edit .input-row button.editing {
    background: url('/bundles/app/images/theme2020/pic_pen.png') var(--bf-primary-color) no-repeat center center;
    background-size: 10px auto;
    display: block;
}
.burger__profile__edit .input-row button.check {
    background: url('/bundles/app/images/theme2020/pic_check.png') var(--bf-primary-color) no-repeat center center;
    background-size: 10px auto;
    display: block;
}
.burger__profile__edit .input-row button.load {
    background: url('/bundles/app/images/theme2020/loader.svg') var(--bf-primary-color) no-repeat center center;
    background-size: 150%;
    display: block;
}

.burger__profile__edit .input-row button {
    flex: 1;
    max-width: 24px;
    height: 24px;
    border-radius: 100%;
    display: none;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    outline: 0;
}

.burger__profile__edit .input-row button.save {
    background: url('/bundles/app/images/theme2020/pic_check.png') var(--bf-primary-color) no-repeat center center;
    background-size: 12px auto;
}

.burger__profile__edit .input-error {
    font-size: 10px;
    color: #cc0000;
    margin-top: 2px;
    margin-bottom: 10px;
}

h2.margin {
    margin: 40px 0 20px 0;
}

.burger__profile__comments {
    padding: 20px;
    background: #fafafa;
}

.comreply {
    padding: 10px;
    border-radius: 5px;
    background: #ffffff;
    position: relative;
    margin-bottom: 20px;
}
.comreply:last-child {
    margin-bottom: 0;
}
.comreply__new {
    position: absolute;
    right: 40px;
    top: -8px;
    height: 16px;
    padding: 0 10px;
    background: #ff0000;
    border-radius: 3px;
    color: #ffffff;
    font-weight: 600;
    font-size: 10px
}
.comreply__title {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: -.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.comreply__title a {
    text-decoration: none;
    padding: 0;
    font-size: 12px;
}
.comreply__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.comreply__body__content {
    flex: 1;
    max-width: calc(100% - 40px);
    min-height: 40px;
    display: flex;
    align-items: center;
}
.comreply__body__chevron {
    flex: 1;
    max-width: 40px;
}
.comreply__body__chevron a {
    display: block;
    text-decoration: none;
    padding: 0;
    height: 40px;
    width: 100%;
    background: url('/bundles/app/images/theme2020/pic_chevron_right_blue.png') no-repeat center center;
    background-size: auto 15px;
}





.burger__profile__articles {
    padding: 20px;
    background: #fafafa;
}
.lastarticle {
    padding: 10px;
    border-radius: 5px;
    background: #ffffff;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lastarticle:last-child {
    margin-bottom: 0;
}
.lastarticle__thumbnail {
    flex: 1;
    max-width: 106px;
    height: 60px;
    background-size: cover;
    background-position: center center;
}
.lastarticle__thumbnail a {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    outline: 0;
}
.lastarticle__title {
    flex: 1;
    max-width: calc(100% - 116px);
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: -.5px;
    margin-bottom: 5px;
}
.lastarticle__title a {
    text-decoration: none;
    padding: 0;
    font-size: 12px;
}
.lastarticle__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lastarticle__body__content {
    flex: 1;
    max-width: calc(100% - 40px);
    min-height: 40px;
    display: flex;
    align-items: center;
}

.lastarticle__title__date {
    font-size: 10px;
    color: #909090;
}

#burger__results {
    display: none;
    background: #F0F3F6;
    border-radius: 15px;
    padding: 20px;
}
#burger__results.visible {
    display: block;
}

#burger__results .more-results {
    text-align: center;
    font-size: 14px;
    margin: 10px 0;
    text-decoration: underline;
    cursor: pointer;
}

#burger__results .lastarticle a {
    color: #000000;
}


/* ------------------------------------------------------------------------------------
 Desktop
--------------------------------------------------------------------------------------- */
@media screen and (min-width: 1024px) {

    #burger {
        position: fixed;
        top: 0;
        right: -375px;
        width: 375px;
        height: 100%;
    }

    body.burger-active #burger {
        right: 0;
    }

}