/*!
 * Konferenz Guide CSS v1.0
 *
 * Copyright 2020 - Alexander Graesel 
 *
 * Date: 2020-01-02
 */

/* Farbschema */
.kg-primary {
    color: rgba(255, 0, 65, 1.0);
    fill: rgba(255, 0, 65, 1.0);
}

.kg-primary-stroke {
    stroke: rgba(255, 0, 65, 1.0);
}

.kg-primary-background {
    background-color: rgba(255, 0, 65, 1.0);
    color: white;
}

.kg-primary-light-background {
    background-color: rgba(255, 0, 65, 0.05);
}

.kg-grey {
    color: rgba(0, 0, 0, .54);
}

a,
div,
input,
textarea,
select,
html {
    color: #3c4043;
    font-family: Roboto, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: .2px;
}

body {
    /* fbfbfc oder f5f5f5 */
    background-color: #f5f5f5;
}

.body-background {
    background-color: #f5f5f5;
}

.kg-shadow {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

/* Tooltip */
.kg-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 2px dotted rgba(0, 0, 0, .54);
}

.kg-tooltip .kg-tooltip-text {
    background-color: rgba(0, 0, 0, .54);
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 4px;
    min-width: 104px;
    position: absolute;
    user-select: none;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -26px;
    visibility: hidden;
    opacity: 0;
}

.kg-tooltip .kg-tooltip-text::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -32px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, .54) transparent;
}

.kg-tooltip:hover .kg-tooltip-text {
    visibility: visible;
    opacity: 0.9;
}

/* Tooltip 2*/
.kg-tooltip .kg-tooltip-text2 {
    background-color: rgba(0, 0, 0, .54);
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 4px;
    min-width: 104px;
    position: absolute;
    user-select: none;
    z-index: 1;
    top: 150%;
    left: -150%;
    margin-left: -26px;
    visibility: hidden;
    opacity: 0;
}

.kg-tooltip .kg-tooltip-text2::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 100%;
    margin-left: -32px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, .54) transparent;
}

.kg-tooltip:hover .kg-tooltip-text2 {
    visibility: visible;
    opacity: 0.9;
}

/* Links */
.kg-link {
    user-select: none;
    cursor: pointer;
}

.kg-link .material-icons {
    color: rgba(0, 0, 0, .54);
}

.kg-link:hover:not([disabled]) .material-icons {
    color: rgba(255, 0, 65, 1.0);
}

.kg-link-circle {
    user-select: none;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.kg-link-circle .material-icons {
    color: rgba(0, 0, 0, .54);
}

.kg-link-circle:hover:not([disabled]) {
    background-color: #F1F1F1;
}

.kg-link-circle:hover:not([disabled]) .material-icons {
    color: #3c4043;
}


/* Buttons */
.kg-button {
    color: white;
    background-color: rgba(255, 0, 65, 1.0);
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    font-size: 14px;
    font-weight: 600;
    vertical-align: middle;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    border: 1px solid rgba(255, 0, 65, 1.0);
    border-radius: 4px;
    padding: 8px 16px;
    transition: 0.3s;
}

.kg-button:hover:not([disabled]) {
    box-shadow: 0 3px 4px -2px rgba(0, 0, 0, .4), 0 2px 4px 0 rgba(0, 0, 0, .32), 0 1px 10px 0 rgba(0, 0, 0, .24);
}

.kg-button:disabled {
    border: 1px solid rgba(0, 0, 0, .24);
    background-color: rgba(0, 0, 0, .54);
    cursor: auto;
    opacity: 0.3;
}

.kg-button-outlined {
    color: rgba(255, 0, 65, 1.0);
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    border: 1px solid rgba(255, 0, 65, 1.0);
    border-radius: 4px;
    padding: 8px 16px;
    transition: 0.3s;
}

.kg-button-outlined:hover:not([disabled]) {
    background-color: rgba(255, 0, 65, 0.05);
}

.kg-button-outlined:disabled {
    border: 1px solid rgba(0, 0, 0, .12);
    color: rgba(0, 0, 0, .12);
    cursor: auto;
}

.kg-button-text {
    color: rgba(255, 0, 65, 1.0);
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 8px 16px;
    transition: 0.3s;
}

.kg-button-text:hover:not([disabled]) {
    background-color: rgba(255, 0, 65, 0.05);
}

.kg-button-text:disabled {
    border: 1px solid transparent;
    color: rgba(0, 0, 0, .12);
    cursor: auto;
}

/* Tab */

.kg-Tab-bar {
    width: 100%;
    display: flex;
    align-items: stretch;
    align-content: center;
    justify-content: space-around;
}

@media (max-width:600px) {
    .kg-Tab-bar {
        flex-wrap: wrap;
    }
}

.kg-Tab {
    color: rgba(0, 0, 0, .54);
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    user-select: none;
    word-break: break-all;
    word-wrap: break-word;
    border: 3px solid transparent;
    padding: 16px;
    transition: 0.3s;
    width: 100%;
}

.kg-Tab:hover:not([disabled]) {
    background-color: rgba(255, 0, 65, 0.05);
}

.kg-Tab.active {
    color: rgba(255, 0, 65, 1.0);
    border-bottom: 3px solid rgba(255, 0, 65, 1.0);
    background-color: rgba(255, 0, 65, 0.05);
}

.kg-Tab-container {
    display: none;
    position: relative;
    animation: animateleft 0.3s
}

/* Input */

.kg-input-container {
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, .54);
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 30px;
    position: relative;
    background-color: transparent;
}

.kg-input-label {
    top: -8px;
    position: absolute;
    margin-left: 0px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 12px;
    user-select: none;
    background-color: white;

}

.kg-input {
    margin-left: 1px;
    padding-left: 4px;
    padding-right: 26px;
    background-color: transparent;
    border: none;
    outline: 0;
    width: 100%;
    font-size: 1rem;
}

.kg-input:invalid,
.kg-input:out-of-range {
    box-shadow: none;
}

.kg-input:disabled {
    background-color: transparent;
}

.kg-input-desc {
    font-size: 10px;
    padding-right: 26px;
    margin-bottom: 8px;
}

.kg-input-hint {
    position: absolute;
    bottom: -16px;
    margin-left: 6px;
    font-size: 10px;
    user-select: none;
}


.kg-input-icon {
    position: absolute;
    top: 14px;
    right: 0px;
    margin-right: 8px;
    color: #3c4043;
    font-size: 1rem;
    user-select: none;
}

.kg-input-count {
    position: absolute;
    bottom: -16px;
    right: 0px;
    margin-right: 8px;
    font-size: 10px;
    user-select: none;
}

/* modular */
.kg-modal {
    z-index: 5;
    display: none;
    padding-top: 100px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.54);
}

.kg-modal-content {
    margin: auto;
    position: relative;
    outline: 0;
    width: 90%;
    max-width: 1300px;
}

/* card */
.kg-card {
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.kg-card-title {
    margin-top: 0px;
}

/* Sidebar */
.kg-sidebar {
    display: none;
    height: 100%;
    position: fixed !important;
    z-index: 1;
    overflow: auto;
}

.kg-sidebar-item {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 8px;
    user-select: none;
    cursor: pointer;
    word-break: break-all;
    width: 95%;
    border-radius: 0 100px 100px 0;
}

.kg-sidebar-item .material-icons {
    display: inline-flex;
    vertical-align: text-bottom;
    font-size: 120%;
    margin: 0 16px;
    color: rgba(0, 0, 0, .54);

}

.kg-sidebar-item-second {
    display: none;
}

.kg-sidebar-item-second .kg-sidebar-item .material-icons {
    margin-left: 32px;
}

.kg-sidebar-item:hover {
    background-color: #F1F1F1;
}

.kg-sidebar-item:hover .material-icons {
    color: #3c4043;
}

.kg-sidebar-item-active {
    background-color: #F1F1F1;
    font-weight: 700;
}

.kg-topbar {
    background-color: white;
    font-size: 24px;
    z-index: 3;
    top: 0;
    width: 100%;
    padding: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kg-bottombar {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: white;
    z-index: 3;
    width: 100%;
    padding: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
}

.kg-bottombar .kg-link-circle {
    width: 20px;
    height: 20px;
}

.kg-bottombar .kg-link-circle .material-icons {
    font-size: 10px;
}

.kg-bottombar-center {
    position: fixed;
    bottom: 18px;
    left: calc(50% - 20px);
    margin: 0 auto;
    z-index: 3;
    background-color: rgba(255, 0, 65, 1.0);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.kg-bottombar-center.kg-link-circle .material-icons {
    color: white;
}

.kg-snackbar {
    display: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.54);
    text-align: center;
    position: fixed;
    bottom: 40px;
    max-width: 400px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    animation: animatebottom 0.3s;
    z-index: 10;
}

/* rating */
.kg-rating {
    border: none;
    float: left;
}

.kg-rating>input {
    display: none;
}

.kg-rating>label:before {
    margin: 5px;
    font-size: 1.8em;
    font-family: 'Material Icons', sans-serif;
    display: inline-block;
    content: "star";
    user-select: none;
    cursor: pointer;
}


.kg-rating>label {
    color: rgba(0, 0, 0, .54);
    float: right;
}

.kg-rating>input:checked~label,
.kg-rating:not(:checked)>label:hover,
.kg-rating:not(:checked)>label:hover~label {
    color: #ffb400;
    transform: scale(1.4);
}

.kg-rating>input:checked+label:hover,
.kg-rating>input:checked~label:hover,
.kg-rating>label:hover~input:checked~label,
.kg-rating>input:checked~label:hover~label {
    color: #ffb400;
}

/* radiobtn */
.kg-radio {
    margin: 16px 0;
}

.kg-radio.kg-radio-inline {
    display: inline-block;
}

.kg-radio input[type="radio"] {
    display: none;
}

.kg-radio input[type="radio"]:checked+label:before {
    border-color: rgba(255, 0, 65, 1.0);
}

.kg-radio input[type="radio"]:checked+label:after {
    transform: scale(1);
}

.kg-radio label {
    display: inline-block;
    min-height: 20px;
    position: relative;
    padding: 0 30px;
    margin-bottom: 0;
    cursor: pointer;
    vertical-align: bottom;
}

.kg-radio label:before,
.kg-radio label:after {
    position: absolute;
    content: '';
    border-radius: 50%;
    transition: all .3s ease;
    transition-property: transform, border-color;
}

.kg-radio label:before {
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.54);
}

.kg-radio label:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    transform: scale(0);
    background: rgba(255, 0, 65, 1.0);
}

.kg-radio input[type="radio"]:disabled+label:before {
    border-color: rgba(0, 0, 0, .12);
}

.kg-radio input[type="radio"]:disabled:checked+label:before {
    border-color: rgba(0, 0, 0, .12);
}

.kg-radio input[type="radio"]:disabled:checked+label:after {
    transform: scale(1);
    background: rgba(0, 0, 0, .12);
}

/* checkbox */

.kg-checkbox {
    position: relative;
    margin: 1em 0;
    text-align: left;
}

.kg-checkbox.kg-checkbox-inline {
    display: inline-block;
}

.kg-checkbox label {
    cursor: pointer;
    display: inline;
    line-height: 1.25em;
    vertical-align: top;
    clear: both;
    padding-left: 1px;
}

.kg-checkbox label:not(:empty) {
    padding-left: 0.75em;
}

.kg-checkbox label:before,
.kg-checkbox label:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.kg-checkbox label:before {
    width: 1.25em;
    height: 1.25em;
    background: #fff;
    border: 3px solid rgba(0, 0, 0, 0.54);
    border-radius: 0.125em;
    cursor: pointer;
}

.kg-checkbox input[type="checkbox"] {
    outline: 0;
    visibility: hidden;
    width: 1.25em;
    margin: 0;
    display: block;
    float: left;
    font-size: inherit;
}

.kg-checkbox input[type="checkbox"]:checked+label:before {
    background: rgba(255, 0, 65, 1.0);
    border: none;
}

.kg-checkbox input[type="checkbox"]:checked+label:after {
    transform: translate(0.25em, 0.3365384615em) rotate(-45deg);
    width: 0.75em;
    height: 0.375em;
    border: 0.125em solid #fff;
    border-top-style: none;
    border-right-style: none;
}

.kg-checkbox input[type="checkbox"]:disabled+label:before {
    border-color: rgba(0, 0, 0, .12);
}

.kg-checkbox input[type="checkbox"]:disabled:checked+label:before {
    background: rgba(0, 0, 0, .12);
}

/* switch */
.kg-switch-input {
    display: none;
}

.kg-switch-label {
    position: relative;
    display: inline-block;
    min-width: 112px;
    cursor: pointer;
    text-align: left;
    padding: 0px 0px 0px 44px;
}

.kg-switch-label:before,
.kg-switch-label:after {
    content: "";
    position: absolute;
    margin: 0;
    outline: 0;
    top: 50%;
    transform: translate(0, -50%);
    transition: all 0.3s ease;
}

.kg-switch-label:before {
    left: 1px;
    width: 34px;
    height: 14px;
    background-color: rgba(0, 0, 0, 0.54);
    border-radius: 8px;
}

.kg-switch-input:disabled+.kg-switch-label:before {
    background-color: rgba(0, 0, 0, .12);
}

.kg-switch-label:after {
    left: 0;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
}

.kg-switch-input:checked+.kg-switch-label:before {
    background-color: rgba(255, 0, 65, 1.0);
    opacity: 0.3;
}

.kg-switch-input:checked+.kg-switch-label:after {
    background-color: rgba(255, 0, 65, 1.0);
    transform: translate(80%, -50%);
}

.kg-switch-input:disabled:checked+.kg-switch-label:before {
    background-color: rgba(0, 0, 0, .12);
    opacity: 0.3;
}

.kg-switch-input:disabled:checked+.kg-switch-label:after {
    background-color: rgba(0, 0, 0, .24);
    transform: translate(80%, -50%);
}

/* Stepper */

.kg-stepper-horizontal {
    display: table;
    width: 100%;
    margin: 0 auto;
}

.kg-stepper-horizontal .kg-step {
    display: table-cell;
    position: relative;
    padding: 18px 0px;
}

.kg-stepper-horizontal .kg-step:first-child .kg-step-bar-left,
.kg-stepper-horizontal .kg-step:last-child .kg-step-bar-right {
    display: none;
}

.kg-stepper-horizontal .kg-step .kg-step-circle {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, .24);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.kg-stepper-horizontal .kg-step.active .kg-step-circle {
    background-color: rgba(255, 0, 65, 1.0);
}

.kg-stepper-horizontal .kg-step.done .kg-step-circle:before {
    font-family: 'Material Icons', sans-serif;
    font-weight: 100;
    content: "done";
}

.kg-stepper-horizontal .kg-step.done .kg-step-circle *,
.kg-stepper-horizontal .kg-step.editable .kg-step-circle * {
    display: none;
}

.kg-stepper-horizontal .kg-step.editable .kg-step-circle {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.kg-stepper-horizontal .kg-step .kg-step-title {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
}

.kg-stepper-horizontal .kg-step .kg-step-title,
.kg-stepper-horizontal .kg-step .kg-step-optional {
    text-align: center;
    color: rgba(0, 0, 0, .26);
}

.kg-stepper-horizontal .kg-step.active .kg-step-title {
    font-weight: 600;
    color: #3c4043;
}

.kg-stepper-horizontal .kg-step.active.done .kg-step-title,
.kg-stepper-horizontal .kg-step.active.editable .kg-step-title {
    font-weight: 600;
}

.kg-stepper-horizontal .kg-step .kg-step-optional {
    font-size: 12px;
}

.kg-stepper-horizontal .kg-step.active .kg-step-optional {
    color: rgba(0, 0, 0, .54);
}

.kg-stepper-horizontal .kg-step .kg-step-bar-left,
.kg-stepper-horizontal .kg-step .kg-step-bar-right {
    position: absolute;
    top: 36px;
    height: 1px;
    border-top: 1px solid rgba(0, 0, 0, .12);
}

.kg-stepper-horizontal .kg-step .kg-step-bar-right {
    right: 0;
    left: 50%;
    margin-left: 20px;
}

.kg-stepper-horizontal .kg-step .kg-step-bar-left {
    left: 0;
    right: 50%;
    margin-right: 20px;
}

/* Tabelle */

.kg-table {
    position: relative;
    border: 1px solid rgba(0, 0, 0, .12);
    background-color: transparent;
    border-collapse: collapse;
    width: 100%;
    word-break: break-all;
    word-wrap: break-word;
    vertical-align: middle;
}

.kg-table thead {
    padding-bottom: 4px;
}

.kg-table th {
    position: relative;
    text-align: left;
    vertical-align: bottom;
    text-overflow: ellipsis;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    height: 48px;
    padding: 0 18px 12px 18px;
}

.kg-table tbody tr {
    position: relative;
    height: 48px;
}


.kg-table tbody tr:hover {
    background-color: #F1F1F1;
}

.kg-table td {
    position: relative;
    height: 48px;
    border-top: 1px solid rgba(0, 0, 0, .12);
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    padding: 12px 18px;
}

footer {
    padding-top: 32px;
    color: rgba(0, 0, 0, .54);
    text-align: center;
}

footer .material-icons {
    vertical-align: middle;
}

footer a {
    color: rgba(0, 0, 0, .54);
}
