:root {
    --main-bg-color: #55ACEE; /* #ff1005 (rot) #ff7f07 (orange) #55ACEE (blau) */
    --border-radius-big: 36px;
}

body {
    font-family: 'Open Sans',sans-serif;
}

.hidden {
    display: none !important;
}

input, select, textarea, label {
    margin-bottom: 0;
    margin-right: 5px;
}

a {
    text-decoration: none;
    color: inherit;
}

    a:active, a:hover {
        color: var(--main-bg-color);
    }

label {
    font-weight: 700;
}

.navbar.fixed-menu {
    background-color: var(--main-bg-color) !important;
}

.section {
    min-height: calc(100vh - 90px);
}

.nav-item {
    line-height: 15px;
}

.bg-overlay {
    position: relative;
}

    .bg-overlay::before {
        content: "";
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, .4);
    }

.button-go {
    display: flex;
    justify-content: center;
    padding-bottom: 5%;
}

    .button-go a {
        border: 2px solid white;
        border-radius: var(--border-radius-big);
        padding: 6px 15px 6px 15px;
        font-family: 'Montserrat', sans-serif;
        color: white;
        font-size: 24px;
        text-decoration: none;
        margin: 5px;
    }

@media screen and (max-width: 640px) {
    .button-go a {
        font-size: 20px;
    }
}

.control-label {
    font-family: 'Montserrat', sans-serif;
}

.here-input {
    /*	border: 1px solid;*/
    /*border-color: ... !important; */
    /*    border-radius: var(--border-radius-big);*/
    /*margin-bottom: 10px;*/
    /*	padding-left: 5px !important;*/
    width: 100% !important;
}

.message-info,
.message-error {
    padding: 0 20px;
    margin: 0;
}

.host navbar {
    background-color: var(--main-bg-color) !important;
}

/* Positions */
.section-text {
    margin-top: 15%;
}

#register .section-text {
    margin-top: 50px;
}

.header-text p {
    opacity: 1;
}

    .header-text p + p {
        margin-top: -20px;
    }

/* Heading Lines */

/* Allgemein */
.center-all {
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
}

h5:not(.modal-title) {
    font-family: 'Open Sans',sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--main-bg-color);
    margin-top: 26px;
}

@media screen and (max-width: 960px) {
    .services h5 {
        font-size: 16px;
    }
}

.main-heading {
    font-family: 'Open Sans',sans-serif;
    font-weight: 800;
    font-size: 50px;
    color: white;
}

@media screen and (max-width: 960px) {
    .main-heading {
        font-size: 34px;
    }
}

.header-text {
    text-align: center;
}

/*@media screen and (max-width: 960px) {
    .header-text {
        margin-top: 50%;
    }
}*/

.sub-heading {
    color: white;
    font-size: 25px;
    line-height: normal;
    opacity: 1;
}

@media screen and (max-width: 960px) {
    .sub-heading {
        font-size: 16px;
    }
}

/* Spinner */
.loading-spinner .spinner-border {
    color: white;
    position: absolute;
    z-index: 2;
}

.loading-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    align-items: center;
    justify-content: center;
    display: flex;
}

    .loading-spinner.bg-overlay::before {
        z-index: 1;
    }

.register-form .loading-spinner::before,
.modal-content .loading-spinner::before {
    border-radius: var(--border-radius-big);
}

/* Logo */

.logo img {
    height: 35px;
}

@media screen and (max-width: 960px) {
    .logo img {
        height: 30px;
    }
}

.header-text {
    padding: 0 20px;
    margin-top: 0 !important;
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-full-height {
    height: calc(100vh - 89px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (min-width: 960px) {
    .section-full-height {
        padding: 0 20%;
    }
}

/* Header */
#bg-header .bg-header {
    background-image: linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)), url(../img/bg_header.jpg);
    background-size: cover;
    background-position: bottom center;
    margin-bottom: 0px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.bg-header .main-heading {
    font-family: 'Open Sans',sans-serif;
    font-weight: 800;
    font-size: 50px;
}

@media screen and (max-width: 960px) {
    .bg-header .main-heading {
        font-size: 34px;
    }
}

.bg-header .sub-heading {
    font-size: 25px;
    line-height: normal;
}

@media screen and (max-width: 960px) {
    .bg-header .sub-heading {
        font-size: 16px;
    }
}

/* Problem */
#problem {
    background-image: linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)), url("../img/bg_problem.jpg");
    background-position: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*@media screen and (max-width: 767px) {
    #problem {
        height: 100vh;
    }
}*/

/* Solution */

#solution {
    background-image: linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)), url("../img/bg_solution.jpg");
    background-position: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Price */

#price {
    background-color: #f2f2f2;
}


    #price .main-heading,
    #price .sub-heading,
    #price .button-go a {
        color: #2b2b2b;
        border-color: #2b2b2b;
    }

    #price .sub-heading {
        margin: 0;
        text-align: center;
    }

    #price .price-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        #price .price-content h5 {
            font-size: 20px;
            text-align: center;
        }

/* Register / login */
#register {
    /*    background-image: linear-gradient( 135deg, rgb(249, 119, 148) 0%, rgb(98, 58, 162) 100%);*/
    background-image: linear-gradient( 135deg, rgb(255, 175, 75) 0%, rgb(244, 156, 85) 100%);
}

#register-guest {
    background-image: linear-gradient( 135deg, rgb(249, 119, 148) 0%, rgb(98, 58, 162) 100%);
}

.register-form {
    width: 400px;
    height: fit-content;
    padding: 20px 0 0 0;
    border-radius: var(--border-radius-big);
    -webkit-box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    -moz-box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    background-color: #ffffff;
    position: relative;
}

.register-form .form-group,
.login-form .form-group {
    padding-left: 20px;
    padding-right: 20px;
}

.login-form .button-wrapper,
.register-form .button-wrapper,
.privacy-modal.button-wrapper {
    border-radius: 0 0 var(--border-radius-big) var(--border-radius-big);
}

.login-form .button-wrapper,
.register-form .button-wrapper,
.edit-form .button-wrapper,
.privacy-modal.button-wrapper {
    width: 100%;
    background-color: var(--main-bg-color);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .login-form .button-wrapper i,
    .register-form .button-wrapper i,
    .edit-form .button-wrapper i {
        font-size: 13px;
        color: white;
    }

.login-form button,
.register-form button,
.edit-form button,
.privacy-modal button {
    border: none;
    border-radius: 0;
    background-image: none !important;
    color: white !important;
    background-color: transparent !important;
    transition: .4s;
    box-shadow: none !important;
}

    .login-form button:hover,
    .register-form button:hover,
    .edit-form button:hover,
    .privacy-modal button:hover {
        transform: scale(1.2);
    }

    .login-form .k-button:before,
    .register-form .k-button:before,
    .edit-form .k-button:before,
    .privacy-modal button:before {
        background-color: transparent !important;
    }

.form-description {
    /*border-top: 1px solid black;
	border-bottom: 1px solid black;*/
    /*	color: white;*/
    background-color: #f1f1f1; /*var(--main-bg-color)*/
    font-size: 13px;
    padding: 20px 30px;
    line-height: 1.4;
    margin: 20px 0 0 0;
}

    .form-description a {
        color: var(--main-bg-color);
    }

        .form-description a:hover {
            text-decoration: underline;
        }

.stepIndexer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 40px;
}

    .stepIndexer .step {
        width: 80px;
        height: 70px;
        background-color: var(--main-bg-color);
        border-radius: 5px;
        align-items: center;
        display: flex;
        justify-content: center;
        background-color: #f1f1f1;
        align-items: center;
        flex-direction: column;
        padding-top: 10px;
    }

        .stepIndexer .step.active {
            background-color: var(--main-bg-color);
            color: white;
        }

        .stepIndexer .step span {
            font-size: 12px;
            font-family: 'Montserrat', sans-serif;
        }

        .stepIndexer .step i {
            font-size: 20px;
        }

/* Footer */
#footer {
    background-color: var(--main-bg-color) !important;
}

.footer-content {
    border: none;
}

f-sec2 li.footer_list {
    margin-top: 10px;
}

/*.footer, .footer .container {
	background-color: #000000;
}
*/
.footer {
    padding-top: 50px;
    padding-bottom: 80px;
}

    .footer .f-sec1 p {
        color: #888888;
        font-size: 14px;
        font-family: 'Open Sans', sans-serif;
        margin-top: 20px;
        margin-bottom: 5px;
    }

    .footer .f-sec1 a {
        text-decoration: none;
        color: #FFFFFF;
        font-size: 20px;
        font-family: 'Open Sans', sans-serif;
    }

    .footer h4 {
        color: white;
        font-size: 18px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 500;
        padding-top: 20px;
    }

    .footer .f-sec2 ul {
        margin-top: 10px;
        padding-left: 0px;
    }

        .footer .f-sec2 ul li {
            font-size: 15px;
            font-family: 'Montserrat', sans-serif;
            list-style: none;
            line-height: 2rem;
        }

            .footer .f-sec2 ul li a {
                text-decoration: none;
                color: white;
            }

                .footer .f-sec2 ul li a:hover i {
                    /*color: #f39c12;*/
                }

            .footer .f-sec2 ul li i {
                margin-right: 5px;
                /*color: #ffcc00;*/
            }

    .footer .f-sec3 .foot-tag-list {
        padding-top: 35px;
    }

        .footer .f-sec3 .foot-tag-list span {
            padding: 5px 20px;
            border: 1px solid #a9a9a9;
            margin-right: 5px;
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            color: #a9a9a9;
            cursor: pointer;
        }

    .footer .f-sec3 h4 {
        color: white;
        font-size: 18px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        padding-top: 20px;
    }

    .footer .f-sec3 .portfolio-foot {
        margin-top: 35px;
    }

    .footer .foot-2-sec form input {
        background-color: #3e3f41;
        border: solid 1px #3e3f41;
        width: 100%;
        margin-right: -30px;
        padding: 20px;
        padding-left: 30px;
        color: #ffcc00;
    }

        .footer .foot-2-sec form input:focus {
            outline: none;
        }

    .footer .foot-2-sec form button {
        color: white;
        background: -webkit-gradient(linear, left top, right top, from(#ffcc00), to(#ffb211));
        background: -o-linear-gradient(left, #ffcc00 0%, #ffb211 100%);
        background: linear-gradient(to right, #ffcc00 0%, #ffb211 100%);
        font-size: 13px;
        font-family: 'Montserrat', sans-serif;
        border: solid 1px #3e3f41;
        padding: 8px 40px 8px 40px;
        background-size: 300% 100%;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

        .footer .foot-2-sec form button:hover {
            background-position: 100% 0;
            -o-transition: all .4s ease-in-out;
            -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            background-image: -webkit-gradient(linear, left top, right top, from(#ffcc00), color-stop(#ffae12), color-stop(#ffcc00), to(#ff9310));
            background-image: -o-linear-gradient(left, #ffcc00, #ffae12, #ffcc00, #ff9310);
            background-image: linear-gradient(to right, #ffcc00, #ffae12, #ffcc00, #ff9310);
        }

        .footer .foot-2-sec form button:focus {
            outline: none;
        }

    .footer .foot-2-sec form input::-webkit-input-placeholder {
        padding-left: 5px;
    }

    .footer .foot-2-sec form input::-moz-placeholder {
        padding-left: 5px;
    }

    .footer .foot-2-sec form input:-ms-input-placeholder {
        padding-left: 5px;
    }

    .footer .foot-2-sec form input::-ms-input-placeholder {
        padding-left: 5px;
    }

    .footer .foot-2-sec form input::placeholder {
        padding-left: 5px;
    }

    .footer .footer-container {
        border-bottom: dashed 3px #565659;
        padding-bottom: 50px;
    }

.footer_notes p {
    padding-top: 50px;
    color: #888888;
}

@media screen and (max-width: 960px) {
    .footer #footer-info {
        font-size: 12px;
        line-height: 1.2;
    }
}

.footer .sub-heading a {
    color: white;
}

/* COOKIE COMPLIANCE */
.cookie-compliance {
    background-color: rgba(20,20,20,0.8);
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /*display: none;*/
    z-index: 9999;
}

    .cookie-compliance .close-button {
        position: absolute;
        right: 8px;
        font-size: 18px;
        cursor: pointer;
    }

        .cookie-compliance .close-button:hover {
            color: var(--main-bg-color);
        }

    .cookie-compliance a {
        color: var(--main-bg-color);
    }

/*.cookie-compliance a:hover {
            font-weight: 700;
        }*/

/* KENDO */
.k-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

    .k-button .k-sprite {
        font-size: 13px;
        line-height: 1;
        margin-top: 4px;
        margin-left: .1875em;
        margin-right: .1875em;
    }

    .k-button.button-icon-right {
        /* Icon nach Text */
        flex-direction: row-reverse;
        display: inline-flex !important;
    }

.k-timepicker {
    width: 100%;
}

.k-command-cell .k-button-icontext span,
.k-grid-toolbar .k-button i {
    margin-right: 10px;
    padding-bottom: 1px;
}

.k-command-cell .k-button {
    padding-left: 2px;
    padding-right: 2px;
}

.k-window-titlebar {
    background-color: var(--main-bg-color) !important;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

    .k-window-titlebar .k-icon {
        font-size: 20px;
    }

.k-upload-button span {
    white-space: normal;
}

.k-upload .k-dropzone {
    justify-content: center;
}

.k-tabstrip-wrapper {
    height: 100%;
    padding: 20px !important;
    -webkit-box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    -moz-box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    box-shadow: 11px 17px 33px -7px rgba(0,0,0,0.35);
    background-color: #ffffff;
}

.k-tabstrip > .k-content {
    height: calc(100% - 48px);
    overflow: hidden;
}


@media screen and (max-width: 960px) {
    .k-grid-excel, .k-grid-pdf, .hide-on-mobile {
        display: none;
    }
}

.k-grid-toolbar .k-widget {
    margin: 0 16px;
}


/* BOOTSTRAP */
.row {
    margin: 0;
}

@media (min-width: 992px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1044px) {
    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
}

#modal2 .modal-dialog {
    max-width: 800px;
}

.modal-content {
    border-radius: var(--border-radius-big);
}

    .modal-content > div {
        padding-left: 30px;
        padding-right: 30px;
    }

.modal-header {
    padding-top: 20px;
    border: none;
    border-radius: var(--border-radius-big) var(--border-radius-big) 0 0;
    background-color: var(--main-bg-color);
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.modal-body {
    justify-content: center;
}

.modal-footer {
    padding: 0 !important;
    border: none;
}

.input-validation-error,
.input-validation-error.k-textbox:hover,
.input-validation-error.k-textbox:focus {
    border-color: #dc3545;
    border-bottom-width: 2px;
}

.field-validation-error {
    display: none !important;
}

/* Template */

.navbar {
    padding: .5rem 1.5rem;
}

.navbar1 {
    overflow-x: auto;
    height: calc(100% - 60px);
}

@media screen and (max-width: 1200px) {
    .my-tog-btn {
        display: block;
    }
}

.outer-window .close-outerwindow {
    right: 4%;
}

.reset-password {
    text-transform: none;
    font-size: 12px;
    font-style: italic;
    transition: none !important;
    width: 100%;
    justify-content: flex-end;
    padding-right: 20px;
}

    .reset-password:hover {
        transform: none !important;
    }

/* Notifikation */
.k-notification-info-text {
    background: rgba(0,0,0,.5);
    color: #fff;
}

.notification-info-text {
    padding: 10px 10px;
}

    .notification-info-text #ico {
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;
    }
