/*
    Using Elegant Icon Font
    https://www.elegantthemes.com/blog/resources/elegant-icon-font
    under 
    https://opensource.org/licenses/MIT 
*/

@font-face {
    font-family: 'ElegantIcons';
    src: url('fonts/ElegantIcons.eot');
    src: url('fonts/ElegantIcons.eot?#iefix') format('embedded-opentype'),
        url('fonts/ElegantIcons.woff') format('woff'),
        url('fonts/ElegantIcons.ttf') format('truetype'),
        url('fonts/ElegantIcons.svg#ElegantIcons') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
    font-family: 'ElegantIcons';
    content: attr(data-icon);
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.gpr-header {
    overflow: hidden;
    position: fixed;
    /* Set the navbar to fixed position */
    top: 0;
    /* Position the navbar at the top of the page */
    width: 100%;
    /* Full width */
    z-index: 100;
}

.gpr-footer {
    overflow: hidden;
    position: fixed;
    /* Set the navbar to fixed position */
    bottom: 0;
    /* Position the navbar at the top of the page */
    width: 100%;
    /* Full width */
    z-index: 100;
}

.gpr-header-spacer {
    margin-top: 56px;
    /* Add a top margin to avoid content overlay */
}

.gpr-footer-spacer {
    margin-top: 65px;
    /* Add a top margin to avoid content overlay */
}

.gpr-page-top {
    margin-top: 5px;
}

.gpr-padding-top {
    padding-top: 10px;
}

.gpr-padding-botton {
    padding-bottom: 10px;
}

.gpr-sec {
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.gpr-80-L {
    box-sizing: border-box;
    width: 80%;
    float: left;
    border: 1px solid red;
}


.gpr-20-R {
    box-sizing: border-box;
    width: 20%;
    float: right;
    border: 1px solid red;
}

.gpr-center {
    /*box-sizing: border-box;*/
    width: 100%;
    /*vertical-align: middle;*/
    /*border: 1px solid red;*/
}

.gpr-vc {
    /*align-items: center;*/
    vertical-align: -20%;
    height: 20px;
}

.form-control-disabled {
    background-color: #e9ecef;
    opacity: 1;
}




/* 
fancy checkboxes:
https://codepen.io/bbodine1/pen/novBm 
*/


/*
 following https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_custom_checkbox 
 */


/* The container 
.x-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
*/

/* Hide the browser's default checkbox 
.x-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
*/

/* Create a custom checkbox 
.x-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
*/

/* On mouse-over, add a grey background color 
.x-container:hover input ~ .x-checkmark {
    background-color: #ccc;
}
*/

/* When the checkbox is checked, add a blue background 
.x-container input:checked ~ .x-checkmark {
    background-color: #2196F3;
}
*/

/* Create the checkmark/indicator (hidden when not checked) 
.x-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
*/

/* Show the checkmark when checked 
.x-container input:checked ~ .x-checkmark:after {
    display: block;
}
*/

/* Style the checkmark/indicator 
.x-container .x-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
*/

/*
       
        <label class="x-container">Three
            <input type="checkbox">
            <span class="x-checkmark"></span>
        </label>

*/


.hinweis {
    padding: 2px;
    vertical-align: top;
}



.hiddenUntilReady {
    visibility: hidden;
}


.hinweise {
    color: gray;
}


.cake {
    padding-right: 5px;
    vertical-align: top;
}




.karussell {
    border-radius: 25px;
}

/*
Source of the following: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_switch
*/

.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
    margin-bottom: 0rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: #6c757d;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #ffc107;
}

/*
  input:focus + .slider {
    box-shadow: 0 0 1px #ffc107;
  }
  */

input:checked+.slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 13px;
}

.slider.round:before {
    border-radius: 50%;
}

.kopf {
    background-color: #e9ecef;
    margin-bottom: 1rem;
}