* {
    /* margin: 0;
    padding: 0; */
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

.body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: sans-serif;
    font-size: 1rem;
}

.wrap {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1400px;
}

.hide {
    display: nonee;
}

a {
    color: #48a;
}

main {
    flex: 1 1 auto;
    padding: 40px 0;
}

header,
footer {
    z-index: 2;
    position: relative;
    flex: 0 0 auto;
    background: linear-gradient(90deg,#4376B3 0%,#477DBD 35%,#234260 100%);
    color: #fff;
}

header .header-main {
    z-index: 2;
    position: relative;
}

header .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    text-align: center;
}

header .menu a {
    padding: 4px;
    display: inline-block;
    line-height: 16px;
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    letter-spacing: -.3px;
}

header .menu a:hover {
    color: #ffd72f;
}

header .cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 20px;
}

header .burger {
    display: flex;
    align-items: center;
}

header .burger .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 42px;
    height: 42px;
    border: 1px #fff solid;
    border-radius: 100%;
    background: transparent;
    transition: all .2s linear;
    cursor: pointer;
}

header .burger .btn::before,
header .burger .btn::after,
header .burger .btn > span {
    content: '';
    position: relative;
    display: block;
    margin: 2px 0;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    transition: all .1s linear;
}

header .burger .btn:hover,
header .burger .btn.active {
    border-color: #ffd72f;
    background: #ffd72f;
}

header .burger .btn:hover::before,
header .burger .btn:hover::after,
header .burger .btn:hover > span,
header .burger .btn.active::before,
header .burger .btn.active::after,
header .burger .btn.active > span {
    background: #4376B3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: none;
}

header .burger .text {
    margin-left: 12px;
    text-transform: uppercase;
    color: #fff;
}

header .brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

header .brand .type {
    max-width: 200px;
    padding-right: 20px;
    border-right: 1px #fff solid;
    text-align: right;
}

header .brand .type > * {
    margin: 2px 0;
    padding: 4px;
    display: inline-block;
    border-radius: 3px;
    background: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 10px;
    color: #222;
}

header .brand .icon {
    position: relative;
    padding: 0 20px;
    height: 50px;
}
header .brand .icon img {
    height: 100%;
}

header .brand .name {
    max-width: 200px;
    line-height: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
    color: #fff;
}

header .user a {
    width: 150px;
    display: inline-block;
    padding: 8px 12px;
    /* border: 1px #fff solid; */
    border-radius: 6px;
    background: #305882;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    transition: all .2s linear;
}

header .dropdown-wrap {
    z-index: 1;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: -178px;
    padding: 1rem 20px;
    background: #1c4860;
    transition: all .2s linear;
    transform: scaleY(0);
}

header .dropdown-wrap.active {
    margin-top: 0;
    transform: scaleY(100%);
}

header .dropdown-left {
    position: relative;
}

header .dropdown-left:after {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 0;
    border-right: 1px #468 solid;
}

header .dropdown-head {
    margin-bottom: 1rem;
    font-weight: bold;
    color: #ccc;
}

header .dropdown-menu {
    margin-bottom: 24px;
}

header .dropdown-menu a {
    display: inline-block;
    padding: .5rem 0
}

header .dropdown-menu a:hover {
    color: #ffd72f;
}

header .dropdown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: .25rem;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    text-decoration: none;
    color: #fff;
}

header .dropdown-icon:hover {
    box-shadow: 0 0 0 1px #ffd72f;
}

header .dropdown-right a {
    color: #ffd72f;
}

footer {
    font-size: 13px;
}

footer .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

footer .contacts {
    line-height: 20px;
}

footer .email {
    text-decoration: none;
    color: #ffd72f;
}

footer .email:hover {
    text-decoration: underline;
}

footer .social {
    display: flex;
    align-items: center;
}

footer .social .buttons {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

footer .social .buttons a {
    margin-left: 8px;
}

footer .bottom {
    padding: 20px 0;
    border-top: 1px #fff solid;
}

footer .copy {
    text-align: center;
}

footer .copy a {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
}

footer .copy a:hover {
    text-decoration: underline;
}


h1 {
    margin: 0 0 32px -17px;
    padding-left: 10px;
    font-weight: 600;
    font-size: 32px;
}

h2 {
    margin: 0 0 32px -17px;
    padding-left: 10px;
    font-weight: 700;
    font-size: 28px;
}

h3 {
    margin: 0 0 24px -17px;
    padding-left: 10px;
    border-left: 5px #ffd72f solid;
    font-weight: 700;
    font-size: 24px;
}

h2 + .subheader { margin: -32px 0 32px; }
h3 + .subheader { margin: -24px 0 24px; }

.card {
    margin-bottom: 40px;
    padding: 40px;
}

.card h1 {
    border-left: 5px #5078a2 solid;
}

.card h2 {
    border-left: 5px #305882 solid;
}

.rounded-1 { border-radius: 4px; }
.rounded-2 { border-radius: 8px; }
.rounded-3 { border-radius: 12px; }
.rounded-4 { border-radius: 16px; }
.rounded-5 { border-radius: 20px; }

.shadow-1 { box-shadow: 1px 1px 2px rgba(0,0,0,.35); }



.progress {
    background: #f4f4f4;
}

.progress .value {
    padding-right: 4px;
    background: #ccc;
    line-height: 20px;
    text-align: right;
    font-size: 12px;
    color: #fff;
}

.progress .value-1 { background: #ff6c6c; }
.progress .value-2 { background: #ff986c; }
.progress .value-3 { background: #fdc22a; }
.progress .value-4 { background: #41c07c; }


.quarters-summary-reports .widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.quarters-summary-reports .period {
    width: 110px;
    font-weight: bold;
}

.quarters-summary-reports .progress {
    flex: 1 0 auto;
}

.quarters-summary-reports .count {
    width: 90px;
    text-align: right;
}



.message {
    margin-bottom: 12px;
}

.message-error {
    color: #c00;
}


/**
 * Блок Політичних Партій
 */

.parties-list .code,
.parties-list .active,
.parties-list .action {
    text-align: center;
}

.parties-list .regional .name {
    padding-left: 40px;
}

.parties-list .not-found {
    text-align: center;
    font-style: italic;
    color: #666;
}

.parties-list .action a {
    text-decoration: none;
    opacity: .5;
    transition: all .2s linear;
}
.parties-list .action a:hover {
    opacity: 1;
}


.text-center {
    text-align: center;
}




.box-report {
    display: flex;
}

.box-report .box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
    padding: 4px 12px;
    width: 70px;
    border-radius: 3px;
    text-align: center;
}

.bg-white { background: #fff }
.bg-gray { background: #f8f8f8 }
.bg-dark-gray { background: #dbdbdb }
.bg-light-green { background: #d9f4dc }
.bg-light-red { background: #febba6 }

.chip-light-gray { border: 1px #eaeaea solid; background-color: #fafafa; }
.chip-light-green { border: 1px #c9e4cc solid; background-color: #d9f4dc; }
.chip-light-red { border: 1px #efc8c4 solid; background-color: #ffdfd4; }

input[type="checkbox"].custom {
    display: none;
}

input[type="checkbox"].custom + .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

input[type="checkbox"].custom + .check:after {
    content: '☐';
    display: inline;
    color: #888;
}

input[type="checkbox"].custom:checked + .check:after {
    content: '☑';
    display: inline;
    color: #000;
}

#datatable label.block {
    font-size: .9rem;
    color: #555;
}

.asw-widget .asw-menu-btn {        
    width: 38px !important;
    height: 38px !important;
    right: 0px !important;
    left: -54px;
    top: -36px !important;
    position: relative;
    display: block;
    padding: unset;
    border-radius: 50%;
}

.asw-widget {
    position: absolute;
}

.btn.btn-dark.btn-primary {
    border: 1px #fff solid;;
}
