﻿html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older br
    owsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    box-sizing: border-box;
    height: 100%;
    font-size: 16px;
    border: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
    height: 100%;
    min-height: 100%;
    position: relative;
    font-family: 'Proba Pro', Arial, Helvetica, sans-serif;
    /*font-family: Roboto-Regular, Arial, Helvetica, sans-serif;*/
    line-height: 1;
    background: #e3e9ec;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    border: none;
}
.wrapper {
    width: 96%;
    margin: 1rem auto;
}

h2 {
    font-size: 2.7rem;
    line-height: 2rem;
    font-weight: 700;
}
.block-heading {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1.2px;
    line-height: 1.28em;
    padding: 1.25rem 0;
    font-variant: small-caps;
}

.display-none {
    display: none !important;
}
.center{
    justify-content:center;
    align-items:center;
}
.error-box {
    font-size: 1.3rem;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 1rem !important;
    margin-bottom: .5rem;
    line-height: 1.2;
}

    .error-box > p {
        margin-bottom: .5rem;
        margin-top: .5rem;
    }

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word;
}

code, kbd, pre, samp {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    font-size: 1em;
}

.text-danger {
    color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #a71d2a !important;
}
#page {
    padding: 0;
    margin: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    border: none;
    background-color: #e3e9ec;
    position:relative;
    /*box-shadow: 0px 0px 15px 15px rgba(0,0,0,0.05);*/
}
header {
    background-color: #2a83c5;
    background: radial-gradient(circle, #2856AA 0%, #123E9E 100%); /*radial-gradient(circle, #21A4CD 0%, #2C81C5 100%);*/
    transition: all 0.3s ease;
    max-width: 76rem;
    margin: 0 auto;
    flex: 0 0 auto;
    width: 100%;
}
.header_body {
    color: #fff;
    width: 100%;
    padding: 1.5rem 2.7rem 0.9rem 2.7rem;
    position: relative;
}
    .header_body a {
        color: #fff;
        text-decoration:none;
    }
.logo-main {
    text-align: center;
}
    .logo-main > div {
        margin: 0 0 .3rem 0;
    }
    .logo-main .rada-logo {
        display: inline-block;
        background: url("../img/rada-logo.png") center center no-repeat;
        width: 110px;
        height: 76px;
        margin: 0 auto 0 auto;
    }
    .logo-main h1 {
        font-size: 2rem;
        line-height: 1.2em;
        font-weight: bold;
        letter-spacing: 3px;
        padding-bottom: 0.2rem;
        font-variant: small-caps;
    }
    .logo-main a:hover {
        text-decoration: none;
        color: white;
        border: none;
    }
    .logo-main .p {
        font-size: 1em;
        opacity: 0.6;
    }
    .logo-main > .logo-col {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-end;
    }
.logo-col > div {
    flex: 1 1 33.333%;
    display: flex;
    justify-content: flex-end;
}

.gov-ua__logo, .gov-ua__logo_en {
    display: block;
    height: 52px;
    background: url("../img/govua-light.svg") 0 0 no-repeat;
    overflow: hidden;
    /*cursor: pointer;*/
}
.gov-ua__logo_en {
    background: url("../img/govua-light_en.svg") 0 0 no-repeat;
}
    /* ***************** dropdown-box ****************** */
.dropdown-box_lang {
    /*position: absolute;
    top: -9.4rem;
    right: 40px;*/
    padding: .7rem;
    text-align: right;
    background: rgba(22,34,55,0.1);
    cursor: pointer;
    width: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'ProbaPro-SemiBold';
}

/*.add-menu-item > .dropdown-box_lang {
    display: none;
}*/
.dropdown-box {
    position: relative;
}
.dropdown {
    position: absolute;
    top: 100%;
    /*background: #349CE8;*/
    /*padding: .9375rem;
    right: 0.1rem;*/
    display: none;
    background-color: white;
    color: #004bc1;
    z-index: 1000;
    border-radius: 0 0 .25rem .25rem;
    text-align: left;
    width: 100%;
    left: 0;
    /*border: 1px solid #22324d;*/
}
.dropdown-box.show-dropdown .dropdown {
    display: block;
}

    .dropdown a {
        color: #004bc1;
    }
    .manage-dropdown {
        padding-left: 0.5rem;
    }

.dropdown-box_lang .manage-dropdown:after {
    content: "›";
    display: inline-block;
    transform: rotate(90deg);
}
.dropdown-box_lang.show-dropdown .manage-dropdown:after {
    content: "›";
    display: inline-block;
    transform: rotate(-90deg);
}

.dropdown-li {
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
    .dropdown-li:hover {
        /*background-color: rgba(22,34,55,0.1);*/
        background: rgba(0,99,255,0.1);
    }

    .dropdown-li:first-child {
        margin-top: 0;
    }
.dropdown-link {
    font-size: 1rem;
    line-height: 1.3;
    white-space: nowrap;
}

.dropdown-link_active {
    cursor: default;
    font-weight: bold;
    line-height: 1.3;
}
.dropdown-box-user > .dropdown {
    left: auto;
    right: 0;
    width: auto;
    background: #22324D;
}
.color-box-eye {
    padding: .7rem;
    text-align: right;
    background: rgba(22,34,55,0.1);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'ProbaPro-SemiBold';
    flex: 1 1 auto;
}
.dropdown-box-eye {
    padding: .7rem;
    text-align: right;
    background: rgba(22,34,55,0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'ProbaPro-SemiBold';
    flex:1 1 auto;
}

    .dropdown-box-eye .manage-dropdown:after {
        content: "›";
        display: inline-block;
        transform: rotate(90deg);
    }

    .dropdown-box-eye.show-dropdown .manage-dropdown:after {
        content: "›";
        display: inline-block;
        transform: rotate(-90deg);
    }
/*    .dropdown-box-eye.show-dropdown .dropdown-eye {
        display: flex;
        flex-direction: column;
        width: unset;
    }*/
.show-dropdown.dropdown-box-eye .dropdown {
    display: flex;
    flex-direction: column;
    width: unset;
    min-width:5rem;
}
.dropdown-box-eye .dropdown-row {
    display: flex;
    padding: .1rem;
    flex: 1 1 auto;
    justify-content: space-around;
}
        .dropdown-box-eye .dropdown-row .dropdown-square {
            padding: .2rem;
            border: solid .15rem #577ed1;
            /*#577ed1;*/
            margin: .1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius:.2rem;
            min-width:1.8rem;
            min-height:1.8rem;
            justify-content:center;
            align-items:center;
        }
        .dropdown-box-eye .dropdown-row .dropdown-square:hover {
            border-color: grey ;
            
        }
    .dropdown-box-eye .dropdown-row .selected {
        padding: .2rem;
        border-color: grey;
        margin: .1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-width: 0.2rem;
    }
        .dropdown-box-eye .dropdown-row .small {
            font-size:1rem;
        }
        .dropdown-box-eye .dropdown-row .medium {
            font-size: 1.2rem;
        }
        .dropdown-box-eye .dropdown-row .large {
            font-size: 1.5rem;
        }
    .dropdown-box-eye .dropdown-row .normal {
        font-size: 1.2rem;
        border-color: #577ed1;
    }
    .dropdown-box-eye .dropdown-row .contrast {
        font-size: 1.2rem;
        border-color: black;
        color: black;
    }

/* ***************** /dropdown-box ****************** */
/* ***************** navbar ********************/
#navbar {
    /*background-color: #2a83c5;*/
    /*background: #0e317e;*/ /*radial-gradient(circle, #21A4CD 0%, #2C81C5 100%);*/
    background-color: #123E9E;
    background: radial-gradient(circle, #2856AA 0%, #123E9E 100%);
    transition: all 0.3s ease;
    color: white;
    display: flex;
    max-width: 76rem;
    margin: 0 auto;
    flex: 0 0 auto;
    width: 100%;
    position: sticky;
    top: 0;
    font-size: 1.13rem;
    z-index: 1;
}
#long-menu {
    padding: 0 1.5rem 0 1.5rem;
    flex: 1 1 auto;
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.2);
}
#navbar a {
        text-decoration: none;
    }
#mainmenu {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    align-items: flex-start;
}

#small-menu {
    display: none;
    align-content: flex-start;
    align-items: center;
    justify-content: space-between;
    /*background: rgba(0,0,0,0.2);*/
    background: #0e317e; /*#1e6f9f;*/
}
#small-menu-left {
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    display: flex;
}
#small-menu-right {
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: row;
    display: flex;
}
.small-menu-item {
    display: flex;
    height: 4rem;
    align-items: center;
    /* padding: 1.5rem 1rem 1.5rem 1rem; */
    padding: 0 1rem;
    white-space: nowrap;
    font-weight: bold;
    cursor: pointer;
    position: relative;

}

/*#open-small-menu:before {
    content: ' ';
    background: transparent url(../img/small-ico-menu.svg) 0 0 no-repeat;
    line-height: 1rem;
    min-width: 1.4rem;
    min-height: 1.4rem;
}*/
#open-small-menu {
    /*display:block;*/
    /*padding:0;*/
    display: flex;
    align-items: center;
}
    #open-small-menu > a {
        width: 2.5rem;
        height: 2.5rem;
        display: block;
        border-radius: .1875rem;
        padding: .5rem;
        box-sizing: border-box;
        position: relative;
    }
    #open-small-menu > a > span {
        width: 1.5rem;
        height: 0.15rem;
        background: #fff;
        display: block;
        position: absolute;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    #open-small-menu > a > span:nth-child(1) {
        top: .5rem;
    }

        #open-small-menu > a > span:nth-child(2) {
            top: 1.125rem;
        }

        #open-small-menu > a > span:nth-child(3) {
            top: 1.75rem;
        }

#open-small-menu > a.open > span:nth-child(1) {
    top: 1.125rem;
    transform: rotate(45deg);
}

#open-small-menu > a.open > span:nth-child(2) {
    width: 0;
}

#open-small-menu > a.open > span:nth-child(3) {
    top: 1.125rem;
    transform: rotate(-45deg);
}
.gov-ua_logo {
    display: inline-block;
    min-height: 40px;
    line-height: 18px;
    color: #fff !important;
    font-size: 17px;
    font-family: 'ProbaPro-SemiBold', 'Proba Pro', sans-serif;
    font-weight: 400;
    position: relative;
    padding: 2px 17px 2px 15px;
    cursor: pointer;
    text-decoration: none !important;
    text-align: left !important;
    letter-spacing: 1.8px;
    font-variant: small-caps;
}

    .gov-ua_logo small {
        font-family: 'Proba Pro', sans-serif;
        font-size: 13px;
        font-weight: 100;
        letter-spacing: .5px;
        font-variant: normal;
    }

    .gov-ua_logo:before {
        display: block;
        content: "";
        width: 4px;
        height: 40px;
        background: #2B8FFF; /*#0057b8*/
        background-image: linear-gradient(transparent 50%, #ffd700 50%);
        position: absolute;
        top: 0;
        left: 0;
    }

    .gov-ua_logo.gerb {
        padding-left: 62px;
    }

        .gov-ua_logo.gerb:before {
            left: 45px;
        }

        .gov-ua_logo.gerb:after {
            display: block;
            content: "";
            width: 30px;
            height: 50px;
            background: url("../img/gov-ua-gerb.svg") 0 0 no-repeat;
            background-size:contain;
            position: absolute;
            left: 0;
            top: -5px;
        }

    .gov-ua_logo.light {
        min-height: 50px;
        line-height: 24px;
        font-size: 20px;
    }

        .gov-ua_logo.light small {
            font-size: 13px;
            font-weight: 100;
        }

        .gov-ua_logo.light:before {
            width: 2px;
            height: 50px;
        }

        .gov-ua_logo.light.gerb:after {
            top: 0px;
        }

        .gov-ua_logo.light.gerb {
            padding-left: 67px;
        }

            .gov-ua_logo.light.gerb:before {
                top: 0px;
                left: 50px;
            }

    .gov-ua_logo a:hover {
        text-decoration: none;
        border: none;
    }

#addmenu {
    display: flex;
    /*flex-flow: row wrap;*/
    align-content: flex-start;
    align-items: flex-start;
}
    #addmenu .dropdown-btn{
        color:white;
    }
    .main-menu-item {
        display: flex;
        height: 4.2rem;
        align-items: center;
        /* padding: 1.5rem 1rem 1.5rem 1rem; */
        padding: 0 1rem;
        white-space: nowrap;
        font-weight: bold;
        cursor: pointer;
        position: relative;
    }
    .main-menu-item:before {
        content: '';
        color: #ffe358;
        display: block;
        position: absolute;
        transition: all 0.3s ease;
        left: 0.95rem;
        right: 0.95rem;
        top: auto;
        bottom: 1rem;
        width: auto;
        height: 2px;
    }
        .main-menu-item:hover::before {
            left: 0;
            right: 0;
            bottom: -1px;
            height: 1.3px;
            background: #FFE358;
        }
.main-menu-item-trident {
    display: flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    padding: 0 1rem;
    position: relative;
}

    .main-menu-item-trident > div {
        height: 3.6rem;
        width: 3.6rem;
        background: transparent url(../img/img-coat-of-arms.svg) 0 0 no-repeat;
    }
#mainmenu a {
    text-decoration: none;
    color: white;
}
#mainmenu a:hover {
    color: #ffe358;
}
.main-menu-item:hover {
    color: #ffe358;
}
#mainmenu .main-menu-item.selected {
    color: #ffe358;
}
    #mainmenu .main-menu-item.selected:before {
        height: 1.3px;
        content: '';
        background: #ffe358;
    }
.main-menu-item:before {
    content: '';
    color: #ffe358;
    display: block;
    position: absolute;
    transition: all .3s ease;
    left: .95rem;
    right: .95rem;
    top: auto;
    bottom: 1rem;
    width: auto;
    height: 2px;
}
.main-menu-item.active:before {
    background: #ffe358;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 4px !important;
}
.main-menu-item.active {
    color: #ffe358 !important;
}
.add-menu-item {
    display: flex;
    height: 4rem;
    align-items: center;
    /* padding: 1.5rem 1rem 1.5rem 1rem; */
    padding: 0 1rem;
    white-space: nowrap;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}
.menu-user-select:before {
    background: transparent url(../img/user-circle-solid.svg) 0 0 no-repeat;
    content: ' ';
    line-height: 1rem;
    min-width: 1.3rem;
    min-height: 1.3rem;
    display: inline-block;
}
header .dropdown-box-user {
    padding: .7rem;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.dropdown-box-user a {
    color: white;
}
.dropdown-box-user .dropdown-link_active {
    color: white;
}
/* ***************** /navbar ********************/
main {
    background-color: white;
    max-width: 76rem;
    margin: 0 auto;
    width: 100%;
    flex: 1 1 auto;
}
/***********************************************/
a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #010101;
    line-height: 1.3;
    border-bottom: 1px solid transparent;
    text-decoration: none;
    background-color: transparent;
}
    a:hover {
        color: #216f9f;
        text-decoration: none;
        border-bottom: 1px solid #216f9f;
    }
.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}
#addmenu .dropdown-box-eye, #addmenu .color-box-eye {
    display: none;
}

#addmenu .dropdown-box_lang {
    display: none;
}
.inactive {
    color: #b9b9b9!important;
    pointer-events:none;
}

.alert-danger {
    color: #a94442;
}

.alert-sucssess {
    color: green;
}

    .alert-sucssess > .title {
        display: none;
    }

.contact_item {
    width: 80%;
}

.btn-fill {
    text-decoration: none;
    transition: none !important;
    letter-spacing: 1px;
    line-height: 1.33rem;
    border-radius: 16px;
    text-align: center;
    display: inline-block;
    padding: 0.3rem 0.625rem;
    margin-bottom: 0.625rem;
    background: #e5ecf8;
    color: #004BC1;
    border: 2px solid #e5ecf8;
}

    .btn-fill:hover {
        text-decoration: none;
        transition: none !important;
        border: 2px solid #cddaf3;
    }

.contact_form {
    /*margin-top: 3rem;*/
    margin-left: auto;
    margin-right: auto;
    padding: 3.3125rem 3.75rem;
    background: #FFFFFF;
    /*box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);*/
    box-sizing: border-box;
}

.title_form {
    font-size: 1.5rem;
    line-height: 207.23%;
    color: #464646;
    margin-bottom: 1rem;
}

.contact_item form label {
    margin-bottom: 0.5rem;
}
.contact_item form input {
    /*    border: 0;
    border-bottom: 0.0625rem solid rgba(70, 70, 70, 0.4);
    outline: none;
    font-size: 1.25rem;
    margin-bottom: 1rem;
*/
    font-size: 1rem;
    /*max-width: 20rem;*/
    border-radius: 0.4rem;
    border: 0.1rem solid #b3b3b3;
    padding: 0.4rem;
    margin-bottom: 0.8rem;
    margin-top: 0.2rem;
}
    .contact_item form input[type="text"], input[type="tel"], input[type="email"] {
        width: 100%;
    }
.contact_item form select {
    width: 100%;
    /*        border: 0;
        border-bottom: 0.0625rem solid rgba(70, 70, 70, 0.4);
        padding: 0.125rem 0 1.1875rem;
        outline: none;
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        background-color: white;
*/
    font-size: 1rem;
    /*max-width: 20rem;*/
    border-radius: 0.4rem;
    border: 0.1rem solid #b3b3b3;
    padding: 0.4rem;
    margin-bottom: 0.8rem;
    margin-top: 0.2rem;
}

.contact_item form textarea {
    width: 100%;
    resize: none;
    height: 13.75rem;
    /* border: 0.0625rem solid rgba(70, 70, 70, 0.4);
    font-size: 1.25rem;
    line-height: 1.4375rem;
    padding: 1.25rem;
    box-sizing: border-box;
    outline: none;*/
    font-size: 1rem;
    /*max-width: 20rem;*/
    border-radius: 0.4rem;
    border: 0.1rem solid #b3b3b3;
    padding: 0.4rem;
    margin-bottom: 0.8rem;
    margin-top: 0.2rem;
}

.contact_item form button {
    background: #349CE8;
    background: #2452a8;
    box-shadow: 0px 0px 0.625rem rgba(0, 0, 0, 0.25);
    border-radius: 0.1875rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1rem;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 1.5625rem 0;
    width: 15rem;
    border: 0;
    margin-top: 1.25rem;
    cursor: pointer;
}

    .contact_item form button:hover {
        box-shadow: 0 0.3125rem 1.875rem 0 rgba(29, 37, 53, 0.5);
        transform: scale(1) translateY(-0.3125rem);
    }

.contact_item form label {
    /*display: flex;*/
    font-size: 1.2rem;
    /*color: #858992;*/
}

    .contact_item form label input {
        width: auto;
        margin-right: 1rem;
    }

a, button {
    transition: all 0.5s ease !important;
    text-decoration: none;
}

button {
    -webkit-appearance: none;
}

::-webkit-input-placeholder {
    color: rgba(70, 70, 70, 0.4);
    font-size: 1.2rem;
}

::-moz-placeholder {
    color: rgba(70, 70, 70, 0.4);
    font-size: 1.2rem;
}
/*Firefox 19+*/
:-moz-placeholder {
    color: rgba(70, 70, 70, 0.4);
    font-size: 1.2rem;
}
/*Firefox 18-*/
:-ms-input-placeholder {
    color: rgba(70, 70, 70, 0.4);
    font-size: 1.2rem;
}

p {
    color: #000;
    /*font-size: .75rem;*/
    font-weight: 400;
    line-height: normal;
}

.wrapper {
    width: 96%;
    margin: 0 auto;
}

.wrap-header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #f3f5f8;
    padding: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.back_button {
    padding-top: 0.9375rem;
}

    .back_button a {
        background: #FFFFFF;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
        border-radius: 3px;
        font-size: 1.1rem;
        line-height: 1.2rem;
        color: #349CE8;
        padding: 1rem 1.8rem;
    }

        .back_button a b {
            text-decoration: underline;
        }

        .back_button a:hover {
            box-shadow: 0 5px 30px 0 rgba(29, 37, 53, 0.5);
            -moz-transform: scale(1) translateY(-5px);
            -webkit-transform: scale(1) translateY(-5px);
            -o-transform: scale(1) translateY(-5px);
            -ms-transform: scale(1) translateY(-5px);
            transform: scale(1) translateY(-5px);
        }

.dashboard-items-box {
    justify-content: space-between;
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
}

.mflex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.mflex_top {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.mflex_center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

.pr_item {
    width: 21.125rem;
    height: 13.75rem;
    margin: auto;
    margin-bottom: 1rem;
    text-align: center;
    background: white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
    border-radius: 3px;
    border: .12rem solid #2452a8;
    padding: 0 0.875rem;
    box-sizing: border-box;
    font-size: 1.375rem;
    line-height: 2rem;
    color: #2452a8;
    position: relative;
}
    .pr_item:hover {
        box-shadow: 0 5px 25px rgba(108, 117, 125, .3);
    }

    .pr_item a {
        color: #2452a8;
        font-size: 1.5rem;
        line-height: 2rem;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: none;
    }
        .pr_item a:hover {
            border-bottom: none;
        }
.hcolumn {
    display: flex;
    flex-direction: column;
}

.hrow {
    display: flex;
    flex-direction: row;
}

.grid-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

/*.login-form > form[data-type="twoFactor"] > .capt-block,*/
.login-form > form[data-type="twoFactor"] > .form-block,
.login-form > form[data-type="twoFactor"] > .change-password-block {
    display: none;
}

.login-form > form[data-type="changePassword"] > .twoFactor-block,
/*.login-form > form[data-type="changePassword"] > .capt-block,*/
.login-form > form[data-type="changePassword"] > .form-block {
    display: none;
}

.login-form > form[data-type="form"] > .twoFactor-block,
/*.login-form > form[data-type="form"] > .capt-block,*/
.login-form > form[data-type="form"] > .change-password-block {
    display: none;
}

.login-form > form[data-captcha="false"] > .capt-block {
    display: none;
}

/* logo styles */
/*-------------*/
:root {
    --logo-height: 90px;
    --header-bg-blue-1: #184dbd;
    --header-bg-blue-2: #133f9f;
    --flag-blue: #2b8fff;
    --flag-yellow: #ffe358;
    --font-semibold: 'ProbaPro-SemiBold', 'Proba Pro', sans-serif;
}

#header.logo_rada {
    background: linear-gradient(90deg, var(--header-bg-blue-1), var(--header-bg-blue-1) 50%, var(--header-bg-blue-2));
}

.dark #header.logo_rada {
    background: linear-gradient(180deg, var(--header-bg-blue-1), #0e317e 57.5%) !important;
}

.logo_rada .navbar,
.logo_rada .navbar.navbar-dark,
#mainbar.navbar,
#mainbar.navbar.navbar-dark {
    background: #0e317e;
    transition: all 0.3s ease;
    color: white;
    display: flex;
    margin: 0 auto;
    flex: 0 0 auto;
    width: 100%;
    position: sticky;
    top: 0;
    font-size: 1.13rem;
    z-index: 1;
}

.logo_rada .header_body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    width: 100%;
    height: 218px;
    padding: 3.5rem;
}

    .logo_rada .header_body .rada-online {
        background-color: var(--flag-yellow);
        display: inline-block;
        position: relative;
        width: max-content;
        height: max-content;
        margin-left: 20px;
        padding: 0 6px 0 1px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 4px;
        font-family: var(--font-semibold);
        font-size: 1rem;
        clip-path: inset(0px 0 0px -10px);
    }

        .logo_rada .header_body .rada-online:before {
            background-color: var(--flag-yellow);
            position: absolute;
            content: '';
            top: 0;
            left: -6px;
            width: 100%;
            height: calc(100% + 0px);
            border-radius: 3px;
            transform: skew(20deg);
            z-index: 1;
        }

        .logo_rada .header_body .rada-online > a {
            color: black !important;
            z-index: 2;
        }

    .logo_rada .header_body .services {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
        top: 0;
        right: 0;
        width: max-content;
        min-width: max-content;
        min-height: var(--logo-height);
    }

        .logo_rada .header_body .services .services-line {
            display: flex;
            align-items: center;
            gap: 6px;
            /*vertical-align: center;*/
        }

        .logo_rada .header_body .services .profile {
            margin-top: 0;
        }

        .logo_rada .header_body .services .lang_block {
            display: block !important;
            margin: 0 !important;
        }

        .logo_rada .header_body .services i {
            display: flex;
            width: 1rem;
            /*padding: 0 .5rem;*/
        }

            .logo_rada .header_body .services i.i-gov-ua {
                background: linear-gradient(90deg, var(--flag-yellow) 50%, var(--flag-blue) 50%);
                /*	background-clip: text;
	-webkit-background-clip: text;*/
                color: transparent;
                font-size: 24px;
            }

.logo_rada .logo-main {
    max-width: 1000px;
    width: 100%;
    height: max-content;
    margin: 0 0;
}

    .logo_rada .logo-main .logo-container {
        display: flex;
        flex-flow: row;
        height: var(--logo-height);
        max-width: 100%;
        gap: 1rem;
    }

        .logo_rada .logo-main .logo-container,
        .logo_rada .logo-main .logo-container * {
            text-align: left;
        }

            .logo_rada .logo-main .logo-container .logo-gerb-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                flex-flow: column;
                gap: 4px;
                height: 100%;
                min-width: max-content;
                aspect-ratio: 3 / 5;
            }

            .logo_rada .logo-main .logo-container .logo-gerb {
                background-image: url("/images/logos/gerb_reduced.svg");
                background-size: cover;
                flex: 1 1 auto;
                aspect-ratio: 3 / 5;
            }

            .logo_rada .logo-main .logo-container .logo-gerb-title {
                flex: 0 0 24px;
                font-family: var(--font-semibold);
                font-size: 1.5rem;
            }

            .logo_rada .logo-main .logo-container .logo-flag-line {
                background: linear-gradient(0deg, var(--flag-yellow) 50%, var(--flag-blue) 50%);
                height: 100%;
                width: 4px;
            }

            .logo_rada .logo-main .logo-container .logo-text {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                flex: 1 1 auto;
                position: relative;
                height: 100%;
                width: 100%;
                /*calc(100% - calc(var(--logo-height) / 5 * 3) - 2rem - 4px);*/
            }

                .logo_rada .logo-main .logo-container .logo-text * {
                    display: flex;
                }

.logo-main .logo-container .logo-text-top {
    gap: calc(1rem - 4px);
    margin-top: -5px;
    font-family: var(--font-semibold);
}

.logo_rada .logo-main .logo-container .logo-text-top-main {
    align-items: center;
    margin-left: -2px;
    font-size: 4rem;
    letter-spacing: 3px;
}

.logo_rada .logo-main .logo-container .logo-text-top-secondary {
    align-items: flex-end;
    height: max-content;
    margin-bottom: -2px;
    line-height: 1.75rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

.logo_rada .logo-main .logo-container .logo-text-bottom {
    align-items: flex-end;
    height: 100%;
}

.logo_rada .logo-main .logo-container .logo-text-sub {
    display: block;
    overflow: hidden;
    position: absolute;
    top: calc(100% + 4px);
    color: var(--flag-yellow);
    font-weight: 400;
    font-size: .95rem;
    font-family: var(--font-semibold);
    font-variant: small-caps;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}



.logo_rada [data-logo-category="committee"] {
    display: none !important;
}

.logo_rada .logo-main.logo-committee .logo-text {
    padding: 7px 0 0px 0;
}

.logo_rada .logo-main.logo-committee [data-logo-category="committee"] {
    display: flex !important;
}

.logo_rada .logo-main.logo-committee [data-logo-category="main"] {
    display: none !important;
}

.logo_rada .logo-main.logo-committee [data-logo-category="committee"].logo-text-top-secondary {
    white-space: nowrap;
}

.logo_rada .logo-main.logo-committee [data-logo-category="committee"].logo-text-bottom {
    font-size: 1.25rem;
}

.dropdown-li.dropdownid form button {
    color: white;
    line-height: 1.3;
    border-bottom: 1px solid transparent;
    text-decoration: none;
    background-color: transparent;
    border: none;
    font-family: 'ProbaPro-SemiBold', 'Proba Pro', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
}

    .dropdown-li.dropdownid form button:hover {
        color: #216f9f;
        text-decoration: none;
        border-bottom: 1px solid #216f9f;
    }

/*-- MEDIA --*/

@media screen and (max-width: 991px) {
    .logo_rada .header_body .services {
        display: none;
    }
}

.logo_mini .header_body {
    height: auto;
    padding: 1.5rem 1.8rem 0.9rem 1.8rem;
}

.logo_rada.logo_mini .gov-ua_logo.gerb {
    margin-left: 9rem;
    font-variant: small-caps;
}

    .logo_rada.logo_mini .gov-ua_logo.gerb big {
        font-size: 3rem;
        position: absolute;
        margin-left: -9rem;
        margin-top: 0.6rem;
    }

    .logo_rada.logo_mini .gov-ua_logo.gerb:before {
        left: -8.5rem;
        top: 0.4rem;
        width: 6px;
        height: 2.2rem;
    }

    .logo_rada.logo_mini .gov-ua_logo.gerb:after {
        left: calc(-10.5rem + 52px);
        top: .125rem;
    }

.logo_rada.logo_mini .gov-ua_logo.light small {
    font-size: 14px;
    display: block;
    overflow: hidden;
    color: var(--flag-yellow);
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 3px;
    line-height: 16px;
}

#main-menu-item-trident {
    display: none;
    height: 4rem;
    width: 4rem;
    align-items: center;
    padding: 0 1rem;
    position: relative;
}

    #main-menu-item-trident > div {
        height: 3.6rem;
        width: 3.6rem;
        background: transparent url(../img/img-coat-of-arms.svg) 0 0 no-repeat;
    }

.max-width-full {
    max-width: 100% !important;
}
/*-------------*/
/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
footer {
    flex: 0 1 auto;
    line-height: 2rem;
    /*white-space: nowrap;*/
    background-color: white;
    max-width: 76rem;
    margin: 0 auto;
    width: 100%;
    background: #f7f7f7;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    color: #333333;
}
    footer > div {
        flex: 1 1 33.333%;
        padding: 1rem;
    }
    footer > div > div {
        padding-bottom: 0.75rem;
        font-size: 0.9em;
        line-height: 1.5em;
    }
.show-flex {
    display:flex!important;
}


@media screen and (max-width: 991px) {
    .dropdown-box-eye, .color-box-eye {
        display: flex !important;
    }
    .dropdown-box_lang {
        display: flex !important;
    }
        .main-menu-item-trident {
            display: none;
        }
    .header-user-dorpdown .dropdown-box-user {
        display: none !important;
    }
    #header{
        display:none;
    }
    #navbar {
        flex-direction: column;
        position: absolute;
        top: 4rem;
    }

    .gov-ua__logo, .gov-ua__logo_en {
        background: none;
    }

    #small-menu {
        display: flex;
        position: sticky;
        top: 0;
        z-index: 2;
    }

    #long-menu {
        display: none;
        flex-direction: column;
    }

    #mainmenu {
        flex-direction: column;
    }

/*    .dropdown-box-user > .dropdown {
        left: 0;
        right: auto;
    }*/

    .vru__logo {
        background: url(../img/gov-ua-logo_mob@2x.png) 0 0 no-repeat;
        background-size: 136px 40px;
        height: 40px;
        width: 136px;
        align-self: center;
    }

    .gov-ua__logo, .gov-ua__logo_en {
        display: none;
    }

    .last-flex-block {
        flex: 1 100 auto;
        background-color: white;
    }

    #main-menu-item-trident {
        display: none !important;
    }

    .add-menu-item > .dropdown-box_lang {
        display: flex;
    }

    .logo-col .dropdown-box_lang {
        display: none;
    }
}

.notdisplay {
    display: none !important;
}

.max-width-full {
    max-width: 100% !important;
}

.beercap::before {
    content: '\f0fc';
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1s infinite ease-in-out;
}

.loader {
    color: #216e9f;
    font-size: 10px;
    margin: 80px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
    position: fixed;
    left: 50vw;
    z-index: 99;
}

    .loader:before,
    .loader:after {
        content: '';
        position: absolute;
        top: 0;
    }

    .loader:before {
        left: -3.5em;
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .loader:after {
        left: 3.5em;
    }
@-webkit-keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@media screen and (max-width: 415px) {
    .small-menu-item {
        padding: 0 .5rem;
    }

    .add-menu-item {
        padding: 0 .5rem;
    }
}
@media screen and (max-width: 580px) {
    .pr_item {
        width: 100%;
    }
/*
    .dashboard-items-box {
        grid-template-columns: auto;
    }*/
}
@media screen and (max-width: 575px) {
    .logo-main h1 {
        font-size: 1.2rem;
        line-height: 1.45rem;
    }

    .gov-ua__logo, .gov-ua__logo_en {
        display: none !important;
    }

    .logo-col > div:last-child {
        display: none;
    }
}
@media only screen and (max-width: 700px) {

    .contact_item {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 380px) {

    .contact_item {
        padding: 3.3125rem 1rem
    }
}

@media only screen and (min-width: 1920px) {
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 1120px) {
}

@media only screen and (max-width: 980px) {


    .registration-form {
        width: 100%;
    }


    body.open .menu {
        display: block;
    }

    .main {
        margin-top: 4.25rem;
    }
}


@media screen and (min-width: 980px) {
}
#addmenu .dropdown-btn .logged-in:before {
    background: transparent url(../img/user-circle-solid-yellow.svg) 0 0 no-repeat;
}