﻿@font-face {
    font-family: 'proxima_nova_condensedregular';
    src: url('../fonts/ProximaNovaCond-Regular-webfont.eot');
    src: url('../fonts/ProximaNovaCond-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNovaCond-Regular-webfont.woff2') format('woff2'), url('../fonts/ProximaNovaCond-Regular-webfont.woff') format('woff'), url('../fonts/ProximaNovaCond-Regular-webfont.ttf') format('truetype'), url('../fonts/ProximaNovaCond-Regular-webfont.svg#proxima_nova_condensedregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_nova_cn_ltlight';
    src: url('../fonts/mark_simonson_-_proxima_nova_condensed_light-webfont.eot');
    src: url('../fonts/mark_simonson_-_proxima_nova_condensed_light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/mark_simonson_-_proxima_nova_condensed_light-webfont.woff2') format('woff2'), url('../fonts/mark_simonson_-_proxima_nova_condensed_light-webfont.woff') format('woff'), url('../fonts/mark_simonson_-_proxima_nova_condensed_light-webfont.ttf') format('truetype'), url('../fonts/mark_simonson_-_proxima_nova_condensed_light-webfont.svg#proxima_nova_cn_ltlight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_nova_cn_rgbold';
    src: url('../fonts/mark_simonson_-_proxima_nova_condensed_bold-webfont.eot');
    src: url('../fonts/mark_simonson_-_proxima_nova_condensed_bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/mark_simonson_-_proxima_nova_condensed_bold-webfont.woff2') format('woff2'), url('../fonts/mark_simonson_-_proxima_nova_condensed_bold-webfont.woff') format('woff'), url('../fonts/mark_simonson_-_proxima_nova_condensed_bold-webfont.ttf') format('truetype'), url('../fonts/mark_simonson_-_proxima_nova_condensed_bold-webfont.svg#proxima_nova_cn_rgbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNovaCond-Semibold';
    src: url('../fonts/ProximaNovaCond-Semibold-webfont.eot');
    src: url('../fonts/ProximaNovaCond-Semibold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNovaCond-Semibold-webfont.woff2') format('woff2'), url('../fonts/ProximaNovaCond-Semibold-webfont.woff') format('woff'), url('../fonts/ProximaNovaCond-Semibold-webfont.ttf') format('truetype'), url('../fonts/ProximaNovaCond-Semibold-webfont.svg#ProximaNovaCond-Semibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "ProximaNovaCond-Semibold";
    src: url("/fonts/ProximaNovaCond-Semibold.woff2") format("woff2"), url("/fonts/ProximaNovaCond-Semibold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    --orange: #ff5c00;
    --sea: #035771;
}

body {
    background-color: #eff3f6;
    font-family: "Proxima Nova Condensed", sans-serif;
    font-size: 15px;
    overflow-y: auto !important
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 100px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 100px;
}

::-webkit-scrollbar-thumb {
    background: #ed8b00;
    border-radius: 100px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

h5.page-title {
    font-size: 20px;
    font-family: "ProximaNovaCond-Semibold", "Proxima Nova Condensed", Arial, sans-serif;
    margin-top: 0;
    margin-bottom: 10px; /* Add bottom margin for spacing */
    font-weight: normal; /* Ensure consistent font rendering */
}

.wrapper {
    display: block;
}

.topheader {
    width: 100%;
    padding: 15px;
    background: var(--orange);
}

.outer-warpper {
    height: calc(100vh - 146px);
    overflow-y: auto;
}

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -255px;
    z-index: 999;
    background: var(--orange);
    color: #fff;
    transition: all .3s;
    box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.5);
    text-align: left;
}

    .sidebar.active {
        left: 0;
    }

.dismiss {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 17px;
    right: 10px;
    transition: all .3s;
    border-radius: 4px;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
}

    .dismiss:hover,
    .dismiss:focus {
        color: #fff;
    }

.sidebar .logo {
    padding: 17px 20px;
    transition: all .3s;
}

    .sidebar .logo a {
        display: inline-block;
        width: 172px;
        height: 34px;
        background: url('../../Images/images/logo_white.png') left top no-repeat;
        border: 0;
        text-indent: -999999px;
    }

.dismiss .fas {
    font-size: 32px !important;
    background: transparent;
}

.sidebar ul.menu-elements {
    padding: 10px 0;
    transition: all .3s;
}

.sidebar ul li {
    border-bottom: 1px solid #fff;
}

.sidebar-scroll {
    height: calc(100vh - 78px);
    overflow-y: auto;
    padding-bottom: 40px;
}

.sidebar ul li a {
    display: flex; /* Removed duplicate 'display: block;' */
    align-items: center;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    font-family: "ProximaNovaCond-Semibold", "Proxima Nova Condensed", Arial, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .sidebar ul li a:hover,
    .sidebar ul li a:focus,
    .sidebar ul li.active > a:hover,
    .sidebar ul li.active > a:focus {
        outline: 0;
        background: #ffffff7d;
        color: #fff;
    }

    .sidebar ul li a img {
        margin-right: 11px;
    }

.sidebar ul li.active > a,
a[aria-expanded="true"] {
    background: #ffffff7d;
    color: #fff;
}

.sidebar ul ul li {
    list-style: none;
    border-bottom: 0px;
}

.sidebar ul ul a {
    font-size: 16px;
    padding: 10px 20px 16px 42px;
    text-decoration: underline;
    font-weight: normal;
    font-family: "Proxima Nova Condensed", sans-serif;
}

.sidebar a[data-toggle="collapse"] {
    position: relative;
}

.sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.sidebar .to-top {
    padding: 20px;
    text-align: center;
}

.sidebar .dark-light-buttons {
    padding: 10px 20px 30px 20px;
    text-align: center;
}

.sidebar.light {
    background: #fff;
    color: #888;
}

    .sidebar.light .dismiss {
        background: #ddd;
        color: #888;
    }

        .sidebar.light .dismiss:hover,
        .sidebar.light .dismiss:focus {
            background: #ccc;
            color: #888;
        }

    .sidebar.light .logo {
        border-color: #eee;
    }

        .sidebar.light .logo a {
            background-image: url(../img/logo-dark.png);
        }

    .sidebar.light ul.menu-elements {
        border-color: #eee;
    }

    .sidebar.light ul li a {
        color: #888;
    }

        .sidebar.light ul li a:hover,
        .sidebar.light ul li a:focus,
        .sidebar.light ul li.active > a:hover,
        .sidebar.light ul li.active > a:focus {
            background: #ccc;
            color: #888;
        }

    .sidebar.light ul li.active > a,
    .sidebar.light a[aria-expanded="true"] {
        background: #ddd;
        color: #888;
    }

    .sidebar.light ul ul a {
        background: #ddd;
    }

    .sidebar.light ul ul li.active > a {
        background: #ccc;
    }

    .sidebar.light a.btn-customized-3 {
        background: #ddd;
        color: #888;
    }

        .sidebar.light a.btn-customized-3:hover,
        .sidebar.light a.btn-customized-3:active,
        .sidebar.light a.btn-customized-3:focus,
        .sidebar.light a.btn-customized-3:active:focus,
        .sidebar.light a.btn-customized-3.active:focus,
        .sidebar.light a.btn-customized-3.btn.btn-primary:not(:disabled):not(.disabled):active,
        .sidebar.light a.btn-customized-3.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
            background: #ccc;
            color: #888;
        }

    .sidebar.light a.btn-customized-4.btn-customized-dark {
        background: #555;
    }

    .sidebar.light a.btn-customized-4.btn-customized-light {
        background: #eee;
    }

    .sidebar.light a.btn-customized-4.btn-customized-dark:hover,
    .sidebar.light a.btn-customized-4.btn-customized-dark:active,
    .sidebar.light a.btn-customized-4.btn-customized-dark:focus,
    .sidebar.light a.btn-customized-4.btn-customized-dark:active:focus,
    .sidebar.light a.btn-customized-4.btn-customized-dark.active:focus,
    .sidebar.light a.btn-customized-4.btn-customized-dark.btn.btn-primary:not(:disabled):not(.disabled):active,
    .sidebar.light a.btn-customized-4.btn-customized-dark.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
        background: #ccc;
        color: #fff;
    }

    .sidebar.light a.btn-customized-4.btn-customized-light:hover,
    .sidebar.light a.btn-customized-4.btn-customized-light:active,
    .sidebar.light a.btn-customized-4.btn-customized-light:focus,
    .sidebar.light a.btn-customized-4.btn-customized-light:active:focus,
    .sidebar.light a.btn-customized-4.btn-customized-light.active:focus,
    .sidebar.light a.btn-customized-4.btn-customized-light.btn.btn-primary:not(:disabled):not(.disabled):active,
    .sidebar.light a.btn-customized-4.btn-customized-light.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
        background: #ccc;
        color: #fff;
    }

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(51, 51, 51, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all .5s ease-in-out;
}

    .overlay.active {
        display: block;
        opacity: 1;
    }

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
}

.content {
    width: 100%;
    transition: all 0.3s;
}

.container-wrapper {
    max-width: 100%;
    padding: 0px;
    margin: auto;
}

.container {
    max-width: 85% !important;
    width: 85% !important;
    margin: auto;
}

.open-menu {
    position: fixed;
    top: 18px;
    z-index: 997;
    box-shadow: none;
    display: flex;
}

    .open-menu:hover {
        background-color: transparent;
        color: #fff;
        text-decoration: none;
    }

    .open-menu .fa {
        font-size: 22px;
        border: 1px solid white;
        background-color: transparent;
        color: #fff;
        border-radius: .25rem;
        padding: 3px 4px 2px 5px;
    }

    .open-menu.btn-customized,
    .open-menu.btn-customized:hover,
    .open-menu.btn-customized:active,
    .open-menu.btn-customized:focus,
    .open-menu.btn-customized:active:focus,
    .open-menu.btn-customized.active:focus,
    .open-menu.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active,
    .open-menu.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
        box-shadow: none;
    }

.username {
    color: #fff;
    font-size: 14px;
    margin-right: 4px;
    font-family: "ProximaNovaCond-Semibold", sans-serif !important;
}

.filter-btn {
    color: #fff;
    min-width: 104px;
    display: flex;
    margin-right: 6px;
    align-items: center;
    height: 40px;
    border-radius: 8px !important;
    justify-content: center;
    box-shadow: none;
}

.card-body {
    background: #FFFFFF;
    box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.104903);
    border-radius: 10px;
    padding: 10px;
}

.lable-h {
    height: 22px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
}

.srch-btn {
    background: var(--sea);
    color: #fff;
    max-width: 130px;
    height: 40px;
    border-radius: 8px !important;
    line-height: 11px;
    font-size: 17px;
    border: none;
}

    .srch-btn:hover {
        color: #fff;
    }

.cancel-btn {
    border: 1px solid #CCCCCC;
    background: #fff;
    color: #000;
    max-width: 130px;
    height: 40px;
    border-radius: 8px !important;
    font-size: 17px;
}

.dashboard-wrapper-block {
    background: #FFFFFF;
    box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.104903);
    border-radius: 5px;
    padding: 15px 10px 15px;
    width: 100%;
}

.small-card {
    background-color: #fff;
    border: 1px Solid #CAC7C7;
    border-radius: 10px;
    box-shadow: 0px 0px 6px rgb(240 245 245 / 80%);
    margin-bottom: 15px;
}

    .small-card .charts-card {
        height: 295px !important;
        width: 100% !important;
    }

    .small-card .charts-card1 {
        height: 244px !important;
        width: 100% !important;
    }

    .small-card .micro-charts-card {
        height: 289px !important;
        overflow-y: auto;
        overflow-x: hidden;
        margin-bottom: 5px;
    }

    .small-card .header {
        background: #e5f5ff7a;
        padding: 10px;
        font-size: 17px;
        font-weight: 500;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        font-family: "ProximaNovaCond-Semibold", sans-serif !important;
    }

    .small-card .highcharts-container {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

.tableFixHead {
    overflow-y: auto;
    height: 278px;
    margin: 10px 0 5px;
    padding: 0px 10px;
    font-size: 16px;
}

    .tableFixHead .dataTables_scrollHead {
        background: #407EC9;
        border-top-left-radius: 11px;
        border-top-right-radius: 11px;
    }

    .tableFixHead thead th {
        position: sticky;
        top: 0;
        background: #407EC9;
        border-color: transparent;
        font-size: 16px;
        color: #fff;
        font-weight: 100;
        white-space: nowrap;
    }

    .tableFixHead table thead th:first-child {
        border-top-left-radius: 11px;
    }

    .tableFixHead table thead th:last-child {
        border-top-right-radius: 11px;
    }

.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #fff;
}

.tableFixHead table tbody {
    font-size: 15px;
}

.poultry-card {
    background: #FFFFFF;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 15%);
    height: auto;
    width: 100%;
}

    .poultry-card img {
        height: 300px;
    }

.nav {
    display: block;
    font: 13px Helvetica, Tahoma, serif;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    width: 15px;
}

    .nav li {
        display: inline-block;
        list-style: none;
    }

    .nav .button-dropdown {
        position: relative;
        width:50px;
    }

    .nav li a {
        display: block;
        text-decoration: none;
    }

        .nav li a i {
            font-size: 15px;
        }

        .nav li a:hover,
        .nav li a.dropdown-toggle.active {
            background-color: transparent !important;
            color: transparent;
        }

    .nav li .dropdown-menu {
        display: none;
        position: absolute;
        left: -108px;
        padding: 0;
        margin: 0;
        margin-top: 3px;
        text-align: left;
        min-width: 100%;
        box-shadow: 0px 0px 5px rgb(0 0 0 / 32%);
        border-radius: 6px;
    }

        .nav li .dropdown-menu.active {
            display: block;
        }

        .nav li .dropdown-menu a {
            width: 120px;
            color: #000;
            padding: 3px 0 !important;
            font-size: 15px !important;
        }

.dash-footer {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
    text-align: center;
    background: #fff;
    color: #9e9e9e;
    padding: 16px 11px;
    font-weight: 300;
    border-top: 1px solid rgba(0, 0, 0, .125);
}

.highcharts-figure,
.highcharts-data-table table {
    min-width: 320px;
    max-width: 97%;
    margin: 1em auto;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}

.cust-dashboard {
    border-radius: 8px !important;
    width: 100%;
    text-align: left;
    border: 1px solid #4e8bd5 !important;
}

    .cust-dashboard .card-body {
        box-shadow: 0px 2px 5px rgb(0 0 0 / 10%);
    }

    .cust-dashboard .form-control {
        height: 39px;
    }

    .cust-dashboard .multi-opt .btn {
        width: 100% !important;
        display: flex;
        align-items: center;
        border-radius: 4px !important;
        height: 39px;
    }

    .cust-dashboard .multi-opt .btn-default.active,
    .btn-default.focus,
    .btn-default:active,
    .btn-default:focus,
    .btn-default:hover,
    .open > .dropdown-toggle.btn-default {
        background: #fff !important;
        border-color: #ccc !important;
    }

    .cust-dashboard .multi-opt .dropdown-menu > .active > a,
    .dropdown-menu > .active > a:focus,
    .dropdown-menu > .active > a:hover {
        color: #000 !important;
        background: #ffff;
    }

    .cust-dashboard .multi-opt .btn-group.open .dropdown-toggle {
        box-shadow: none !important;
    }

    .cust-dashboard .multi-opt .btn-group {
        width: 100% !important;
    }

    .cust-dashboard .multi-opt button span {
        width: 100%;
        text-align: left;
        display: inline-block;
        max-width: 100%;
        line-height: 15px;
        white-space: normal;
    }

    .cust-dashboard .caret {
        display: none;
    }

    .cust-dashboard .panel-heading {
        border-radius: 6px !important;
        padding: 0px;
    }

.panel-default > .panel-heading {
    background: #4e8bd5 !important;
    border-color: #4e8bd5 !important;
}

.cust-dashboard .panel-body {
    border-top: 0px !important;
}

.cust-dashboard h5 a {
    width: 100%;
    display: block;
    padding: 10px;
    font-family: "ProximaNovaCond-Semibold", sans-serif !important;
    color: #ffff !important;
    font-size: 18px;
    border-radius: 8px;
    background: var(--sea);
    text-decoration: none;
}

    .cust-dashboard h5 a:hover {
        text-decoration: none;
    }

.cust-dashboard button:hover {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cust-dashboard .btn-link:focus,
.cust-dashboard .btn-link:hover {
    text-decoration: none;
}

.cust-dashboard h5 a::after,
.cust-dashboard-childblock h5 a::after {
    content: '\002B';
    color: #ffff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    height: 24px;
    line-height: 23px;
    font-size: 40px;
}

.cust-dashboard-childblock h5 a::after {
    color: #fff !important;
}

.cust-dashboard h5 a:not(.collapsed)::after,
.cust-dashboard-childblock h5 a:not(.collapsed)::after {
    content: "\2212";
    height: 24px;
    line-height: 23px;
}

.cust-dashboard-childblock {
    width: 100%;
    text-align: left;
    border: 1px solid #deebfd;
}

.cust-dashboard .panel-default {
    border-color: #deebfd !important;
}

.cust-dashboard-childblock .panel-heading {
    background: var(--sea) !important;
    border-radius: 7px !important;
    padding: 0
}

.panel-group .panel {
    border-radius: 7px !important;
}

.cust-dashboard-childblock h5 a {
    padding: 12px 10px;
    font-family: "ProximaNovaCond-Semibold", sans-serif !important;
    color: #fff !important;
    font-size: 18px;
    border-radius: 7px !important;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    display: block;
    background: var(--sea) !important;
    text-decoration: none;
}

    .cust-dashboard-childblock h5 a:hover {
        text-decoration: none;
    }

.inner-dcard {
    background: transparent !important;
    box-shadow: none !important;
}

.cust-dashboard-childblock .card-header:first-child {
    border-radius: 3px;
}

.cust-dashboard-childblock .dataTables_scrollHeadInner,
.cust-dashboard-childblock .dataTables_scrollHeadInner table {
    box-sizing: content-box;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

.cust-dashboard-childblock .tableFixHead .dataTables_scrollHeadInner table thead th,
.cust-dashboard-childblock .tableFixHead .dataTables_scrollBody table tbody td {
    width: 25% !important;
    flex: 0 0 25% !important;
}

.dataTables_empty {
    text-align: center;
}

@media screen and (max-width:1199px) {
    .small-card .charts-card {
        height: 295px !important;
        width: 100% !important;
    }

    .small-card .charts-card1 {
        height: 295px !important;
        width: 100% !important;
    }

    .small-card .micro-charts-card {
        height: auto !important;
    }
}

@media screen and (max-width:1400px) {
    .container {
        max-width: 96% !important;
        width: 96% !important;
        margin: auto;
    }
}

@media screen and (max-width:576px) {
    .poultry-card img {
        height: auto;
    }
}

@media screen and (max-width:767px) {
    .outer-warpper {
        padding-bottom: 20px;
    }
}

.button-dropdown a {
    color: #fff;
}

.row1 .card-body {
    background: #fff;
    padding: 10px;
    height: auto !important;
}

.inner-container {
    background-color: #fff;
    padding: 9px 15px 1px 15px;
    margin-bottom: 20px;
}

.highcharts-title {
    color: #000 !important;
    font-size: 14px !important;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #99999930 !important;
}

#divTopBottomCompany th, #divTopBottomCompany td {
    text-align: center;
    font-size: 15px
}

.card-title {
    margin-bottom: 10px !important;
}

.nav-menu li {
    width: 25%;
}

.nav-wraper {
    display: flex;
    justify-content: space-between;
}

    .nav-wraper > a {
        width: 100%;
    }

.btn-group {
    width: 90%
}

.nav-wraper > a .btn.btn-info {
    width: 100%;
}

.dropdown-menu li {
    width: 100% !important;
}

.microdrop {
    padding: 3px 17px;
}

.not-active {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: black;
}

.open > .dropdown-menu {
    display: block;
    width: 100% !important;
}

#btnHatchery .dropdown-menu > li > a {
    padding: 0;
}

#btnHatchery .dropdown-menu > li {
    display: block;
    padding: 3px 17px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: normal !important;
}

#btnConvergence .dropdown-menu > li {
    display: block;
    padding: 1px 17px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: normal !important;
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 18px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: normal !important;
}

#divTopBottomCompany table tr td {
    padding: 0;
}

    #divTopBottomCompany table tr td div {
        padding: 5px;
        height: 46px;
        line-height: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #divTopBottomCompany table tr td div:nth-child(even) {
            background: #ffffff;
        }

.ms-choice {
    border: 1px solid transparent !important;
}
button.ms-choice .placeholder {
    padding-top: 5px !important;
}

.ms-choice > div.open, .ms-choice > div, .ms-choice > span {
    top: 7px !important;
}

.ms-drop {
    left: 0 !important;
}

    .ms-drop input[type="checkbox"] {
        margin-right: 6px !important;
    }

    .ms-drop.bottom ul li label {
        display: flex !important;
        align-items: center !important;
    }

button:focus {
    outline: none;
}
div#accordion-1, div#accordion-2 {
    padding: 0 15px;
}