/* --------------------------------

Primary style

-------------------------------- */
*, *::after, *::before {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.2rem;
    font-family: "Roboto", sans-serif;
    color: #1f4c74;
    background-color: #f2f2f2;
}

a {
    color: #dab433;
    text-decoration: none;
}

svg {
    max-width: 100%;
}

/* --------------------------------

Patterns - reusable parts of our design

-------------------------------- */
.cd-btn {
    display: inline-block;
    padding: 1em 2em;
    color: #dab433;
    border: 2px solid #dab433;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.no-touch .cd-btn:hover {
    background-color: #dab433;
    color: #f2f2f2;
}

/* --------------------------------

Main Content

-------------------------------- */
.cd-main-content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: table;
}

.cd-main-content .center {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.cd-main-content h1 {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 1em;
}

@media only screen and (min-width: 768px) {
    .cd-main-content h1 {
        font-size: 4rem;
        font-weight: 300;
    }
}

/* --------------------------------

Modal Window

-------------------------------- */
.cd-modal {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.6s;
    -moz-transition: visibility 0s 0.6s;
    transition: visibility 0s 0.6s;
}

.cd-modal svg {
    position: absolute;
    top: 0;
    left: 0;
}

.cd-modal svg > path {
    fill: #FFFFFF;
}

.cd-modal .modal-close {
    /* 'X' icon */
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 5%;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3) url(../img/cd-icon-close.svg) no-repeat center center;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    /* Force hardware acceleration*/
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
    transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}

.no-touch .cd-modal .modal-close:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.cd-modal.modal-is-visible {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
}

.cd-modal.modal-is-visible .modal-close {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.cd-modal-content {
    position: relative;
    height: 100vh;
    overflow-y: auto;
    padding: 3em 5% 4em;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: opacity 0.3s 0s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, transform 0.3s 0s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cd-modal-content p {
    color: #000000;
    line-height: 1.6;
    /*margin: 2em 0;*/
}

.modal-is-visible .cd-modal-content {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-overflow-scrolling: touch;
    -webkit-transition: opacity 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
    -moz-transition: opacity 0.3s 0.3s, -moz-transform 0.3s 0.3s;
    transition: opacity 0.3s 0.3s, transform 0.3s 0.3s;
}

@media only screen and (min-width: 768px) {
    .cd-modal-content {
        padding: 3em 10% 4em;
    }

    .cd-modal-content p {
        font-size: 2.4rem;
    }
}

/* --------------------------------

 Cover Layer - hide main content when modal is fired

-------------------------------- */
.cd-cover-layer {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #f2f2f2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s 0.3s, visibility 0s 0.6s;
    -moz-transition: opacity 0.3s 0.3s, visibility 0s 0.6s;
    transition: opacity 0.3s 0.3s, visibility 0s 0.6s;
}

.cd-cover-layer.modal-is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.k-state-disabled {
    opacity: 0.1;
}

.k-list-scroller {
    overflow-y: auto;
}

.k-list-scroller {
    overflow-y: auto;
}

.tantargy-item {
    padding: 10px;
    margin: 2px;
    background-color: #428bca;
    border-color: #357ebd;
    color: #fff;
    height: 30px;
}

.form-container {
    border: 5px solid #2C3E50;
    background-color: white;
    /*padding: 20px;*/
    /*border-radius: 2px;*/
    box-shadow: 0 2px 8px rgba(2, 4, 5, 0.5);
    overflow: hidden;
    background: #2C3E50;
}

#frm .form-container {
    border: 5px solid #2C3E50;
    background-color: white;
    /*padding: 20px;*/
    /*border-radius: 2px;*/
    box-shadow: 0 2px 8px rgba(2, 4, 5, 0.5);
    overflow: hidden;
    background: white !important;
    padding: 10px;
}

#frm .form-container h1 {
    color: black;
}

.form-container h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial;
    color: white;
}

#modal-window .form-container {
    border: none;
    background-color: white;
    padding: 20px;
    /*border-radius: 2px;*/
    box-shadow: none;
}

.cd-modal h1::after {
    background: rgba(0, 0, 0, 0) url("../img/ink-separation.svg") no-repeat scroll center center;
    content: "";
    display: block;
    height: 18px;
    margin: 0.2em auto 80px;
    width: 130px;
}

.grid-toolbar {
    height: 60px;
    background: #2C3E50;
    line-height: 60px;
    padding: 0 10px;
    border: 1px solid grey;
    color: white;
    border-radius: 5px 5px 0 0;
}

.grid-toolbar > div > .form-group {
    margin: 0 20px;
}

.grid-toolbar > div > .form-group:first-child {
    margin: 0;
}

.error-summary {
    /*border: 1px solid grey;*/
    /*box-shadow: 0 2px 8px rgba(2, 4, 5, 0.5);*/
    background: white;
    color: black;
    margin-bottom: 100px;
    border-left: none !important;
    border-bottom: 1px solid grey;
}

.error-summary h1 {
    font-size: 28px;
    text-transform: uppercase;
}

.error-summary ul {
    text-align: center;
    /*margin-top: -60px;*/
    list-style-type: decimal;

}

.error-summary ul li {
    text-align: left;
    font-size: 16px;
}

.error-summary2 {
    /*border: 1px solid grey;*/
    /*box-shadow: 0 2px 8px rgba(2, 4, 5, 0.5);*/
    background: white;
    color: black;
    margin-bottom: 100px;
    border-left: none !important;
    border-bottom: 1px solid grey;
}

.error-summary2 h1 {
    font-size: 28px;
    text-transform: uppercase;
}

.error-summary2 ul {
    text-align: center;
    /*margin-top: -60px;*/
    list-style-type: decimal;

}

.error-summary2 ul li {
    text-align: left;
    font-size: 16px;
}


.no-space {
    margin-left: 0 !important;
}

.span6 h1::after {
    background: rgba(0, 0, 0, 0) url("../img/ink-separation.svg") no-repeat scroll center center;
    content: "";
    display: block;
    height: 18px;
    margin: 0.2em auto 10px;
    width: 130px;
}

h1 {
    text-align: center;
}

h1::after {
    /*background: rgba(0, 0, 0, 0) url("../img/ink-separation.svg") no-repeat scroll center center;*/
    /*content: "";*/
    /*display: block;*/
    /*height: 18px;*/
    /*margin: 0.2em auto 10px;*/
    /*width: 130px;*/
}

.wrap {
    background-image: url("../img/cloud_accounting_software1561613528953.png") !important;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
}

.white {
    background-color: white;
}

.margin-space-top-bottom-20 {
    margin-top: 20px;
    border-bottom: 20px;
}

#content-container > .row-fluid {
    margin-bottom: 20px;
}

.form-container-header {
    border-bottom: none;
}

.toolbarka {
    height: 83px;
    background: #F5F5F5;
    line-height: 70px;
    border: 5px solid #2c3e50;
    box-shadow: 0 2px 8px rgba(2, 4, 5, 0.5);
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: none;
    /*border-radius: 2px;*/

}

.text-right-box {
    float: right;
}

.container-fluid > .form-container {
    border-bottom: none;
}

.container-fluid > .form-container:last-child {
    border-bottom: 10px solid #2c3e50;
}

.toolbarka2 {
    height: 83px;
    background: #F5F5F5;
    line-height: 83px;
    border: 1px solid #ccc;
    /*box-shadow: 0 2px 8px rgba(2, 4, 5, 0.5);*/
    border-bottom: none;
    padding: 0 20px;
}

.toolbarka2 > button {
    margin-top: 20px;
}

.event-item {
    /*width: 32.90%;*/
    width: 100%;
    float: left;
    margin-bottom: 20px;
    /*border: 1px solid grey;*/
    box-shadow: 0 2px 8px rgba(2, 4, 5, 0.5);
}

.event-item {
    margin-right: 10px;
}

.event-item {
    margin-right: 10px;
    position: relative;
}

.event-item.last {
    margin-right: 0;
}

.event-item-inner {
    margin: 10px;
    border: 1px solid grey;
    width: 100%;
    border-collapse: collapse;
    box-sizing: content-box;
}

.event-header {
    background: #2C3E50;
    color: white;
    padding-bottom: 20px;
    box-shadow: 0 2px 8px #2C3E50;
}

.event-header > .col-lg-2 > button {
    margin-top: 30px;
}

.no-wrap {
    white-space: nowrap;
}

.event-content {
    background: white;
    padding-bottom: 20px;
}

.event-content > .row-fluid {
    margin-top: 20px;
    margin-bottom: 20px;
}

.marginTop10 {
    margin-top: 10px;
}

#modal-window input[type="text"] {
    width: 100% !important;
}

#modal-window select {
    width: 100% !important;
}

.kibaszott-table tr th {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #F5F5F5;
}

.kibaszott-table tr th:first-child {
    border-left: none;
}

.kibaszott-table tr th:last-child {
    border-right: none;
}

.kibaszott-table tr td:first-child {
    border-left: none;
}

.kibaszott-table tr td:last-child {
    border-right: none;
}

.kibaszott-table tr td {
    border: 1px solid #ccc;
    padding: 10px;
}

.event-item-footer {
    height: 50px;
    background-color: #2C3E50;
    position: absolute;
    bottom: 0;
    margin-top: 20px;
    border: 10px solid #2C3E50;
}

.btn-blue {
    background-color: #16365C;
    border-color: #f39c12;
    color: #ffffff;
}

.btn-blue:hover, .btn-blue:focus, .btn-blue.focus {
    color: #ffffff !important;
    background-color: red;
    text-decoration: none;
}

h1.smaller {
    font-size: 1.2em;
    font-weight: bold;
}

.k-grid-toolbar {
    box-sizing: border-box;
    padding: 10px;
}

.tb {
    border-bottom: none !important;
    /*border-radius: 0 !important;*/
}

.white {
    background: white !important;
}

.white h1 {
    color: black !important;
}

.white .span12 {
    background: #F5F5F5;
}

#content-container .form-container {
    background: white;
    color: black !important;
}

#content-container .form-container h1 {
    /*color: black !important;*/
}

#content-container .form-container .span12 {
    margin-top: 20px;
}

.form-container-header {
    background: #2C3E50 !important;
}

div.row-fluid.form-container.form-container-header div.span12 h1 {
    color: white !important;
}

.span12 {
    margin-top: 0 !important;
}

h4 {
    text-align: center !important;
    font-family: Arial !important;
    font-size: 24px !important;
    margin-bottom: 20px !important;
    text-decoration: underline;
}

.ui-tabs .ui-tabs-panel {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border-width: 0;
    display: block;
    overflow: hidden;
    padding: 1em 1.4em;
}

.k-animation-container, .k-widget, .k-widget *, .k-animation-container *, .k-widget *::before, .k-animation-container *::after, .k-block, .k-list-container {
    /*box-sizing: content-box;*/
}

.k-animation-container, .k-widget, .k-widget *, .k-animation-container * {
    /*box-sizing: border-box !important;*/
}

div.k-widget.k-window div.k-window-titlebar.k-header {
    box-sizing: content-box !important;
}

.white div.row-fluid div.span12 h1 {
    color: white !important;
    background: #2C3E50;
    margin: 0;
    padding: 10px 0;
    font-size: 20px;
    text-transform: none;
}

.error-summary {
    margin-bottom: 10px;
}

.k-upload-selected, .k-clear-selected {

    margin-top: 2px !important;
    border: none !important;
    display: none !important;

}

.table-bordered tr td {
    vertical-align: middle !important;
}

.k-button-icon {
    width: calc(1.4285714286em + 14px);
    height: calc(1.4285714286em + 14px);
    padding: 0;
}

.k-pager-nav {
    padding: 0;
}

.uzenete-menu-items {
    height: 20px;
    padding: 10px;
    border: 1px solid rgb(204, 204, 204);
    border-collapse: separate;
    display: flex;
    align-items: center;
    cursor: pointer
}

.uzenete-menu-items.active {
    background: red;
    color: white;
}

.k-filter-preview {
    display: none !important;
}

table tr th {
    overflow: hidden !important;
}

.k-tooltip {
    overflow: hidden !important;
}

.szamlak-list-view .k-listview-content {
    display: flex;
    flex-wrap: wrap;
}

.szamlak-list-view .k-listview-content a:hover {
    background: whitesmoke;
    display: block;
    overflow: hidden;
}

.k-dropzone-hint {
    display: none !important;
}

.row {
    clear: both !important;
    box-sizing: border-box;
    overflow-x: hidden;
}

.row-fluid {
    overflow-x: hidden !important;
}

.koveteles-error{
    animation: blinker 0.5s linear infinite;
    color: red;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.list-table tr th{
    width: 120px;
    white-space: nowrap;
}