@keyframes CurtainFall {
    0% {top: -100%;}
    40% {top: -40%;}
    100% {top: 0%;}
}

.CurtainFall {
  animation: CurtainFall 1.3s;
  animation-timing-function: swing;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  top: -100%;
}

@keyframes CurtainGone {
    0% {top: 0;}
    40% {top: 60%;}
    100% {top: 100%;}
}

.CurtainGone {
  animation: CurtainGone 1.3s;
  animation-timing-function: swing;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  top: 0;
}

@keyframes hoverBtnNext {
    0% { transform: perspective(0) rotateY(0); 
        background: transparent; 
        padding: 7px 0px 7px 30px; 
        color: #0073a2; 
    }
    50% {transform: perspective(400px) rotateY(-45deg); 
        background: 0073a2; 
        padding: 7px 0px 7px 30px; 
        color: white;
    }
    100% {transform: perspective(0) rotateY(0); 
        background: #0073a2; 
        padding: 7px 15px 7px 15px; 
        color: white;
    }
}

.hoverBtnNext {
    animation: hoverBtnNext 0.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    transform: perspective(0) rotateY(0);
}

@keyframes hoverBtnSend {
    0% { 
        padding: 10px 0px 10px 30px; 
    }
    50% { 
        padding: 10px 0px 10px 30px; 
    }
    100% {
        padding: 10px 15px 10px 15px; 
    }
}

.hoverBtnSend {
    animation: hoverBtnSend 0.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    transform: perspective(0) rotateY(0);
}

@keyframes unhoverBtnSend {
    0% { 
        padding: 10px 15px 10px 15px; 
    }
    100% {
        padding: 10px 0px 10px 30px; 
    }
}

.unhoverBtnSend {
    animation: unhoverBtnSend 0.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    transform: perspective(0) rotateY(0);
}

@keyframes hoverBtnSendArrow {
    0% { opacity: 0; margin-left: 15px;}
    50% { opacity: 0; margin-left: 15px;}
    100% {opacity: 1; margin-left: 15px; }
}

.hoverBtnSendArrow {
    animation: hoverBtnSendArrow 0.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    opacity: 0;
}

@keyframes hoverBtnNextArrow {
    0% { opacity: 0; margin-left: 15px;}
    50% {opacity: 0; margin-left: 15px;}
    100% {opacity: 1; margin-left: 15px; }
}

.hoverBtnNextArrow {
    animation: hoverBtnNextArrow 0.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    opacity: 0;
}

@keyframes hideListChoice {
    from { opacity: 1; left: 0;}
    to {opacity: 0; left: -100%;}
}

.hideListChoice {
    animation: hideListChoice 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    opacity: 1;
    left: 0;
    
}
@keyframes showListChoice {
    from { opacity: 0; left: -100%;}
    to {opacity: 1; left: 0;}
}

.showListChoice {
    animation: showListChoice 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    opacity: 0;
    left: -100%;
    
}

@keyframes showConBook {
    from { width: 0;}
    to {width: 100%;}
}

.showConBook {
    animation: showConBook 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    width: 0;    
}

@keyframes hideConBook {
    from { width: 100%; left: 0;}
    to {width: 0%; left: 100%;}
}

.hideConBook {
    animation: hideConBook 0.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    width: 100%;   
    left: 0;
}


h3.book {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 1.3vw;
    width: 95%;
    display: inline-block;
    color: white;
    -ms-hyphens: auto;
      -webkit-hyphens: auto;
      hyphens: auto;
}
h3.conf {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 600;
	color: black;
	opacity: 0.8;
}
@media (max-width: 575.98px) {
    h3.conf {
        font-size: 3vw;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
	h3.book {
		font-size: 20px;
	}
}
@media (max-width: 575.98px) {
    h3.book {
        font-size: 5vw;
        width: 90%;
    }
}


h2.book {
    font-family: 'Snubnose', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 1.7vw;
    width: 95%;
    display: inline-block;
    color: white;
}
@media (max-width: 991.98px) {
    h2.book {
        font-size: 7vw;
    }
}

.con-book[BadId][active="false"] > .set_props > .con-book-inset > .con-TN-txt.book > h2.book {
    color: white;
}

.course-cat-title {
    font-family: 'Snubnose', sans-serif;
    font-size: 40px;
    line-height: 1em;
}
.course-cat-title.step {
	font-size: 70px;
}
@media (max-width: 991.98px) {
    .course-cat-title.step {
        font-size: 15vw;
    }
}
.course-cat-title.aqua {
    color: #0073a2;
}
.course-cat-title.soul, .course-cat-title.kombi {
    color: #ffd100;
}
 .course-cat-title.online {
    color: #00ADDA;
}
.course-cat-title.white {
    color: white;
}


.arrow-cat-title.open, .arrow-cat-title.closed {
/*
    position: absolute;
    top: 130%;
*/
	position: relative;
/*    left: calc(50% - 15px);*/
    display: inline-block;
    height: 30px;
    width: auto;
	display: block;
    transform: rotate(90deg);
    
    transition: transform 0.5s ease;
}
@media (max-width: 575.98px) {
    .arrow-cat-title {
        width: 8%;
        height: auto;
        left: 46%;
        top: 160%;
    }
    .arrow-cat-title.open {
		position: relative;
		display: block;
		margin-top: 10px;
        transform: rotate(90deg);
    }
    .arrow-cat-title.closed {
		position: relative;
		display: block;
		margin-top: 10px;
        transform: rotate(-90deg);
    }
}

.con-kacheln.book.open {
    width: 60%;
	left: 5%;
	position: fixed;
	z-index: 1;
    display: none;
}
@media(min-width: 2000px) {
	.con-kacheln.book.open {
		left: 80px;
		width: calc(65% - 80px);
	}
}
.con-kacheln.book.closed {
    width: 95%;
    left: 5%;
    position: fixed;
	z-index: 1;
    display: none;
}

@media (max-width: 991.98px) {
    .con-kacheln.book.open, .con-kacheln.book.closed {
        width: 100%;
        left: 0;
        top: 8%;
        height: 92%;
    }
}
.con-txt.book.open {
    width: 35%;
    left: 65%;
    background: white;
    height: 100%;
    top: 0;
    
    -ms-overflow-style: none;
}
.con-txt.book.closed {
    width: 0;
    left: 100%;
    background: white;
    height: 100%;
    top: 0;
    
    -ms-overflow-style: none;
}
.con-txt.book::-webkit-scrollbar {
    display: none;
}
@media (max-width: 991.98px) {
    .con-txt.book.closed, .con-txt.book.open {
        width: 0;
        left: 0;
        height: 92%;
        top: 8%;
        z-index: 51;
        border-radius: 20px;
        padding-top: 8% !important;
        transition: background 0.7s ease;
    }
}
.col-txt-book {
    padding: 5% 10%;
    display: none;
	position: relative;
}

.li-item-book.list-group-item {
    font-weight: 400;
    color: #585858;
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    padding: 5px 0;
    cursor: pointer;
    position: relative;
}

.li-item-book.header {
    font-family: 'Poppins', sans-serif;
    color: #0073a2;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 10px;
}

.curtain.over-txt {
    position: fixed;
    height: 100%;
    width: 35%;
    left: 5%;
    top: -100%;
    background: white;
	z-index: 1;
}

.ul-book-coursei {
    width: 80%;
    position: relative;
    left: 10%;
    margin-top: 10%;
}

.li-item-coursei.list-group-item {
    font-weight: 300;
    color: black;
    font-size: 14px;
    cursor: default;
    font-family: 'Poppins', sans-serif;
    padding: 5px 0;
    position: relative;
}

a.btn-more-coursei {
    color: #0073a2;
    text-decoration: none;
}
a.btn-more-coursei:hover {
    font-weight: 500;
    color: #0073a2;
    text-decoration: none;
}

.btn-next.book {
    display: inline-block;
    background: #ffd100;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: 0;
    color: white;
    font-size: 15px;
    padding: 10px 0px 10px 30px;
    letter-spacing: 1px;
    border-radius: 30px;
    transform: perspective(0) rotateY(0);
    cursor: default; 
    margin: 0;
    left: 0;
}

.btn-next.book.active {
	color: white;
	border: 0;
    cursor: pointer;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
}
.btn-next:focus {
    outline: none;
}




.btn-more-arrow.next {
    position: relative;
    display: inline-block;
    width: 20px;
    opacity: 0;
    margin-left: 15px;
    transition: 0.2s ease;
}

.con-btn-next {
    padding: 20px;
    padding-left: 0; 
    white-space: nowrap;
}

.row-btns-book {
    padding: 0;
    padding-left: 20px;
    margin: 0;
}

.jumbotron.explain {
    padding: 5%;
}
.jumbotron.explain.child {
    padding: 4% 2%;
    background: white;
    border: 1px solid rgba(0,0,0,0.2);
    opacity: 0.5;
}
.jumbotron.explain.step2 {
    padding: 3%;
}

.icon-info {
    position: relative;
    height: 20px;
    display: inline-block;
    top: 2px;
}

.curtain.window {
    height: 100%;
    width: 100%;
    left: 0;
    top: -100%;
    position: fixed;
	z-index: 1;
    background: white;
}

.step-book-icon {
    font-family: 'Snubnose', sans-serif;
    color: black;
    font-size: 70px;
    top: -20px;
    left: 25px;
}

.li-item-choice.list-group-item {
    font-weight: 400;
    color: #585858; 
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding: 5px 0;
    cursor: default;
    position: relative;
}

.li-item-choices.header {
    font-family: 'Poppins', sans-serif;
    color: #0073a2;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 10px;
}

.ul-choices {
    list-style: none;
    padding: 0;
    width: 100%;
}

.delete-choice {
    height: 25px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: 0.5s ease;
    display: none;
}
.delete-choice:hover {
    transform: rotate(90deg);
}

.con-icon-blopper.book {
    margin-top: 3vh;
}

.con-book.time {
    padding-bottom: calc(200% - 4px);
}
.con-book.scroll {
	padding: 2vh;
	height: auto;
	text-align: center;
	transition: 0.7s ease;
}
.set_props, .con-book-inset {
    display: none;
}
.con-book[BadId]:hover > .con-check, .con-check.hovered {
    display: block;
}

f1.choiceex {
    font-family: 'Snubnose';
    color: black;
    opacity: 0.7;
    font-size: 33px;
    font-weight: 500;
    display: inline-block;
    text-align: left;
    padding-top: 10px;
    line-height: 1.1em;
    position: relative;
    width: 100%;
}

.arrow-cat-choice {
    position: absolute;
    top: 100%;
    left: calc(50% - 15px);
    display: inline-block;
    height: 30px;
}

.row-times {
    position: relative;
    width: 100%;
    background: white;
}

.btn-day {
    height: calc(100% - 4px);
    top: 2px;
    width: calc(100% - 8px);
    position: relative;
    overflow: hidden;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    padding: 15px 0;
    cursor: pointer;
}
.btn-day.active {
    color: white;
    background: linear-gradient(145deg, #0072a4, #006b99);
    box-shadow:  5px 5px 10px #d9d9d9, 
             -5px -5px 10px #ffffff;
}
.btn-day.inactive {
    color: white;
    background: #70A4B9;
}
.btn-day.unavailable {
    color: white;
    background: #DFDFDF;
}


.btn-hour {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    padding-bottom: calc(100% - 16px);
    position: relative;
    overflow: hidden;
    height: calc(100% - 8px);
    width: calc(100% - 8px);
    margin-top: 8px;
    
    transition: 0.4s ease-in-out;
}
.btn-hour.inactive {
/*    background: #0073a2;*/
    background: white;
    border-radius: 5px;
    box-shadow:  4px 4px 8px #d9d9d9, 
             -4px -4px 8px #ffffff;
    color: #0073a2;
}
.btn-hour.unavailable {
/*
    background: #f0f0f3;
    color: white;
    border-radius: 5px;
    box-shadow:  inset 3px 3px 10px #cccccf, 
             inset -5px -5px 10px #ffffff;
    cursor: default;
*/
    visibility: hidden;
}
.btn-hour.unavailable > .gif-close-day, .btn-hour.inactive > .gif-close-day {
    display: none;
}
.btn-hour.active {
/*    background: #70A4B9;*/
    background: transparent;
    color: #0073a2;
    border-radius: 5px;
    box-shadow:  inset 3px 3px 10px #cccccf, 
             inset -5px -5px 10px #ffffff;
}
.btn-hour.active:hover {
    background: #f7f7f7;
}

.hour {
    line-height: 1em;
    display: inline-block;
    font-size: 18px;
}

span.bis {
    font-size: 10px;
    margin: 0;
    display: block;
    padding: 0;
    text-transform: none;
}

.GET_times {
    margin-left: 5px;
    display: inline-block;
}

.btn-change {
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
}
.btn-change:hover {
    text-decoration: underline;
}

.btn-back {
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    color: #0073a2;
    cursor: pointer;
    display: none;
}
.btn-back:hover {
    text-decoration: underline;
}



.li-item-choice[StartId], .li-item-choice[Choice], .li-item-choice[GiftId], .li-item-choice[DayId], .list-group-item[BadId] {
    display: none;
}

.txt-coursei-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    line-height: 1em;
}
@media (max-width: 991.98px) {
    .txt-coursei-1 {
        font-size: 20px;
        line-height: 1em;
        font-weight: 700;
    }
}
.txt-coursei-1.soul, .txt-coursei-1.kombi {
    color: white;
}
.txt-coursei-1.aqua {
    color: white;
}

.txt-coursei-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
/*    display: inline-block;*/
    line-height: 1.3em;
	margin-top: 5px;
}
@media (max-width: 991.98px) {
    .txt-coursei-2 {
        font-size: 15px;
    }
}
.txt-coursei-2.soul, .txt-coursei-2.kombi {
    color: white;
}
.txt-coursei-2.aqua {
    color: white;
}

input.not-empty, input.form-control.is-valid, select.form-control.is-valid   {
    border: 2px solid #ffebaa;
    box-shadow: 0;
    outline: none;
    -webkit-transition: border 0.5s ease;
    transition: border 0.5s ease;
      -webkit-box-shadow: none !important;
      -moz-box-shadow: none !important;
      box-shadow: none !important;
    background: url("../img/Icons/icons8-checkmark-52.png") no-repeat right .75rem center/1rem auto ;
}
input.form-control.is-valid:focus, select.form-control.is-valid:focus, input.form-control:focus, select.form-control:focus, textarea.form-control:focus {
    border: 2px solid #ffcd2a;
    box-shadow: 0;
    outline: none;
    -webkit-transition: border 0.5s ease;
    transition: border 0.5s ease;
      -webkit-box-shadow: none !important;
      -moz-box-shadow: none !important;
      box-shadow: none !important;
    background: none;
}
input.form-control:focus + label, #dropdownAnrede:focus + label, #dropdownAnrede:active + label, select.form-control:focus + label, textarea.form-control:focus + label {
    color: #ffcd2a;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}
select.form-control {
    cursor: pointer;
}
option, select.form-control, select.form-control:focus {
    font-family: 'Poppins', sans-serif;
    color: rgba(0,0,0,0.5);
}
label[for="datenschutzCheckbox"], label[for="anfrageCheckbox"], label[for="newsletterCheckbox"], label[for="returnCheckbox"], label[for="newsletterBrochure"] {
    font-size: 13px;
}
label.form-check-label {
    margin-top: 0;
    cursor: pointer;
}
.form-group {
    margin: 0;
    padding: 0;
}
.custom-control-label:before{
  background-color:white;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before{
  background-color:#ffcd2a;
  border: 1px solid #ffcd2a;
}
.custom-control-label.is-invalid {
    color: red;
}
.dropdown-form { 
    background: white;
    border: 1px solid #bcbcbc;
    border-radius: 5px;
    padding: 5px 10px;
    color: #bcbcbc;
    margin-left: 0px;
    width: 100%;
}
.dropdown-menu.birth {
    max-height: 200px;
    overflow: auto;
}
.dropdown-item {
    width: 90%;
}
.dropdown-item:first-child {
    border-top: 0;
}
.dropdown-item {
    white-space: pre-line;
    cursor: pointer;
}
.btn-plus-child {
    margin-top: 2vh;
    background: transparent;
    border: 0;
    text-decoration: none;
    position: relative;
    color: lightgrey;
    cursor: pointer;
    border-radius: 5px;
}
.btn-plus-child:hover {
    text-decoration: underline;
    color: #ffcd2a;
}
.custom-control-label {
    cursor: pointer;
}

.con-header-bookstep {
/*    padding: 50px 5% 10px 5% !important; */
}

.con-step-2[Step2Id="1"] {
    position: relative;
    background: white;
    top: 0px;
    left: 0;
    z-index: 2;
    width: 100%;
    opacity: 1;
    height: auto;
    box-shadow: 0 -5px 500px 200px rgba(0,0,0,0.2);
    display: none;
}

.overlay.dark-gradient {
    background: black;
}
.overlay.book {
    background: transparent;
    cursor: pointer;
    opacity: 1;
    pointer-events: all;
    display: none;
}
@media (min-width: 576px) {
    .con-book-inset:hover > .con-TN-txt, .con-TN-txt.hovered {
        opacity: 1;
    }
}

.col-day {
    width: 14%;
    position: relative;
    height: auto;
    background: white;
}
@media (max-width: 575.98px) {
    .col-day {
        width: 100%; 
        margin: 20px 0 !important;
    }
}

.check-con {
    position: absolute;
    height: 30px;
    width: 30px;
    top: 0px;
    left: calc(100% - 30px);
    overflow: hidden;
}

@media (min-width: 576px) {
    .con-book-inset:hover > .overlay {
        opacity: 0.6;
    }
}

.check-img {
    position: absolute;
    height: 15px;
    width: 15px;
    top: calc(50% + 5.5px);
    left: 10.5px;
}

.con-step-2[Step2Id="2"] {
    position: absolute;
    background: white;
    top: -100px;
    left: 0;
    z-index: 3;
    width: 100%;
    height: auto;
    box-shadow: 0 -5px 500px 200px rgba(0,0,0,0.2);
    display: none;
}

.btn-next.step2, .btn-next.form {
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 0;
    border-radius: 50%;
    position: relative;
    top: 0;
    background: rgba(0,0,0,0.1);
    box-shadow: 0;
    cursor: default;
    
    transition: 0.3s ease;
}
.btn-next.step2.active, .btn-next.form.active {
    background: #ffd100;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
    cursor: pointer;
	display: inline-block;
	width: auto;
	border-radius: 30px;
	padding: 0 20px;
	font-family: 'Poppins', sans-serif;
	color: #006b97;
	font-weight: 700;
}
.btn-next.step2.inactive {
    background: rgba(0,0,0,0.1);
    box-shadow: 0;
    cursor: default;
}
.btn-next.step2.active:hover, .btn-next.form.active:hover {
    top: 9px;
    box-shadow: 0px -2px 10px rgba(0,0,0,0.2);
}
.btn-next.step2:focus {
    border: 0 !important;
    box-shadow: 0;
    outline: none;
}

.btn-more-arrow.step2 {
    position: absolute;
    height: 70%;
    width: 70%;
    display: inline-block;
    opacity: 1;
    transition: 0.2s ease;
    left: 15%;
    margin-left: 0;
    top: 15%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.con-TN-txt.book {
    height: 80%;
    width: 80%;
    left: 10%;
    top: 10%;
    text-align: left;
}
.con-book-inset:hover > .TN-Kurs, .TN-Kurs.hovered {
    height: 106%;
    width: 106%;
    top: -3%;
    left: -3%;
}

.txt-badinfo-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    line-height: 1.3em;
    color: #0073a2;
}
@media (max-width: 575.98px) {
    .txt-badinfo-1 {
        font-size: 5vw;
    }
}
    

.bad-icon {
    position: absolute;
    height: 50px;
    width: 50px;
    top: calc(95% - 50px);
    left: 5%;
}
@media(max-width: 575.98px) {
    .bad-icon {
        height: 50px;
        width: 50px;
        top: calc(95% - 50px);
    }
}

.bookbad {
    opacity: 0;
}

.con-book-inset[BadId]:hover > .bookbad, .bookbad.hovered {
    opacity: 1;
}
@media (min-width: 576px) {
    .con-book[BadId]:hover > .con-TN-txt > h2, h2.book.hovered {
        color: white;
    }
}
.con-book[BadId]:hover > .con-TN-txt > .txt-badinfo-1, .txt-badinfo-1.hovered, .con-book[BadId].hovered > .con-TN-txt > .txt-badinfo-1, .txt-badinfo-1.hovered {
    color: white;
}

@media (max-width: 991.98px) {
    .con-TN-txt {
        opacity: 1;
    }
}
.con-check {
    height: 100px;
    width: 100px;
    background: #f7f7f7;
    position: absolute; 
    left: calc(100% - 50px);
    border-radius: 50%;
    top: -50px;
    display: none;
}
.con-check.active {
    display: block;
}

.check-bad {
    position: absolute;
    height: 30px;
    left: calc(50% - 35px);
    top: calc(50% + 5px);
}
.btn-start {
	height: calc(100% - 8px);
    width: calc(100% - 8px);
	top: 4px;
	left: 4px;
}
.btn-start.active {
    background: transparent;
    color: #f0f0f3;
    border-radius: 5px;
    box-shadow:  inset 3px 3px 10px #cccccf, 
             inset -5px -5px 10px #ffffff;
}

.btn-start.inactive {
/*    background: #0073a2;*/
    background: white;
    border-radius: 5px;
	
    box-shadow:  4px 4px 8px #d9d9d9, 
             -4px -4px 8px #ffffff;
    color: #0073a2;
}
.btn-start.active > h2.book {
/*    color: white;*/
    color: #0073a2;
}

.start-more {
    visibility: hidden;
}
@media (max-width: 575.98px) {
    .start-more {
        visibility: visible;
    }
}
.btn-start[StartId="later"]:hover > h2.book > .start-more {
    visibility: visible;
}
h2.book.start {
    color: #0073a2;
}
@media (min-width: 2000px) {
	h2.book.start {
		font-size: 30px;
	}
}
label.custom {
    position: absolute;
    top: -9px;
    left: 20px;
    background: white;
    font-size: 13px;
    margin: 0;
    border-right: 5px solid white;
    border-left: 5px solid white;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    opacity: 1;
    z-index: 1;
    color: rgba(0,0,0,0.5);
}

.delete-child {
    height: 25px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: 0.5s ease;
    position: absolute;
    left: 210%;
    top: -30px;
}
@media (max-width: 575.98px) {
    .delete-child {
        left: 90%;
        top: -35px;
    }
}


.delete-child:hover {
    transform: rotate(90deg);
}
textarea.form-control {
    line-height: 1.2em;
}
.gif-close-day {
    position: absolute;
    width: 25%;
    left: 75%;
    top: 0;
}
.gif-close-whole-day {
    position: absolute;
    width: 20%;
    left: 80%;
    top: 0;
	display: none;
}
@media (max-width: 575.98px) {
    .gif-close-whole-day {
        height: 90%;
        width: auto;
        left: auto;
        right: 0;
        top: 0;
    }
	
}

.scroll_bg_txt.booking.open {
    background: #99c7da;
    left: calc(100% - 6px);
}
.scroll_bg_txt.booking.closed, .scroll_bg_txt.booking.closed_hover  {
    width: 0;
}
.scroll_bg_txt.booking:hover {
    left: calc(100% - 12px);
    width: 12px;
}

.gif-close-bad, .gif-close-choice {
    position: absolute;
    width: 20%;
    left: 80%;
	display: none;
    top: 0;
}
.gif-close-choice {
    display: none;
}

.jumbotron.explain.list {
    padding: 4% 2%;
    border: 1px solid #dcb400;
    opacity: 0.7;
    background: transparent;
}

.GET_personaldata {
    display: none;
}
.form-group {
    margin-bottom: 0;
}
@media (max-width: 575.98px) {
    .form-group {
        margin-bottom: 15px;
    }
}
@media (max-width: 575.98px) {
    .con-book[specific] {
/*        padding-bottom: 120%;*/
    }
}

.con-conf {
    position: fixed;
    height: 100%;
    width: 95%;
    top: 100%;
    left: 5%;
    background: white;
    z-index: 1000;
    display: none;
}
@media (max-width: 575.98px) {
    .con-conf {
        position: fixed;
        height: 92%;
        top: 100%;
        width: 100%;
        left: 0;
        z-index: 50;
    }
}





.con-book-inset {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
}



.set_props {
    width: 0;
    overflow: hidden;
}


.delay_1 { animation-delay: 0.1s; }
.delay_2 { animation-delay: 0.2s; }
.delay_3 { animation-delay: 0.3s; }
.delay_4 { animation-delay: 0.4s; }
.delay_5 { animation-delay: 0.5s; }
.delay_6 { animation-delay: 0.6s; }
.delay_7 { animation-delay: 0.7s; }
.delay_8 { animation-delay: 0.8s; }
.delay_9 { animation-delay: 0.9s; }
.delay_10 { animation-delay: 1.0s; }
.delay_11 { animation-delay: 1.1s; }
.delay_12 { animation-delay: 1.2s; }
.delay_13 { animation-delay: 1.3s; }
.delay_14 { animation-delay: 1.4s; }
.delay_15 { animation-delay: 1.5s; }
.delay_16 { animation-delay: 1.6s; }
.delay_17 { animation-delay: 1.7s; }
.delay_18 { animation-delay: 1.8s; }
.delay_19 { animation-delay: 1.9s; }
.delay_20 { animation-delay: 2.0s; }
.delay_21 { animation-delay: 2.1s; }
.delay_21 { animation-delay: 2.1s; }

.edit-list {
    position: fixed;
    width: 5vh;
    left: 4%;
    top: 1vh;
    z-index: 51;
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.2));
}
.bg_icon_edit {
	position: fixed;
	z-index: 51;
	width: 0px;
	height: 0px;
	background: #f7f7f7;
	border-radius: 50%;
	top: 2%;
	left: 4%;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.2));
}
/*
@media (max-width: 767.98px) {
	.edit-list {
		width: 12%;
	}
	.bg_icon_edit {
		width: 12%;
		height: 0;
		padding-bottom: 12%;
		top: 2%;
		left: 4%;
	}
}
*/

.booked-img {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-image: url(../img/Kursauswahl/TN/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 5px solid white;
    display: inline-block;
    margin-bottom: 20px;
}
.booked-img.soul, .booked-img.combi {
	border: 6px solid #ffd100;
}
.booked-img.aqua {
	border: 6px solid #0073a2;
}
.booked-img.online {
	border: 6px solid #00ADDA;
}
.booked-img:before {
  background: none;
  border: 5px solid #fff;
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 575.98px) {
    .booked-img {
        width: 60%;
        padding-bottom: 60%;
        height: auto;
    }
}

.booked-img-border {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    height: 315px;
    width: 315px;
    top: -12.5px;
    left: -12.5px;
	background: red;
}
@media (max-width: 575.98px) {
    .booked-img-border {
        width: calc(102% + 20px);
        padding-bottom: calc(102% + 30px);
        top: calc(-1% - 10px);
        left: calc(-1% - 10px);
        height: auto;
    }
}
.booked-img-border.aqua {
    background: #0073a2;
}
.booked-img-border.soul, .booked-img-border.kombi {
    background: #ffd100;
}

.logo-bubble-conf {
    position: absolute;
    height: 60%;
    top: -50%;
    left: 75%;
}

.con-conf-inset {
    width: 90%;
	position: relative;
	left: 5%;
}
@media (max-width: 575.98px) {
    .con-conf-inset {
        width: 80%;
    }
}

.con-explain {
	display: block;
	padding: 2vh 0;
	border-top: 1px solid rgba(0,0,0,0.2);
/*	border-bottom: 1px solid rgba(0,0,0,0.2);*/
	margin-bottom: 20px;
}

.txt-danger > f1.choiceex {
	color: red;
}

.img-btn-back-fix {
	transform: rotate(180deg);
	height: 30px;
	margin-right: 10px;
}

.btn-back-fix {
	font-family: 'Poppins',sans-serif;
	color: white;
	background: white;
	border-radius: 40px;
	background: #ffd100;
	position: relative;
	padding: 10px 30px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
	cursor: pointer;
}
.con-btn-bottom.inactive {
	display: none;
}
.con-btn-bottom.active {
	display: flex;
}
@media (max-width: 767.98px) {
	.btn-back-fix.active, .btn-back-fix.inactive  {
		display: none;
	}
}

.frame-con-step {
	display: inline-block;
	width: 100%;
	max-width: 1000px;
}



.btn-aboard {
	position: relative;
	height: 50px;
	width: 50px;
	background: lightgrey;
	margin-left: 20px;
	padding-left: 10%;
	border-radius: 50%;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
	transition: background 0.3s ease;
	cursor: pointer;
}
.btn-aboard:hover {
	background: red;
}

.aboard-x {
	position: absolute;
	font-family: 'Snubnose';
	color: white;
	font-size: 30px;
	top: calc(50% - 25px);
	left: calc(50% - 7px);
}

.con-btn-bottom {
	position: fixed;
	z-index: 1;
	left: 7%;
	bottom: 2%;
	z-index: 49;
	display: flex;
}
@media (max-width: 991.98px) {
	.con-btn-bottom.active {
		display: none;
	}
}



.cancel-btn-hover {
    background:#545454;
    font-family: 'Snubnose';
    color: white;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 6px 15px;
    border-radius: 5px;
    position: absolute;
    z-index: 3;
    display: none;
    white-space: nowrap;
	left: 50%;
	bottom: 110%;
}

input {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
}

@media (min-width: 2000px) {
	.max-w {
		width: 1400px !important;
	}
}
.book_header_fix {
	position: fixed;
	top: 0;
	width: 60%;
	z-index: 11;
	left: 5%;
	height: auto;
	pointer-events: none;
}


.book_cat_scroll {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	padding: 0;
	
	transition: 0.2s ease;
}
.book_cat_scroll.scroll {
	padding: 3vh;
}

#mc-embedded-subscribe-book {
	position: fixed;
	z-index: -1000;
	opacity: 0;
}

.con-book[Courses] {
/*	padding-bottom: 0;*/
}

.txt-coursei-1.voucher {
	position: absolute;
	top: 130%;
	width: 100%;
	left: 0;
}

.bg_arrow_cat {
	position: absolute;
	top: 110%;
	background: white;
	border-radius: 50%;
	display: inline-block;
	padding: 10px;
	left: calc(50% - 20px);
}

.btn-next_blinking {
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 0;
    border-radius: 50%;
    position: fixed;
    bottom: 5%;
	left: calc(50% - 30px);
    background: #ffd100;
    box-shadow: 0;
    cursor: default;
	z-index: 4;
	display: none;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}

.padding_book {
	padding: 50px 3% 10px 3%;
}
