body {
    position: relative;
    min-height: 100vh;
}

html, body, p, a, h1, h2, h3 {
    font-family: 'Open Sans', sans-serif !important;
}


h1, h2, h3 {
    font-weight: 300;
    color: #333;
    line-height: 1.2em !important;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 26px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 600 !important;
}


/**general-layout-classes - obecne tridy rozložení**/

.content-width-container {
    max-width: 1240px;
    padding-right: 25px;
    padding-left: 25px;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
}

.flex-basic-v-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.flex-space-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.flex-col-3 {
    width: 33.33%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.flex-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.no-display {
    display: none;
}


/**header+subehader**/

.header {
    width: 100%;
}

.logo-img {
    max-width: 185px;
    padding-top: 12px;
    padding-bottom: 10px;
}

.blue-gradient-strap {
    width: 100%;
    background: rgba(0,69,138,1);
    background: -moz-linear-gradient(left, rgba(0,69,138,1) 0%, rgba(61,141,221,1) 51%, rgba(153,206,255,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,69,138,1)), color-stop(51%, rgba(61,141,221,1)), color-stop(100%, rgba(153,206,255,1)));
    background: -webkit-linear-gradient(left, rgba(0,69,138,1) 0%, rgba(61,141,221,1) 51%, rgba(153,206,255,1) 100%);
    background: -o-linear-gradient(left, rgba(0,69,138,1) 0%, rgba(61,141,221,1) 51%, rgba(153,206,255,1) 100%);
    background: -ms-linear-gradient(left, rgba(0,69,138,1) 0%, rgba(61,141,221,1) 51%, rgba(153,206,255,1) 100%);
    background: linear-gradient(to right, rgba(0,69,138,1) 0%, rgba(61,141,221,1) 51%, rgba(153,206,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00458a', endColorstr='#99ceff', GradientType=1 );
}

.welcome-text-container {
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

    .welcome-text-container > p {
        margin: 0px;
    }

.user-messages-wrap {
    position: relative;
    margin-right: 18px;
    cursor: pointer;
}

    .user-messages-wrap img {
        max-width: 29px;
    }

    .user-messages-wrap p {
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        margin: 0;
    }

    .user-messages-wrap .message-dropdown {
        left: 0px;
        min-width: 250px !important;
    }

        .user-messages-wrap .message-dropdown p {
            margin: 6px 0px;
            color: #fff;
        }

.no-messages-circle {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #0079c2;
    position: absolute;
    top: 14px;
    left: 20px;
    border: 2px solid #fff;
    box-sizing: unset !important;
    text-align: center;
}

div.vertical-menu-wrapper .no-messages-circle {
    width: 14px;
    height: 14px;
    background-color: #ccc;
    top: -5px;
    left: 102px;
    border: 1px solid #ccc;
    font-size: 11px;
    color: white;
}

div.vertical-menu-wrapper a.current .no-messages-circle {
    background-color: #0078c1;
    border: 1px solid #0078c1;
}

.user-profile-wrap {
    padding-left: 15px;
    cursor: pointer;
    border-left: 1px solid #0079c2;
}

    .user-profile-wrap img {
        max-width: 22px;
        display: inline;
        float: left;
    }

    .user-profile-wrap p {
        display: inline;
        margin-left: 10px;
        font-size: 14px;
    }

.user-items-container {
    position: relative;
}


.hide {
    display: none;
}

/***Dropdown***/

.profile-dropdown,
.user-messages-wrap .message-dropdown,
.projects-dropdown,
.vehicles-dropdown {
    position: absolute;
    list-style: none;
    text-align: left !important;
    background: #00458a;
    border-radius: 4px;
    padding: 5px 0px;
    width: 100%;
    -webkit-box-shadow: 3px 4px 19px 1px hsla(0, 0%, 0%, 0.61);
    box-shadow: 3px 4px 19px 1px hsla(0, 0%, 0%, 0.61);
    z-index: 1;
    display: none;
}

.projects-dropdown, .vehicles-dropdown {
    left: 4px;
    top: 40px;
}

    .projects-dropdown a:hover, .vehicles-dropdown a:hover {
        text-decoration: underline;
    }

    .projects-dropdown p, .vehicles-dropdown p {
        font-size: 13px;
    }

p.message-date {
    font-size: 12px;
    color: #bdbdbd;
}

.message-more-link {
    font-size: 12px;
    color: #bdbdbd;
}

.profile-dropdown > li,
.user-messages-wrap .message-dropdown > li,
.projects-dropdown > li,
.vehicles-dropdown > li {
    padding: 5px 20px;
}

    .profile-dropdown > li:hover,
    .user-messages-wrap .message-dropdown > li:hover,
    .projects-dropdown > li:hover,
    .vehicles-dropdown > li:hover {
        background: #2b2b2b;
    }

    .profile-dropdown > li > a,
    .projects-dropdown > li > a,
    .vehicles-dropdown > li > a {
        text-decoration: none;
        color: #fff;
        display: block;
        height: 100%;
        width: 100%;
    }

/***HP-Main-section, hlavni sekce***/
[class^="main-section"] {
    padding-top: 50px;
    padding-bottom: 41px;
    width: 100%;
    background-image: url('../images/bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: calc(100vh - 155px);
}

    [class^="main-section"] > .flex-basic-v-center {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

.rounded-frame {
    margin-bottom: 30px;
    margin-top: 5px;
    border-radius: 7px;
    -webkit-box-shadow: 0 2px 8px 0 hsla(210,8%,54%,.2);
    box-shadow: 0 2px 8px 0 hsla(210,8%,54%,.2);
    background-color: #fff;
}

.main-section-security .rounded-frame > img {
    height: 115px;
    width: 115px;
    margin: auto 15px;
}

.main-section-security .flex-col-3 .rounded-frame {
    margin-right: 25px;
    height: 156px;
}

.frame-container {
    border-bottom: 2px solid #dbdbdb;
    background-position: 0 0;
    position: relative;
    width: 200px;
    height: 125px;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.frame-gradient {
    z-index: 10;
    transition: 1s opacity;
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    background-image: -ms-linear-gradient(bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    background-image: -webkit-gradient(bottom, 0 0, 100% 0, from(rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    background-image: -o-linear-gradient(bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    background-image: linear-gradient(bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    background-repeat: repeat-y;
}

.frame-scroll {
    position: absolute;
    left: 0;
    bottom: 0;
    max-height: 125px;
    transition: max-height 1s
}


.frame-container:hover .frame-gradient {
    opacity: 0
}

.frame-container:hover .frame-scroll {
    max-height: 440px
}

.frame-scroll h3, .frame-scroll p {
    margin-bottom: 7px;
    margin-top: 7px;
}


.main-section-security .flex-col-3:first-child {
    margin-right: 0px;
}


.user-index > img {
    margin-right: 5px;
    margin-top: 7px;
    width: 40px;
}

.info-container .frame-inside-text {
    border-bottom: none;
}

    .info-container .frame-inside-text > h3 > a {
        text-decoration: none;
        color: #30719c;
    }

        .info-container .frame-inside-text > h3 > a:hover {
            text-decoration: underline;
        }

/**spodek stránky a footer***/

.grey-gradient-strap {
    background: rgba(143,143,143,1);
    background: -moz-linear-gradient(left, rgba(143,143,143,1) 0%, rgba(204,204,204,1) 51%, rgba(242,242,242,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(143,143,143,1)), color-stop(51%, rgba(204,204,204,1)), color-stop(100%, rgba(242,242,242,1)));
    background: -webkit-linear-gradient(left, rgba(143,143,143,1) 0%, rgba(204,204,204,1) 51%, rgba(242,242,242,1) 100%);
    background: -o-linear-gradient(left, rgba(143,143,143,1) 0%, rgba(204,204,204,1) 51%, rgba(242,242,242,1) 100%);
    background: -ms-linear-gradient(left, rgba(143,143,143,1) 0%, rgba(204,204,204,1) 51%, rgba(242,242,242,1) 100%);
    background: linear-gradient(to right, rgba(143,143,143,1) 0%, rgba(204,204,204,1) 51%, rgba(242,242,242,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8f8f8f', endColorstr='#f2f2f2', GradientType=1 );
}

.customer-line-container {
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

    .customer-line-container > p {
        margin: 0;
    }

    .customer-line-container a {
        text-decoration: none;
        color: #fff;
    }

        .customer-line-container a:hover {
            text-decoration: underline;
        }

.credentials {
    background: #000;
}

    .credentials p {
        margin: 0;
        text-align: center;
        font-size: 12px;
        color: #a0a0a0;
        padding: 4px 0px 5px 0px;
    }

    .credentials a {
        color: #a0a0a0;
        text-decoration: none;
    }

/***Profil***/
.main-section-profile .rounded-frame > img {
    height: 115px;
    width: 115px;
    margin: auto 15px;
}

.main-section-profile .flex-col-3 .rounded-frame {
    margin-right: 25px;
    min-height: 156px;
}

.main-section-profile .flex-col-3:first-child {
    margin-right: 0px;
}

.main-section-profile .frame-inside-text {
    border-bottom: none;
}

    .main-section-profile .frame-inside-text a {
        text-decoration: none;
        color: #bcbcbc;
    }

    .main-section-profile .frame-inside-text h3 {
        color: #bcbcbc;
    }

    .main-section-profile .frame-inside-text a:hover {
        text-decoration: underline;
    }

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.in-frame-title-wrapper {
    padding: 10px 20px;
    width: 100%;
    border-bottom: 2px solid #bbb;
}

.in-frame-list-wrapper {
    padding: 15px 20px;
}

.in-frame-list-items-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

    .in-frame-list-items-wrapper > * {
        margin-right: 15px;
    }

.plus-minus-icons {
    height: 13px;
}

.main-section-profile .flex-col-3 {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
}

.flex-display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.icon-center {
    margin-left: 4px;
}

.small-ico-2 {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.small-ico-3 {
    width: 40px;
}

.small-ico-wrapper {
    width: 40px;
}

.no-style-button {
    background-color: #fff;
    border: none;
    cursor: pointer;
}

/***Fakturace***/

.header-client-zone-categories p, .header-back-btn p {
    margin: 10px 0px 10px 10px;
}

.header-client-zone-categories, .header-back-btn {
    color: #fff;
    display: block;
    padding: 0px 10px;
    width: 232px;
    border-radius: 10px;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .header-back-btn:hover {
        text-decoration: underline;
    }

    .header-client-zone-categories img, .header-back-btn img {
        width: 28px;
        margin: auto 0px;
    }

.projects-wrap, .vehicles-wrap {
    position: relative;
    cursor: pointer;
}

    .projects-wrap a, .vehicles-wrap a {
        color: #fff;
        text-decoration: none;
    }

        .projects-wrap a:hover, .vehicles-wrap a:hover {
            text-decoration: underline;
        }

.inactivelink {
    pointer-events: none;
    cursor: default;
}

.houses-header-btn {
    background: #00458a;
}

.vehicles-header-btn {
    background: #0078c1;
}

.personal-service-header-btn {
    background: #0a88d5;
}

.header-back-btn {
    color: #000;
    margin-left: auto;
    background: #ddd;
    padding: 0px;
}

/***fakurace hlavní sekce***/

.main-section-invoicing > .flex-basic-v-center {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.breadcrumbs-links-wrapper, .breadcrumbs-links-wrapper > a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

    .breadcrumbs-links-wrapper > a:hover {
        text-decoration: underline;
    }

.vertical-menu-wrapper {
    width: 25%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 25px 25px 0px;
}

    .vertical-menu-wrapper ul {
        padding-left: 10px;
        list-style: none;
        margin: 0px;
    }

        .vertical-menu-wrapper ul a {
            text-decoration: none;
            color: #737373;
        }

        .vertical-menu-wrapper ul li {
            padding-bottom: 6px;
            padding-top: 10px;
            border-bottom: 2px solid #dbdbdb;
        }

            .vertical-menu-wrapper ul li:last-child {
                border-bottom: 0px solid #fff;
            }

.invocing-data-wrapper {
    width: 75%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px 0px 25px 25px;
}

.rounded-frame-invoicing {
    border-radius: 7px;
    padding: 10px 25px 20px 25px;
    -webkit-box-shadow: 0 2px 8px 0 hsla(210,8%,54%,.2);
    box-shadow: 0 2px 8px 0 hsla(210,8%,54%,.2);
    background-color: #fff;
    max-width: 100%;
    margin-bottom: 20px;
}

    .rounded-frame-invoicing img {
        width: 35px;
        margin-right: 20px;
    }

    .rounded-frame-invoicing h1 {
        font-weight: 500;
    }

.current {
    font-weight: 600;
    color: #0078c1 !important;
}

.col-address {
    width: 50%;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

/***invoicing table, tabulka fakturace***/

table.invoicing-table {
    width: 100%;
    background-color: #FFFFFF;
    border-collapse: collapse;
    border-width: 2px;
    font-size: 15px;
    color: #333333;
}


    table.invoicing-table td,
    table.invoicing-table th {
        border-width: 2px;
        padding: 5px;
        padding-left: 0px;
    }

    table.invoicing-table thead {
        background-color: #FFFFFF;
    }

th {
    font-weight: 400;
    text-align: left;
}

.table-title {
    color: #0078c1;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
}

.table-title-2 {
    color: #0078c1;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    float: left;
}

th.th-underlined {
    text-decoration: underline;
    text-decoration-color: #aaa;
}

.tr-bottom-border {
    border-bottom: 1px dashed #0078c1;
}


.rounded-frame-invoicing td > img {
    width: 14px;
}

.red-text {
    color: #a94442;
    font-weight: 600;
}

.gray-text {
    color: rgba(143,143,143,1);
    /*font-weight: 600;*/
}

.green-text {
    color: #03b303;
    font-weight: 600;
}

.filtr-invoicing {
    display: inline-block;
    float: right;
    margin: 15px 0px;
}

/***stránka Historie změn***/

table.simple-table {
    width: 100%;
    max-width: 100%;
    background-color: #FFFFFF;
    font-size: 15px;
    color: #333333;
    border-collapse: collapse;
}

    table.simple-table td,
    table.simple-table th {
        border-width: 1px;
        padding: 5px;
    }

    table.simple-table > thead > tr > th {
        padding-bottom: 0px;
    }

.simple-table th {
    font-weight: 600;
}

.simple-table thead {
    border-bottom: 2px solid #dbdbdb !important;
}

.info-text-bottom {
    text-align: center;
    color: #333;
    font-size: 14px;
    margin-top: 5em;
}


/***stránka Dokumentace***/

.img-smallest-ico {
    width: 18px !important;
    display: block;
    margin-left: auto;
}

/***stránka Zalozit pozadavek***/

.main-section-set-requirement .col-pc-half {
    padding: 0;
}

    .main-section-set-requirement .col-pc-half p {
        text-align: left;
    }

.main-section-set-requirement select {
    border-radius: 5px;
    min-width: 170px;
}

.main-section-set-requirement textarea {
    width: 100%;
    min-height: 300px;
}

.f-weight-600 {
    font-weight: 600;
}

/***zpristupneni Zákaznické zony***/
.txt-align-right {
    text-align: right;
}

.add-email-form {
    position: relative;
    width: fit-content;
}

    .add-email-form input[type=email] {
        color: #bbb;
        min-width: 250px;
        border-radius: 5px;
        border: 1px solid #aaa;
        padding: 5px;
    }

    .add-email-form input[type=submit] {
        position: absolute;
        background-color: #7fae77;
        font-weight: 700;
        color: #fff;
        right: 0px;
        top: 0px;
        border: 1px solid #7fae77;
        padding: 5px 10px;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        cursor: pointer;
    }
/***Buttons***/
.button-blue {
    background: #0079c2;
    border: 1px solid #0079c2;
    border-radius: 4px;
    width: 175px;
    margin: 35px auto 20px auto;
    color: #fff;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    padding: 9px 15px 9px 15px;
    display: block;
    cursor: pointer;
}

    .button-blue:hover {
        text-decoration: none;
        background: transparent;
        border: 1px solid #0079c2;
        color: #0079c2;
    }

    .button-blue a:hover {
        text-decoration: none;
    }

    .button-blue a {
        color: #fff;
    }

    .button-blue:hover a {
        color: #0079c2;
    }

    .button-blue:focus, .button-blue:focus a {
        text-decoration: none;
    }

.button-grey {
    background: #d9d9d9;
    border: 2px solid #d9d9d9;
    border-radius: 4px;
    width: 150px;
    margin: 4px 0px;
    color: #000;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    padding: 2px 0px;
    display: block;
    cursor: pointer;
}

    .button-grey:hover {
        text-decoration: none;
        background: transparent;
        border: 2px solid #d9d9d9;
        color: #000;
    }

    .button-grey a:hover {
        text-decoration: none;
    }

    .button-grey a {
        color: #fff;
    }

    .button-grey:hover a {
        color: #000;
    }

    .button-grey:focus, .button-grey:focus a {
        text-decoration: none;
    }

.button-grey-sm {
    background: #d9d9d9;
    border-radius: 4px;
    color: #000;
    display: compact;
    cursor: pointer;
}

.button-big {
    background: #0078c1;
    border: 1px solid #7fae77;
    border-radius: 4px;
    width: 275px;
    margin: 35px auto 20px auto;
    color: #fff;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    padding: 9px 15px 9px 15px;
    display: block;
    cursor: pointer;
}

    .button-big:hover {
        text-decoration: none;
        background: transparent;
        border: 1px solid #7fae77;
        color: #000;
    }

.button-green a:hover {
    text-decoration: none;
}

.button-green a {
    color: #fff;
}

.button-green:hover a {
    color: #0079c2;
}

.button-green:focus, .button-green:focus a {
    text-decoration: none;
}

/***login-page***/

.login-section .content-width-container {
    min-height: calc(100vh - 242px);
}

.login-form {
    padding: 25px;
    max-width: 550px;
    width: 100%;
    margin: 40px auto;
    background: #fff;
    border-radius: 4px;
}

    .login-form .button-blue {
        max-width: 250px;
        width: 100%;
    }

    .login-form h1 {
        text-align: center;
        font-weight: 500;
    }

    .login-form input {
        max-width: 300px;
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        margin: 10px auto;
        padding: 10px;
        font-size: 14px;
        border: 1px solid #dbdbdb;
        border-radius: 4px;
    }

.login-first-form {
    padding: 25px;
    max-width: 550px;
    width: 100%;
    margin: 40px auto;
    background: #fff;
    border-radius: 4px;
}

    .login-first-form .button-blue {
        max-width: 250px;
        width: 100%;
    }

    .login-first-form h1 {
        text-align: center;
        font-weight: 500;
    }

    .login-first-form input {
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        margin: 10px auto;
        padding: 10px;
        font-size: 14px;
        border: 1px solid #dbdbdb;
        border-radius: 4px;
    }

.forgotten-password {
    color: #0079c2;
    font-size: 14px;
    text-decoration: none;
}

.login-form p {
    text-align: center;
    margin: 0;
}

/*** stránka zakladni informace ***/
.col-full {
    width: 100%;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.col-pc-half {
    width: 50%;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 10px;
    padding-left: 10px;
}

    .col-pc-half p {
        margin-bottom: 10px;
        margin-top: 10px;
    }

.col-pc-full {
    width: 100%;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 10px;
    padding-left: 10px;
}

.main-section-basic-information .col-pc-half p {
    text-align: right;
}

.data-input-rounded-frame {
    margin-bottom: 5px !important;
    margin-top: 5px !important;
    border: 2px solid #dbdbdb;
    border-radius: 5px;
    padding-bottom: 3px;
    padding-top: 3px;
    padding-left: 5px;
    text-align: left !important;
}

/*** stránka kontaktní osoby informace ***/

.simple-btn {
    background: transparent;
    border: none;
    border-bottom: 1px dashed #bbb;
    display: block;
    margin-left: auto;
    margin-top: 10px;
}

.contact-persons .col-pc-half {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.contact-person-rounded-frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 1px solid #bbb;
    border-radius: 7px;
    padding: 10px 0px;
}


.contact-person-role {
    text-align: right;
    border-bottom: 1px dashed #bbb;
}

.notification-contact-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

    .notification-contact-wrapper > * {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .notification-contact-wrapper input[type=checkbox] {
        border: 1px solid #bbb;
        background: #fff;
        margin-right: 5px;
    }

    .notification-contact-wrapper input[type=email] {
        width: 100%;
    }

.button-big-grey {
    color: #000;
    background: #d9d9d9;
    border-color: #d9d9d9;
}

    .button-big-grey:hover {
        background: #fff;
        border-color: #d9d9d9;
    }

/*** stránka výpis události ***/

.col-pc-quarter {
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.col-pc-quarter-2 {
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.dashed-bottom-border {
    border-bottom: 1px dashed #dbdbdb;
}

.button-grey-adjusted {
    padding: 7px 0px;
}

input.button-grey {
    cursor: pointer;
}

.button-inactive {
    opacity: 0.45;
}


.centered-small-text {
    text-align: center;
    font-size: 12px;
}

.col-pc-auto {
    width: auto;
    padding: 20px 0px;
}

.event-statement-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .event-statement-wrapper > .data-input-rounded-frame {
        margin-right: 25px;
    }

.img-small-ico {
    width: 30px !important;
}

.empty-value-input {
    color: #bbb;
}


/*** stránka postupy ***/
.alert-pop-up-bckg {
    background: rgba(0, 0, 0, 0.43);
    z-index: 5;
    width: 100%;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: none;
}

.alert-pop-up-window {
    width: 95%;
    max-width: 550px;
    background: #fff;
    border-radius: 7px;
    z-index: 10;
    margin: 0 auto;
    display: block;
    margin-top: 100px;
}

.pop-up-window-header {
    padding: 10px 20px;
    border-bottom: 2px solid #dbdbdb;
    position: relative;
}

.pop-up-window-content {
    padding: 10px 20px;
}

    .pop-up-window-content > p {
        line-height: 1.65em;
    }

.pop-up-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 900px;
    font-size: 28px;
    background: #fff;
    border: none;
    cursor: pointer;
}

.text-rd-bckg {
    background-color: #ca4445;
    color: #fff;
    text-align: center;
    font-weight: 600;
    padding: 3px 10px;
    margin-right: 5px;
}

table.procedures-table {
    width: 100%;
    background-color: #FFFFFF;
    font-size: 15px;
    color: #333333;
}

    table.procedures-table td,
    table.procedures-table {
        border: 1px solid #000;
        border-collapse: collapse;
    }

        table.procedures-table td,
        table.procedures-table th {
            border-width: 1px;
            padding: 5px;
        }

.td-red-bckg {
    background-color: #ca4445;
    color: #fff;
    text-align: center;
    font-weight: 600;
}

.td-purple-bckg {
    background-color: #d27bc2;
    color: #fff;
    text-align: center;
    font-weight: 600;
}

.td-blue-bckg {
    background-color: #4382b7;
    color: #fff;
    text-align: center;
    font-weight: 600;
}

.td-orange-bckg {
    background-color: #e08455;
    color: #fff;
    text-align: center;
    font-weight: 600;
}

.td-green-bckg {
    background-color: #3cb879;
    color: #fff;
    text-align: center;
    font-weight: 600;
}

.td-bold-center {
    text-align: center;
    font-weight: 600;
}

.td-bold-instruction-type {
    width: 100px;
    text-align: center;
    margin-right: 15px;
    font-weight: 600;
}

.table-right-ico-link {
    display: block;
    float: right;
}

    .table-right-ico-link > img {
        width: 30px;
    }




/*** Responsive adjustments - responzivni upravy***/
@media screen and (max-width: 1050px) {
    .flex-col-3 {
        width: 50%;
    }

    .vertical-menu-wrapper {
        width: 100%;
        padding-right: 0px;
    }

        .vertical-menu-wrapper > .rounded-frame-invoicing {
            background: #00458a;
        }

        .vertical-menu-wrapper ul a {
            color: #fff;
        }

        .vertical-menu-wrapper ul li:hover {
            background: #0078c1;
        }

    .invocing-data-wrapper {
        width: 100%;
        padding-left: 0px;
    }

    .header-client-zone-categories, .header-back-btn {
        width: 50%;
    }

    .header-back-btn {
        margin-left: 0px;
        padding: 0px 10px;
    }
}

@media screen and (max-width: 980px) {


    .invoicing-subheader > .content-width-container {
        max-width: 100%;
        padding: 0px;
    }

    .rounded-frame-invoicing table {
        min-width: 786px;
    }

    .rounded-frame-invoicing {
        overflow-x: auto;
    }
}

@media screen and (max-width: 768px) {
    .flex-col-3 {
        width: 100%;
    }

    .main-section-security .rounded-frame > img,
    .main-section-profile .rounded-frame > img {
        margin: auto 30px;
    }

    .content-width-container {
        padding-left: 15px;
        padding-right: 15px;
    }

        .content-width-container.flex-space-between {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

    header > .content-width-container > a {
        width: 100%;
    }

    .user-items-container {
        margin: 15px auto;
    }

    .logo-img {
        display: block;
        margin: 0 auto;
    }

    .welcome-text-container {
        text-align: center;
    }

    .main-section-security h2,
    .main-section-profile h2,
    .customer-line-container > p {
        text-align: center;
    }

    .col-address,
    .col-pc-half {
        width: 100%;
    }

        .col-pc-half > p,
        .data-input-rounded-frame {
            text-align: center !important;
        }

    .data-input-rounded-frame {
        margin-bottom: 10px !important;
        margin-top: 10px !important;
    }

    .col-full > h2 {
        text-align: center;
    }

    .button-grey {
        margin: 4px auto;
    }

    .col-pc-quarter {
        width: 50%;
    }

    .col-pc-quarter-2, .col-pc-auto {
        width: 100%;
    }

    .event-statement-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .event-statement-wrapper .button-grey {
            margin: 0px;
        }

    .main-section-set-requirement select {
        margin: 0 auto;
        display: block;
    }

    .main-section-set-requirement .col-pc-half:nth-child(even) {
        padding-bottom: 18px
    }

    .main-section-set-requirement form p {
        text-align: center;
    }

    .notification-contact-wrapper {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .contact-persons .flex-space-between {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .contact-persons .button-big {
        margin-top: 0px;
        padding-left: 3px;
        padding-right: 3px;
    }

    .contact-persons .button-big-grey {
        margin-top: 35px;
    }

    .main-section-profile .flex-col-3 .rounded-frame {
        width: 100%;
        margin-right: 0px;
    }
}

@media screen and (max-width: 650px) {
    .event-statement-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .event-statement-wrapper .button-grey {
            margin-bottom: 20px;
        }

        .event-statement-wrapper > .data-input-rounded-frame {
            width: 100%;
            max-width: 285px;
            display: block;
            margin-right: auto;
            margin-left: auto;
        }
}

@media screen and (max-width: 485px) {
    .main-section-security .rounded-frame > img,
    .main-section-profile .rounded-frame > img {
        margin: auto 10px;
    }

    .main-section-security .flex-col-3 .rounded-frame,
    .main-section-profile .flex-col-3 .rounded-frame {
        margin-right: 0px;
    }

    .personalni-sluzby a {
        font-size: 18px;
    }

    .header-client-zone-categories, .header-back-btn {
        width: 100%;
    }

    .col-pc-quarter {
        width: 100%;
    }

    .button-green {
        width: 100%;
        max-width: 285px;
    }

    .notification-contact-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .notification-contact-wrapper > .img-small-ico {
            margin: 35px auto 10px auto;
        }

    .profile-big-icons {
        width: 65px !important;
        height: 65px !important;
    }
}

.w400 {
    width: 400px !important;
}

.w500 {
    width: 500px !important;
}

.w600 {
    width: 600px !important;
}

.w700 {
    width: 700px !important;
}

.w800 {
    width: 800px !important;
}

.form-horizontal .control-label {
    padding-top: 16px !important;
}

.bg-gray {
    background-color: #dbdbdb;
    color: #515253 !important;
}

.popup-standalone {
    display: none;
}

.alert {
    margin: 0px !important;
}

.bold-text {
    font-weight: bolder;
}

/* SORTABLE LIST */
.dd {
    max-width: none;
}

.dd-list {
    min-height: 40px;
}

.dd-handle {
    padding: 8px 10px;
    cursor: move;
    background-color: transparent;
    margin: 0;
    text-align: center;
}

.dd-handle-left {
    text-align: left !important;
}

.dd-handle-btn {
}

a.dd-handle:hover {
    color: #3a3f51;
}

.dd-item .dd-name {
    line-height: 32px;
}

    .dd-item .dd-name button {
        font-size: 13px;
        height: 50px;
        font-size: 14px;
        display: block;
        position: relative;
        cursor: pointer;
        float: left;
        background-color: transparent;
        border: none;
        padding: 8px;
    }

.dd-item {
    min-height: 35px;
    padding: 5px 0;
}

.dd-handle {
    cursor: move !important;
}

.dd-item button[data-action], .dd-loadondemand {
    height: 50px;
    font-size: 14px;
    display: block;
    position: relative;
    cursor: pointer;
    float: left;
    background-color: transparent;
    border: none;
    padding: 8px;
}

.dd-item .dd-name button {
    font-size: 13px;
    height: auto;
    display: block;
    position: relative;
    cursor: pointer;
    float: none;
    background-color: transparent;
    border: none;
    padding: 0 8px;
    width: 80%;
    text-align: left;
}

.dd-handle-disabled {
    display: block;
    padding: 10px 10px;
    text-decoration: none;
    border: 1px solid #ebebeb;
    background-color: transparent;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    min-height: 50px;
    background: linear-gradient(to right, #f6f6f6, #ffffff)
}

.input-group {
    display: table;
    width: 100%;
}

    .input-group .input-group-control, .input-group input, .input-group select {
        display: table-cell;
        width: 100%;
        height: 35px;
        padding: 6px 16px;
        font-size: 14px;
        line-height: 1.52857;
        color: #3a3f51;
        background-color: #fff;
        background-image: none;
        border: 1px solid #e6e4e2;
        -ms-border-radius: 4px 0 0 4px;
        border-radius: 4px 0 0 4px;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        box-shadow: 0 0 0 #000 !important;
        -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
        -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
        transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    }

    .input-group .input-group-btn, .input-group .input-group-prebtn {
        display: table-cell;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 14px;
        font-weight: normal;
        line-height: 1;
        color: #3a3f51;
        text-align: center;
        background-color: #edf1f2;
        border-top: 1px solid #e6e4e2;
        border-right: 1px solid #e6e4e2;
        border-bottom: 1px solid #e6e4e2;
        border-left: none;
        vertical-align: middle;
        width: 35px;
        height: 35px;
        cursor: pointer;
        text-decoration: none;
    }

        .input-group .input-group-btn a {
            text-decoration: none;
            color: #3a3f51;
        }

        .input-group .input-group-btn:last-child {
            -ms-border-radius: 0 4px 4px 0;
            border-radius: 0 4px 4px 0;
        }

        .input-group .input-group-prebtn:first-child {
            border-radius: 4px 0 0 4px;
            border-left: 1px solid #e6e4e2;
            border-right: none;
        }

.dd-handle {
    padding: 8px 10px;
    cursor: move;
    background-color: transparent;
    margin: 0;
    text-align: center;
}

.dd-handle-left {
    text-align: left !important;
}

.dd-handle-btn {
}

a.dd-handle:hover {
    color: #3a3f51;
}

.popover {
    min-width: 300px;
}

h3.popover-title {
    padding: 2px 10px;
    margin: 0px !important;
    font-size: small;
    /*background-color: lightgray;*/
}

div.popover-content {
    padding: 2px 10px;
}

.popover-close {
    color: black;
    font-size: 14px !important;
    cursor: pointer;
}

.communication-password {
    color: black;
    font-weight: bold;
}

.no-communication-password {
    color: dimgray;
    font-weight: normal;
}

.event-statement-wrapper > .data-input-rounded-frame {
    border: 0px !important;
}

.event-statement-wrapper > .dotvvm-bp-drop-down-list > .dotvvm-bp-primitive_value {
    overflow: hidden !important;
    width: 290px !important;
}

    .event-statement-wrapper > .dotvvm-bp-drop-down-list > .dotvvm-bp-primitive_value > .dotvvm-bp-primitive_contents {
        overflow: hidden !important;
        width: 255px !important;
    }

.event-statement-wrapper > .dotvvm-bp-drop-down-list > .dotvvm-bp-primitive_popup {
    /*width: 100% !important;*/
}

.eu-cookies-bar {
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 13px;
    text-align: center;
    background: #333;
    color: rgba(143,143,143,1);
    padding: 10px;
    box-shadow: 0 2px 3px -2px rgba(0,0,0,0.35);
    position: relative;
    z-index: 10000000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
}

    .eu-cookies-bar a {
        color: #07e;
    }

        .eu-cookies-bar a:hover {
            color: #07e;
        }

    .eu-cookies-bar > * {
        margin: 0 5px;
        display: inline-block;
        vertical-align: middle;
    }

.eu-cookies-bar-agree {
    background: #0079c2;
    border: 1px solid #0079c2;
    border-radius: 4px;
    width: 175px;
    /*margin: 35px auto 20px auto;*/
    color: #fff;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    padding: 7px 12px 7px 12px;
    display: block;
    cursor: pointer;
}

.block {
    display: block !important;
}


.tempguid-rounded-frame {
    border: 1px solid #bbb;
    border-radius: 7px;
}

    .tempguid-rounded-frame .header {
        padding: 10px 10px;
        border-bottom: 1px solid #444;
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
        margin-bottom: 10px;
    }

.mr-xl {
    margin-right: 20px;
}

.radio-block {
    display: block;
}

    .radio-block input[type="radio"] {
        margin-right: 5px !important;
    }

.form-section {
    padding-bottom: 10px;
    border-bottom: dotted 2px #888;
}

.vmiddle {
    padding-top: 6px;
}

.mb-sm {
    margin-bottom: 3px;
}

.w175 {
    width: 175px;
}

.button-save:hover {
    text-decoration: none;
    background: transparent;
    border: 1px solid #0079c2;
    color: #0079c2;
}

.button-save {
    background: #0079c2;
    border: 1px solid #0079c2;
    border-radius: 4px;
    width: 175px;
    margin: 5px auto 5px auto;
    color: #fff;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    padding: 9px 15px 9px 15px;
    display: block;
    cursor: pointer;
}

.button-storno {
    background: #d9d9d9;
    border: 2px solid #d9d9d9;
    border-radius: 4px;
    width: 175px;
    margin: 5px auto 5px auto;
    color: #444;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    padding: 9px 15px 9px 15px;
    display: block;
    cursor: pointer;
}

    .button-storno:hover {
        text-decoration: none;
        background: transparent;
        border: 2px solid #d9d9d9;
        color: #000;
    }

.clockpicker-popover {
    z-index: 100060 !important;
}

.history-list-div {
    overflow: hidden;
    text-overflow: ellipsis;
}

/***.commissions-rewards***/
.subheader-strap {
    padding-top: 14px;
    padding-bottom: 14px;
    background: #ebeeef;
}

    .subheader-strap .d_flex {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .subheader-strap p {
        text-align: center;
        margin-bottom: 0px;
        margin-top: 0px;
        color: #999;
        font-weight: 600;
    }

.arrow-back-btn,
.settings-btn {
    position: relative;
    display: block;
}

.arrow-back-btn {
    padding-left: 22px;
    color: #999;
}

.settings-btn {
    width: 62px;
}

.arrow-back-btn:hover {
    color: #999;
    font-weight: 600;
}

.commissions-rewards {
    background-color: #f8f8f8;
}

    .commissions-rewards .reward-section {
        text-align: center;
        padding-bottom: 50px;
        padding-top: 50px;
    }

        .commissions-rewards .reward-section h2 {
            font-size: 32px;
            font-weight: 700;
            line-height: 1em !important;
        }

        .commissions-rewards .reward-section .currency {
            font-size: 20px;
            color: #999;
        }

        .commissions-rewards .reward-section p {
            font-size: 16px;
            color: #999;
            font-weight: 600;
            line-height: 1em !important;
        }

        .commissions-rewards .reward-section .blue-number {
            color: #0094d3;
            font-weight: 700;
            font-size: 18px;
        }

.boxes-wrapper {
    border-radius: 24px;
    padding-bottom: 70px;
}

    .boxes-wrapper .col-12 {
        border: 4px solid transparent;
        padding: 10px;
        height: unset;
    }

    .boxes-wrapper h3 {
        font-weight: 700 !important;
        position: relative;
        margin-bottom: 0px;
        margin-top: 0px;
    }

        .boxes-wrapper h3:before {
            content: '';
            display: block;
            width: 28px;
            height: 28px;
            position: absolute;
            top: 0px;
            left: -40px;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .boxes-wrapper h3.jt-partner:before {
            background-image: url(icons/suitcase.svg);
        }

        .boxes-wrapper h3.jt-voucher:before {
            background-image: url(icons/money.svg);
        }

        .boxes-wrapper h3.jt-success:before {
            background-image: url(icons/graph-up-arrow.svg);
        }

        .boxes-wrapper h3.jt-provisions:before {
            background-image: url(icons/wallet.svg);
        }

        .boxes-wrapper h3.jt-contracts:before {
            background-image: url(icons/list.svg);
        }

        .boxes-wrapper h3.jt-contract-status:before {
            background-image: url(icons/circle.svg);
        }

    .boxes-wrapper table {
        width: 100%;
        text-align: left;
        font-size: 12px;
        color: #999;
        font-weight: 600;
        line-height: 2em !important;
        margin-top: 8px;
    }

        .boxes-wrapper table b {
            color: #000;
        }

        .boxes-wrapper table td svg {
            position: relative;
            top: -1px;
            margin-right: 8px;
        }

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

    .table-wrapper table {
        min-width: 350px;
        width: 100%;
        height: auto;
    }

.basic-box {
    position: relative;
    padding: 28px 56px;
    border-radius: 24px;
    height: 100%;
    z-index: 1;
}

    .basic-box td img,
    .bordered-box-connected td img {
        margin: 0 0 0 auto;
        display: block;
    }


.expand-box {
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    top: calc(50% - 7px);
    right: 20px;
}

    .expand-box img {
        width: 14px;
        height: 14px;
    }

.bordered-box {
    border: 4px solid #e6e6e6;
}

.bordered-box-connected {
    border: 4px solid #e6e6e6;
    border-left: transparent;
    border-radius: 24px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    position: relative;
    padding: 28px 56px;
    height: 100%;
}

    .bordered-box-connected:before {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        position: absolute;
        background-color: #e6e6e6;
        top: -4px;
        left: -50px;
        z-index: 0;
    }

    .bordered-box-connected:after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        position: absolute;
        background-color: #e6e6e6;
        bottom: -4px;
        left: -50px;
        z-index: 0;
    }

/***helpers***/

.d_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.txt-partnership {
    font-weight:;
}

.txt-platina {
    color: #4e6d7e;
}

.txt-bronze {
    color: #9a4413;
}

.txt-gold {
    color: #ffd700;
}

.txt-silver {
    color: #C0C0C0;
}

.txt-green {
    color: #78cb4a;
}

.txt-blue {
    color: #4ab2de;
}

.txt-red {
    color: red;
}

.mt-0 {
    margin-top: 0px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mw-w-100 {
    max-width: 100% !important;
    width: 100%;
}

.bg-white {
    background: white !important;
}

.provisions-close-button {
    width: 200px !important;
    border-radius: 25px !important;
    padding: 10px !important;
    background-color: #40b900 !important;
    color: white !important
}

.basic-box.bg-white {
    -webkit-box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 991px) {

    .bordered-box-connected {
        border: 4px solid #e6e6e6 !important;
        border-radius: 24px;
        border-top-left-radius: 24px;
        border-bottom-left-radius: 24px;
    }

        .bordered-box-connected:before,
        .bordered-box-connected:after {
            display: none;
        }

    .col-12 {
        width: 100%;
    }
}

@media screen and (max-width: 676px) {
    .boxes-wrapper h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 430px) {
    .boxes-wrapper h3 {
        font-size: 16px;
    }
}

/***vouchers***/

.vouchers {
    background-color: #f8f8f8;
}

.csv-btn {
    display: block;
    width: 40px;
    margin-left: auto;
    color: #4ab2de;
    position: relative;
    margin-bottom: 12px;
    font-weight: 700;
}

    .csv-btn:hover {
        color: #4ab2de;
    }

    .csv-btn:before {
        content: '';
        display: block;
        width: 22px;
        height: 22px;
        position: absolute;
        top: 0px;
        left: -22px;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(icons/download.svg);
    }

.voucher-filter-section {
    padding-top: 50px;
}

    .voucher-filter-section h3 {
        text-align: left;
        margin-top: 0px;
    }

    .voucher-filter-section .basic-box {
        padding: 24px;
    }

    .voucher-filter-section form > div {
        width: 20%;
        padding-right: 10px;
    }

        .voucher-filter-section form > div:last-child {
            padding-right: 0px;
        }

    .voucher-filter-section form input,
    .voucher-filter-section form select {
        border-radius: 14px !important;
        border: 0px solid transparent;
        background: #ebeeef;
        padding-left: 12px;
        padding-right: 12px;
    }

    .voucher-filter-section input::placeholder,
    .voucher-filter-section select {
        color: #333;
        font-size: 12px;
    }

    .voucher-filter-section select {
        appearance: none;
        -webkit-appearance: none;
    }

    .voucher-filter-section .date-pick-btn,
    .voucher-filter-section .search-btn,
    .voucher-filter-section .dropdown-btn {
        position: absolute;
        display: block;
        top: 0px;
        bottom: 0px;
        right: 12px;
        width: 14px;
        height: 14px;
        z-index: 3;
    }

    .voucher-filter-section .dropdown-btn {
        z-index: 4;
    }

        .voucher-filter-section .date-pick-btn:before,
        .voucher-filter-section .search-btn:before,
        .voucher-filter-section .dropdown-btn:before,
        .arrow-back-btn:before,
        .settings-btn:before {
            content: '';
            display: block;
            width: 22px;
            height: 22px;
            position: absolute;
            top: 8px;
            right: 8px;
            background-size: contain;
            background-repeat: no-repeat;
        }

.order-filter-section {
    padding-top: 50px;
}

    .order-filter-section h3 {
        text-align: left;
        margin-top: 0px;
    }

    .order-filter-section .basic-box {
        padding: 24px;
    }

    .order-filter-section form > div {
        width: 16.6666666%;
        padding-right: 10px;
    }

        .order-filter-section form > div:last-child {
            padding-right: 0px;
        }

    .order-filter-section form input,
    .order-filter-section form select {
        border-radius: 14px !important;
        border: 0px solid transparent;
        background: #ebeeef;
        padding-left: 12px;
        padding-right: 12px;
    }

    .order-filter-section input::placeholder,
    .order-filter-section select {
        color: #333;
        font-size: 12px;
    }

    .order-filter-section select {
        appearance: none;
        -webkit-appearance: none;
    }

    .order-filter-section .date-pick-btn,
    .order-filter-section .search-btn,
    .order-filter-section .dropdown-btn {
        position: absolute;
        display: block;
        top: 0px;
        bottom: 0px;
        right: 12px;
        width: 14px;
        height: 14px;
        z-index: 3;
    }

    .order-filter-section .dropdown-btn {
        z-index: 4;
    }

        .order-filter-section .date-pick-btn:before,
        .order-filter-section .search-btn:before,
        .order-filter-section .dropdown-btn:before,
        .arrow-back-btn:before,
        .settings-btn:before {
            content: '';
            display: block;
            width: 22px;
            height: 22px;
            position: absolute;
            top: 8px;
            right: 8px;
            background-size: contain;
            background-repeat: no-repeat;
        }

    .order-filter-section .search-btn:before {
        background-image: url(icons/search.svg);
    }

.arrow-back-btn:before {
    background-image: url(icons/arrow-back.svg);
    width: 14px;
    height: 14px;
    top: 3px;
    left: 0px;
}

.settings-btn:before {
    background-image: url(icons/settings.svg);
    top: 2px;
    width: 20px;
    height: 20px;
}

.voucher-filter-section .date-pick-btn:before {
    background-image: url(icons/calendar.svg);
}

.voucher-filter-section .search-btn:before {
    background-image: url(icons/search.svg);
}



.voucher-filter-section .dropdown-btn:before {
    background-image: url(icons/dropdown.svg);
    width: 18px;
    height: 18px;
    width: 16px;
    height: 16px;
    top: 14px;
}

.voucher-basic-data {
    padding-top: 18px;
    padding-bottom: 18px;
}

    .voucher-basic-data > .d_flex {
        padding-left: 10px;
        padding-right: 10px;
    }

    .voucher-basic-data .d_flex > span:first-child {
        margin-right: auto;
    }

    .voucher-basic-data .d_flex > span:last-child {
        margin-left: auto;
    }

.voucher-list-pagination {
    padding-bottom: 18px;
}

    .voucher-list-pagination .d_flex > a {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        color: #999;
        font-weight: 700;
        text-decoration: none;
    }

        .voucher-list-pagination .d_flex > a.active {
            color: #fff;
            background-color: #4ab2de;
        }

    .voucher-list-pagination a.d_flex > p {
        margin: auto;
    }

.voucher-list {
    padding-bottom: 18px;
}

.voucher-list-wrapper {
    -webkit-box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 16px;
}


.table-wrapper::-webkit-scrollbar {
    height: 10px;
    background-color: #f5f5f5;
}

.table-wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #fcfcfc;
    border-radius: 6px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #444;
    border: 1px solid #ddd;
}

.voucher-list .table-wrapper table {
    min-width: 800px;
}

.voucher-list table td {
    padding: 4px;
}

.pdf-btn {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
}

    .pdf-btn:after {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        bottom: 5px;
        left: 5px;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(icons/pdf.svg);
    }

.pdf-btn-disabled {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
}

    .pdf-btn-disabled:after {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        bottom: 5px;
        left: 5px;
        color: lightgray !important;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(icons/pdf.svg);
    }


@media screen and (max-width: 800px) {
    .voucher-filter-section form > div {
        width: 50%;
        margin-bottom: 10px;
    }

        .voucher-filter-section form > div:nth-child(2),
        .voucher-filter-section form > div:nth-child(4),
        .voucher-filter-section form > div:nth-child(5) {
            padding-right: 0px;
        }

        .voucher-filter-section form > div:last-child {
            width: 100%;
            margin-bottom: 0px;
        }
}

@media screen and (max-width: 500px) {
    .voucher-filter-section form > div {
        width: 100%;
        padding-right: 0px;
    }
}

.input-group-datepicker > div > input {
    border-top-left-radius: 14px !important;
    border-bottom-left-radius: 14px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.input-group-datepicker > div > a:nth-of-type(2) {
    border-top-right-radius: 14px !important;
    border-bottom-right-radius: 14px !important;
}

.input-group-dropdown > div > div {
    border-top-left-radius: 14px !important;
    border-bottom-left-radius: 14px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.input-group-dropdown > div > a:nth-of-type(2) {
    border-top-right-radius: 14px !important;
    border-bottom-right-radius: 14px !important;
}

.input-group-dropdown > div > div > div {
    color: black !important
}

.pagination > .active > a, .pagination > .active > span {
    z-index: inherit !important;
}

.pagination > .disabled {
    display: none !important
}

.donutCell {
    position: relative;
}

.donutDiv {
    width: 190px;
    height: 150px;
}

.centerLabel {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 190px;
    line-height: 150px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: Black;
}

.cut-text {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 225px;
    height: 24px;
    white-space: nowrap;
}
.jt-contracts + .table-wrapper {
    overflow-x: unset;
}

    .jt-contracts + .table-wrapper b {
        display: inline-block;
        position: relative;
        width: calc(100% - 20px);
        white-space: nowrap;
        overflow: hidden !important;
        text-overflow: ellipsis;
        color: #000;
    }

.div-table {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 12px;
}

.div-table-row {
    width: 100%;
}


.div-cell {
    padding: 3px 6px;
}

.div-table-row > div:nth-child(1,3) {
    width: 110px;
}

.div-table-row > div:nth-child(2) {
    width: calc(100% - 220px);
}

@media (max-width:600px) {
    .div-table-row {
        text-align: center;
    }

        .div-table-row:nth-child(odd) {
            background-color: rgba(0, 0, 0, 0.03);
            padding-bottom: 6px;
            padding-top: 6px;
        }

    .div-cell {
        width: 100% !important;
    }
}

/***custom-popup b-b-popup***/

.b-b-popup-wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10002;
}

.basic-box.b-b-popup {
    margin: auto;
    height: 75vh;
    max-width: 95%;
    background: #fff;
    overflow: hidden;
}

.b-b-popup-inner-wrapper {
    overflow: auto;
    height: 100%;
}

    .b-b-popup-inner-wrapper::-webkit-scrollbar {
        height: 10px;
        background-color: #f5f5f5;
        width: 12px;
    }

    .b-b-popup-inner-wrapper::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #fcfcfc;
        border-radius: 6px;
    }

    .b-b-popup-inner-wrapper::-webkit-scrollbar-thumb {
        border-radius: 6px;
        background-color: #444;
        border: 1px solid #ddd;
    }

    .b-b-popup-inner-wrapper img {
        max-width: 100%;
    }
