
/* DEBUG*/
/* body {
    padding-top: 50px;
    font-size: 16px;
} */
/* DEBUG*/

/* Select */
/* ===== Horizontal Rule ===== */
.rule {
  margin: 10px 0;
  border: none;
  height: 1.5px;
  background-image: linear-gradient(left, #f0f0f0, #c9bbae, #f0f0f0);
}

/* ===== Select Box ===== */
.sel {
  font-size: 1rem;
  display: inline-block;
  /* margin: 3em 2em; */
  width: 100%;
  background-color: transparent;
  position: relative;
  cursor: pointer;
}

.sel::before {
    position: absolute;
    content: '\f063';
    font-family: 'FontAwesome';
    font-size: 16px;
    color: #ccc;
    right: 10px;
    top: calc(50% - 0.5em);
}

.sel.active::before {
  transform: rotateX(-180deg);
}

.sel__placeholder {
    display: block;
    font-size: 1.8rem;
    font-size: 16px;
    color: #000;
    padding: 0.2em 0.5em;
    text-align: left;
    pointer-events: none;
    user-select: none;
    visibility: visible;
}

.sel.active .sel__placeholder {
  visibility: hidden;
}

.sel__placeholder::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.2em 0.5em;
  content: attr(data-placeholder);
  visibility: hidden;
}

.sel.active .sel__placeholder::before {
  visibility: visible;
}

.sel__box {
    position: absolute;
    top: calc(100% + 2px);
    left: 0px;
    display: none;
    list-style-type: none;
    text-align: left;
    font-size: 1em;
    background-color: #FFF;
    width: calc(100% + 0px);
    box-sizing: border-box;
}

.sel.active .sel__box {
  display: block;
  animation: fadeInUp 500ms;
}

.sel__box__options {
    display: list-item;
    font-size: 1.5em;
    font-size: 16px;
    color: #000;
    padding: 0.5em 1em;
    user-select: none;
}

.sel__box__options::after {
  content: '\f00c';
  font-family: 'FontAwesome';
  font-size: 0.5em;
  margin-left: 5px;
  display: none;
}

.sel__box__options.selected::after {
  display: inline;
}

.sel__box__options:hover {
  background-color: #ebedef;
}

/* ----- Select Box Black Panther ----- */
.sel {
    border-bottom: 2px solid #ccc;
}

.sel__box.sel__box--black-panther {
    z-index: 1;
}
.sel--black-panther {
  /* z-index: 3; */
}

/* ----- Select Box Superman ----- */
.sel--superman {
/*   display: none; */
  /* z-index: 2; */
}

/* ===== Keyframes ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
/**/
.sel__box.sel__box--black-panther {
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
}
.sel__box__options.selected {
    background: #ebedef;
}

/* Input */
.inp {
  position: relative;
  margin: auto;
  width: 100%;
  /* min-width: 200px; */
  /* max-width: 280px; */
}
.inp .label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 16px;
  color: #9098a9;
  font-weight: 500;
  transform-origin: 0 0;
  transition: all 0.2s ease;
}
.inp .border {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #253e88;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: all 0.15s ease;
}
.inp input {
  -webkit-appearance: none;
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 12px 0;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid #c8ccd4;
  background: none;
  border-radius: 0;
  color: #223254;
  transition: all 0.15s ease;
/*
  background: #fff;
  z-index: 1;
  position: relative; */

}
.inp input:hover {
  /* background: rgba(34,50,84,0.03); */
}
.inp input:not(:placeholder-shown) + span {
    color: #777;
    transform: translateY(-26px) scale(0.75);
    font-style: italic;
}
.inp input:focus {
  background: none;
  outline: none;
}
.inp input:focus + span {
  color: #253e88;
  color: #777;
  font-style: italic;
  transform: translateY(-26px) scale(0.75);
}
.inp input:focus + span + .border {
  transform: scaleX(1);
}

/* Selec extra */
.question-point {
    font-size: 1rem;
    background: #aaa;
    padding: 6px 16px;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    vertical-align: bottom;
}
.question-point.active {
    background: #253e88;
}
.question-first .sel.sel--black-panther {
    width: calc(100% - 60px);
    margin-left: 10px;
}
.question-first .sel__placeholder {
    font-size: 19px;
}
.question-first .question-info {
    margin-left: 50px;
}
.question-info {
    color: #777;
    font-style: italic;
    font-size: 12px;
}
/* General */
.padding-top-20 {
    padding-top: 20px;
}
/* Select extra*/
.inp .sel__placeholder {
    padding: 12px 0;
    height: 46px;
    font-size: 16px;
}
.inp .question-info {
    position: absolute;
    top: -9px;
}
.sel.active {
    border-bottom: 2px solid #253e88;
}
.inp .sel__placeholder::before {
    position: absolute;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding: initial;
    content: attr(data-placeholder);
    visibility: hidden;
}
#online-terminvereinbarung .col-xs-12 .inp,
#online-terminvereinbarung .col-xs-12 label {
    margin-top: 20px;
}
#online-terminvereinbarung .hidden {
    display: none;
}
#online-terminvereinbarung {
    /* min-height: 323px; */
    /* padding-bottom: 207px; */
}
.appointment-type-inp {
    min-width: 200px;
}
.inp-disabled::after {
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    cursor: no-drop;
}
.col-animation {
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    opacity: 1;
    max-height: 2000px;
}
@media only screen and (max-width: 767px) {
    .hours-slot {
        min-height: 40px;
    }
}
@media only screen and (min-width: 767px) {
    .col-animation {
        max-height: 1700px;
    }
}
@media only screen and (min-width: 1024px) {
    .col-animation {
        max-height: 1200px;
    }
}

.hidden-flex-width {
    flex: 0 0 0;
    max-width: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
}
.col-appointment-type {
    max-height: 69px !important;
    overflow: hidden;
}
.hidden-flex-height {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}
.osot_appoiments-show-next i {
    cursor: pointer;
}
.appointment-selected {
    border-top: 2px solid #ddd;
    margin-top: 40px;
}
.appointment-selected > span {
    padding: 20px;
    margin-bottom: 20px;
    display: block;
    position: relative;
}
.infinite-body .osot-termin-jetzt-vereinbaren.button-disabled {
    cursor: no-drop;
    background-color: #ccc !important;
    color: #eee;
}
.infinite-body input[type="button"].osot-termin-jetzt-vereinbaren {
    background-color: #C31924 !important;
}
.appointment-note {
    text-align: left;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #f5f5f5;
}
.required-error {
    padding-top: 20px;
    color: #C31924;
}
/* Display dates */
.minutes-slot {
    display: none;
    width: 100%;
}
.days-slot {
    display: flex;
    margin-bottom: 2px;
    padding-bottom: 2px;
    /* border-bottom: 1px solid #f1f1f1;
    border-color: #f1f1f1 !important; */
    flex-wrap: wrap;
}
.day-slot {
    width: 80px;
    display: inline-block;
    text-align: left;
    vertical-align: baseline;
    white-space: nowrap;
    padding-right: 10px;
}
.hours-slot {
    min-width: 40px;
    display: inline-block;
}
.minute-slot.osot-appointment-item,
.hour-slot {
    display: inline-block;
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    width: 100%;
    text-align: center;
    background: #253e88;
    padding: 0 5px 1px 5px;
    vertical-align: baseline;
    transition: all .2s ease-in;
}
.minute-slot.osot-appointment-item.inactive {
    background: #eee;
    color: #888;
}
.hour-slot.inactive {
    background: #ccc;
}
.hours-slot {
    display: inline-block;
    width: 50px;
    margin-left: 2px;
    margin-right: 2px;
}
.day-slot__date {
    float: right;
}
.time-table {
    display: inline-flex;
    flex-direction: column;
}
.minute-slot.osot-appointment-item {
    margin-top: 1px;
}
.osot_appoiments-show-next {
    font-size: 30px;
}
.hours-slot {
    background: #fafafa;
    border-radius: 3px;
}
@media only screen and (min-width: 1024px) {
    .days-slot {
        justify-content: center;
    }
}
@media only screen and (max-width: 1023px) {

    .day-slot {
        display: block;
        width: 100%;
        text-align: center;
    }
    .day-slot__date {
        float: none;
    }
    .hours-slot {
        margin-bottom: 4px;
    }
    .hours-slot {
        background: #eee;
    }
    .minute-slot.osot-appointment-item, .hour-slot {
        padding: 5px 5px 6px 5px;
    }

}
#createTerminvereinbarungsModal input[type="text"],
#createTerminvereinbarungsModal textarea,
#createTerminvereinbarungsModal select {
    border-width: 0;
    border-bottom-width: 2px;
}
#online-terminvereinbarung-message,
#createTerminvereinbarungsModal #working,
#createTerminvereinbarungsModal .modal-header,
#display-appointment,
#display-appointments {
    text-align: center;
}
.osot-termin-jetzt-vereinbaren {
    max-width: 200px;
    background: #C31924;
    border: 0;
    padding: 13px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
}
#createTerminvereinbarungsModal .terminplaner-title-js {
    padding: 20px;
}
.terminer-terminvereinbarung-wrapper {
    text-align: right;
}
.terminer-terminvereinbarung-wrapper a:focus,
.terminer-terminvereinbarung-wrapper a:hover,
.terminer-terminvereinbarung-wrapper a {
    background: #C31924;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 3px;
}
.modal-content.loading::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .4);
}
#createTerminvereinbarungsModal .info {
    color: #777;
    font-style: italic;
    font-size: 0.75em;
    line-height: 1em;
    font-weight: 600;
    display: block;
}
#createTerminvereinbarungsModal .geburtsdatum::after {
    content: 'MEDYS';
    position: absolute;
    top: 26px;
    right: 1px;
    font-size: 10px;
    color: #ccc;
}
#medys-hinzuzufuegen {
    margin-top: 20px;
}
/*
.inp input:focus + span {
    color: #253e88;
    color:
    #777;
    font-style: italic;
    transform: translateY(-26px) scale(0.75);
}
*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .inp input + span {
        color: #777;
        font-style: italic;
        transform: translateY(-26px) scale(0.75);
    }
}
.faster-slots-wrapper {
    padding: 20px;
    background: #f5f5f5;
    margin-top: 20px;
}
