@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    background: #f4f4f4;
    --main-color: #374957;
    --dropdown-bg: #fff;
    --second-color: #1d262d;
    --second-dark-color: #374957;
    --sidebar-block-bg: #fff;
    --nav-bg: #d3d4d6;
    --table-main-bg: #fff;
    --table-second-bg: #e9ebef;
    color: var(--main-color);
}

body.dark {
    background: #0c1a21;
    --main-color: #fff;
    --second-color: #fff;
    --second-dark-color: #a3aed0;
    --nav-bg: #16272f;
    --sidebar-block-bg: #1d333f;
    --dropdown-bg: #1d262d;
    --table-main-bg: #1d333f;
    --table-second-bg: #172730;
}

header {
    border-bottom: 1px solid #5a5a5a;
    background: #223b48;
    padding: 3px 33px 2px 5px;
    position: relative;
    z-index: 1020;
}

.container {
    max-width: 1170px;
}

.wrapper {
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

.banner {
    background: linear-gradient(80deg, #294757 0%, #294757 80%, #006691 100%);
    height: 78px;
    position: relative;
    border-bottom: 1px solid #adadad;
    display: flex;
    align-items: center;
}

.banner_left_side {
    position: absolute;
    top: 0;
    left: 0;
    height: 78px;
    display: flex;
    align-items: center;
}

.banner_car {
    width: 194px;
    min-width: 194px;
    margin-right: 22px;
}

.banner h1 {
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    color: #ffc743;
    margin-bottom: 0;
}

.banner_desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: #ffffff;
}

.header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_left {
    display: flex;
    align-items: center;
}

header .nav-item {
    padding: 0;
    padding-right: 12px;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
}

header .nav-link {
    color: #fff;
    padding: 0;
}

header .nav-link a:hover {
    text-decoration: none;
    color: #d3e1f0;
}

header .nav .nav-item:last-child {
    padding-right: 0;
}

.separator {
    width: 1px;
    background: #ffc743;
    height: 12px;
    min-width: 1px;
    margin: 0 6px;
}

.header_ttl {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #d3e1f0;
    padding-right: 12px;
}

.header_dropdown {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    padding-right: 20px;
    cursor: pointer;
    position: relative;
}

.header_dropdown:after {
    content: url(../img/chevron_down.svg);
    position: absolute;
    right: 0;
    top: 0;
}

header .dropdown-menu {
    background: var(--dropdown-bg);
    border: none;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 5px 5px;
    max-width: max-content;
    min-width: max-content;
}

header .dropdown-item {
    padding: 0 20px;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 12px;
    color: var(--second-dark-color);
}

.dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown.show .header_dropdown:after {
    transform: rotate(180deg);
}

.header_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .header_btn {
    width: 20px;
    min-width: 20px;
    margin-right: 14px;
    position: relative;
}

header .header_btn .items {
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 10px;
    line-height: 13px;
    color: #374957;
    position: absolute;
    top: 8px;
    left: 14px;
    border-radius: 50%;
    background: #ffc743;
}

.login_btn {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
}

.login_btn:hover {
    text-decoration: none;
    color: #fff;
}

.login_btn img {
    margin-right: 12px;
}

.header_center {
}

.logo {
    display: block;
    width: 19px;
    min-width: 19px;
    margin-right: 9px;
}

.search_block {
    max-width: 436px;
    margin-left: auto;
    position: relative;
}

.search_block a {
    padding-left: 10px;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    padding-top: 2px;
}

.search_block a:hover {
    text-decoration: none;
    color: #fff;
}

.search_form {
    border: 1px solid #d3e1f0;
    background: #e9ebef;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.search_form input {
    width: 100%;
    border: none;
    background: #e9ebef;
    color: #212930;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    padding: 0 5px;
    padding-right: 30px;
}

:active,
:hover,
:focus {
    outline: 0;
    outline-offset: 0;
}

.search_form select {
    background: #e9ebef;
    border: none;
    padding: 6px 10px;
}

.search_form [type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.search_form .separator {
    height: 24px;
    width: 1px;
    background: #fff;
    margin: 0;
}

.dark .search_form {
    border: 1px solid #1d333f;
    background: #1d262d;
}

.dark .search_form input {
    background: #1d262d;
    color: #fff;
}

.dark .search_form select {
    background: #1d262d;
    color: #a3aed0;
}

.dark .search_form [type="submit"] {
    filter: brightness(500%);
}

.search_btn {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ebef;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
}

.dark .search_btn img {
    filter: brightness(500%);
}

.dark .search_btn {
    background: #1d262d;
}

.search_modal {
    height: calc(100vh - 27px);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(41, 71, 87, 0.8);
    display: none;
}

.search_modal.active {
    display: block;
}

.search_modal_content {
    background: #294757;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_modal_content .search_block {
    max-width: 100%;
}

.search_modal_content .search_form {
    margin-bottom: 8px;
}

.clear_search {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../img/x.svg) no-repeat center center;
    cursor: pointer;
    right: 40px;
}

nav {
    background: var(--nav-bg);
    padding: 6px 0;
}

nav .nav {
    align-items: center;
}

nav .nav-item {
    padding: 0 10px;
}

nav .nav-link {
    padding: 0;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: var(--main-color);
    position: relative;
}

nav .nav-link.active:after,
nav .nav-link:hover:after {
    content: "";
    position: absolute;
    background: var(--main-color);
    height: 4px;
    width: 100%;
    bottom: -7px;
    left: 0;
}

nav .nav-item:first-child {
    padding-left: 0;
}

nav .separator {
    height: 22px;
    background: #8f9bba;
    margin: 0 6px;
}

.breadcrumbs {
    padding: 5px 0;
}

.breadcrumbs .separator {
    background: url(../img/right.svg) no-repeat center center / contain;
    width: 10px;
    height: 10px;
    margin: 0 8px;
}

.bread {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    font-size: 12px;
    line-height: 16px;
    color: var(--second-dark-color);
}

.content {
    padding-top: 20px;
    padding-bottom: 20px;
}

.content_row {
    display: flex;
}

.sidebar {
    width: 273px;
    min-width: 273px;
    margin-right: 18px;
}

.sidebar_block {
    background: var(--sidebar-block-bg);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 8px 15px;
    margin-bottom: 14px;
}

.sidebar_block_ttl {
    color: var(--second-color);
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    position: relative;
}

.sidebar_block_content {
    padding-top: 5px;
}

.sidebar_block_row {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 17px;
    display: flex;
}

.sidebar_block_left {
    width: 114px;
    min-width: 114px;
    margin-right: 4px;
    color: var(--second-dark-color);
    text-align: right;
}

.sidebar_block_right {
    color: var(--second-color);
    font-weight: 700;
    display: flex;
    align-items: center;
}

sidebar_block_content .sidebar_block_row:last-child {
    margin-bottom: 0;
}

.blue_progress,
.green_progress {
    width: 34px;
    min-width: 34px;
    height: 8px;
    background: #319df5;
    border-radius: 10px;
    margin-right: 4px;
}

.green_progress {
    background: #8fb669;
}

.question {
    margin-left: 4px;
    cursor: pointer;
}

.log_item {
    display: flex;
    margin-bottom: 1px;
}

.log_icon {
    width: 16px;
    min-width: 16px;
    margin-right: 4px;
}

.log_txt {
    font-size: 14px;
    line-height: 18px;
}

.sidebar_block_content a {
    color: #319df5;
}

.dark .white_on_dark {
    filter: brightness(500%);
}

.sidebar_block_content_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    margin-top: 5px;
}

.sidebar_block_content_bottom .separator {
    height: 14px;
    background: #a3aed0;
    margin: 0 6px;
}

.sidebar_block_content_txt {
    color: var(--second-dark-color);
    font-size: 13px;
    line-height: 150%;
}

.main_content {
    width: 100%;
}

.table_block {
    border-radius: 10px;
    border: 1px solid;
    overflow: hidden;
}

.table_block_issues {
    border-color: #fbb9bd;
}

.table_block_ideas {
    border-color: #f8e8b6;
}

.table_block_tasks {
    border-color: #c8dfc1;
}

.table_block_objectives {
    border-color: #b6d7dd;
}

.table_block_objective {
    border-color: #dde1ec;
}

.table_block_comments {
    border-color: #dde1ec;
}

.table_block_head {
    padding: 4px 9px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #1d262d;
    position: relative;
}

.table_block_issues .table_block_head {
    background: #fbb9bd;
}

.table_block_ideas .table_block_head {
    background: #f8e8b6;
}

.table_block_tasks .table_block_head {
    background: #c8dfc1;
}

.table_block_objectives .table_block_head {
    background: #b6d7dd;
}

.table_block_objective .table_block_head {
    background: #e4d5f0;
}

.table_block_comments .table_block_head {
    background: #dde1ec;
}

.table_block_icon {
    height: 22px;
    width: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    margin-right: 6px;
}

.table_block_body thead {
    color: var(--second-color);
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
}

.table_block_body tbody {
    color: var(--second-dark-color);
    font-size: 13px;
    line-height: 17px;
}

.table_block_body td,
.table_block_body th {
    padding: 6px;
    border-right: 1px solid #dde1ec;
}

.dark .table_block_body td,
.dark .table_block_body th {
    border-color: #2d4a59;
}

.table_block_body tr td:last-child,
.table_block_body tr th:last-child {
    border: none;
}

.table_block_body tr {
    background: var(--table-main-bg);
}

.table_block_body tr:nth-child(odd) {
    background: var(--table-second-bg);
}

.table_block_body thead tr {
    background: var(--table-main-bg) !important;
}

.table_block_txt {
    padding: 10px 9px;
    color: #1d262d;
    font-size: 13px;
    background: #fff;
}

.objective_content {
    padding: 10px 9px;
    background: #fff;
}

.sidebar_line {
    height: 1px;
    background: #dde1ec;
}

.objective_content_info {
    max-width: 273px;
    min-width: 273px;
    flex: 1;
}

.objective_content_info_links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.separat {
    background: #a3aed0;
    width: 1px;
    min-width: 1px;
    height: 14px;
}

.objective_content .sidebar_block_left {
    width: 85px;
    min-width: 85px;
}

.objective_content_row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.objective_content p:last-child {
    margin-bottom: 0;
}

.objective_content .progress {
    max-width: 44px;
    min-width: 44px;
    margin-left: 4px;
    margin-right: 10px;
}

.mob_table_section {
    padding: 0 8px;
}

.mob_table .mob_table_section {
    background: var(--table-main-bg);
}

.mob_table .mob_table_section:nth-child(odd) {
    background: var(--table-second-bg);
}

.mob_table_row {
    display: flex;
    font-size: 13px;
    line-height: 17px;
    border-bottom: 1px solid #dde1ec;
    padding: 5px 0;
}

.mob_table_section .mob_table_row:last-child {
    border: none;
}

.mob_table_ttl {
    color: var(--second-color);
    font-weight: 700;
    white-space: nowrap;
    margin-right: 5px;
}

.mob_table_val {
    color: var(--second-dark-color);
}

.mob_table_val .progress {
    margin-top: 5px;
}

.priority_col {
    width: 81px;
    min-width: 81px;
}

.table_block_body .type_col {
    width: 110px;
    min-width: 110px;
    padding-right: 2px;
}

.last_reply_col {
    width: 113px;
    min-width: 113px;
}

.replies_col,
.views_col {
    width: 56px;
    min-width: 56px;
}

.status_col {
    width: 194px;
    min-width: 194px;
}

.table_block_body .title_col {
    width: 100%;
    padding-right: 0;
}

.table_block_tasks .replies_col {
    width: 112px;
    min-width: 112px;
}

.main_content .progress {
    width: 68px;
    height: 8px;
    border-radius: 5px;
    background: #d4dcea;
}

.main_content .progress-bar {
    border-radius: 5px;
    background: #319df5;
}

.hidden_row {
    display: none;
}

.content_block_bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 13px;
    line-height: 17px;
    margin-top: 4px;
}

.content_block_bottom a {
    color: #319df5;
}

.content_block_bottom .separator {
    background: #a3aed0;
    height: 14px;
    margin: 0 6px;
}

.content_block {
    margin-bottom: 10px;
}

.main_content .content_block:last-child {
    margin-bottom: 0;
}

.site_statistic_head {
    padding: 5px 0;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: var(--second-dark-color);
    background: var(--nav-bg);
}

.site_statistic_body {
    background: #595657;
    padding: 10px 0 11px;
}

.site_statistic_body_container {
    display: flex;
    justify-content: space-between;
}

.statistic_blocks {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(5, 1fr);
    max-width: 470px;
    min-width: 470px;
    margin-right: 15px;
    align-self: center;
}

.statistic_block {
    border-radius: 10px;
}

.statistic_block_purple {
    background: #9c80cb;
}

.statistic_block_blue {
    background: #4a9fe0;
}

.statistic_block_green {
    background: #7eb764;
}

.statistic_block_orange {
    background: #e1a646;
}

.statistic_block_red {
    background: #d34d4d;
}

.statistic_block_top,
.statistic_block_bottom {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #fff;
}

.statistic_block_top {
    border-bottom: 1px solid #fff;
}

.statistic_center {
    max-width: 194px;
    min-width: 194px;
    margin-right: 15px;
    align-self: center;
}

.statistic_row {
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 6px;
    position: relative;
}

.statistic_param {
    min-width: 124px;
    width: 124px;
    color: #fff;
}

.statistic_val {
    color: #7bc4ff;
    width: 100%;
    text-align: right;
}

.statistic_center .statistic_row:last-child,
.statistic_right .statistic_row:last-child {
    margin-bottom: 0;
}

.statistic_right {
    max-width: 194px;
    min-width: 194px;
    margin-right: 41px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.statistic_row_dollar:after {
    content: url(../img/currency-dollar.svg);
    position: absolute;
    right: -41px;
    top: 50%;
    transform: translateY(-50%);
}

footer {
    background: #333335;
    padding: 13px 0 11px;
    text-transform: uppercase;
}

footer .nav-link {
    color: #319df5;
    padding: 0;
}

footer .nav-item {
    padding: 0 16px;
    border-right: 1px solid #fff;
}

footer .nav-item:last-child {
    border: none;
}

.burger {
    position: relative;
    width: 30px;
    min-width: 30px;
    height: 22px;
    margin-right: 15px;
    cursor: pointer;
}

.line {
    transition: all 0.5s ease;
    background: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
}

.burger .line:first-child {
    top: 0;
}

.burger .line:nth-child(3) {
    bottom: 0;
}

.burger .line:nth-child(2) {
    top: 10px;
}

.burger.active .line:first-child {
    top: 10px;
    transform: rotate(45deg);
}

.burger.active .line:nth-child(2) {
    opacity: 0;
}

.burger.active .line:nth-child(3) {
    bottom: 10px;
    transform: rotate(-45deg);
}

.mob_menu {
    background: #223b48;
    height: calc(100vh - 27px);
    overflow: auto;
    width: 100%;
    max-width: 360px;
    position: absolute;
    top: 100%;
    left: -360px;
    transition: all 0.5s ease;
}

.mob_menu.active {
    left: 0;
}

.mob_menu nav {
    padding: 20px;
    background: #d3d4d6;
}

.mob_menu nav .separator {
    width: 100%;
    margin-bottom: 20px;
    height: 1px;
}

.mob_menu nav .nav-item {
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
}

.mob_menu nav .nav-item:last-child {
    margin-bottom: 0;
}

.mob_menu nav .nav-link.active:after,
.mob_menu nav .nav-link:hover:after {
    display: none;
}

.mob_menu .other_content {
    padding: 15px 20px;
}

.mob_menu .other_content .separator {
    margin: 15px 0;
    width: 100%;
    height: 1px;
}

.mob_menu .nav-item {
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    padding-right: 20px;
}

.mob_menu .card {
    background: none;
    padding: 0;
    border: none;
    margin-top: 15px;
    border-radius: 0;
}

.mob_menu .card-header {
    background: none;
    padding: 0;
    padding-top: 15px;
    border-radius: 0;
    border: none;
    border-top: 1px solid #ffc743;
}

.mob_menu .card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    color: #d3e1f0;
}

.mob_menu .card-link:hover {
    color: #d3e1f0;
    text-decoration: none;
}

.mob_menu .card-body {
    padding: 0;
    border: none;
    padding-top: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
}

.mob_menu .card-body ul li a {
    color: #fff;
}

.mob_menu .card-body a:hover {
    color: #fff;
    text-decoration: none;
}

.mob_menu .card-body ul {
    margin-bottom: 0;
}

.mob_menu .card-body ul li {
    margin-bottom: 15px;
}

.mob_menu .card-body ul ul {
    list-style: none;
    padding-left: 15px;
}

.mob_menu .card-body ul ul li {
    margin-bottom: 0;
    margin-top: 15px;
}

.mob_menu .card-body ul ul li a,
.mob_menu .card-body ul ul li a:hover {
    color: #8f9bba;
}

.mob_menu .card-body ul li:last-child {
    margin-bottom: 0;
}

.mob_menu [aria-expanded="true"] img {
    transform: rotate(180deg);
}

.arrow {
    display: none;
    position: absolute;
    top: 3px;
    right: 0;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
}

.comment_stat {
    display: flex;
    gap: 10px;
    color: #1d262d;
    font-size: 13px;
}

.comments_content {
    padding: 10px 9px;
    background: #fff;
}

.comment_container {
    margin-top: 5px;
    border-radius: 10px;
    border: 1px solid #dde1ec;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.comment_icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #dde1ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment_content {
    font-size: 13px;
    width: 100%;
}

.comment_info {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 10px;
}

.comment_autor {
    font-weight: 700;
    color: #374957;
    border-right: 1px solid #a3aed0;
    padding-right: 5px;
    white-space: nowrap;
}

.comment_time {
    color: #a3aed0;
}

.comment_txt {
    color: #374957;
}

.comment_content textarea {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--Line, #dde1ec);
    box-shadow: 0px 0px 4px 0px #4a9fe0;
    width: 100%;
    height: 108px;
    resize: none;
    margin-bottom: 10px;
    color: #374957;
}

.comment_content textarea::placeholder {
    color: #a3aed0;
}

.btn:active,
.btn:focus {
    box-shadow: none;
}

.btn {
    border-radius: 10px;
    background: #4679b2;
    padding: 10px 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn:hover {
    color: #fff;
    background: #319df5;
}

@media screen and (max-width: 1199.8px) {
    header {
        padding-left: 20px;
        padding-right: 20px;
        position: sticky;
        top: 0;
    }
}

@media screen and (max-width: 991.8px) {
    .content_row {
        flex-wrap: wrap-reverse;
    }
    .main_content .content_block:last-child {
        margin-bottom: 20px;
    }
    .sidebar {
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }
    .site_statistic_body_container {
        flex-wrap: wrap;
    }
    .statistic_blocks {
        margin-right: 0;
        margin: 0 auto 20px;
        width: 100%;
        max-width: 100%;
    }
    .statistic_center {
        width: calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    .statistic_right {
        width: calc(50% - 41px);
        min-width: calc(50% - 41px);
    }
}

@media screen and (max-width: 767.8px) {
    .table_block .table_block_body,
    .table_block .table_block_txt,
    .table_block .objective_content {
        display: none;
    }
    .table_block.active .table_block_body,
    .table_block.active .table_block_txt,
    .table_block.active .objective_content {
        display: block;
    }
    .table_block_head .arrow {
        display: flex;
        right: 12px;
        top: 5px;
    }
    .table_block_head {
        cursor: pointer;
    }
    .table_block.active .arrow {
        transform: rotate(180deg);
    }
    footer .nav-item {
        padding: 15px 0;
        border-right: none;
        border-bottom: 1px solid #fff;
    }
    footer .nav-item:first-child {
        padding-top: 0;
    }
    footer .nav-item:last-child {
        padding-bottom: 0;
    }
    .banner {
        background: #294757;
    }
}

@media screen and (max-width: 575.8px) {
    .sidebar {
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }
    .sidebar_block_ttl .arrow {
        display: flex;
    }
    .sidebar_block .sidebar_block_content {
        display: none;
    }
    .sidebar_block.active .sidebar_block_content {
        display: block;
    }
    .sidebar_block.active .arrow {
        transform: rotate(180deg);
    }
    .sidebar_block_ttl {
        cursor: pointer;
    }
    .site_statistic_body_container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .statistic_center {
        align-self: flex-start;
        margin-bottom: 20px;
        min-width: 194px;
    }
    .statistic_right {
        min-width: 194px;
    }
    .statistic_blocks {
        max-width: 473px;
    }
    .table_block_body table {
        display: none;
    }
    .banner_left_side {
        left: -100px;
    }
    .objective_content_row {
        flex-direction: column;
        align-items: flex-end;
    }
}

@media screen and (max-width: 509.8px) {
    .statistic_blocks {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        min-width: 0;
    }

    .statistic_block {
        width: 83px;
    }
}

.panel.panel-grey.panel-default {
    width: 100%;
}
/*
 body {
    overflow-x: hidden;
 } */

/* login page css here start new */

.login-app {
    background-color: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    max-width: 400px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 12px;
    background-color: #fff;
}

.login-app .form-control:focus {
    box-shadow: none;
    border-color: #23527c;
}

.login-app .form-control {
    padding: 10px 13px 10px 42px;
}

.login-app .input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #adb5bd;
}

.login-app .input-group .form-control {
    padding-left: 40px;
}

.login-app .login-btn {
    background-color: #23527c;
    color: #fff;
    font-weight: 500;
}

.login-app .login-btn:hover {
    background-color: #439be8;
}

.login-app .link-group a {
    font-size: 0.9rem;
    color: #23527c;
}

.login-app a {
    color: #23527c;
}

.position-relative {
    position: relative;
}

/* login css end here */

/* register page css start here */
.signup-app {
    background-color: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-app .signup-card {
    max-width: 600px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 12px;
    background-color: #fff;
}

.signup-app .form-label {
    font-weight: 500;
}

.signup-app .form-control:focus {
    box-shadow: none;
    border-color: #23527c;
}

.signup-app .btn-signup {
    background-color: #23527c;
    color: white;
    font-weight: 500;
}

.signup-app .btn-signup:hover {
    background-color: #439be8;
}

.signup-app a {
    color: #23527c;
}

.help-block {
    color: #dc3545;
    font-size: 0.9rem;
}

#user_img,
#email_img {
    height: 20px;
    margin-left: 10px;
}
/* register page css end here */

/* reset password start css here */
.reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-box {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.form-control:focus {
    box-shadow: none;
    border-color: #23527c;
}

.btn-reset {
    background-color: #23527c;
    color: white;
    font-weight: 500;
}

.btn-reset:hover {
    background-color: #1d4566;
}

.reset-box h4 {
    color: #23527c;
}
/* reset password end css here */

/* alert setting msg on of button css start here */
.custom-switch {
    width: 70px;
    height: 34px;
    position: relative;
    display: inline-block;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #dc3545;
    transition: 0.4s;
    border-radius: 34px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.custom-switch input:checked + .slider {
    background-color: #198754;
    justify-content: flex-start;
}

.slider::after {
    content: "Off";
}

.custom-switch input:checked + .slider::after {
    content: "On";
}

.slider:before {
    content: "";
    position: absolute;
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

.custom-switch input:checked + .slider:before {
    transform: translateX(36px);
}

/* alert setting msg on of button css end here */

/* chatroom css start here */

/* .wrapper {
    position: relative;
    left: 50%;
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
} */

.chat-app {
    height: 100vh;
    background-color: #f1f3f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-box {
    width: 100%;
    max-width: 1200px;
    height: 90%;
    background: white;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.chat-sidebar {
    width: 300px;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
}

.search-bar {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}

.user-item {
    padding: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f3f5;
    cursor: pointer;
}

.user-item:hover {
    background-color: #f8f9fa;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    margin-right: 10px;
}

.chat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 500;
}

.chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #fff;
}

.chat-messages .message {
    max-width: 75%;
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    clear: both;
}

.message.sent {
    background-color: #d1e7dd;
    align-self: flex-end;
    margin-left: auto;
    border-bottom-right-radius: 0;
}

.message.received {
    background-color: #e9ecef;
    align-self: flex-start;
    margin-right: auto;
    border-bottom-left-radius: 0;
}

.no-messages {
    text-align: center;
    color: #adb5bd;
    margin-top: 50px;
    font-size: 1rem;
}

.chat-input-area {
    display: flex;
    border-top: 1px solid #dee2e6;
    padding: 10px 15px;
    align-items: center;
    background-color: #f8f9fa;
}

.chat-input-container {
    position: relative;
    flex-grow: 1;
}

.chat-input-container input {
    width: 100%;
    border-radius: 30px;
    padding-left: 40px;
    padding-right: 40px;
}

.chat-input-container .input-icon-left {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
}

.chat-input-container .input-icon-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
}

.chat-input-area button {
    margin-left: 10px;
}
/* chatroom css end here */
