/* reset css start */
*,*::before,*::after{padding:0px;margin:0px;border:none;box-sizing:border-box;transition:all 0.3s ease;}
a,a:link,a:visited,a:hover{text-decoration:none;}
h1,h2,h3,h4,h5,h6,p{font-size:inherit;font-weight:inherit;}
ul,ul li{list-style:none;}
img,svg{vertical-align:top;max-width:100%;height:auto;}
input,textarea,button,select{font-family:inherit;font-size:inherit;color:inherit;background-color:transparent;}
input::-ms-clear{display:none;}
input:focus,input:active,button:focus,button:active{outline:none;}
html,body{position:relative;width:100%;min-height:100%;overflow-x:hidden;cursor:default;}
/* reset css end */

body {
    display: flex;
    flex-wrap: wrap;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 20px;
    color: #1c1c1c;
}

.content-wrap {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    margin: 110px auto 50px;
    width: 100%;
    max-width: 1600px;
    padding: 0 15px;
}

.footer-wrap {
    width: 100%;
    padding: 15px 0;
    background: #229ED9;
    display: flex;
    flex-wrap: wrap;
}

.footer-wrap .content-wrap {
    margin-top: 0;
    margin-bottom: 0;
    justify-content: space-between;
}

.footer-wrap .content-wrap .copyring {
    color: #ffffff;
}

.footer-wrap .content-wrap a:hover{
    opacity: 0.7;
}

.full-screen {
    min-height: calc(100vh - 210px);
}

h1, h2, h3 {
    width: 100%;
    margin-bottom: 25px;
    font-weight: 700;
}

h1 {
    font-size: 36px;
    line-height:42px;
}

h1.no-login {
    margin-top: -40px;
}

h2 {
    font-size: 25px;
    line-height:30px;
}

h3 {
    font-size: 20px;
    line-height:25px;
}

h3.index {
    margin-top: 15px;
    margin-bottom: 10px;
}

p {
    display: block;
    width: 100%;
    max-width: 860px;
    margin-bottom: 18px;
    line-height: 22px;
}

p a {
    color: #1eb3f9;
}

p a:hover {
    color: #229ED9;
}

img.img-index {
    margin-right: 30px;
    float: left;
}

.index-txt,
h1.index,
p.index,
h3.index {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.order1{order: 1;}
.order2{order: 2;}
.order3{order: 3;}

.btn {
    background: #229ED9;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    color: #ffffff;
    text-align: center;
}

.btn:hover {
    background: #1eb3f9;
}

.title-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.title-wrap h1 {
    width: initial;
    margin-right: 25px;
}

.title-wrap .btn {
    margin-bottom: 10px;
    padding: 8px 20px 10px 20px;
}

.fix-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background:#229ED9;
    box-shadow: 3px 4px 18px 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

.fix-menu.active {
    top: -40px;
}

.fix-menu .content-wrap {
    margin-top: 0;
    margin-bottom: 0;
}

.fix-menu .nav-link {
    padding: 10px 15px;
    display: block;
    color: #ffffff;
}

.fix-menu .nav-link.active,
.fix-menu .nav-link:hover {
    background: #1eb3f9;
}

.fix-menu .nav-link:first-child {
    margin-left: -15px;
}

.fix-menu .nav-link:last-child {
    margin-right: -15px;
}

.fix-menu .nav-link.right {
    margin-left: auto;
}

.fix-menu .menu-block {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.fix-menu .menu-open {
    display: none;
    margin-right: auto;
}

.fix-menu .menu-close {
    display: none;
    cursor: pointer;
}

.fix-menu .name {
    color: #ffffff;
    padding: 10px 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.fix-menu .name:before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    background: #1eb3f9;
    width: 100vw;
    height: 100%;
    z-index: -1;
}

.form-wrap {
    display: flex;
    flex-wrap: wrap;
}

.form-wrap select,
.form-wrap textarea,
.form-wrap input {
    border: solid 3px #229ED9;
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
    color: #757575;
}

.form-wrap select:hover,
.form-wrap select:focus,
.form-wrap textarea:hover,
.form-wrap textarea:focus,
.form-wrap input:focus,
.form-wrap input:hover {
    border-color: #1eb3f9;
}

.form-wrap label {
    width: 100%;
    margin-bottom: 5px;
    display: inline-block;
    color: #8e8e8e;
}

.form-wrap.form-full {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    width: 100%;
}

.form-wrap.form-full input {
    margin-right: 15px;
    width: calc(20% - 12px);
}

.form-wrap.form-full .btn {
    width: calc(20% - 12px);
}

.form-wrap.form-full .btn.big,
.form-wrap.form-full input.big {
    width: calc(33.33% - 10px);
}

.form-wrap.form-login {
    width: 100%;
    max-width: 410px;
    margin: auto;
}

.form-wrap.form-login .btn {
    width: 100%;
    margin-top: 10px;
}

.form-wrap.form-login p,
.form-wrap.form-login .mb-3 {
    width: 100%;
    margin-bottom: 0;
}

.blue-block {
    background: #1eb3f9;
    padding: 15px;
    border: solid 2px #229ED9;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.blue-block.disable {
    background: #ff6a6a;
    border-color: #ff0000;
}

.blue-block.opacity {
    background: #cccccc;
    border-color: #b4b4b4;
}

.statistic-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 40px;
}

.block-stat {
    width: 430px;
    margin-right: auto;
    font-size: 20px;
}

.block-stat .stat-value {
    font-weight: 700;
    margin-left: auto;
    margin-bottom: 20px;
    max-width: calc(100% - 255px);
    text-align: right;
}

.block-stat .stat-value:last-child {
    margin-bottom: 0;
}

.block-stat .block-bord {
    margin-top: 25px;
}

.block-bord {
    border: solid 2px #cbcbcb;
    border-radius: 8px;
    padding: 15px;
}

.block-bord h3 {
    margin-bottom: 10px;
}

.block-bord .bord-line {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: dotted 1px #000000;
    padding: 8px 0;
    font-size: 17px;
}

.block-bord .bord-line.title {
    font-weight: bold;
}

.block-bord .bord-line:last-child {
    border: 0;
    padding-bottom: 0;
}

.zapros-table {
    width: calc(100% - 480px);
}

.zapros-table.fool {
    width: 100%;
}

.zapros-table .zapros-line {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    padding: 10px 15px;
}

.zapros-table .zapros-line:first-child {
    padding-top: 0;
}

.zapros-table .zapros-line:nth-child(even) {
    background: #f1f1f1;
}

.zapros-table .zapros-line .name {
    width: calc(100% - 180px);
    margin-right: auto;
}

.zapros-table .zapros-line .value {
    width: 150px;
    text-align: right;
}

.zapros-table .zapros-line .date {
    width: 200px;
}

.zapros-table .zapros-line .id {
    width: 200px;
}

.zapros-table .zapros-line .last {
    width: calc(100% - 400px);
    text-align: right;
}

canvas#paymentChart {
    width: 100%;
    margin-top: -30px;
}

.block-user {
    width: calc(20% - 12px);
    margin: 0 15px 15px 0;
    position: relative;
    padding-bottom: 45px;
}

.block-user:nth-child(5n+1) {
    margin-right: 0;
}

.block-user .login-name {
    width: calc(100% - 115px);
    margin-bottom: 10px;
    padding-right: 10px;
    overflow: hidden;
    position: relative;
}

.block-user .login-name:hover {
    background: #1eb3f9;
    z-index: 1;
    overflow: initial;
    width: auto;
    position: absolute;
}

.block-user .login-name:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 10px;
    background: linear-gradient(90deg, rgba(30,179,249,0) 0%, rgba(30,179,249,1) 100%);
}

.block-user .login-id {
    width: 110px;
    margin-left: auto;
    margin-bottom: 10px;
    text-align: right;
}

.block-user .name {
    width: 100%;
    margin-bottom: 10px;
}

.block-user .name.bold {
    color: #ffffff;
    font-weight: bold;
}

.block-user .date {
    width: 100%;
    margin-bottom: 10px;
}

.block-user .link {
    padding: 5px 15px;
    background: #ffffff;
    line-height: 18px;
    border-radius: 14px;
    color: #1c1c1c;
    position: absolute;
    left: 15px;
    bottom: 15px;
    font-size: 14px;
}

.block-user .link.rel {
    left: initial;
    right: 15px;
    padding: 0;
}

.block-user .link svg {
    width: 28px;
}

.block-user .link:hover {
    opacity: 0.7;
}

.block-message {
    width: calc(33.33% - 10px);
    margin: 0 15px 15px 0;
}

.block-message:nth-child(3n+1) {
    margin-right: 0;
}

.block-message .message-block {
    width: 50%;
    margin-bottom: 10px;
}

.block-message .message-block a {
    background: #ffffff;
    color: #1c1c1c;
    line-height: 18px;
    border-radius: 14px;
    padding: 5px 15px;
    display: inline-block;
    font-size: 14px;
}

.block-message .message-block a:hover {
    opacity: 0.7;
}

.block-message .message-block.last {
    margin-bottom: 0;
}

.block-message .message-block.right {
    text-align: right;
}

.block-message .message-full {
    width: 100%;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    order: 9;
}

.pagination a {
    border: solid 2px #229ED9;
    line-height: 16px;
    border-radius: 15px;
    color: #1c1c1c;
    margin: 0 5px;
}

.pagination a:hover {
    opacity: 0.7;
}

.pagination .but {
    padding: 5px 15px;
}

.pagination .link {
    padding: 5px;
    min-width: 30px;
    text-align: center;
}

.pagination .link.active{
    background: #1eb3f9;
    border-radius: 15px;
    color: #ffffff;
    line-height: 20px;
}

.pagination .dot {
    line-height: 30px;
}

@media screen and (max-width: 1100px) {
    .fix-menu.active {
        top: 0;
    }
    .fix-menu .menu-open {
        display: block;
        cursor: pointer;
    }
    .fix-menu .menu-close.active {
        display: block;
        position: absolute;
        top: 0;
        right: -40px;
        width: 40px;
        height: 40px;
        background: #1eb3f9;
    }
    .menu-close:before,
    .menu-close:after {
        content: "";
        position: absolute;
        width: 20px;
        height: 4px;
        background: #ffffff;
        top: 18px;
        left: 10px;
    }
    .menu-close:before {
        transform: rotate(45deg);
    }
    .menu-close:after {
        transform: rotate(-45deg);
    }
    .fix-menu .menu-block {
        position: fixed;
        top: 0;
        left: -250px;
        background: #1eb3f9;
        height: 100vh;
        width: 250px;
        align-content: flex-start;
    }
    .fix-menu .menu-block.active {
        left: 0;
        box-shadow: 3px 4px 18px 0px rgba(0, 0, 0, 0.2);
    }
    .fix-menu .nav-link.mob {
        width: 100%;
    }
    .fix-menu .nav-link.mob:last-child,
    .fix-menu .nav-link.mob:first-child {
        margin: 0;
    }
    .content-wrap {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        margin: 60px auto 50px;
    }
}

@media screen and (max-width: 1400px) {
    .form-wrap.form-full input,
    .form-wrap.form-full .btn,
    .block-user {
        width: calc(25% - 11.4px);
    }
    .form-wrap.form-full .btn.big,
    .form-wrap.form-full input.big {
        width: calc(50% - 17.5px);
    }
    .block-user:nth-child(5n+1) {
        margin-right: 15px;
    }
    .block-user:nth-child(4n+1) {
        margin-right: 0;
    }
    .block-message {
        width: calc(50% - 17.5px);
    }
    .block-message:nth-child(3n+1) {
        margin-right: 15px;
    }
    block-message:nth-child(2n+1) {
        margin-right: 0;
    }
}

@media screen and (max-width: 1100px) {
    h1, h2, h3 {
        margin-bottom: 15px;
    }
    h1 {
        font-size: 30px;
        line-height:35px;
    }
    h2 {
        font-size: 20px;
        line-height:25px;
    }
    h3 {
        font-size: 18px;
        line-height:22px;
    }
    h1.no-login {
        margin-top: 0;
    }
    .full-screen {
        min-height: calc(100vh - 160px);
    }
    .block-stat {
        width: 260px;
        font-size: 18px;
    }
    .block-stat .stat-name {
        width: 100%;
        margin-bottom: 5px;
    }
    .block-stat .stat-value {
        max-width: 100%;
        width: 100%;
        text-align: left;
    }
    .zapros-table {
        width: calc(100% - 275px);
    }
    .zapros-table .zapros-line .name {
        width: calc(100% - 100px);
    }
    .zapros-table .zapros-line .value {
        width: 90px
    }
    canvas#paymentChart {
        margin-top: -20px;
    }
    .form-wrap.form-full input,
    .form-wrap.form-full .btn,
    .block-user {
        width: calc(33.3% - 10px);
    }
    .block-user:nth-child(4n+1) {
        margin-right: 15px;
    }
    .block-user:nth-child(3n+1) {
        margin-right: 0;
    }
    .pagination .but {
        display: none;
    }
}

@media screen and (max-width: 960px) {
    .block-message {
        width: 100%;
        margin-right: 0;
    }
    .block-message:nth-child(3n+1) {
        margin-right: 0;
    }
    .form-wrap.form-full .btn.big {
        width: 100%;
        margin-bottom: 20px;
    }
    .form-wrap.form-full input.big {
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (max-width: 800px) {
    .form-wrap.form-full input,
    .form-wrap.form-full .btn,
    .block-user {
        width: calc(50% - 7.5px);
    }
    .block-user:nth-child(3n+1) {
        margin-right: 15px;
    }
    .block-user:nth-child(2n+1) {
        margin-right: 0;
    }
}

@media screen and (max-width: 600px) {
    h1, h2, h3 {
        margin-bottom: 10px;
    }
    h1 {
        font-size: 25px;
        line-height:30px;
    }
    h2 {
        font-size: 18px;
        line-height:22px;
    }
    h3 {
        font-size: 16px;
        line-height:20px;
    }
    .title-wrap {
        margin-bottom: 10px;
    }
    .full-screen {
        min-height: calc(100vh - 150px);
    }
    .content-wrap {
        margin: 50px auto 20px;
    }
    .statistic-wrap {
        margin-bottom: 25px;
    }
    canvas#paymentChart {
        margin-top: -5px;
    }
    .block-stat {
        width: 100%;
        margin-bottom: 20px;
    }
    .block-stat .block-bord {
        margin-top: 15px;
    }
    .zapros-table {
        width: 100%;
    }
    .zapros-table .zapros-line:nth-child(even) {
        background: none;
    }
    .zapros-table .zapros-line {
        padding: 5px 0px;
        border-bottom: solid 1px #cccccc;
    }
    .zapros-table .zapros-line:last-child {
        border-bottom: none;
    }
    .zapros-table .zapros-line .date {
        width: 60%;
    }
    .zapros-table .zapros-line .id {
        width: 40%;
        text-align: right;
    }
    .zapros-table .zapros-line .last {
        width: 100%;
        text-align: left;
    }
    .zapros-table .zapros-line .last.mobile-no {
        display: none;
    }
    .footer-wrap .content-wrap .copyring {
        width: 100%;
        margin-bottom: 10px;
    }
    .footer-wrap .content-wrap .copyring:last-child {
        margin-bottom: 0;
    }
    .form-wrap.form-full input,
    .form-wrap.form-full .btn,
    .block-user {
        width: 100%;
        margin-right: 0;
    }
    .form-wrap.form-full .btn {
        margin-bottom: 20px;
    }
    .block-user:nth-child(5n+1),
    .block-user:nth-child(3n+1) {
        margin-right: 0;
    }
    .pagination {
        margin-top: 5px;
    }
    .pagination .link {
        margin: 0;
        font-size: 13px;
        padding: 4px;
        line-height: 19px;
    }
    .form-wrap select, .form-wrap textarea, .form-wrap input {
        margin-bottom: 12px;
    }
    .index-txt {
        display: flex;
        flex-wrap: wrap;
    }
    img.img-index {
        margin: 0 auto 18px;
        float: initial;
    }
}

@media screen and (max-width: 480px) {
    .block-message .message-block {
        width: 100%;
    }
    .block-message .message-block.right {
        text-align: left;
    }
    .block-message .message-block.last {
        margin-bottom: 12px;
    }
    .block-message .message-block.last:last-child {
        margin-bottom: 0;
    }
}