﻿/*
    ibsFloatingLabels
*/
/*body
{
    font-size: 12px !important;
}*/

.valerr {
    border-bottom: 2px solid red !important;
}

.float-label-control {
    position: relative;
    margin-bottom: 3em;
}

    .float-label-control.smaller {
        margin-bottom: 1.5em;
    }

    .float-label-control ::-webkit-input-placeholder {
        color: transparent;
    }

    .float-label-control :-moz-placeholder {
        color: transparent;
    }

    .float-label-control ::-moz-placeholder {
        color: transparent;
    }

    .float-label-control :-ms-input-placeholder {
        color: transparent;
    }

    .float-label-control input:-webkit-autofill,
    .float-label-control textarea:-webkit-autofill {
        /*background-color: transparent !important;
        -moz-box-shadow: 0 0 0 1000px white inset !important;
        -webkit-box-shadow: 0 0 0 1000px white inset !important;
        box-shadow: 0 0 0 1000px white inset !important;*/
    }

    .float-label-control input, .float-label-control textarea, .float-label-control label {
        font-size: 1.3em;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        /*border:none;*/
    }

    .float-label-control.smaller input,
    .float-label-control.smaller textarea,
    .float-label-control.smaller label {
        font-size: 1.0em !important;
    }

    .float-label-control input:focus,
    .float-label-control textarea:focus {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-bottom-width: 2px;
        padding-bottom: 0;
        border-bottom-color: var(--accentcolor); /*#0088cc;*/
        -moz-transition: border-bottom-color ease-in-out 0.3s;
        -o-transition: border-bottom-color ease-in-out 0.3s;
        -webkit-transition: border-bottom-color ease-in-out 0.3s;
        transition: border-bottom-color ease-in-out 0.3s;
        z-index: 2;
    }

    .float-label-control textarea:focus {
        padding-bottom: 4px;
    }

    .float-label-control input, .float-label-control textarea {
        /*background: transparent !important;*/
        display: block;
        width: 100%;
        padding: 0.1em 0em 1px 0em;
        border: none;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        border-radius: 0px;
        border-bottom: 1px solid #aaa;
        outline: none;
        margin: 0px;
        height: 2.1em !important;
        -moz-transition: border-bottom-color ease-in-out 0.3s;
        -o-transition: border-bottom-color ease-in-out 0.3s;
        -webkit-transition: border-bottom-color ease-in-out 0.3s;
        transition: border-bottom-color ease-in-out 0.3s;
    }

    .float-label-control textarea {
        padding: 0.1em 0em 5px 0em;
    }

    .float-label-control label {
        position: absolute;
        margin-top: unset;
        width: auto;
        font-weight: normal;
        top: -1.5em;
        left: 0.08em;
        color: #555;
        opacity: 1;
        font-size: 0.85em;
        -moz-animation: float-labels 300ms none ease-out;
        -webkit-animation: float-labels 300ms none ease-out;
        -o-animation: float-labels 300ms none ease-out;
        -khtml-animation: float-labels 300ms none ease-out;
        animation: float-labels 300ms none ease-out; /* There is a bug sometimes pausing the animation. This avoids that. */
        -moz-animation-play-state: running !important;
        -o-animation-play-state: running !important;
        -webkit-animation-play-state: running !important;
        animation-play-state: running !important;
    }

        .float-label-control label.f12 {
            font-size: 12px !important;
        }

div.ibsdate-block .float-label-control label {
    top: -1em;
}

.float-label-control.disabled input {
    background-color: #fff;
}

.float-label-control input.floatempty {
    /*background-color:transparent !important;*/
}

    .float-label-control input.floatempty ~ label,
    .float-label-control textarea.floatempty ~ label,
    .float-label-control div.emptyDatePicker ~ label,
    .float-label-control div.form-label-block input.floatempty ~ label {
        top: 0.2em;
        font-size: 1.5em;
        -moz-animation: none;
        -o-animation: none;
        -webkit-animation: none;
        animation: none;
        color: #aaa !important;
    }

    .float-label-control input.floatempty ~ label,
    .float-label-control div.form-label-block input.floatempty ~ label {
        top: -0.2em;
    }

div.ibsdate-block .float-label-control input.floatempty ~ label {
    font-size: 1em;
    top: 0.2em;
}

.float-label-control div.emptyDatePicker ~ label {
    top: -0.1em;
}

.float-label-control input:not(.floatempty) ~ label,
.float-label-control textarea:not(.floatempty) ~ label {
    z-index: 1;
}

.float-label-control input:not(.floatempty):focus ~ label,
.float-label-control textarea:not(.floatempty):focus ~ label {
    color: #4a708b;
}

.float-label-control.label-bottom label {
    -moz-animation: float-labels-bottom 300ms none ease-out;
    -webkit-animation: float-labels-bottom 300ms none ease-out;
    -o-animation: float-labels-bottom 300ms none ease-out;
    -khtml-animation: float-labels-bottom 300ms none ease-out;
    animation: float-labels-bottom 300ms none ease-out;
}

.float-label-control.label-bottom input:not(.floatempty) ~ label,
.float-label-control.label-bottom textarea:not(.floatempty) ~ label {
    top: 3em;
}

.form-group.smaller {
    width: 300px;
}

.form-group.float-label-control.smaller .red {
    font-size: 12px;
}

@-moz-keyframes float-labels {
    0% {
        opacity: 1;
        color: #aaa;
        top: 0.1em;
        font-size: 1.5em;
    }

    20% {
        font-size: 1.5em;
        opacity: 0;
    }

    30% {
        top: 0.1em;
    }

    50% {
        opacity: 0;
        font-size: 0.85em;
    }

    100% {
        top: -1em;
        opacity: 1;
    }
}

@-ms-keyframes float-labels {
    0% {
        opacity: 1;
        color: #aaa;
        top: 0.1em;
        font-size: 1.5em;
    }

    20% {
        font-size: 1.5em;
        opacity: 0;
    }

    30% {
        top: 0.1em;
    }

    50% {
        opacity: 0;
        font-size: 0.85em;
    }

    100% {
        top: -1em;
        opacity: 1;
    }
}

@keyframes float-labels {
    0% {
        opacity: 1;
        color: #aaa;
        top: 0.1em;
        font-size: 1.5em;
    }

    20% {
        font-size: 1.5em;
        opacity: 0;
    }

    30% {
        top: 0.1em;
    }

    50% {
        opacity: 0;
        font-size: 0.85em;
    }

    100% {
        top: -1em;
        opacity: 1;
    }
}

@-webkit-keyframes float-labels {
    0% {
        opacity: 1;
        color: #aaa;
        top: 0.1em;
        font-size: 1.5em;
    }

    20% {
        font-size: 1.5em;
        opacity: 0;
    }

    30% {
        top: 0.1em;
    }

    50% {
        opacity: 0;
        font-size: 0.85em;
    }

    100% {
        top: -1em;
        opacity: 1;
    }
}

@keyframes float-labels-bottom {
    0% {
        opacity: 1;
        color: #aaa;
        top: 0.1em;
        font-size: 1.5em;
    }

    20% {
        font-size: 1.5em;
        opacity: 0;
    }

    30% {
        top: 0.1em;
    }

    50% {
        opacity: 0;
        font-size: 0.85em;
    }

    100% {
        top: 3em;
        opacity: 1;
    }
}

@-webkit-keyframes float-labels-bottom {
    0% {
        opacity: 1;
        color: #aaa;
        top: 0.1em;
        font-size: 1.5em;
    }

    20% {
        font-size: 1.5em;
        opacity: 0;
    }

    30% {
        top: 0.1em;
    }

    50% {
        opacity: 0;
        font-size: 0.85em;
    }

    100% {
        top: 3em;
        opacity: 1;
    }
}

/* BOTTOM BARS ================================= */
.bar {
    position: relative;
    display: block;
    width: 100%;
}

    .bar:before, .bar:after {
        content: '';
        height: 3px;
        width: 0;
        bottom: 0px;
        position: absolute;
        background: var(--accentcolor); /*#0088cc;*/
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
        -o-transition: 0.2s ease all;
        transition: 0.2s ease all;
    }

    .bar:before {
        left: 50%;
    }

    .bar:after {
        right: 50%;
    }

    /* active state */
    input:focus ~ .bar:before, input:focus ~ .bar:after,
    .bar.barfocused:before,
    .bar.barfocused:after,
    .ibsdatecontrol.simplebar.focused .bar:before,
    .ibsdatecontrol.simplebar.focused .bar:after {
        width: 50%;
    }

.ibsdatecontrol.showDateError .bar {
    background-color: red;
    height: 2px;
}

/*       ToolTip     */
.form-tooltip {
    display: none;
    cursor: help;
    background-color: #ffffff;
    border: 1px solid #ccc;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
    color: #000;
    font-size: 0.9em;
    left: 103%;
    opacity: 0;
    padding: 15px;
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 250px;
    z-index: 100;
}

.ibsdatecontrol .form-tooltip {
    top: 31%;
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    left: 93%;
}

.ibsdatecontrol.focused .form-tooltip,
:focus ~ .form-tooltip {
    display: block;
    opacity: 1;
}


.form-tooltip:before {
    border-right: 8px solid #ccc;
    right: calc(100% + 1px);
}

.form-tooltip:before,
.form-tooltip:after {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent #ccc transparent transparent;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: calc(100% + 1px);
    position: absolute;
}

.form-tooltip:after {
    border-right: 8px solid #ffffff;
    right: 100%;
}

@media (max-width: 980px) {
    .ibsdatecontrol .form-tooltip {
        top: 31%;
        display: inline-block;
        left: 0;
    }

    .form-tooltip {
        border: none;
        left: 0;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        position: relative;
        top: 1em;
        width: 100%;
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
        /*padding: 0;*/
    }

        .form-tooltip:before,
        .form-tooltip:after {
            border: none;
        }
}
/* REGISTER-BUTTON */
.circle-next-arrow::before,
.circle-next-arrow1 {
    height: 18px;
    left: 28%;
    width: 18px;
    z-index: 1;
}

.circle-next-arrow1,
.circle-next-arrow2 {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    content: "";
    margin-top: -3px;
    position: absolute;
    top: 50%;
    -moz-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    -o-transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    -moz-transition: opacity 0.3s ease-out 0s;
    -o-transition: opacity 0.3s ease-out 0s;
    -webkit-transition: opacity 0.3s ease-out 0s;
    transition: opacity 0.3s ease-out 0s;
}

.circle-next-arrow2 {
    height: 13px;
    left: 22%;
    opacity: 0.6;
    width: 13px;
}

.circle-prev-arrow1 {
    height: 18px;
    left: 25%;
    width: 18px;
    z-index: 1;
}

.circle-prev-arrow1, .circle-prev-arrow2 {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: "";
    margin-top: -3px;
    position: absolute;
    top: 50%;
    -moz-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    -o-transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    -moz-transition: opacity 0.3s ease-out 0s;
    -o-transition: opacity 0.3s ease-out 0s;
    -webkit-transition: opacity 0.3s ease-out 0s;
    transition: opacity 0.3s ease-out 0s;
}

.circle-prev-arrow2 {
    height: 13px;
    left: 45%;
    opacity: 0.6;
    width: 13px;
}

.onborder-right {
    bottom: -34px;
    position: absolute !important;
    right: 35px;
}

.onborder-left {
    bottom: -34px;
    position: absolute !important;
    left: 35px;
}

.circle-btn {
    /*background-color: #152437;*/
    background-color: rgb(187,159,97);
    /*background: linear-gradient(to right bottom, #7db9e8 20%, #152437 100%) repeat scroll 0 0 !important;*/
    background: linear-gradient(to right bottom, #d5c189 20%, rgb(187,159,97) 100%) repeat scroll 0 0 !important;
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: inline-block;
    height: 70px !important;
    position: relative;
    text-align: center;
    -moz-transition: opacity 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s;
    -o-transition: opacity 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s;
    -webkit-transition: opacity 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s;
    transition: opacity 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s;
    width: 70px;
    border: medium none;
}

.RadButton_Default.rbSkinnedButton, .RadButton_Default .rbDecorated,
.RadButton_Default.rbVerticalButton, .RadButton_Default.rbVerticalButton .rbDecorated, .RadButton_Default .rbSplitRight, .RadButton_Default .rbSplitLeft {
    background-image: none !important;
}

.circle-btn:hover:not(:disabled) .circle-next-arrow2,
.circle-btn:hover:not(:disabled) .circle-prev-arrow2 {
    opacity: 1;
}

.circle-btn:hover:not(:disabled) {
    /*background: rgba(0, 0, 0, 0) linear-gradient(to right bottom,#152437 20%, #7db9e8 100%) repeat scroll 0 0 !important;*/
    background: rgba(0, 0, 0, 0) linear-gradient(to right bottom,rgb(187,159,97) 20%, #d5c189 100%) repeat scroll 0 0 !important;
    -moz-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.3);
}
/* Button blue-Gradient */
.blue-btn {
    /*background-color: #152437;*/
    background-color: rgb(187,159,97);
    /*background: rgba(0, 0, 0, 0) linear-gradient(to right bottom, #7db9e8 20%, #152437 100%) repeat scroll 0 0 !important;*/
    background: rgba(0, 0, 0, 0) linear-gradient(to right bottom, #d5c189 20%, rgb(187,159,97) 100%) repeat scroll 0 0 !important;
    border: medium none;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    padding: 10px 30px;
    position: relative;
    /*text-align: center;*/
    -moz-transition: opacity 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s;
    -o-transition: opacity 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s;
    -webkit-transition: opacity 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s;
    transition: opacity 0.2s ease 0s, border-color 0.2s ease 0s, box-shadow 0.2s ease 0s, color 0.2s ease 0s, background-color 0.2s ease 0s;
}

    .blue-btn[disabled=disabled]:hover {
        cursor: not-allowed;
    }

    .blue-btn:hover:not([disabled=disabled]),
    .blue-btn:active {
        /*background: rgba(0, 0, 0, 0) linear-gradient(to right bottom,#152437 20%, #7db9e8 100%) repeat scroll 0 0 !important;*/
        background: rgba(0, 0, 0, 0) linear-gradient(to right bottom,rgb(187,159,97) 20%, #d5c189 100%) repeat scroll 0 0 !important;
        font-weight: bold;
        color: #fff;
        outline: none;
    }
/* ON / OFF-Swich */
.onoffswitch {
    position: relative;
    width: 40px;
    /*-webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;*/
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 16px;
    padding: 0;
    line-height: 16px;
    border: 0px solid #CCCCCC;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    background-color: #FF0000;
    float: none !important;
}

    .onoffswitch-label:before {
        content: "";
        display: block;
        width: 25px;
        height: 25px;
        margin: -4.5px;
        background: #fff;
        position: absolute;
        top: 0;
        bottom: 0;
        border: 1px solid #CCCCCC;
        /*right: 40px;*/
        -moz-border-radius: 25px;
        -webkit-border-radius: 25px;
        border-radius: 25px;
        -moz-box-shadow: 0 3px 8px 0px #ccc;
        -webkit-box-shadow: 0 3px 8px 0px #ccc;
        box-shadow: 0 3px 8px 0px #ccc;
    }

.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: #49E845;
}


    .onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
        border-color: #49E845;
    }


        .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
            margin-left: 0;
        }

        .onoffswitch-checkbox:checked + .onoffswitch-label:before {
            right: 0px;
            background-color: #fff;
            border: 1px solid #CCCCCC;
            -moz-box-shadow: 0px 3px 8px 0px #ccc;
            -webkit-box-shadow: 0px 3px 8px 0px #ccc;
            box-shadow: 0px 3px 8px 0px #ccc;
        }

/*      IBS-DateControl mit FloatingLabel - CSS         */
.ibsdatecontrol {
    color: #aaaaaa;
    /*border-bottom:1px solid #aaa;*/
}

.form-group.ibsdatecontrol {
    margin-bottom: 30px;
}

.date-title {
    float: left;
    margin-top: 4px;
    font-size: 1.5em;
}

.date-block {
    float: right;
}

    .date-block .date-culture,
    .ibsdate-block .date-culture {
        width: 100px;
        float: left;
    }
    .date-block .date-year,
    .ibsdate-block .date-year {
        width: 60px;
        float: left;
    }

    .date-block .date-month,
    .ibsdate-block .date-month {
        width: 40px;
        float: left;
    }

    .date-block .date-day,
    .ibsdate-block .date-day {
        width: 40px;
        float: left;
    }

    .date-block .float-label-control input {
        border: none;
    }

    .date-block .float-label-control {
        margin-bottom: unset;
    }

.date-divider {
    float: left;
    margin: 0px 5px;
}

.ibsdatecontrol .bar {
    height: 1px;
    background-color: #aaa;
    top: 38px;
}

#lblDateTitle:hover {
    cursor: default;
}

.ibsdateerror {
    color: red;
    float: left;
    margin-top: 5px;
    width: 100%;
    display: none;
}

.ibsdatecontrol.showDateError .ibsdateerror {
    display: block;
}

.ibsdate-block .float-label-control {
    float: left;
    margin-bottom: 5px;
}

    .ibsdate-block .float-label-control input {
        font-size: 1.3em !important;
        border: none;
    }

.ibsdate-block.ibsdateerror {
    /*float: none;*/
    position: relative;
    top: -20px;
    font-size: 14px;
    margin-left: 150px;
}

li .ibsdatecontrol {
    margin-bottom: 30px;
}

    li .ibsdatecontrol.showDateError {
        margin-bottom: 0px;
    }

.ibsdatecontrol.simplebar .bar {
    top: -12px;
}
