﻿*:focus {
    outline: none;
}

html {
    margin: 0;
    padding: 0;
}

body {
    background: #000011 url(images/bg_glow.png) no-repeat left top;
    color: rgba(255,255,255,.54);
    font-family: 'Source Sans Pro', helvetica, arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

header, section, footer {
    max-width: 1560px;
    margin: 0 auto;
}

header {
    height: 110px;
}

a {
    outline: none;
}

    a:link, a:visited, a:active, a:hover {
    }

    a:hover {
    }

header, footer, hgroup,
nav, section {
    display: block;
}

mark {
    background-color: #a6dbed;
    padding-left: 5px;
    padding-right: 5px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

h1, h2, h3,
h4, h5, h6 {
    color: #000;
    margin-bottom: 0;
    padding-bottom: 0;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.75em;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

    h5 a:link, h5 a:visited, h5 a:active {
        padding: 0;
        text-decoration: none;
    }


/* main layout
----------------------------------------------------------*/
.content-wrapper {
    height: 100%;
    position: relative;
}

header .content-wrapper {
    padding: 0 15px;
}

.logo {
    width: 100%;
    height: 100%;
    position: relative;
    background: url(images/drive_logo.svg) no-repeat center right 1.5vw;
    background-size: 67% 67%;
    padding-left: 30px;
    transition: 0.2s all ease-in-out;
    z-index: 1;
}

    .logo:before {
        /*content: "";
    width: 36px;
    height: 3px;
    position: absolute;
    background: white;
    background-size: contain;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: .54;
    transition: .2s all ease-in-out;*/
    }

    .logo ~ .loading-animation, .logo ~ .loading-animation:after, .logo ~ .loading-animation:before {
        width: 36px;
        height: 3px;
        position: absolute;
        background: white;
        left: 25px;
        top: 0;
        bottom: 0;
        margin: auto;
        opacity: .54;
        transition: .2s all ease-in-out;
        display: block;
    }

    .logo:hover ~ .loading-animation {
        opacity: .75;
    }

    .logo ~ .loading-animation:after, .logo ~ .loading-animation:before {
        content: "";
        margin: unset;
        left: 0;
        right: auto;
        opacity: 1;
        animation-duration: 1s;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
        transform-origin: center;
    }

    .logo ~ .loading-animation:after {
        transform: translate(0, -10px);
    }

    .logo.loading ~ .loading-animation:after {
        animation-duration: 2s;
        animation-name: LoadingAnimation2;
        background-color: #45af76;
    }

    .logo ~ .loading-animation:before {
        transform: translate(0, 10px);
    }

    .logo.loading ~ .loading-animation:before {
        animation-duration: 2s;
        animation-name: LoadingAnimation3;
        background-color: #45af76;
    }

    .logo.loading ~ .loading-animation {
        animation-name: LoadingAnimation;
        animation-duration: 1s;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
        transform-origin: center;
        opacity: 1;
        background-color: #45af76;
    }

@keyframes LoadingAnimation {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(0.1, 1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes LoadingAnimation2 {
    0% {
        transform: translate(0, -10px) scale(1, 1);
    }

    25% {
        transform: translate(0, -10px) scale(.5, 1);
    }

    50% {
        transform: translate(0, -10px) scale(1, 1);
    }

    75% {
        transform: translate(0, -10px) scale(.5, 1);
    }

    100% {
        transform: translate(0, -10px) scale(1, 1);
    }
}

@keyframes LoadingAnimation3 {
    0% {
        transform: translate(0, 10px) scale(1, 1);
    }

    25% {
        transform: translate(0, 10px) scale(2, 1);
    }

    50% {
        transform: translate(0, 10px) scale(1, 1);
    }

    75% {
        transform: translate(0, 10px) scale(2, 1);
    }

    100% {
        transform: translate(0, 10px) scale(1, 1);
    }
}

.cs-loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    z-index: 10000000;
}

.cs-loader-inner {
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    width: 100%;
    color: rgba(0,0,0,.25);
    padding: 0 100px;
    text-align: center;
}

    .cs-loader-inner label {
        font-size: 100px;
        opacity: 0;
        display: inline-block;
    }

@keyframes lol {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        transform: translateX(0px);
    }

    66% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(300px);
    }
}

.cs-loader-inner label:nth-child(6) {
    -webkit-animation: lol 3s infinite ease-in-out;
    animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
    -webkit-animation: lol 3s 100ms infinite ease-in-out;
    animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
    -webkit-animation: lol 3s 200ms infinite ease-in-out;
    animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
    -webkit-animation: lol 3s 300ms infinite ease-in-out;
    animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
    -webkit-animation: lol 3s 400ms infinite ease-in-out;
    animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
    -webkit-animation: lol 3s 500ms infinite ease-in-out;
    animation: lol 3s 500ms infinite ease-in-out;
}

#body {
    clear: both;
    padding-bottom: 35px;
}

footer {
    clear: both;
    font-size: .8em;
    height: 100px;
    opacity: .75;
}


/* site title
----------------------------------------------------------*/
.site-title {
    color: #c8c8c8;
    font-family: Rockwell, Consolas, "Courier New", Courier, monospace;
    font-size: 2.3em;
    margin: 0;
}

    .site-title a, .site-title a:hover, .site-title a:active {
        background: none;
        color: #c8c8c8;
        outline: none;
        text-decoration: none;
    }


/* login
----------------------------------------------------------*/
#login {
    display: block;
    font-size: .85em;
    margin: 0 0 10px;
    text-align: right;
}

    #login a {
        background-color: #d3dce0;
        margin-left: 10px;
        margin-right: 3px;
        padding: 2px 3px;
        text-decoration: none;
    }

        #login a.username {
            background: none;
            margin: 0;
            padding: 0;
            text-decoration: underline;
        }

    #login ul {
        margin: 0;
    }

    #login li {
        display: inline;
        list-style: none;
    }




/* page elements
----------------------------------------------------------*/
/* featured */
.featured {
    background-color: #fff;
}

    .featured .content-wrapper {
        background-color: #7ac0da;
        background-image: -ms-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: -o-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #7ac0da), color-stop(1, #a4d4e6));
        background-image: -webkit-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        color: #3e5667;
        padding: 20px 40px 30px 40px;
    }

    .featured hgroup.title h1, .featured hgroup.title h2 {
        color: #fff;
    }

    .featured p {
        font-size: 1.1em;
    }

/* page titles */
hgroup.title {
    margin-bottom: 10px;
}

    hgroup.title h1, hgroup.title h2 {
        display: inline;
    }

    hgroup.title h2 {
        font-weight: normal;
        margin-left: 3px;
    }

/* features */
section.feature {
    width: 300px;
    float: left;
    padding: 10px;
}

/* ordered list */
ol.round {
    list-style-type: none;
    padding-left: 0;
}

    ol.round li {
        margin: 25px 0;
        padding-left: 45px;
    }

        ol.round li.zero {
            background: url("../Images/orderedList0.png") no-repeat;
        }

        ol.round li.one {
            background: url("../Images/orderedList1.png") no-repeat;
        }

        ol.round li.two {
            background: url("../Images/orderedList2.png") no-repeat;
        }

        ol.round li.three {
            background: url("../Images/orderedList3.png") no-repeat;
        }

        ol.round li.four {
            background: url("../Images/orderedList4.png") no-repeat;
        }

        ol.round li.five {
            background: url("../Images/orderedList5.png") no-repeat;
        }

        ol.round li.six {
            background: url("../Images/orderedList6.png") no-repeat;
        }

        ol.round li.seven {
            background: url("../Images/orderedList7.png") no-repeat;
        }

        ol.round li.eight {
            background: url("../Images/orderedList8.png") no-repeat;
        }

        ol.round li.nine {
            background: url("../Images/orderedList9.png") no-repeat;
        }

/* content */
article {
    float: left;
    width: 70%;
}

aside {
    float: right;
    width: 25%;
}

    aside ul {
        list-style: none;
        padding: 0;
    }

        aside ul li {
            background: url("../Images/bullet.png") no-repeat 0 50%;
            padding: 2px 0 2px 20px;
        }

.label {
}

/* login page */
#loginForm {
    border-right: solid 2px #c8c8c8;
    float: left;
    width: 55%;
}

    #loginForm .validation-error {
        display: block;
        margin-left: 15px;
    }

    #loginForm .validation-summary-errors ul {
        margin: 0;
        padding: 0;
    }

    #loginForm .validation-summary-errors li {
        display: inline;
        list-style: none;
        margin: 0;
    }

    #loginForm input {
        width: 250px;
    }

        #loginForm input[type="checkbox"],
        #loginForm input[type="submit"],
        #loginForm input[type="button"],
        #loginForm button {
            width: auto;
        }

#socialLoginForm {
    margin-left: 40px;
    float: left;
    width: 40%;
}

    #socialLoginForm h2 {
        margin-bottom: 5px;
    }

#socialLoginList button {
    margin-bottom: 12px;
}

#logoutForm {
    display: inline;
}

/* contact */
.contact h3 {
    font-size: 1.2em;
}

.contact p {
    margin: 5px 0 0 10px;
}

.contact iframe {
    border: 1px solid #333;
    margin: 5px 0 0 10px;
}

/* forms */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

    fieldset legend {
        display: none;
    }

    fieldset ol {
        padding: 0;
        list-style: none;
    }

        fieldset ol li {
            padding-bottom: 5px;
        }

label {
    display: inline-block;
}

    label.checkbox {
        display: inline;
    }

input[type=text], input[type=password], textarea {
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #333;
    font-size: 1.2em;
    margin: 5px 0 6px 0;
    padding: 5px 15px;
    min-height: 50px;
    font-size: 1rem;
}

textarea {
    font-family: inherit;
    width: 500px;
}

    input:focus, textarea:focus {
    }

input[type="checkbox"] {
    background: transparent;
    border: inherit;
    width: auto;
}



td input[type="submit"],
td input[type="button"],
td button {
    font-size: 1em;
    padding: 4px;
    margin-right: 4px;
}

/* info and errors */
.message-info {
    border: 1px solid;
    clear: both;
    padding: 10px 20px;
}

.message-error {
    clear: both;
    color: #e80c4d;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.message-success {
    color: #7ac0da;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.error {
    color: #e80c4d;
    background: rgba(100,5,50,0.5);
}

/* styles for validation helpers */
.field-validation-error {
    color: #e80c4d;
    font-weight: bold;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #e80c4d;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #e80c4d;
    font-weight: bold;
    font-size: 1.1em;
}

    .validation-summary-errors ul {
        list-style: none;
        padding: 0;
    }

.validation-summary-valid {
    display: none;
}

.field-validation-error {
    font-size: 1.1em;
    padding: 10px 0;
    display: inline-block;
}


/* tables
----------------------------------------------------------*/
table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0.75em 0;
    border: 0 none;
}

th {
    text-align: left;
    border: none 0px;
    padding-left: 0;
    text-transform: uppercase;
    font-weight: 700;
    opacity: .7;
    transition: .15s all ease-in-out;
}

    th:hover {
        opacity: 1;
    }

    th a {
        display: block;
        position: relative;
    }

        th a:link, th a:visited, th a:active, th a:hover {
            color: #333;
            text-decoration: none;
            padding: 0;
        }

        th a:hover {
            color: #000;
        }

    th.asc a, th.desc a {
        margin-right: .75em;
    }

        th.asc a:after, th.desc a:after {
            display: block;
            position: absolute;
            right: 0em;
            top: 0;
            font-size: 0.75em;
        }

        th.asc a:after {
            content: '▲';
        }

        th.desc a:after {
            content: '▼';
        }

td {
    padding: 0.25em 2em 0.25em 0em;
    border: 0 none;
}

tr.pager td {
    padding: 0 0.25em 0 0;
}


/********************
*   Mobile Styles   *
********************/
@media only screen and (max-width: 850px) {

    /* header
    ----------------------------------------------------------*/
    header .float-left,
    header .float-right {
        float: none;
    }

    /* logo */
    header .site-title {
        margin: 10px;
        text-align: center;
    }

    /* login */
    #login {
        font-size: .85em;
        margin: 0 0 12px;
        text-align: center;
    }

        #login ul {
            margin: 5px 0;
            padding: 0;
        }

        #login li {
            display: inline;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        #login a {
            background: none;
            color: #999;
            font-weight: 600;
            margin: 2px;
            padding: 0;
        }

            #login a:hover {
                color: #333;
            }

    /* menu */
    nav {
        margin-bottom: 5px;
    }

    ul#menu {
        margin: 0;
        padding: 0;
        text-align: center;
    }

        ul#menu li {
            margin: 0;
            padding: 0;
        }


    /* main layout
    ----------------------------------------------------------*/
    .main-content,
    .featured + .main-content {
        background-position: 10px 0;
    }

    .content-wrapper {
        padding-right: 10px;
        padding-left: 10px;
    }

    .featured .content-wrapper {
        padding: 10px;
    }

    /* page content */
    article, aside {
        float: none;
        width: 100%;
    }

    /* ordered list */
    ol.round {
        list-style-type: none;
        padding-left: 0;
    }

        ol.round li {
            padding-left: 10px;
            margin: 25px 0;
        }

            ol.round li.zero,
            ol.round li.one,
            ol.round li.two,
            ol.round li.three,
            ol.round li.four,
            ol.round li.five,
            ol.round li.six,
            ol.round li.seven,
            ol.round li.eight,
            ol.round li.nine {
                background: none;
            }

    /* features */
    section.feature {
        float: none;
        padding: 10px;
        width: auto;
    }

        section.feature img {
            color: #999;
            content: attr(alt);
            font-size: 1.5em;
            font-weight: 600;
        }

    /* forms */
    input {
        width: 90%;
    }

    /* login page */
    #loginForm {
        border-right: none;
        float: none;
        width: auto;
    }

        #loginForm .validation-error {
            display: block;
            margin-left: 15px;
        }

    #socialLoginForm {
        margin-left: 0;
        float: none;
        width: auto;
    }


    /* footer
    ----------------------------------------------------------*/
    footer .float-left,
    footer .float-right {
        float: none;
    }

    footer {
        text-align: center;
        height: auto;
        padding: 10px 0;
    }

        footer p {
            margin: 0;
        }
}

.login fieldset {
    background-color: #002240;
    color: #fff;
    width: 400px;
    margin-left: 50%;
    position: relative;
    left: -200px;
}

#MenuBar {
    vertical-align: top;
    background-color: #3e5667;
}

    #MenuBar a {
        display: block;
        padding: 3px;
    }

#mainContent {
    vertical-align: top;
    background-color: #f4f4f6;
    color: rgba(0,0,17,.54);
    margin-top: 55px;
    min-height: 0;
}

section {
    clear: both;
}

#MenuBar > ul {
}

section table {
    width: 100%;
}

#MenuBar ul, #MenuBar li {
    color: white;
    list-style: none;
    padding: 0;
    margin: 0;
}

#MenuBar li {
    text-align: center;
    cursor: pointer;
}

    #MenuBar li a {
        color: #fff;
    }

.dataTableInput {
    width: 100%;
    font-weight: 400;
}

    .dataTableInput.filtered {
        background-color: yellow;
        opacity: 1 !important;
    }

.dataTables_wrapper .dataTables_paginate .paginate_button.active > a {
    font-weight: 700;
    color: rgba(0,0,0,.54);
}

thead label, thead input[type="checkbox"] {
    text-transform: initial;
    cursor: pointer;
}

#table_div, #table_div:focus, #table_div:active {
    outline: none !important;
}

input.hasDatepicker {
    background: #fff no-repeat right 10px center;
    background-image: url('images/ic_datepicker_green_24px.svg');
    background-size: 24px 24px;
    cursor: pointer;
}

    input.hasDatepicker:hover {
    }

.table-nonfluid {
    width: auto !important;
}

.dataTables_filter {
    display: none;
}

.imageListcontainer .thumb.selected {
    background-color: #3e5667;
}

.imageListcontainer .thumb {
    padding: 10px;
}

.imageListcontainer input {
    width: 100%;
}

.imageListcontainer {
    margin: 5px 0;
}

.loginBody .modal-dialog {
    max-width: 500px;
}

.error .modal-dialog {
    width: 300px;
    height: 330px;
    border: 1px solid #e80c4d;
    transform: translate(175px,0);
}

    .error .modal-dialog .modal-content {
        background: none;
        box-shadow: none;
    }

    .error .modal-dialog .modal-header {
        width: 100%;
        margin: 0;
        padding: 0;
        background: none;
    }

.top_menu {
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

    .top_menu > ul {
        float: right;
        list-style: none;
        padding: 0;
        margin: 0 30px;
    }

        .top_menu > ul > li {
            display: inline-block;
            line-height: 60px;
        }

            .top_menu > ul > li > a {
                color: rgba(255,255,255,.54);
                display: inline-block;
                height: 100%;
                padding: 0 15px;
                font-size: 1.25rem;
                text-decoration: none;
                transition: .2s all ease-in-out;
            }

                .top_menu > ul > li > a.active {
                    color: #45af76;
                }

                .top_menu > ul > li > a:hover {
                    color: rgba(255,255,255,.75);
                }

.content-wrapper .logout_panel {
    height: 60px;
    background: rgba(255,255,255,.1) url(images/bg_login.png) repeat-x right top;
    padding: 10px 45px 10px 15px;
    position: relative;
    float: right;
}

.icon_user {
    width: 20px;
    height: 20px;
    position: absolute;
    background: url(images/icon_user_green.svg) no-repeat center center;
    background-size: 16px 16px;
    margin: auto;
    right: 15px;
    top: 0;
    bottom: 0;
}

.user_name {
    text-align: right;
    font-size: 20px;
    font-size: 1.25em;
    color: rgba(255,255,255,1);
    line-height: 1em;
}

.logout_link {
    color: rgba(255,255,255,.54);
    transition: .2s all ease-in-out;
}

    .logout_link:hover {
        color: rgba(255,255,255,1);
        text-decoration: none;
    }

/* Loading animation */
.sk-cube-grid {
    width: 40px;
    height: 40px;
    margin: 50px auto;
}

    .sk-cube-grid .sk-cube {
        width: 33%;
        height: 33%;
        background-color: rgba(255,255,255,.15);
        float: left;
        -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
        animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    }

    .sk-cube-grid .sk-cube1 {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}
/* Loading animation end */

.loading {
    /*min-width:100px;
    min-height:100px;
    background: transparent url('images/loading.gif') no-repeat center center;*/
}

.unselectable, .dataTable td {
    /* tr. 120569

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    */
}

.arrow {
    width: 20px;
    height: 20px;
    background: url(images/icon_arrow_dropdown.svg) no-repeat center center;
    background-size: 10px 5px;
    display: inline-block;
    vertical-align: middle;
    opacity: .7;
    margin-left: 5px;
    transition: .2s all ease-in-out;
}

    .arrow:hover {
        opacity: 1;
    }

.bottom {
    text-align: center;
}

    .bottom .btn {
        line-height: 50px;
        height: 50px;
        padding: 0 30px;
        margin-right: 20px;
        min-width: 200px;
    }

        .bottom .btn:last-child {
            margin: 0;
        }

input[type="checkbox"][checked] {
    color: red;
}

#ajaxLoading {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: black;
    opacity: 0.85;
    top: 0;
    left: 0;
}

.form-group > .right {
    height: 100%;
    float: right;
    margin-right: -15px;
    font-size: 0;
}

    .form-group > .right > input.btn {
        width: 120px;
        height: 100%;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: .2s all ease-in-out;
    }

        .form-group > .right > input.btn:active {
            opacity: .7;
        }

        .form-group > .right > input.btn.btn-danger {
            background: transparent;
            color: rgba(0,0,0,.54);
            border-color: transparent;
        }

        .form-group > .right > input.btn.btn-success {
            background: #008ee5;
            border-color: #008ee5;
        }

        .form-group > .right > input.btn.btn-sync {
            width: auto;
        }

.form-group > select {
    height: 30px;
    line-height: 30px;
    margin-right: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.form-group .form-title {
    float: left;
}

    .form-group .form-title h1 {
        display: inline-block;
        font-size: 1rem;
        margin: 0;
        line-height: 50px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .form-group .form-title h4 {
        display: inline-block;
        font-size: 1rem;
        margin: 0;
        line-height: 50px;
        padding-left: 30px;
    }

.data-table td {
    height: 50px;
    padding: 5px;
    font-size: 1.25rem;
    font-weight: 400;
}

/* ÁLTALÁNOS INPUT FORMÁZÁS */
input[type=text], input[type=password], input[type=number], select {
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: rgba(0,0,0,.54);
    border: 1px solid rgba(0,0,0,.25);
    border-radius: 1px;
    transition: .2s all ease-in-out;
}

.data-table input[type=text], input[type=number], .data-table select {
    width: 300px;
    height: 50px;
    padding: 10px 15px;
    font-size: 1.25rem;
}

input[type=number] {
    width: 100px;
}

.data-table input[type=text]:focus, .data-table input[type=password]:focus, .data-table select:focus, input[type=text]:focus, input[type=password]:focus, select:focus {
    border-color: #45af76;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.data-table input[type=text]:disabled, .data-table select:disabled, input[type=text]:disabled, select:disabled {
    background-color: rgb(240,240,240);
    cursor: not-allowed;
}

.data-table input[type=text]::selection, .data-table select::selection, input[type=text]::selection, input[type=password]::selection, select::selection {
    background-color: #45af76;
    color: white;
}

.filter-radio, .filter-checkbox {
    float: left;
    position: relative;
    margin-right: 40px;
}

    .filter-radio > div, .filter-checkbox > div {
        display: inline-block;
    }

    .filter-radio input[type=radio], .filter-checkbox input[type=checkbox] {
        width: 24px;
        height: 24px;
        margin: 0;
        position: absolute;
        cursor: pointer;
    }

.collapse-button {
    width: 100%;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    padding: 43px 50px;
    margin: 0 0 30px 0;
    transition: .2s all ease-in-out;
    line-height: 24px;
    vertical-align: middle;
    float: right;
    border-bottom: 1px solid rgba(255,255,255,.15);
    position: relative;
    text-align: right;
}

    .collapse-button:before {
        content: "";
        width: 36px;
        height: 36px;
        background: url(images/ic_close_white_24px.svg) no-repeat left center;
        background-origin: content-box;
        background-size: contain;
        opacity: .54;
        margin: auto;
        transition: .2s all ease-in-out;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
    }

    .collapse-button:hover {
        color: rgba(255,255,255,.75);
    }

        .collapse-button:hover:before {
            opacity: .75;
        }

.tip {
    min-width: 250px;
    max-width: 400px;
    text-align: center;
    position: absolute;
    color: white;
    background: #008ee5;
    border-radius: 100px;
    padding: 10px 20px 15px 20px;
    font-size: .9rem;
    font-weight: 400;
    transform: translate(0, 20%);
    z-index: 10;
    opacity: .95;
    box-shadow: 0 1px 5px rgba(0,0,0,.15), 0 0 25px rgba(0,0,0,.1);
    animation: Pop 1s infinite;
    animation-fill-mode: forwards;
    cursor: default;
    text-transform: none;
}

    .tip > span {
        display: inline;
        line-height: 16px;
        vertical-align: middle;
    }

    .tip:before {
        content: "";
        width: 10px;
        height: 10px;
        transform: rotate(45deg);
        top: -5px;
        left: 0;
        right: 0;
        margin: auto;
        background: #008ee5;
        display: block;
        position: absolute;
    }

    .tip:after {
        content: "";
        width: 16px;
        height: 16px;
        background: url(images/ic_close_white_24px.svg) no-repeat center center;
        background-size: 16px 16px;
        position: relative;
        display: inline-block;
        vertical-align: middle;
        margin-left: 5px;
        cursor: pointer;
    }

@keyframes Pop {
    0% {
        transform: translate(-25%, 20%);
    }

    50% {
        transform: translate(-25%, 30%);
    }

    100% {
        transform: translate(-25%, 20%);
    }
}

.upload-form-container {
    padding: 15px 60px;
}

    .upload-form-container input[type="file"] {
        position: absolute;
        opacity: 0;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        cursor: pointer;
    }

.upload-form-uploader {
    width: 300px;
    min-height: 80px;
    border: 3px solid rgba(0,0,0,.15);
    border-radius: 3px;
    position: relative;
    padding: 5px 10px 5px 50px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: .2s all ease-in-out;
    float: left;
    margin-right: 20px;
}

    .upload-form-uploader:hover {
        opacity: .7;
    }

    .upload-form-uploader:before {
        content: "";
        background: url(images/ic_attach_file_green_48px.svg) no-repeat center center;
        width: 48px;
        height: 48px;
        position: absolute;
        display: block;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .upload-form-uploader.dragover {
        border-color: rgba(69, 175, 118, 0.50);
        background-color: rgba(69, 175, 118, 0.25);
    }

    .upload-form-uploader.dropped {
        border-color: #45af76;
    }

#UploadImageContainer {
    border-top: 3px dashed rgba(0,0,0,.15);
    margin-top: 15px;
    padding-top: 15px;
    padding-bottom: 60px;
    float: left;
}

    #UploadImageContainer input[type=text] {
        width: 180px;
        margin: 25px 0;
    }

    #UploadImageContainer .img-container {
        float: left;
        width: 100px;
        height: 100px;
        margin-right: 20px;
        position: relative;
        overflow: hidden;
    }


    #UploadImageContainer img {
        max-height: 100px;
        max-width: 100px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
    }


    #UploadImageContainer > div:not(.btn) {
        width: 300px;
        height: 100px;
        float: left;
        margin-right: 30px;
        margin-bottom: 20px;
    }

    #UploadImageContainer > div:last-child:not(.btn) {
        margin-right: 0;
    }

    #UploadImageContainer > div.btn {
        position: absolute;
        bottom: 33px;
        left: 0;
        right: 0;
        width: 300px;
        margin: auto;
    }

#tarsitasButtons {
}

    #tarsitasButtons > input {
        margin-right: 10px;
    }

td.image_parent {
    font-size: 1rem;
}

    td.image_parent input {
        padding: 0;
        margin-right: 20px;
    }

.vizjel-container {
    width: 102px;
    height: 102px;
    border: 1px solid rgba(0,0,0,.25);
    border-radius: 2px;
    background-color: white;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

    .vizjel-container > img {
        position: absolute;
        margin: auto;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        max-width: 100px;
        max-height: 100px;
        z-index: 1;
    }

.form-group select {
    min-height: 32px;
    vertical-align: middle;
    margin-right: 15px;
}

.ui-datepicker {
    width: 300px;
    background: white;
    box-shadow: 0 1px 2px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1), 0 5px 15px rgba(0,0,0,.05);
    color: rgba(0,0,0,.54);
    padding: 15px;
    display: none;
}

.ui-datepicker-header {
    height: 50px;
    line-height: 50px;
    background: #45af76;
    color: white;
    padding: 5px 15px;
    margin: -15px -15px 0 -15px;
}

.ui-datepicker-prev, .ui-datepicker-next {
    color: white;
    width: 38px;
    height: 38px;
    background: transparent no-repeat center center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 2px;
}

    .ui-datepicker-prev:hover, .ui-datepicker-next:hover {
        border-color: rgba(255,255,255,.54);
    }

.ui-datepicker-prev {
    float: left;
    background-image: url(images/ic_arrow_left_white_24px.svg);
}

.ui-datepicker-next {
    float: right;
    background-image: url(images/ic_arrow_right_white_24px.svg);
}

.ui-datepicker-title {
    text-align: center;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 40px;
    height: 40px;
}

.ui-datepicker-calendar {
    width: 100%;
    margin: 0;
}

    .ui-datepicker-calendar td, .ui-datepicker-calendar th {
        width: 100px;
        text-align: center;
        font-weight: 700;
        height: 25px;
        line-height: 25px;
    }

    .ui-datepicker-calendar th {
        padding: 5px 0;
        border-bottom: 1px solid rgba(0,0,0,.1);
    }

    .ui-datepicker-calendar td {
    }

.ui-state-default {
    color: rgba(0,0,0,.54);
    text-decoration: none;
    border: 1px solid transparent;
    transition: .2s all ease-in-out;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    vertical-align: middle;
    text-align: right;
    padding: 0 5px;
}

    .ui-state-default:hover {
        color: #008ee5;
        text-decoration: none;
        border-color: rgba(0, 142, 229, 0.15);
    }

.ui-state-highlight {
    color: #45af76;
}

.ui-state-active {
    background: rgba(0, 142, 229, 0.15);
    border-color: rgba(0, 142, 229, 0.15);
    color: #008ee5;
}

.clear-datapicker {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 55px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(images/ic_close_red_24px.svg) no-repeat center center;
    cursor: pointer;
}

.img {
    width: 100px;
    height: 100px;
    box-shadow: 0 0 1px transparent;
    transition: .2s all ease-in-out;
}

    .img.loading {
        background: url(images/loading.gif) no-repeat center center;
        background-size: 30px 30px;
        box-shadow: 0 0 1px rgba(0, 142, 229, 0.25);
    }

.image_parent .ChangeButtons, .image_parent .AddButton {
    display: none;
}

    .image_parent .ChangeButtons.active, .image_parent .AddButton.active {
        display: flex;
        align-items: center;
    }

.active-gallery {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 500px;
    text-align: center;
    height: 110px;
    padding: 30px 0;
    font-size: 1.25rem;
}

    .active-gallery > span {
        font-size: 1rem;
        line-height: 50px;
        height: 50px;
        display: inline-block;
    }

    .active-gallery > div {
        line-height: 50px;
        height: 50px;
        background-color: #45af76;
        color: black;
        border-radius: 50px;
        display: inline-block;
        padding: 0 25px;
        margin-left: 10px;
    }

.nagykep {
    display: block;
    margin: 15px auto;
    min-width: 100px;
    min-height: 80px;
    max-width: 100%;
    max-height: calc(100vh - 350px);
    box-shadow: 0 2px 5px rgba(0,0,0,.25), 0 0 10px rgba(0,0,0,.2);
}

.letolt .selected {
    background-color: red;
}


.flexbox {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    margin-top: 15px;
    margin-bottom: 15px;
}

.flexbox > div {
    flex-grow: 1;
    flex-basis: 50%;
    margin-left: 15px;
    margin-right: 15px;
}

.flexbox h3 {
    padding: 5px;
    font-weight: 600;
}