@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* Default Settings */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

html.overflow {
    overflow: hidden !important;
}

.turn-page-corner {
    display: none;
}

input:focus {
    outline: none;
}

input {
    padding: 0 8px;
    border: 1px solid #707070;
    border-radius: 0;
    -webkit-appearance: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

button {
    color: #000;
}

:root {
    --color-black: #000;
    --color-primary: #FCC901;

    --space--page: calc(100vh - 106px + 150px + 100px);
    --mainwrap--padding: 60px 5%;

    color-scheme: only light;
}

.barlowlight {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.barlowsemibold {
    font-size: 18px;
    font-family: "Barlow Semibold", sans-serif;
}

body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}


/* Different Animation Divs */

.animation__yellow__balloon {
    background-color: var(--color-primary);
    width: 68vw;
    height: 68vw;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-16vw, -22vw);
    border-radius: 99999px;
    z-index: -1;
    transform-origin: top left;
    opacity: 1;
}


/*! Header Section */

.header {
    display: flex;
    width: 94%;
    margin: 0 auto;
    transition: opacity .3s ease-in-out;
    position: relative;
    z-index: 1000;
}

.header-login__basket__section {
    padding: 35px 0;
    height: 100px;
}

.header-login__basket__section .mobile__menu__btn {
    display: none;
}

.header-login__basket__section .login__btn, .header-login__basket__section .basket__btn .logout__btn .profile__btn {
    padding: 0 10px;
    position: relative;
    color: #000;
}

.header-login__basket__section .login__btn {
    padding-right: 15px;
    position: relative;
    padding-left: 0 !important;
}

.header-login__basket__section .menu__btn {
    padding-left: 0 !important;
}

.header-login__basket__section .basket__btn, .header-login__basket__section .logout__btn, .header-login__basket__section .profile__btn, .header-login__basket__section .menu__btn, .header-login__basket__section .mobile__menu__btn {
    padding: 0 8px;
    position: relative;
}


.header-login__basket__section .logout__btn:after {
    content: "";
    background-color: var(--color-black);
    width: 2px;
    height: 26px;
    position: absolute;
    right: 0px;
    bottom: 0;
    opacity: .6;
}

.header-login__basket__section .profile__btn:after {
    content: "";
    background-color: var(--color-black);
    width: 2px;
    height: 26px;
    position: absolute;
    right: 0px;
    bottom: 0;
    opacity: .6;
}

.header-login__basket__section .basket__btn span {
    font-size: 13px;
    font-family: "Barlow SemiBold", sans-serif;
    position: absolute;
    top: 4px;
    transform: translateY(-100%);

    color: #000;
}

.header-login__basket__section .menu__btn::after, .header-login__basket__section .login__btn::after, .header-login__basket__section .basket__btn::after, .header-login__basket__section .mobile__menu__btn::after {
    content: "";
    background-color: var(--color-black);
    width: 2px;
    height: 26px;
    position: absolute;
    right: 0px;
    bottom: 0;
    opacity: .6;
}

.header-login__basket__section .menu__btn.active::before, .header-login__basket__section .login__btn.active::before, .header-login__basket__section .basket__btn.active::before {
    content: "";
    background-color: var(--color-black);
    width: 20px;
    height: 4px;
    bottom: -15px;
    position: absolute;

}


.header-login__basket__section .login__btn img {
    height: 30px;
    width: auto;
}

.header-login__basket__section .menu__btn {
    background: transparent;
    border: none;
    display: none !important;
}

.header-login__basket__section .menu__btn img, .header-login__basket__section .logout__btn img, .header-login__basket__section .profile__btn img, .header-login__basket__section .login__btn img {
    height: 27px;
    width: auto;
    position: relative;
}


.header-links {
    display: flex;
    column-gap: 20px;
    align-items: center;
    margin-bottom: 0;
}


.header-links li {
    list-style-type: none;
    position: relative;
    padding: 35px 0;
    height: 100px;
    display: flex;
    align-items: end;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}


.header-links li .header-links-link__text {
    font-family: "Barlow Light", sans-serif;
    text-decoration: none;
    color: var(--color-black);
    position: relative;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    line-height: 1;
}


.header-links li .header-links-link__text.active {
    font-family: "Barlow SemiBold", sans-serif;
}

.header-links li .header-links-link__text.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    background-color: #000;
    width: 100%;
    height: 4px;
    border-radius: 6px;

}

.header-links-dropdown__menu__wrapper {
    position: absolute;
    top: 100px;
    opacity: 0;
    left: 0;
    transition: all .3s ease-in-out;
    z-index: 11;
    width: 380px;
    pointer-events: none;
    padding: 20px 0 30px 0;

}

.header-links-dropdown__menu__wrapper.active {
    opacity: 1;
    pointer-events: visible;
}

.header-links li .header-links-dropdown__menu {
    background-color: #F2EFEF;
    padding: 20px 15px;
}


.header-links li .dropdown__protrusion {
    display: flex;
    margin-left: 7px !important;
    margin: 0;
    width: 0;
    height: 0;
    border: 25px solid transparent;
    border-top: 0;
    border-bottom: 30px solid #F2EFEF;
    opacity: 0;


    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    transition: all .3s ease-in-out;
}

.header-links li .dropdown__protrusion.active {
    opacity: 1;
}

.dropdown__icon__wrapper img {
    transition: transform .3s ease;
}

.mobile__menu-link .header-links-dropdown__menu-group.active .dropdown__icon__wrapper img {
    transform: rotate(90deg);
}

.mobile__menu-link-text.active .dropdown__icon__wrapper img {
    transform: rotate(90deg);
}

.header-links li .header-links-dropdown__menu .header-links-dropdown__menu-group h4 {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: .1rem;
}

.header-links li .header-links-dropdown__menu .header-links-dropdown__menu-group h4 img {
    width: 12px;
    height: auto;
    transition: transform .3s ease-in-out;
    margin-right: 5px;
}

.header-links li .header-links-dropdown__menu .header-links-dropdown__menu-group ul {
    padding-left: 35px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-bottom: .3rem;
}

.header-links li .header-links-dropdown__menu .header-links-dropdown__menu-group ul li {
    cursor: pointer;
    padding: 0 !important;
    height: auto !important;
}

.header-links li .header-links-dropdown__menu .header-links-dropdown__menu-group ul li:last-of-type {
    padding-bottom: 5px;
}

.header-links li .header-links-dropdown__menu .header-links-dropdown__menu-group ul li a {
    font-family: "Barlow Light", sans-serif;
    font-size: 18px;
}

.header-links li .header-links-dropdown__menu .header-links-dropdown__menu-group ul li a:hover {
    font-family: "Barlow Semibold", sans-serif;
}

.header-links li .header-links-dropdown__menu .header-links-dropdown__menu-group.active h4 {
    font-family: "Barlow SemiBold", sans-serif;
}


.header-links li .header-links-dropdown__menu .header-links-dropdown__menu-group.active h4 img {
    transform: rotate(90deg);
}

.header-links li .header-links-dropdown__menu .header-links-dropdown__menu-group.active ul {
}


.header-links li .header-links-dropdown__menu .header-links-dropdown__menu-group ul li.active a {
    font-family: "Barlow SemiBold", sans-serif;
}


.header-logo__section {
    position: relative;
    width: 100px;
    height: auto;
    padding: 35px 0;
}

.header-logo__section img {
    position: absolute;
    right: 0;
    width: 200px;
    height: auto;
}


.product__slider {
    width: 24vw;
    height: 70vh;
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: visible !important;
}

.product__slider .wrapper__for__overflow {
    overflow: hidden;
}

.product__slider .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.product__slider .swiper-wrapper .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

.product__slider .swiper-wrapper .swiper-slide img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    margin: 0 auto;
}


.product__information__wrapper {
    width: 350px;
    height: calc(93vh - 160px);
    display: flex;
    justify-content: end;
    align-items: end;
    /* z-index: 999;  */
    z-index: 9;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}


.product__information {
    width: 100%;
}

.product__information .circle {
    width: 270px;
    height: 270px;
    background-color: var(--color-primary);
    border-radius: 9999px;
    margin-bottom: 30px;
}

.product__information .circle p {
    border-radius: 9999px;
    font-size: 22px;
    font-weight: 700;
    padding: 0 48px;
    margin-bottom: 0 !important;
    text-align: center;
    opacity: 1 !important;
    transform: rotate(-7deg);
}

.product__information h1 {
    font-size: 1.13em;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Barlow SemiBold', sans-serif;

}

.product__information p {
    font-family: "Barlow Light", sans-serif;
    font-size: 18px;
    margin-bottom: .5rem;
}

.product__information p strong {
    font-family: "Barlow Semibold", sans-serif;
}


.product__information .desc {
    font-size: 1.13em;
    font-weight: normal;
    opacity: .8;
    margin-bottom: 1.5rem;
    font-family: 'Barlow Light', sans-serif;

}

.product__information p span {
    font-family: 'Barlow SemiBold', sans-serif;

}

.product__information-options {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 1.5rem;
}

.product__information-option.active {
    border: 1.5px solid #4d4d4dd0;
    background-color: #e0e0e0;
}

.product__information-option .product__information-option-price {
    font-family: "Barlow Medium", sans-serif;
    white-space: nowrap;
    display: flex;
    column-gap: 5px;
}

.product__information-option {
    border: 1px dashed #b4b4b4;
    padding: 5px 4px;
    cursor: pointer;
}

.product__information-option h4 {
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 0;
    font-family: "Barlow Medium", sans-serif;
}

.product__information-products__completed__btns {
    display: flex;
    justify-content: space-between;

}

.product__information-products__completed__btns input {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    outline: none;
    font-size: 19px;
    font-family: "Barlow SemiBold", sans-serif;
    border: 1px solid #0000002e;
}

.product__information-products__completed__btns input::-webkit-outer-spin-button,
.product__information-products__completed__btns input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product__information-products__completed__btns button {
    height: 35px;
    font-size: 20px;
    padding: 0 11px;

    font-family: "Barlow SemiBold", sans-serif;
    color: #000;
    border: 1.5px solid #4d4d4dd0;
    background: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    line-height: 1px;
}

.product__information-products__completed__btns button span {
    display: flex;
    margin-left: 7px !important;
    margin: 0;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top: 0;
    border-bottom: 15px solid var(--color-primary);
    transform: rotate(90deg);
}

/*! Home Page */
.home__wrapper {
    min-height: var(--space--page);
    padding: var(--mainwrap--padding);
    display: flex;
    justify-content: center;
    padding-bottom: 200px;
    padding-top: 0 !important;
    position: relative;
    overflow-y: hidden;
}

.home__wrapper .text-BoxContainer {
    top: -310px;
    right: -80px;
}

.home__wrapper .home__wrapper-video__wrapper {
    display: flex;
    align-items: center;
}

.video-Box__wrapper {
    width: 1550px;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.home__wrapper .video-Box {
    width: 60vw;
    display: block;
}

.video-Box::-webkit-media-controls {
    display: none !important;
}

.video-Box::-moz-media-controls {
    display: none !important;
}

.home__wrapper .video-Box::before {
    position: absolute;
    top: 0;
    width: 210px;
    height: 100%;
    content: "";
    z-index: 2;
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #f3f9ff);
}

.forward__btn__wrapper button:focus {
    border: 1px solif #707070;
}

.home__wrapper .home__items__wrapper {
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
}

.home__wrapper .order__vompleted-yondy__img {
    height: 60vh;
}

.home__wrapper + .forward__btn__wrapper {
    position: fixed;
    margin: 0 3%;
    padding: 35px 0;
    bottom: 0rem;
    z-index: 9999;
    right: 0;
    animation: zoomIn 1.1s ease-in-out;
    pointer-events: none;
}

.home__wrapper + .forward__btn__wrapper button {
    transform: translateY(0) !important;
}

.TextMainContainer {
    width: 100%;
    height: 1050px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rectangleContainer {
    width: 400px;
    height: 400px;
    position: relative;
}

.home__wrapper .text-BoxContainer {
    width: 100%;
    height: 160px;
}

.home__wrapper .text-BoxContainer.twovers {
    top: -310px !important;
    height: 160px !important;
}

.home__wrapper .rectangleContainer {
    width: 490px;
    height: 425px;
}

.text-BoxContainer {
    width: 90%;
    height: 120px;
    background-color: #EBECEC;
    position: absolute;
    top: -235px;
    right: -270px;
    animation: backInDown 1s ease;
    display: none;
}

.text-BoxContainer .order__completed {
    width: 80%;
    height: 76px;
    background-color: #EBECEC;
    position: absolute;
    top: -219px;
    right: -208px;
    animation: backInDown 1s ease;
    display: none;

}

.Text-Box {
    padding: 15px;
    font-family: 'Barlow Light';
    line-height: 20px;
    font-size: 18px;
}


.Text-Box p {
    margin-bottom: .5rem;
}

.Text-Box p {
    margin-bottom: .5rem;
}

.Text-Box p .textDactilo strong {
    font-family: 'Barlow SemiBold';
}

.Text-Box p .textDactilo2 strong {
    font-family: 'Barlow SemiBold';
}

.Text-Box .forward__btn__wrapper {
    display: none;
    position: static !important;
}

.Text-Box .forward__btn__wrapper.visible {
    display: flex;
}


.Text-Box::before {
    content: '';
    position: absolute;
    bottom: -45px;
    z-index: -1;
    border: 20px solid transparent;
    border-top: 28px solid #EBECEC;
}

.home__wrapper .forward__btn__wrapper {
    position: fixed;
    right: 2rem;
    bottom: 2.5rem;
}

.home__wrapper .forward__btn__wrapper button {
    transform: translateY(0);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.home__wrapper.order__completed__wrapper .text-BoxContainer {
    height: 80px !important;
    top: -310px !important;
    right: -210px !important;
}

.forwardBackButton {
    width: 100%;
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: space-between;
    padding: 0 74px;
    z-index: 98;
}

.forwardBackButton .Back,
.forwardBackButton .Next {
    padding: 5px 12px;
    border: 1px solid rgb(66, 66, 66);
    display: flex;
    align-items: center;
    font-family: 'BarlowSemiBold';
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.2;
}

.forwardBackButton .Back {
    border: 1px solid rgb(124, 124, 124);
    color: rgb(124, 124, 124);
    opacity: 0;
    user-select: none;
}

.Next::after {
    content: '';
    background-image: url(../assets/img/rightArrow.png);
    background-size: cover;
    /* width: 18px; */
    /* height: 18px; */
    display: inline-block;
    margin-left: 11px;
    border: 6px solid transparent;
    border-top: 12px solid #FFC734;
    transform: rotate(-90deg);
}

.Next {
    opacity: 0;
    animation: 1s;
    pointer-events: none;
}

/*! Map Page */

.tiichi__map__wrapper {
    display: grid;
    grid-template-columns: 1fr 530px;
    align-items: start;
    position: relative;
    touch-action: pan-x pan-y;
}

#map {
    width: 100%;
    height: var(--space--page);
    outline: none;
    border: none;
}

.marker__informations {
    display: flex;
    flex-direction: column;
    row-gap: 6px;

    position: absolute;
    left: 50px;
    top: 20px;
    padding: 20px;
    border-radius: 20px;
}

.marker__informations .marker__information {
    display: flex;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
    appearance: none;
    background: transparent;
    border: none;
}

.marker__informations .marker__information img {
    width: 27px;
    height: 27px;
}

.marker__informations .marker__information span {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}


.tiichi__map__wrapper .information {
    height: 95vh;
    display: flex;
    flex-direction: column;
    margin: 0 4.5rem;
    position: relative;
}


/*? Gray İnformation Section  */

.tiichi__map__wrapper .information .information-details {
    display: flex;
    justify-content: space-between;
    margin-top: 6rem;
    position: relative;
}

.tiichi__map__wrapper .information .information-details::after {
    content: "";
    background-color: #000;
    width: 100%;
    height: 1px;
    position: absolute;
    top: -20px;
    opacity: .2;
}

.tiichi__map__wrapper .information .information-details.visible {
    display: none;
}

.tiichi__map__wrapper .information .information-description h1 {
    font-size: 16px;
    font-family: "Barlow SemiBold", sans-serif;
}

.tiichi__map__wrapper .information .information-description h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: "Barlow Light", sans-serif;
}

.tiichi__map__wrapper .information .information-description h4 {
    font-size: 16px;
    font-weight: 400;
    font-family: "Barlow Light", sans-serif;

}

.information-photo-wrapper {
    display: grid;
    place-items: start;
}

.information-photo-wrapper img {
    width: 180px;
    height: auto;
}

/*? Yellow İnformation Section  */

#gymikurse.visible {
    display: none;
}

#gymikurse .page-side {
    padding: 1.125em 0 3.375em 0;
}

.page-side {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3em 3.125em 3.375em 1.875em;
    background-color: #fff;
    font-size: 1.3rem;
    margin-top: 4rem;
}

.page-side .page-side-content {
    width: 100%;
    flex: 1 1 auto;
}

.page-side .page-side-content.empty {
    display: flex;
    align-items: center;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.page-side .page-side-content.empty .content-scroll-gutter {
    width: 100%;
    display: flex;
    justify-content: center;
    transform: translateY(-85px);
}


.kurse_img, .page-main-swiper .image-holder img, .page-side .page-side-content .content-scroll-gutter {
    max-height: 100%;
}

.yellow__right__section-top__section {
    border-top: 1px solid #DEDEDE;
    border-bottom: 1px solid #DEDEDE;

    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    flex-direction: row;
    justify-content: space-between;
    position: relative;

    margin: 0 !important;

}

.yellow__right__section-top__section__selected.empty {
    display: none;
}

.yellow__right__section-top__section__not__selected {
    border: 0px !important;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    width: 90%;
}

.yellow__right__section-top__section__not__selected .photo__mobile {
    display: none;
}

.yellow__right__section-top__section__not__selected .rectangleContainer {
    width: 100%;
    height: 100%;
}

.yellow__right__section-top__section__not__selected .rectangleContainer {
    width: 100%;
    height: 100%;
}

.yellow__right__section-top__section__not__selected .rectangleContainer .text-BoxContainer {
    width: 100%;
    top: unset;
    right: unset;
    padding-right: 2rem;
    height: 185px;
}

.yellow__right__section-top__section__not__selected .rectangleContainer .text-BoxContainer .Text-Box::before {
    z-index: 0 !important;
    left: 43%;
    transform: translateX(-50%);
}

.yellow__right__section-top__section__not__selected .rectangleContainer .text-BoxContainer .Text-Box p .textDactilo strong {
    font-size: 16px;
    line-height: 1.6;
}

.yellow__right__section-top__section__not__selected .TextMainContainer {
    position: relative;
    height: 185px;
}

.yellow__right__section-top__section__not__selected.empty {
    display: none;
}


.yellow__right__section-top__section .nummer-anzeigen span {
    font-size: 16px;
    font-family: "Barlow Light", sans-serif;
    color: #919191;
    white-space: nowrap;
}

.yellow__right__section-top__section .mehr-erfahren span {
    font-size: 16px;
    font-family: "Barlow Light", sans-serif;
}

.yellow__right__section-top__section__not__selected img {
    width: 240px;
    height: auto;
}

#gymikurseSwiperRight .swiper-wrapper {
    margin: .5rem 0 1rem 0;
}


#gymikurse .page-side-title {
    text-align: left;
    max-height: max-content;
}

.page-side .page-side-title {
    margin-bottom: .75em;
    padding: .1em 0;
    font-weight: 300;
    line-height: 1.15;
    font-size: 1.1em;
    color: #000;
}

#gymikurse .page-side-title .page-side-title-logo__wrapper img {
    max-height: 60px;

    width: auto;
    max-width: 100%;
    margin-top: 0.5em;
    margin-bottom: 2rem !important;
}


#gymikurse .page-side .page-side-title .page-side-title-logo__wrapper img, #pageHeader .header-top-menu, .header-main-menu {
    margin-bottom: .5em;
}

.yellow__right__section-top__section-location__information {
    font-size: 16px;
    font-family: "Barlow Light", sans-serif;
    margin-bottom: 0;
    margin-right: 3.72rem;
    line-height: 1.4rem;
}


#gymikurse .page-side .page-side-img {
    max-height: 180px;
    margin-top: 1em;
    overflow: hidden;
    display: flex;
    justify-content: center;
}


.page-side .page-side-img {
    margin: 1.2em 0 .4em;
}

.page-side .page-side-img img {
    width: 180px;
    object-fit: contain;
    display: block;
    border-radius: 5px;
    height: auto;
    max-height: 180px;
}

#gymikurse .page-side .page-side-label {
    display: block;
    padding: 5px 0 0 0;
    text-align: left;
    opacity: .8;
    line-height: 1.2em;
    font-weight: 300;
    font-size: .8em;
}

#gymikurseSwiperRight {
    border-bottom: 1px solid #d8d8d8;
    position: relative;
}

#gymikurse, .cookiePol, .name-container, .swiper, .tab {
    overflow: hidden;
}

#gymikurseSwiperRight .swiper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d8d8d8;
}

#gymikurseSwiperRight .swiper-footer, #gymikurseSwiperRight .swiper-header {
    padding: 7px 10px;
}

#gymikurseSwiperRight .swiper-header .swiper-button-next, #gymikurseSwiperRight .swiper-header .swiper-button-prev {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
}

.swiper-button-next, .swiper-button-prev {
    color: #565655 !important;
    top: calc(50% - 64px);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.fs-18px, .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
}

#gymikurseSwiperRight .swiper-header .swiper-title {
    font-size: 18px;
}

#gymikurse .kursRow {
    display: flex;
    align-items: baseline;
}

#gymikurse .kurseTitle {
    width: 30%;
    padding: 0 10px;
    font-size: 18px;
}

#gymikurse .kurseText {
    font-size: 18px;
    width: 70%;
}

#gymikurse .kursStock {
    font-size: .7em;
    text-align: left;
    padding: 0 10px;
    margin: 6px 0 0;
    display: flex;
    align-items: center;
}

.blob {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse-black 2s infinite;
}

#gymikurse .frpl {
    margin: 5px 5px 10px 0;
    width: 55%;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    font-size: .8em;
    padding: 4px;
}


/*! Products Page */

.products__section {
    height: var(--space--page);
    width: 94%;
    margin: 60px auto;
    position: relative;
    margin-bottom: 0;
}

.products__fast__access, .product__information__wrapper {
    position: relative;
    z-index: 10;
    transition: opacity .3s ease-in-out;
}

.products__fast__access h1 {
    font-family: "Barlow SemiBold", sans-serif;
    font-size: 20px;
    margin-bottom: 1.5rem;
}

.products__fast__access h1 button {
    background: transparent;
    outline: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
}


.products__fast__access h1 button img {
    width: 15px;
    height: auto;
}

.products__fast__access-modules__and__prices {
    min-width: 465px;
}

.products__fast__access-modules-language {
    font-size: 18px;
    font-family: "Barlow Semibold", sans-serif;

}

.products__fast__access-modules-language b {
    font-family: "Barlow Semibold", sans-serif;
}

.products__fast__access-modules li {
    display: flex;
    position: relative;
    cursor: pointer;
    height: auto;
}

.products__fast__access-modules li.active .primary__input__section-dropdown {
    display: flex;
    margin-left: 7px !important;
    margin: 0;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: 0;
    border-bottom: 12px solid #000;
    transform: translate(-100%, -50%) rotate(90deg);

    width: 10px;
    height: auto;
    position: absolute;
    left: -10px;
    top: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}


.products__fast__access-modules li.active .products__fast__access-modules-name, .products__fast__access-modules li.active .products__fast__access-modules-price__basket-currency, .products__fast__access-modules li.active .products__fast__access-modules-price__basket-price {
    font-family: "Barlow SemiBold", sans-serif;

}


.products__fast__access-modules-name {
    width: 430px;
    font-family: "Barlow Light", sans-serif;
    font-size: 18px;

}

.products__fast__access-modules-name a {
    text-decoration: none;
    color: black;
    height: 100%;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.products__fast__access-modules-price__basket {
    display: none;
    font-size: 18px;
    opacity: 0;
    transform: opacity .3s ease-in-out;
}

.products__fast__access-modules-price__basket.visible {
    display: flex;
    opacity: 1;
}

.products__fast__access-modules-price__basket span {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.products__fast__access-modules-price__basket-currency {
    font-family: "Barlow Light", sans-serif;

}

.products__fast__access-modules-price__basket-price {
    width: 60px;
    text-align: right;
    margin-right: 5px;
    font-family: "Barlow Light", sans-serif;

}

.products__fast__access-modules-price__basket-basket {
    background: transparent;
    outline: none;
    border: none;
    cursor: pointer;
}


.products__fast__access-modules-price__basket-basket img {
    width: 23px;
    height: auto;
}

body > .close-btn {
    position: absolute;
    right: 40px;
    top: 40px;
    z-index: 99;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transform: none;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    pointer-events: flex;
    opacity: 0;
}

body > .close-btn.zoom {
    opacity: 1;
    pointer-events: auto;
}

body > .close-btn .mobile {
    display: none !important;
}

body > .close-btn img {
    width: 100%;
    height: auto;
}

.book__and__basket__section {
    height: 100vh;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    display: flex;
    align-items: center;
    transition: transform .6s ease 0.6s;
}

.book__and__basket__section__mobile {
    display: none;
}

.book__and__basket__section__mobile .flip-inner:not(.zoomout) {
    transform: unset !important;
}

/*.book__and__basket__section.zoom {*/
/*    top: 50% !important;*/
/*    transform: translate(-50%, -50%) !important;*/
/*    position: absolute !important;*/
/*    left: 50% !important;*/
/*}*/

.flipbook {
    z-index: 11;
}

#flipbook2 {
    width: 639px !important;
    height: 452px !important;
}


.book__and__basket__section.active {
    transform: translate(-50%, 0%) scale(1.35);
}

.book__and__basket__section.active .book-wrapper {
    /* justify-content: center; */
    transform: translateY(10px);
}

.book__and__basket__section .book-wrapper {
    height: unset;
    opacity: 1 !important;
    transition: .6s !important;
}

.book__and__basket__section .book-wrapper .flip-inner {
    transition: .6s !important;
    opacity: 1 !important;
}

.book__and__basket__section .book-wrapper .swiper-button-full__screen {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0;
    position: absolute !important;
    bottom: unset;
    right: unset;
    top: 90%;
    transform: unset !important;
}

/* .book__and__basket__section #canvas .magazine-container {
    margin: 0 100px;
} */

.book__and__basket__section #canvas {
    position: relative;
    overflow: visible !important;
}

.book__and__basket__section .product__information h1, .book__and__basket__section .product__information p {
    font-size: 18px;
}

.product__information-products__completed__btns-price {
    font-size: 1.25em;
    font-family: 'Barlow SemiBold', sans-serif;
}

.product__information-products__completed__btns .product__information-option-price {
    font-size: 20px;
    font-family: 'Barlow SemiBold', sans-serif;
    column-gap: 5px;
}

/*! Product Page */
.product__section {
    height: var(--space--page);
    width: 94%;
    margin: 60px auto;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
}

.product__section .wrapper_revert__for__mobile {
    display: none;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

.product__section .book__wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    transition: transform .3s ease-in-out;
    opacity: 0;
}

.product__section .book__wrapper.active {
    transform: scale(1.06);

}

.book__and__basket__section.book__and__basket__section__mobile.zoom + .product__information__wrapper.product__information__wrapper__mobile {
    display: none !important;
}

.product__section > .close-btn {
    position: absolute;
    right: 40px;
    top: 40px;
    z-index: 99;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transform: none;
    opacity: 0;
    transition: opacity .3s ease-in-out;

}

.product__section img {
    width: 100%;
    height: auto;
}

.product__section .book__wrapper .magazine-container .swiper-button-full__screen {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    position: static !important;
    transform: translate(0) !important;
}


/*! Login Section */

.login__section__wrapper {
    height: var(--space--page);
    padding: var(--mainwrap--padding);

}

.login__section {
    width: 800px;
}

.login__section h1 {
    font-size: 18px;
    font-family: "Barlow Semibold", sans-serif;
    text-align: start;
}

.login__section-radio__btn {
    width: 100%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;

    border-top: 1px solid #707070;
    padding: 4px 0;
}

.login__section-radio__btn:last-of-type {
    border-bottom: 1px solid #707070;

}

.login__section-radio__btn label {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
    cursor: pointer;

}

.login__section-radio__btn input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

.login__section-radio__btn input {
    font-size: 1rem;
    line-height: 1.5;
    padding: 11px 23px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0;
    outline: 0;
    background-color: transparent;

}

.radio__button__input {
    opacity: 0;
    position: absolute;
    margin: 3px 3px 0 5px;
    vertical-align: middle;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
}

.login__section-radio__btn {
    cursor: pointer;
}

.radio__button__control {
    position: relative;
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 12px;
    vertical-align: middle;
    background-color: inherit;
    color: #017b5f;
    background-color: #fff;
    border: 2px solid #666;
    border-radius: 24px;
}

.radio__button__input:checked + .radio__button__control:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 12px;
    transform: translate(-50%, -50%);
}

.radio__button__input:checked + .radio__button__control {
    border-color: #000;
}

.radio__button__control {
    transform: scale(0.75);
}

.login__section-login__informations {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding: 2rem 0;
    row-gap: 7px;
    margin-bottom: 2rem;
}

.login__section-login__informations .input label {
    width: 180px;
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.login__section-login__informations .input input {
    width: 310px;
    outline: none;
    border: 1px solid #707070;
    font-size: 16px;
}

.login__section-password__reset__and__login__btn a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    font-family: "Barlow Light", sans-serif;

}

.login__section-password__reset__and__login__btn button {
    background-color: #fff;
    border: 1px solid #707070;
    padding: 1px 8px;
    font-size: 20px;
    font-weight: 600;

}

.login__section-password__reset__and__login__btn button span:nth-child(2) {
    display: flex;
    margin-left: 7px !important;
    margin: 0;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top: 0;
    border-bottom: 15px solid var(--color-primary);
    transform: rotate(90deg);
}

/*! Resetpassword Section */

.resetpassword__section__wrapper {
    height: var(--space--page);
    padding: var(--mainwrap--padding);

}

.resetpassword__section {
    width: 800px;
}

.resetpassword__section h1 {
    font-size: 18px;
    font-weight: 700;
    text-align: start;
}

.resetpassword__section-radio__btn {
    width: 100%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;

    padding: 4px 0;
    border-top: 1px solid #707070;
}

.resetpassword__section-radio__btn label {
    font-size: 18px;
    cursor: pointer;
}

.resetpassword__section-radio__btn input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

.resetpassword__section-radio__btn input {
    font-size: 1rem;
    line-height: 1.5;
    padding: 11px 23px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0;
    outline: 0;
    background-color: transparent;

}

.radio__button__input {
    opacity: 0;
    position: absolute;
    margin: 3px 3px 0 5px;
    vertical-align: middle;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
}

.resetpassword__section-radio__btn {
    cursor: pointer;
}

.radio__button__control {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    vertical-align: middle;
    background-color: inherit;
    color: #017b5f;
    background-color: #fff;
    border: 2px solid #666;
    border-radius: 24px;
}

.radio__button__input:checked + .radio__button__control:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 12px;
    transform: translate(-50%, -50%);
}

.radio__button__input:checked + .radio__button__control {
    border-color: #000;
}

.radio__button__control {
    transform: scale(0.75);
}

.resetpassword__section-resetpassword__informations {
    display: flex;
    flex-direction: row;
    padding: 2rem 0;
    row-gap: 7px;
    column-gap: 35px;
    padding-left: 31px;
}


.resetpassword__section-resetpassword__informations.korb {
    padding: 0 !important;
}

.resetpassword__section-resetpassword__informations .label__section {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.resetpassword__section-resetpassword__informations .label__section .input__sections {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.resetpassword__section-resetpassword__informations
.resetpassword__section-resetpassword__informations .label__section .input__sections {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.resetpassword__section-resetpassword__informations .label__section .input {
    white-space: nowrap;
    position: relative;
    display: flex;
    column-gap: 5px;
}

.resetpassword__section-resetpassword__informations .label__section .input.multiple__inputs {
    display: flex;
}

.resetpassword__section-resetpassword__informations .label__section .input.notshow {
    display: none;
}

.resetpassword__section-resetpassword__informations .label__section .input .inputs {
    display: flex;
}

.resetpassword__section-resetpassword__informations .label__section .input select {
    width: 310px;
    height: 26px;
    outline: none;
    border: 1px solid #707070;
    appearance: none;
    padding: 3px 8px;
    line-height: 1;
}


.resetpassword__section-resetpassword__informations .label__section .input.select .primary__input__section-dropdown {
    display: flex;
    margin-left: 7px !important;
    margin: 0;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top: 0;
    border-bottom: 10px solid #000;
    transform: translate(0%, -50%) rotate(180deg);

    width: 10px;
    height: auto;
    position: absolute;
    right: 7px;
    top: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.resetpassword__section-resetpassword__informations .input label {
    width: 220px;
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;

}

.resetpassword__section-resetpassword__informations .input input {
    font-size: 18px;
    width: 310px;
    outline: none;
    border: 1px solid #707070;
    padding: 0px 8px;
    font-family: "Barlow Light", sans-serif;
}

.resetpassword__section-resetpassword__informations .input.multiple__inputs input:first-of-type {
    margin-right: 15px;
}

.resetpassword__section-resetpassword__informations .input input.sm__input {
    width: 80px;
}

.resetpassword__section-resetpassword__informations .input input.md__input {
    width: 210px;
}

.resetpassword__section-password__reset__and__resetpassword__btn a {
    color: #000;
    text-decoration: none;
    font-size: 18px;

}

.resetpassword__section-password__reset__and__login__btn {
    border-top: 1px solid #707070;
}

.resetpassword__section-password__reset__and__login__btn button {
    background-color: #fff;
    border: 1px solid #707070;
    padding: 1px 8px;
    font-size: 20px;
    font-weight: 600;
    transform: translateY(100%);

}

.resetpassword__section-password__reset__and__login__btn button span:nth-child(2) {
    display: flex;
    margin-left: 7px !important;
    margin: 0;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top: 0;
    border-bottom: 15px solid var(--color-primary);
    transform: rotate(90deg);
}

.resetpassword__section-resetpassword__informations .radio__section .radio__section-radio__btn {
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: .8rem;
}

.resetpassword__section-resetpassword__informations .radio__section .radio__section-radio__btn label {
    cursor: pointer;
}

/*! Profile Section */

.profile__section__wrapper {
    min-height: var(--space--page);
    padding: var(--mainwrap--padding);
    display: flex;
    justify-content: center;
    padding-bottom: 200px;
}

.profile__section {
    width: 800px;
}

.profile__section-title {
    font-size: 18px;
    font-weight: 700;
    font-family: "Barlow SemiBold", sans-serif;
}

.profile__section-accordions:first-of-type {
    border-top: 1px solid #707070 !important;
    border-radius: 0 !important;
}

.profile__section-accordions:last-of-type {
    border-radius: 0 !important;
}

.profile__section-accordions {
    background-color: transparent !important;
    border-bottom: 1px solid #707070 !important;
    outline: none;
    border-left: none !important;
    border-right: none !important;
}

.profile__section-accordions-header {
    outline: none !important;
    border: none !important;
}

.profile__section-accordions-header button {
    color: #000 !important;
    background-color: transparent !important;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    display: flex;
    justify-content: start;
    flex-direction: row-reverse;
    font-size: 18px;
    column-gap: 10px;
    padding-left: 0 !important;
    font-family: "Barlow SemiBold", sans-serif;
}

.profile__section-accordions-header button::after {
    margin: 0 !important;
}

.profile__section-accordions #collapseFive .profile-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 15px;
    margin-bottom: .5rem;
}

.profile__section-accordions #collapseFive .profile-grid p {
    font-family: "Barlow Light", sans-serif;
    font-size: 18px;
    margin-bottom: 0 !important;
}

.profile__section-accordions #collapseFive .profile-grid a {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
    background: transparent;
    border: 0px solid;
    color: #000;
    text-decoration: none;
    position: relative;
}

.profile__section-accordions #collapseFive .profile-grid a .basket-remove-area {
    height: 22px;
    width: auto;
}

.profile__section-accordions #collapseFive .profile-grid a .basket-remove-area {
    height: 100%;
    width: 100%;
}

.profile__section-accordions #collapseFive .profile-grid a::after {
    content: "";
    background-color: #707070;
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
}

.profile__section-accordions #collapseSix .click__number {
    border-bottom: 1px solid #707070;
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

#collapseSix .nummer__anzeigen {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

#collapseSix .mehr__erfahren {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.years__select__wrap .years__select {
    width: 65px;
}


.profile__section-profile__informations {
    display: flex;
    flex-direction: column;
    border-width: 1px !important;
}

.profile__section-profile__informations .input {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
}

.profile__section-profile__informations .input.select {
    height: 28px;
}

.profile__section-profile__informations .input.notshow {
    display: none;
}

.profile__section-profile__informations .input label {
    width: 180px;
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;

}

.profile__section-profile__informations .input .multiple__inputs__wrapper {
    width: 310px;
    column-gap: 10px;

}

.profile__section-profile__informations .input .multiple__inputs__wrapper.strasse__nr input:first-of-type {
    width: 210px;

}

.profile__section-profile__informations .input .multiple__inputs__wrapper.strasse__nr input:last-of-type {
    width: 90px;
    margin-right: 0 !important;

}

.profile__section-profile__informations .input .multiple__inputs__wrapper.plz__ort input:first-of-type {
    width: 90px;

}

.profile__section-profile__informations .input .multiple__inputs__wrapper.plz__ort input:last-of-type {
    width: 210px;

}


.profile__section-profile__informations .input input {
    width: 310px;
    outline: none;
    border: 1px solid #707070;
    font-family: "Barlow Light", sans-serif;
    font-size: 16px;
}

.profile__section-accordions .accordion-collapse .accordion-body {
    display: flex;
    column-gap: 15px;
    flex-direction: column;
    padding: 10px 10px;
    padding-left: 30px;
    padding-right: 0;
    padding-bottom: 4rem;

}

.profile__section-radio__btn {
    width: 100%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;

    padding: 4px 0;
}

.profile__section-radio__btn label {
    font-size: 18px;
    cursor: pointer;
    font-family: "Barlow Light", sans-serif;
}

.profile__section-radio__btn input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

.profile__section-radio__btn input {
    font-size: 1rem;
    line-height: 1.5;
    padding: 11px 23px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0;
    outline: 0;
    background-color: transparent;

}

.meine__klassen__add__wrapper .forward__btn__wrapper {
    display: flex;
    align-items: end;
    justify-content: end;
    margin-bottom: 0 !important;
}

.radio__button__input {
    opacity: 0;
    position: absolute;
    margin: 3px 3px 0 5px;
    vertical-align: middle;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
}

.profile__section-radio__btn {
    cursor: pointer;
}

.radio__button__control {
    position: relative;
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 12px;
    vertical-align: middle;
    background-color: inherit;
    color: #017b5f;
    background-color: #fff;
    border: 2px solid #666;
    border-radius: 24px;
}

.radio__button__input:checked + .radio__button__control:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 12px;
    transform: translate(-50%, -50%);
}

.radio__button__input:checked + .radio__button__control {
    border-color: #000;
}

.radio__button__control {
    transform: scale(0.75);
}


.profile__section-profile__informations.input__sections {
    display: flex;
    flex-direction: column;
}

.profile__section-radio__sections {
    width: 100%;
}

.profile__section-radio__sections .forward__btn {
    transform: translateY(0) !important;
}

.profile__section-radio__sections .forward__btn__wrapper button {
    transform: translateY(0) !important;
}


.profile__section-radio__sections .forward__btn__wrapper {
    margin-bottom: 10px;
}

.profile__section-radio__sections .forward__btn__wrapper.save {
    display: none;
}

.profile__section-radio__sections .forward__btn__wrapper.save.active {
    display: flex;
}

.profile__section-profile__informations .input {
    white-space: nowrap;
    position: relative;
    margin-bottom: 7px !important;
}

.profile__section-profile__informations .input select {
    width: 310px;
    height: 26px;
    outline: none;
    border: 1px solid #707070;
    appearance: none;
    padding: 3px 8px;
    line-height: 1;
}


.profile__section-profile__informations .input input {
    width: 310px;
    outline: none;
    border: 1px solid #707070;
    padding: 0px 8px;


}

.previous__purchases-price__child__div .date__span {
    font-size: 13px;
}

.profile__bestellungen_title {
    min-width: 50%;
    flex-direction: row;
    align-items: center;
    display: grid;
    grid-template-columns: 130px 130px 175px 210px;
    border-bottom: 1px solid #707070;
}

.profile__bestellungen_title p {
    font-size: 18px;
    font-family: "Barlow Semibold", sans-serif;
}


.profile__section-profile__informations .input input.sm__input {
    width: 80px;
    margin-right: 6px;
}

.profile__section-profile__informations .input input.md__input {
    width: 220px;
}


#collapseTwo .profile__section-profile__informations .input label {
    width: 300px !important;
}

#collapseTwo .accordion-body {
    display: flex;
    flex-direction: column;
    row-gap: 30px;

}

#collapseTwo .accordion-body .warning__messages {
    display: flex;
    justify-content: start;
    flex-direction: column;
    margin-left: 300px;
}

#collapseTwo .accordion-body .warning__messages span {
    font-family: "Barlow Light", sans-serif;

}

#collapseTwo .accordion-body .warning__messages .password-valid-step {
    display: flex;
    flex-direction: row;
    align-items: center;

    column-gap: 5px;

}

#collapseTwo .accordion-body .warning__messages .password-valid-step img {
    height: 18px;
    width: auto;
}


#collapseTwo .accordion-body .warning__messages button {
    background-color: #fff;
    border: 1px solid #707070;
    padding: 1px 8px;
    font-size: 20px;
    font-weight: 600;
    transform: translateY(100%);

}

#collapseTwo .accordion-body .warning__messages button span {
    font-family: "Barlow Semibold", sans-serif;

}

#collapseTwo .accordion-body .warning__messages button span:last-of-type {
    display: flex;
    margin-left: 7px !important;
    margin: 0;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top: 0;
    border-bottom: 15px solid var(--color-primary);
    transform: rotate(90deg);
}

#collapseMeineKurse .accordion-body {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

#collapseMeineKurse .accordion-body .my__work__groups {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    border: 1px solid #707070;
    padding: 10px 17px;
}

#collapseMeineKurse .accordion-body .my__work__groups .work__groups__btns .work__groups__btns-edit, #collapseMeineKurse .accordion-body .my__work__groups .work__groups__btns .work__groups__btns-trash {
    cursor: pointer;
}

#collapseMeineKurse .accordion-body .my__work__groups .work__groups__btns .work__groups__btns-edit img {
    height: 20px;
    width: auto;
}

#collapseMeineKurse .accordion-body .my__work__groups .work__groups__btns .work__groups__btns-trash img {
    height: 20px;
    width: auto;
}

#collapseMeineKurse .accordion-body .my__work__groups .work__groups-for__view {
    display: flex;
    flex-direction: row;
}

#collapseMeineKurse .accordion-body .my__work__groups .my__work__groups-edit__section {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.my__work__groups-edit__section-students {
    display: flex;
    flex-direction: row;
}

.my__work__groups-edit__section-students .students {
    display: flex;
    flex-direction: column;
}

.my__work__groups-edit__section-students .students .desc {
    display: flex;
    column-gap: 0 !important;
}

.my__work__groups-edit__section-students .students .desc input {
    width: 115px;
    height: 28px;
    background: #fff;
    border: 1px solid #707070;
    border-right: 0;
    font-family: "Barlow Light", sans-serif;
    padding-left: 5px;
    outline: none;
}

.my__work__groups-edit__section-students .students .desc input::placeholder {
    color: rgba(0, 0, 0, .8);
    font-family: "Barlow Light", sans-serif;
}

.my__work__groups-edit__section-students .students .desc .student-name__and__delete__process {
    position: relative;
}

.my__work__groups-edit__section-students .students .desc .student-name__and__delete__process input {
    width: 150px;
    border-right: 1px solid #707070;
    padding-right: 30px;
}

.my__work__groups-edit__section-students .students .desc .student-name__and__delete__process button {
    outline: none;
    border: none;
    background: transparent;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    justify-content: center;
    align-items: center;
}

.my__work__groups-edit__section-students .students .desc .student-name__and__delete__process button img {
    width: 19.5px;
    height: auto;
}

.my__work__groups-edit__section-group__name, .my__work__groups-edit__section-students .students .student {
    display: flex;
    flex-direction: row;
}

.my__work__groups-edit__section-students .students .student.private label {
    border-bottom: 0;
    border-top: 0;
}

.my__work__groups-edit__section-students .students .student:last-of-type {
    border-bottom: 1px solid #707070;
}


.my__work__groups-edit__section-students .students .student label {
    width: 115px;
    height: 28px;
    background: #fff;
    border: 1px solid #707070;
    border-right: 0;
    outline: none;
    padding-left: 5px;
    font-family: "Barlow Light", sans-serif;
    font-size: 18px;
}


.my__work__groups-edit__section-students .students .student .student-name__and__delete__process {
    position: relative;
}

.my__work__groups-edit__section-students .students .student .student-name__and__delete__process label {
    width: 150px;
    border-right: 1px solid #707070;
}

.my__work__groups-edit__section-students .students .student .student-name__and__delete__process button {
    outline: none;
    border: none;
    background: transparent;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    justify-content: center;
    align-items: center;
}

.my__work__groups-edit__section-students .students .student .student-name__and__delete__process button img {
    width: 14px;
    height: auto;
}

.my__work__groups-edit__section-group__name h4, .my__work__groups-edit__section-students h4 {
    font-size: 18px;
    font-family: "Barlow SemiBold", sans-serif;
    width: 280px;
}

.my__work__groups-edit__section-group__name select {
    width: 270px;
    height: 31px;
}

.my__work__groups-edit__section__form.open {
    display: flex !important;
}

.my__work__groups-edit__section__form-send__btn {
    display: flex;
    align-items: end;
}

.my__work__groups-edit__section__form-send__btn span {
    font-family: "Barlow Light", sans-serif;

}

.my__work__groups-edit__section__form-send__btn button {
    background-color: #fff;
    border: 1px solid #707070;
    padding: 1px 8px;
    font-size: 20px;
    font-weight: 600;

}

.my__work__groups-edit__section__form-send__btn button span {
    font-family: "Barlow Semibold", sans-serif;

}

.my__work__groups-edit__section__form-send__btn button span:last-of-type {
    display: flex;
    margin-left: 7px !important;
    margin: 0;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top: 0;
    border-bottom: 15px solid var(--color-primary);
    transform: rotate(90deg);
}


#collapseMeineKurse .accordion-body .my__work__groups .work__groups {
    display: flex;
    flex-direction: row;
}

#collapseMeineKurse .accordion-body .my__work__groups .work__groups h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0 !important;
    font-family: "Barlow SemiBold", sans-serif;


}

#collapseMeineKurse .accordion-body .my__work__groups .work__groups span {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

#collapseMeineKurse .accordion-body .add__work__groups {
    display: flex;
    background: transparent;
    outline: none;
    cursor: pointer;
    padding: 10px 17px;
    width: 100%;
    border: 1px solid #707070;
    align-items: center;
    column-gap: 10px;
}

#collapseMeineKurse .accordion-body .add__work__groups {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-family: "Barlow Light", sans-serif;
}

#collapseMeineKurse .accordion-body .add__work__groups img {
    height: 20px;
    width: auto;
}

#collapseMeineKurse .create__kurse .create__kurse-main__title {
    font-family: "Barlow SemiBold", sans-serif;
    font-size: 18px;
    margin-bottom: 0;
}

#collapseMeineKurse .create__kurse-delete__section {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
}

#collapseMeineKurse .create__kurse-delete__section-text a {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
    position: relative;
}

#collapseMeineKurse .create__kurse-delete__section-text a::after {
    content: "";
    background-color: #707070;
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
}

#collapseMeineKurse .create__kurse-delete__section-img__wrapper {
    height: 18px;
    width: auto;
    top: 3px;
    position: relative;
}

#collapseMeineKurse .create__kurse-delete__section-img__wrapper img {
    height: 100%;
    width: 100%;
}

.create__kurse-file__inputs__section-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}


.kurse_img {
    font-size: 12px;
    max-width: 100%;
    cursor: pointer;
}

.kurse_img, .page-main-swiper .image-holder img, .page-side .page-side-content .content-scroll-gutter {
    max-width: 100%;
}

.k_label, .l_hvr {
    width: 100%;
    height: 100%;
    position: relative;
    transition: .4s;
    cursor: pointer;
}

.kurse_img, .kurse_input, .l_hvr svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.l_hvr {
    background: #ffffffdb;
    z-index: 9;
    opacity: 0;
}

.k_label:hover .l_hvr, .view:hover .overlay, input[type=checkbox]:checked::before {
    opacity: 1;
}

input[type=checkbox] {
    position: relative;
    color: #363839;
    border: 1px solid #707070;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    cursor: pointer;
    transition: background 175ms cubic-bezier(.1, .1, .25, 1)
}

input[type=checkbox]::before {
    position: absolute;
    content: "";
    display: block;
    top: calc(50% - 5px);
    left: calc(50% - 2px);
    width: 4px;
    height: 8px;
    border-style: solid;
    border-color: #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0
}


input[type=checkbox]:checked {
    color: #fff;
    background-color: #156db4;
}

.l_hvr svg {
    width: 50px;
    height: 50px;
    fill: #fbbd00;
}

.create__kurse-file__inputs__section-wrapper .create__kurse-inputs__section-labels {
    width: 90px;
}

.create__kurse-file__inputs__section-wrapper .create__kurse-inputs__section-inputs {
    padding: 0 10px;
    font-family: "Barlow Light", sans-serif;
    font-size: 16px;
}

.create__kurse-file__inputs__section-wrapper .create__kurse-inputs__section-labels img {
    width: 18px;
    height: auto;
}


.create__kurse-inputs__section-labels {
    width: 90px;
    font-family: "Barlow Light", sans-serif;
    font-size: 16px;
}

.create__kurse-inputs__section .create__kurse-inputs__section-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 0;
}

.create__kurse-inputs__section .create__kurse-inputs__section-wrapper .create__kurse-inputs__section-inputs {
    border: 1px solid #707070;
    height: 27px;
}

.kurse__small__section__wrapper .kurse__small__section {
    padding: 1rem 20px;
    border: 1px solid #707070;
}

.kurse__small__section__wrapper .kurse__small__section .input__wrapper__kurse__wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.profile-kurse-grid {
    grid-template-columns: 90px 240px;
    display: grid;
}

.profile-kurse-grid input {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
    border: 1px solid #707070;
}

.profile-kurse-grid .labels {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.create__kurse-inputs__section .create__kurse-inputs__section-wrapper .profile-kurse-grid .multiple__inputs .create__kurse-inputs__section-inputs {
    width: 80px;
    padding: 0 10px;

}


.create__kurse-inputs__section .create__kurse-inputs__section-wrapper .profile-kurse-grid .multiple__inputs .create__kurse-inputs__section-inputs:first-of-type {
    margin-right: 8px;
}


.create__kurse-inputs__section .create__kurse-inputs__section-wrapper .profile-kurse-grid .multiple__inputs .create__kurse-inputs__section-labels {
    width: auto;
    margin-right: 8px;
}

.kurse__small__section__wrapper {
    width: 100%;
    padding-left: 110px !important;
    padding-right: 20px !important;
}

#kurses {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

#newKurse {
    padding: 0 20px;
}


.profile-klassen-grid .addklassenlabel {
    font-size: 16px;
    font-family: "Barlow Light", sans-serif;
}

.profile-klassen-grid .addklassenlabelinput {
    font-size: 16px;
    font-family: "Barlow Light", sans-serif;
}

.create__kurse-inputs__section-table-inputs {
    width: 100px !important;
    border: 1px solid #707070;
    font-size: 16px;
    font-family: "Barlow Light", sans-serif;
}

.create__kurse-inputs__section-table-labels {
    font-family: "Barlow Light", sans-serif;
    font-size: 16px;
}

.create__kurse-inputs__section-table-inputs::placeholder {
    font-family: "Barlow Light", sans-serif;

}

.create__kurse-inputs__section-table .forward__btn__wrapper .forward__btn {
    transform: translateY(0) !important;
    font-size: 16px;
}

.create__kurse-inputs__section-wrapper .forward__btn__wrapper .forward__btn {
    transform: translateY(0) !important;
    font-size: 16px;
}

#newKurseLesson .forward__btn__wrapper .forward__btn {
    transform: translateY(0) !important;
    font-size: 16px;
}

.create__kurse-inputs__section-table .forward__btn__wrapper {
    margin-top: 20px;
}

.meine__klassen .process__btns {
    margin-right: 10px;
}

.klassenDeleteButton {
    height: 20px;
    width: auto;
}

.klassenDeleteButton img {
    width: 100%;
    height: 100%;
}

.klassenEditButton, .klassenDeleteButton {
    height: 20px;
    width: auto;
}

.klassenEditButton img, .klassenDeleteButton img {
    height: 100%;
    width: 100%;
}

.meine__klassen-add__klassen__btn {
    color: #000;
    font-size: 16px;
    text-decoration: none;
    font-family: "Barlow Light", sans-serif;
    display: flex;
    column-gap: 5px;
}


.meine__kurse-add__kurse__btn {
    font-size: 16px;
    font-family: "Barlow Light";

}

.meine__kurse-add__kurse__btn img {
    margin-right: 5px;
}

.klassen__edit__area .klassen__edit__area-area .profile-klassen-grid {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.klassen__edit__area .klassen__edit__area-area .profile-klassen-grid {
    border: 1px solid #707070;
}

.klassen__edit__area .klassen__edit__area-area .profile-klassen-grid .forward__btn__wrapper .forward__btn {
    transform: translateY(0);
    font-size: 18px;
}


.add-klassen.remove {
    display: none !important;
}

.add-klassen .forward__btn__wrapper {
    margin-bottom: 0 !important;
}


.add-klassen .forward__btn__wrapper .forward__btn {
    font-size: 16px;
    transform: translateY(0) !important;
}

.profile-klassen-grid-inputs__section {
    width: 100%;
}

.profile-klassen-grid-process__section {
    display: flex;
    align-items: end;
}

.profile-klassen-grid-process__section .forward__btn__wrapper {
    margin-bottom: 0 !important;
    display: none;
}

.meine__klassen__edit__delete-label {
    font-family: "Barlow Semibold", sans-serif;
    font-size: 16px;
}


.meine_klassenedit_delete-inputs {
    border: 1px solid #707070;
    font-size: 15px;
}

.meine_klassenedit_delete-inputs::placeholder {
    font-size: 15px;
}

.meine_klassen_add-inputs {
    border: 0px;
    background: transparent;
}

.meine_klassen_add-inputs img {
    height: 100%;
    width: auto;
}

.klassen__wrapper-klassName {
    background: #fff;
    border: 1px solid #707070;
    padding: 3px 4px;
    font-family: "BarlowSemibold", sans-serif;
}

.klassen__wrapper-studentName {
    border: 1px solid #707070;
    padding: 3px 4px;
    font-size: 16px;
}

.klassen__wrapper-nachname__wrapper {
    border: 1px solid #707070;
    border-left: 0px;
    padding: 3px 7px;
    font-size: 16px;

}

.klassen__wrapper-klassName, .klassen__wrapper-nachname {
    font-size: 16px;
}

.klassen__wrapper-klassName::placeholder, .klassen__wrapper-nachname::placeholder {
    font-size: 16px;
}

.klassen-klassname {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.klassen__wrapper-nachname {
    max-width: calc(100% - 25px);
    overflow: hidden;
    font-family: "BarlowSemibold", sans-serif;
}

.klassen__wrapper-klassName__not__first {
    border-top: 0px;
}

.klassenc.meine__klassen__edit__delete-inputs {
    border: 1px solid #707070;
    padding: 3px 4px;
}

.name__and__surname__add__section__wrapper {
    position: relative;
}

.name__and__surname__add__section__wrapper-add__btn {
    position: absolute;
    right: 3px;
    top: 50%;
    width: 26px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
}

.previous__purchases {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
}

.previous__purchases .previous__purchases-name {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.previous__purchases .left__wrapper {
    min-width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    display: grid;
    grid-template-columns: 130px 130px 175px 210px;
}

.previous__purchases .previous__purchases-name {
    width: 300px;
    font-family: "Barlow Light", sans-serif;

}

.previous__purchases .previous__purchases-price {
    font-size: 18px;
    white-space: nowrap;
    font-family: "Barlow Light", sans-serif;
    padding-right: .7rem;
    margin: 0 .5rem;
    display: flex;
    align-items: center;
    justify-content: start;
}

.previous__purchases .previous__purchases-price p {
    display: grid;
}

.previous__purchases-price__child__div .date__span {
    font-size: 13px !important;
}


.previous__purchases .previous__purchases-download {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.previous__purchases .previous__purchases-download a {
    font-size: 18px;
    color: var(--color-black);
    position: relative;
    text-decoration: none;
    font-family: "Barlow Light", sans-serif;
}

.previous__purchases .previous__purchases-download a::after {
    content: "";
    background-color: #707070;
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
}

.accordion-button::after {
    background-image: url("../img/icons/arrow-down.svg") !important;
    height: 13px !important;
}


/*! Products-set Section */

.products-set__section {
    height: var(--space--page);
    width: 94%;
    margin: 60px auto;
    top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
}

.products-set__section .wrapper_revert__for__mobile {
    display: none;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.sets__view__section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: .6s;
}

.sets__view__section.active {
    width: 100%;
    align-items: center;
    justify-content: center;
}

.sets__view__section-img__wrapper {
    height: 100%;
    min-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    transition: .6s;
}

.sets__view__section img {
    height: 60%;
    width: auto;
    transition: .6s;
}

.sets__view__section.active .sets__view__section-img__wrapper {
    align-items: center;
}

.sets__view__section.active + .product__information__wrapper {
    display: none;
}

.sets__view__section .swiper-button-full__screen {
    width: 100%;
    display: flex;
    justify-content: center;
    right: unset;
    bottom: unset;
    top: 85%;
    margin-top: 0;
    transform: unset;
}

.sets__view__section .swiper-button-full__screen button {
    color: #000000;
    background: transparent;
    outline: none;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: end;
}

.sets__view__section .swiper-button-full__screen button svg {
    font-size: 1.8em;
}

.sets__view__section__mobile__fullscreen {
    height: 100svh !important;
}

/*! Cart Section */

.cart__section__wrapper {
    min-height: var(--space--page);
    padding: var(--mainwrap--padding);
    display: flex;
    justify-content: center;
    padding-bottom: 300px;

}

.cart__section__wrapper #tabs_login {
    margin-bottom: 5rem;
}


.cart__section-title,
.cart__section-title h1 {
    font-size: 18px;
    font-family: "Barlow SemiBold", sans-serif;
}

.cart__section-title {
    border-bottom: 1px solid #707070;
}

.cart__section-title .prive {
    font-size: 18px;
    font-family: "Barlow SemiBold", sans-serif;
}


.cart__section-accordions:first-of-type {
    border-top: 1px solid #707070 !important;
    border-radius: 0 !important;
}

.cart__section-accordions:last-of-type {
    border-radius: 0 !important;
}

.cart__section-accordions {
    background-color: transparent !important;
    border-bottom: 1px solid #707070 !important;
    outline: none;
    border-left: none !important;
    border-right: none !important;
}

.cart__section-accordions-header {
    outline: none !important;
    border: none !important;
}

.cart__section-accordions-header button {
    background-color: transparent !important;
    color: #000;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    display: flex;
    justify-content: start;
    flex-direction: row-reverse;
    font-size: 18px;
    column-gap: 10px;
    padding-left: 0 !important;
    font-family: "Barlow SemiBold", sans-serif;
}

.cart__section-accordions-header button::after {
    margin: 0 !important;
}

.cart__section-cart__informations {
    display: flex;
    flex-direction: column;
    border-width: 1px !important;
}

.cart__section-cart__informations .input {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
}

.cart__section-cart__informations .input label {
    width: 180px;
    font-size: 18px;
}

.cart__section-cart__informations .input input {
    width: 310px;
    outline: none;
    border: 1px solid #707070;

}

.cart__section-accordions .accordion-collapse .accordion-body {
    display: flex;
    column-gap: 15px;
    flex-direction: row;
    padding: 10px 10px;
    padding-left: 30px;
    padding-right: 0;
    padding-bottom: 4rem;

}

.cart__section {
    width: 800px;
}

.cart__section .profile__section-title h1 {
    font-size: 18px;
}

.cart__section .profile__section-title .prive {
    font-size: 18px;
    font-weight: 400;
}


.cart__section-accordions:last-of-type {
    border-radius: 0 !important;
}

.cart__section-accordions {
    background-color: transparent !important;
    border-bottom: 1px solid #707070 !important;
    outline: none;
    border-left: none !important;
    border-right: none !important;
}

.cart__section-accordions-header {
    outline: none !important;
    border: none !important;
}

.cart__section-accordions-header button {
    background-color: transparent !important;
    color: #000 !important;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    display: flex;
    justify-content: start;
    flex-direction: row-reverse;
    font-size: 18px;
    column-gap: 10px;
    padding-left: 0 !important;
    font-family: "Barlow SemiBold", sans-serif;
}

.cart__section-accordions-header button::after {
    margin: 0 !important;
}

#cartOne .accordion-body {
    padding-bottom: 0rem !important;
}

#cartOne .accordion-body .title__section__warning {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding-top: 8px;
    padding-bottom: 30px;
    border-top: 1px solid #707070;
}

#cartOne .accordion-body .title__section__warning .product-total-price {
    font-size: 20px;
    font-family: "Barlow Light", sans-serif;
}

#cartOne .accordion-body .title__section__warning h3 {
    font-size: 18px;
    font-family: "Barlow SemiBold", sans-serif;
}

#cartOne .accordion-body .title__section {
    display: grid !important;
    grid-template-columns: 1fr 85px 285px;
    padding-top: 5px;
    border-bottom: 1px solid #707070;
}

#cartOne .accordion-body .title__section h3 {
    font-size: 18px;
    font-family: "Barlow SemiBold", sans-serif;
}

#cartOne .accordion-body .title__section .title__section-product__amount {
    display: flex;
    justify-content: center;
    font-weight: normal;
}

#cartOne .accordion-body .title__section .title__section-product__buyer_information {
    width: max-content;
}

#cartOne .accordion-body .warning__section {
    position: relative;
}

#cartOne .accordion-body .warning__section p {
    font-size: 16px;
    font-family: "Barlow Light", sans-serif;
    position: relative;
}

#cartOne .accordion-body .warning__section p::before {
    content: "";
    background-image: url("../img/icons/");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    left: -10px;
    top: 5px;
    transform: translateX(-100%);

}

#cartOne .accordion-body .management__section {
    display: grid !important;
    grid-template-columns: 1fr 285px;
}

.management__section .management__section-wrap {
    display: grid;
    grid-template-columns: 1fr 85px;

}

#cartOne .accordion-body .management__section + .korb-sect__border {
    border-top: 1px solid #707070;
    width: 100%;
    height: 1px;
}

#cartOne .accordion-body .management__section-title {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;

}


#cartOne .accordion-body .management__section-amount__setup {
    display: flex;
    justify-content: center;
}

#cartOne .accordion-body .management__section-amount__setup span {
    height: 30px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cartOne .accordion-body .management__section-amount__setup span img {
    width: 19px;
    height: auto;
}

#cartOne .accordion-body .management__section-amount__setup .basket-qty {
    font-size: 18px;
    width: 27px;
    height: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    background: transparent;
    outline: none;
    border: none;
    padding: 0 2px !important;
}

.basket-confirm-area .checkbox {
    width: 17px;
    height: 17px;
}

#cartOne .accordion-body .management__section-amount__setup .basket-qty::-webkit-outer-spin-button,
#cartOne .accordion-body .management__section-amount__setup .basket-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#cartOne .accordion-body .management__section-amount__setup .basket-qty[type=number] {
    -moz-appearance: textfield;
}

#cartOne .accordion-body .management__section-information hr {
    margin: .5rem 0 !important;
}

#cartOne .accordion-body .management__section-information .type__two-inp__group-name__surname {
    display: grid;
    column-gap: 10px;
}

#cartOne .accordion-body .management__section-information .type__two-inp__group-name__surname input {
    width: 50%;
    outline: none;
    font-size: 16px;
}

#cartOne .accordion-body .management__section-information .type__two-inp__group-name__surname input::placeholder {
    font-size: 16px;
}

#cartOne .accordion-body .management__section-information .type__two-inp__group-class__name h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 400;
    font-family: "Barlow Light", sans-serif;
}


#cartOne .accordion-body .management__section-information .type__two-inp__group-class__name .select {
    width: 100%;
    height: 31px;
    display: flex;
    align-items: center;
    outline: none;
}

#cartOne .accordion-body .management__section-price {
    display: flex;
    justify-content: end;
    width: 90px;
    font-size: 20px;
}

#cartOne .accordion-body .warning__section span {
    position: absolute;
    left: -30px;
}

#cartOne .accordion-body .warning__section span img {
    width: 18px;
    height: auto;
}


/*todo Select input */

.s-hidden {
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font: normal 11px/22px Arial, Sans-Serif;
    color: black;
}

.styledSelect {
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 18px;
    font-weight: 400 !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    background-color: white;
    padding: 0 10px;
    font-weight: bold;
    border: 1px solid #707070;
    font-family: "Barlow Light", sans-serif;
    overflow: hidden;
}

.styledSelect.disabled {
    appearance: none;
    pointer-events: none;
    opacity: 0.5;
    background: transparent;
}

.options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    border-top: 0px !important;
    border: 1px solid #707070;
    background-color: white;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options.disabled {
    appearance: none;
    pointer-events: none;
    opacity: .5;
    display: none;
}

.options li {
    font-size: 16px;
    padding: 0 6px;
    margin: 0 0;
    padding: 0 10px;
    font-family: "Barlow Light", sans-serif;
}

.options li:hover {
    background-color: #eee;
}

.cart__section-cart__informations {
    width: 100%;
}

.cart__section-cart__informations .coupon__code,
.cart__section-cart__informations .total__price {
    width: 100%;
    padding: 6px 0;
    border-top: 1px solid #707070;
}

.cart__section-cart__informations .coupon__code .coupon__code-left__wrapper {
    align-items: center;
}

.cart__section-cart__informations .coupon__code .coupon__code-left__wrapper input {
    font-size: 16px;
}

.cart__section-cart__informations .total__price {
    border-bottom: 1px solid #707070;
}

.cart__section-cart__informations .coupon__code .coupon__code-title {
    margin-right: 30px;
}

.cart__section-cart__informations .coupon__code .coupon__code-title h4 {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
    margin-bottom: 0 !important;
}

.cart__section-cart__informations .coupon__code .coupon__code-earned__price {
    font-size: 20px;
    font-family: "Barlow Light", sans-serif;

}

.cart__section-cart__informations .coupon__code .coupon__code-code__input input {
    font-size: 18px;
    appearance: none;
    outline: none;
    border: 1px solid #707070;
    width: 130px;
    display: flex;
    align-items: center;
    text-align: start;
    margin-right: 15px;
    padding: 0px 10px;
}


.cart__section-cart__informations .coupon__code .coupon__code-left__wrapper .basket-info-input {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
    transform: translateY(0);
    cursor: pointer;
    height: 26px;
}


.cart__section-cart__informations .coupon__code .coupon__code-code__input input::-webkit-outer-spin-button,
.cart__section-cart__informations .coupon__code .coupon__code-code__input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart__section-cart__informations .coupon__code .coupon__code-code__input input[type=number] {
    -moz-appearance: textfield;
}

.cart__section-cart__informations .coupon__code .coupon__code-code__input button {
    background: #fff;
    font-size: 18px;
    outline: none;
    border: 1px solid #707070;
    padding: 0 10px;
}

.cart__section-cart__informations .total__price .total__price-title h4 {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.cart__section-cart__informations .total__price .total__price-earned__price {
    font-size: 20px;
    font-family: "Barlow Light", sans-serif;
}

.label__section {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.secondary__input__section {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.secondary__input__section .input {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
}

.secondary__input__section .input label {
    width: 220px;
    font-size: 18px;
}

.secondary__input__section .input input {
    width: 310px;
    outline: none;
    border: 1px solid #707070;

}

.about__informations {
    display: flex;
    column-gap: 15px;
    flex-direction: row;
    margin-bottom: 40px;
}

#cartThree .accordion-body {
    display: flex;
    flex-direction: column !important;
    row-gap: 20px;
}

.sign__in-sign__up-tabs ul {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    padding-left: 0 !important;
}

.sign__in-sign__up-tabs ul li {
    font-family: "Barlow Semibold", sans-serif;
    font-size: 20px;
    list-style-type: none;
    position: relative;
}

.sign__in-sign__up-tabs ul li button {
    background: transparent;
    border: 0px !important;
    font-size: 18px;

}

.sign__in-sign__up-tabs ul li.active::after {
    content: "";
    background-color: #000;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -5px;
    border-radius: 5px;
    left: 0;
}

.about__adress .label__section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Barlow Semibold", sans-serif;
}

.about__adress .label__section {
    row-gap: 0 !important;
}

.register__button {
    background-color: #fff;
    border: 1px solid #707070;
    padding: 1px 8px;
    font-size: 20px;
    font-weight: 600;
    transform: translateY(100%);

}

.register__button__wrapper {
    margin-left: 220px;
}

.register__button__wrapper .register__button span {
    font-family: "Barlow SemiBold", sans-serif;
}

.register__button span:nth-child(2) {
    display: flex;
    margin-left: 7px !important;
    margin: 0;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top: 0;
    border-bottom: 15px solid var(--color-primary);
    transform: rotate(90deg);
}

.radio__option {
    width: 100%;
}

#cartFour .radio__option .radio__section .radio__section-radio__sections .radio__section-radio__btn label .title {
    min-width: 175px;
}

#cartFive .radio__option .radio__section .radio__section-radio__sections .radio__section-radio__btn label .title {
    width: 230px;
    font-family: "Barlow Light", sans-serif;

}

.radio__option .radio__section .radio__section-radio__sections .radio__section-radio__btn label {
    width: 100%;
    font-family: "Barlow Light", sans-serif;

}

.radio__option .radio__section .radio__section-radio__sections .radio__section-radio__btn .price {
    font-size: 20px;
    display: flex;
}

.radio__option .radio__section .radio__section-radio__sections .radio__section-radio__btn .radio__button__control {
    background: transparent;
}

.radio__section-radio__sections .radio__section-radio__btn:first-of-type {
    border-top: 1px solid #707070;
}

#cartFive .radio__section-radio__sections .radio__section-radio__btn {
    border-bottom: 1px solid #707070;
}

.radio__option .shipping__total {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #707070;
    padding: 4px 0;
    padding-left: 33px;
}

.radio__option .shipping__total .shipping__total-title {
    font-size: 18px;
}

.radio__option .shipping__total .shipping__total-price {
    font-size: 20px;
}

.cart__section .total {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
}

.cart__section .total .total-title {
    font-size: 18px;
    font-weight: 700;
}

.cart__section .total .total-price {
    font-size: 20px;
    font-family: "Barlow Semibold", sans-serif;
}

.gm-bundled-control-on-bottom {
    right: 45px !important;
    left: auto !important;
    bottom: 420px !important;
}

#krediform .billing__address {
    padding-top: 1rem;
    padding-bottom: 3rem;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
}

#krediform .delivery__address {
    padding-top: 1rem;
    padding-bottom: 3rem;

}

#krediform .delivery__date {
    padding-top: 1rem;
    padding-bottom: 3rem;
}


.basket-confirm-area .radio__linktext {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    position: relative;

}

.basket-confirm-area .basket-confirm {
    margin-left: .4rem;
}

.basket-confirm-area .radio__linktext::after {
    content: "";
    background-color: #707070;
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
}

.order__completed__btns {
    display: flex;
    column-gap: 1rem;
}

.order__completed__btns .basket-continue {
    padding: 3px 5px;
    border: 1px solid #707070;

}

.order__completed__btns .basket-continue a {
    text-decoration: none;
    color: #000;
}

.order__completed__btns .forward__btn__wrapper {
    border: none;
}

.order__completed__btns .forward__btn__wrapper .forward__btn {
    transform: translateY(0) !important;
    margin-bottom: 0;
}

/*! AGB Section  */

/*! Korb Details Section */

.cart__section__wrapper .page-inner {
    width: 800px;
}

.korb__login__section {
    display: none;
}

.korb__login__section.active {
    display: block;
}

.korb__login__section .address-grids {
    margin-bottom: 1rem;
}

.korb__login__section .address-grid input {
    width: 70%;
    font-size: 16px;
}

.radio__section-radio__btn .cargomethodprice {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;

}

.radio__option .shipping__total .shipping__total-title {
    font-family: "Barlow Semibold", sans-serif;
    font-size: 18px;
}

.radio__option .shipping__total .shipping__total-price span {
    font-family: "Barlow Semibold", sans-serif;
    font-size: 20px;
}


.korb__register__section {
    display: none;
}

.korb__register__section.active {
    display: block;
}

.korb__register__section .address-area-grid .passwort-alert {
    padding-left: 0 !important;
}

.passwort-alert .alert-line img {
    width: auto;
    height: 15px;
}


.korb__details-page__title__wrapper h1 {
    font-size: 18px;
    font-family: "Barlow SemiBold", sans-serif;
    margin-bottom: 0rem;
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.korb__details-page__title__wrapper span {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.korb__details-page__title__wrapper {
    border-bottom: 1px solid #707070;
    padding: 5px 0;
}

.warenkorb_main-title {
    font-size: 18px;
    font-family: "Barlow SemiBold", sans-serif;
    margin-bottom: 2rem;
}

.warenkorb_main-products__wrapper-products__titles {
    border-bottom: 1px solid #707070;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.warenkorb_main-products__wrapper-products__titles h4 {
    font-family: "Barlow SemiBold", sans-serif;
    font-size: 18px;
}

.warenkorb_main-products__wrapper-products__titles-right h4:first-of-type {
    width: 60px;
}


.warenkorb_main-products__wrapper-products__titles-right h4:last-of-type {
    width: 240px;
}

.warenkorb_main-products__wrapper .warenkorb {
    padding: 6px 0;
    border-bottom: 1px solid #707070;
    margin: 0;
}

.warenkorb_main-products__wrapper .warenkorb .warenkorb-product_name {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
    padding-right: 1rem !important;
}

.warenkorb_main-products__wrapper .warenkorb .warenkorb-menge span {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.warenkorb_main-products__wrapper .warenkorb .warenkorb-personalisierung span {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.warenkorb_main-products__wrapper .warenkorb .warenkorb-price span {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}


.total__price__wrapper-title {
    font-family: "Barlow Light", sans-serif;
    font-size: 18px;
}

.total__price__wrapper-price {
    font-family: "Barlow Light", sans-serif;
    font-size: 18px;
}

.cargo__type .cargo__type-price {
    /*width: 60px;*/
}


.warenkorb_main-products__wrapper .warenkorb-menge {
    width: 60px;
    display: flex;
    justify-content: center;
}

.warenkorb_main-products__wrapper .warenkorb-price {
    width: 60px;
}

.warenkorb_main-products__wrapper .warenkorb-personalisierung {
    width: 180px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}


.warenkorb_main-products__wrapper {
    font-size: 18px;

}


.payment__method .payment__method-method {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.payment__method .payment__method-price {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

#tabs_login .warenkorb {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 154px;
}

#tabs_login .warenkorb .left-wrapper {
    display: flex;
}

#tabs_login .warenkorb {
    border-bottom: 1px solid #707070;
    padding: 10px 0;
}

#tabs_login .total__warenkorb {
    margin-top: 50px;
    border-top: 1px solid #707070;
}

.korb-login__btn__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
}

.korb-login__btn__wrapper .passwort__vergessen {
    display: flex;
    justify-content: end;
}


.korb-login__btn__wrapper a {
    font-family: "Barlow Light", sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
}


.korb-login__btn__wrapper .forward__btn__wrapper {
    margin-bottom: 0;
    display: flex;
    justify-content: start;
    height: max-content;
}

.korb-login__btn__wrapper .forward__btn__wrapper button {
    transform: translateY(0) !important;
}


/*! Footer Section */

.footer {
    width: 100%;
    height: 0px;
    position: absolute;
    z-index: 998;
    bottom: 0;
}

.footer-bg {
    width: 100%;
    height: auto;
    position: absolute;
    transform: translateY(-100%);
    transform-origin: bottom right;
}

.footer-bg img {
    width: 100%;
    height: auto;
}

.footer-bg img.footer__desktop {
    display: flex;
}

.footer-bg img.footer__mobile {
    display: none;
}

.footer-text__section {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-40%);
}

.footer-text__section h3 {
    font-size: 18px;
    font-family: 'Barlow SemiBold', sans-serif;

    font-weight: 700 !important;
    margin-bottom: 0;
}

.footer-text__section .links {
    color: #000;
    font-size: 18px;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Barlow Light';

}

.footer-text__section .links a {
    text-decoration: none;
    color: #000;
}


/*! Radio Buttons */

.radio__section-radio__btn {
    width: 100%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;

    padding: 4px 0;
}

.radio__section-radio__btn label {
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.radio__section-radio__btn label .left__wrapper {
    display: flex;
}

.radio__section-radio__btn input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

.radio__section-radio__btn input {
    font-size: 1rem;
    line-height: 1.5;
    width: 15px;
    height: 15px;
    padding: 11px 23px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0;
    outline: 0;
    background-color: transparent;

}

.radio__button__input {
    opacity: 0;
    position: absolute;
    margin: 3px 3px 0 5px;
    vertical-align: middle;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.radio__section-radio__btn {
    cursor: pointer;
}

.radio__button__control {
    position: relative;
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 12px;
    vertical-align: middle;
    background-color: inherit;
    color: #017b5f;
    background-color: #fff;
    border: 2px solid #666;
    border-radius: 24px;
}

.radio__button__input:checked + .radio__button__control:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 12px;
    transform: translate(-50%, -50%);
}

.radio__button__input:checked + .radio__button__control {
    border-color: #000;
}

.radio__button__control {
    transform: scale(0.75);
}

/*! Modal */
.modal-wrapper {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;

}

.modal-wrapper.active {
    display: block;
}

.modal-wrapper::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(245, 245, 245, .79);
    z-index: -1;

}

.modal-wrapper .modal__header {
    width: 100%;
    display: flex;
    justify-content: start;
    padding: 1rem 2rem;

}

.modal-wrapper .modal__header .modal__header-modal__logo {
    width: 6rem;
    height: auto;
}


.modal-wrapper .modal__sec {
    background-color: #fff;
    width: 600px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem 2rem;
}

.modal-wrapper .modal__sec .modal-show__section {
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    margin-bottom: 2rem;
}

.modal-wrapper .modal__sec .modal-show__section span {
    padding: 1rem 0;
    font-size: 22px;

}

.modal-wrapper .modal__sec .modal-process__section {
}


/*! Warning Modal */
.warning__modals {
    position: fixed;
    bottom: 15.5rem;
    right: 3.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

@keyframes goBack {
    0% {
        transform: translateX(150%);
    }

    25% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(150%);
    }
}


.warning__modal {
    background-color: #A0A0A0;
    padding: 10px 20px;
    padding-right: 50px;
    width: 350px;
    box-shadow: 2px 4px 6px #00000029;
    column-gap: 10px;
    display: none;
    transform: translateX(150%);
    align-items: center;

}

.warning__modal.show {
    display: flex;
}

.warning__modal-img__wrap {
    height: 100% !important;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
}

.warning__modal-img__wrap img {
    width: 40px;
    height: auto;
}


.warning__modal-text {
    color: #fff;
    font-size: 18px;
    font-family: "Barlow SemiBold", sans-serif;
    line-height: 1.3;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.itemQtyPl, .itemQtyMn {
    cursor: pointer;
}

/*! Coupon Code */
/*.blur__bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30px;
    transition: opacity .6s ease-in-out;

    z-index: 1000;
    padding: 3rem 3rem;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;

}*/
.blur__bg {
    position: fixed;
    top: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
    /* border-radius: 30px; */
    transition: opacity .6s ease-in-out;
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: #0000002e;
    align-items: center;
    justify-content: center;
    display: flex;
}

.blur__bg.active::before {
    opacity: 1;
    pointer-events: visible;

}

.coupon__codes {
    position: relative;
    z-index: 1001;
    width: 465px;
    height: 220px;
}

.blur__bg.active {
    opacity: 1;
    pointer-events: visible;
}


.coupon__codes .coupon__code {
    background-color: var(--color-primary);
    grid-template-columns: 57% 43%;
    display: grid;
    padding: .4rem;
    width: 100%;
    border: 2px solid #000;
    height: 100%;
    border-radius: 3px;
}


.coupon__code-left__wrapper, .coupon__code-right__wrapper {
    height: 100%;
}


.coupon__codes .coupon__code-left__wrapper {
    padding: 0 .3rem 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coupon__code-left__wrapper .real__coupon__code {
    width: 50px;
}

.coupon__code-left__wrapper h4 {
    font-family: "Barlow Semibold", sans-serif;
    font-size: 23px;
}

.coupon__code-left__wrapper h5 {
    font-family: "Barlow Light", sans-serif;
    font-size: 15px;
}

.coupon__code-left__wrapper .real__coupon__code {
    width: 100%;
    display: flex;
    justify-content: start;

    background: transparent;
    outline: none;
    border: none;
    cursor: default;

}

.coupon__code-left__wrapper .real__coupon__code h5 {
    width: 135px;
    height: 35px;
    font-size: 21px;
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    font-family: "Barlow Semibold", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    column-gap: 4px;
}

.coupon__code-left__wrapper .real__coupon__code h5 img {
    height: 20px;
    width: auto;
}

.coupon__code-right__wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coupon__code-right__wrapper-close__wrapper {
    position: absolute;
    right: .5rem;
    top: .5rem;
    background: transparent;
    border: none;
    outline: none;
}

.coupon__code-right__wrapper-close__wrapper img {
    width: 25px;
    height: 25px;
}


.coupon__code-right__wrapper-logo__wrapper {
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 999px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.coupon__code-right__wrapper-logo__wrapper img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.coupon__code-right__wrapper .coupon__code-right__wrapper-dont__show__again__wrapper {
    position: absolute;
    bottom: 10px;

    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 6px;
}

.coupon__code-right__wrapper .coupon__code-right__wrapper-dont__show__again__wrapper .checkbox {
    width: 18px;
    height: 18px;
    min-height: 18px;
}

.coupon__code-right__wrapper .coupon__code-right__wrapper-dont__show__again__wrapper #gift-vouchers-confirm {

    width: 18px !important;
    height: 18px !important;
}

.coupon__code-right__wrapper .coupon__code-right__wrapper-dont__show__again__wrapper label {
    font-size: 14px;
}

.coupon__code-left__wrapper h5 {
    margin-bottom: 1rem;
}


/*? Global Btn */

.forward__btn__wrapper {
    display: flex;
    justify-content: end;
    margin-bottom: 1rem;
}

.forward__btn__wrapper button {
    display: flex;
    background-color: #fff;
    border: 1px solid #707070;
    padding: 1px 8px;
    font-size: 20px;
    font-weight: 600;
    transform: translateY(100%);
}

.forward__btn__wrapper .forward__btn {
    display: flex;
    align-items: center;
    font-family: "Barlow Semibold", sans-serif;
    background-color: #fff;
    border: 1px solid #707070;
    padding: 1px 8px;
    font-size: 20px;
    font-weight: 600;
    transform: translateY(100%);
}

.forward__btn__wrapper .forward__btn span {
    font-family: "Barlow Semibold", sans-serif;
}

.forward__btn__wrapper button span {
    font-family: "Barlow Semibold", sans-serif;

}

.forward__btn__wrapper .forward__btn span:last-of-type {
    display: flex;
    margin-left: 7px !important;
    margin: 0;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top: 0;
    border-bottom: 15px solid var(--color-primary);
    transform: rotate(90deg);
}

.forward__btn__wrapper button span:last-of-type {
    display: flex;
    margin-left: 7px !important;
    margin: 0;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top: 0;
    border-bottom: 15px solid var(--color-primary);
    transform: rotate(90deg);
}


/*Korb*/
.korb__section__wrapper {
    min-height: var(--space--page);
    padding: var(--mainwrap--padding);
    display: flex;
    justify-content: center;
    padding-bottom: 200px;
}

.korb__section {
    width: 800px;
}

.page-title {
    margin-bottom: 1.75em;
    padding: 8px 0;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    font-size: 22px;
    color: #000000;
    font-family: "Barlow Light", sans-serif;
}

.agb__section-min__title {
    font-size: 16px;
    font-family: "Barlow Semibold", sans-serif;
}

.agb-text {
    font-size: 16px;
    font-family: "Barlow Light", sans-serif;
}

.regular {
    font-weight: 400
}

.order-completed h1 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px
}

.order-completed h3 {
    font-size: 18px;
    line-height: 22px;
    color: #323131;
}


/*reset-password*/
.rp__section__wrapper {
    min-height: var(--space--page);
    padding: var(--mainwrap--padding);
    display: flex;
    justify-content: center;
    padding-bottom: 200px;
}

.rp__section {
    width: 800px;
}

.rp__section__wrapper .forward__btn__wrapper .forward__btn {
    transform: translateY(0);
    margin-bottom: 0;
}

.rp__section__wrapper .valid-password {
    width: 310px;
    outline: none;
    border: 1px solid #707070;
}

.rp__section__wrapper .passwort-alert {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid #707070;
    border-top: 1px solid #707070;
}

.rp__section__wrapper .reset__passwort__title {
    font-size: 18px;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #707070;
}

.email__send__successful p {
    font-family: "Barlow Light", sans-serif;
}

.email__send__successful p a {
    text-decoration: underline !important;
    font-family: "Barlow Semibold", sans-serif;
}

.rp__section__wrapper .password__label {
    font-size: 18px;
    font-family: "Barlow Semibold", sans-serif;
}

.rp__section__wrapper .repeatpassword__label {
    font-size: 18px;
    font-family: "Barlow Semibold", sans-serif;
}


/* .rp__section .page-content form div {
    display: flex;
}

.rp__section .page-content form div label {

} */


/*register*/
.register__section__wrapper {
    min-height: var(--space--page);
    padding: var(--mainwrap--padding);
    display: flex;
    justify-content: center;
    padding-bottom: 200px;
}

.register__section {
    width: 800px;
}

/*Agb*/
.agb__section__wrapper {
    min-height: var(--space--page);
    padding: var(--mainwrap--padding);
    display: flex;
    justify-content: center;
    padding-bottom: 200px;
}

.agb__section {
    width: 800px;
}

.agb_page-inner {
    display: block;
}

/*Profil register*/
.address-area-grid {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
    column-gap: 35px;
}

.address-area-grid p {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
    margin-bottom: .2rem !important;
}

.address-area-grid .passwort-alert {
    padding-left: 31px;
}

.address-area-grid.korb {
    padding-left: 0 !important;

}

.address-area-grid-registeren__button {
    padding-left: 31px;
}

.address-area-grid .login__forward__btn__wrapper .forward__btn__wrapper button {
    transform: translateY(0) !important;
    margin-top: .5rem;
}

.address-area-grid .forgot__password {
    border-top: 1px solid #707070;
    margin-top: 10px;
    padding-top: 25px;

}

.address-area-grid .forgot__password .forward__btn__wrapper button {
    transform: translateY(0) !important;
}

.address-area-grid .forgot__password .forgot__password__title a {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.d-none {
    display: none !important;
}

.f-right {
    float: right !important;
}

.border-grey {
    border: 1px solid #555;
}

.border-grey a {
    text-decoration: none;
    color: #000;
}

.justify-SB {
    justify-content: space-between !important;
}

.ml-10 {
    margin-left: 10px;
}

/*Sepet Login*/
.margint-35 {
    margin-top: 35px;
}

.m0-15 {
    margin: 0 15px;
}


.address-grid {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
    display: grid;
    column-gap: 10px;
}

.address-grid .alert-line {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.address-grid .alert-line span {
    font-size: 16px;
    font-family: "Barlow Light", sans-serif;
}

.address-grid .alert-line img {
    width: auto;
    height: 15px;
}

.address-grid label {
    font-size: 18px;
    font-family: "Barlow Light", sans-serif;
}

.korb-pass {
    transform: translateY(150%);
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.temizle {
    clear: both;
}

a, a:hover {
    text-decoration: none !important;
    color: #000 !important;
}

.mr-3, .mx-3 {
    margin-right: 1rem !important;
}

.meine_klassen-addklassen_btn {
    column-gap: 5px;
}

/*! Mobile Menu */
.mobile__menu {
    background-color: var(--color-primary);
    opacity: 0;
    appearance: none;
    pointer-events: none;
    width: 100%;
    height: 100vh;

    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;

    transition: opacity .4s ease;
}

.mobile__menu.active {
    opacity: 1;
    appearance: unset;
    pointer-events: visible;
    overflow: auto;
}


.mobile__menu.active {
    appearance: auto;
    opacity: 1;
}


.mobile__menu-links {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    row-gap: 20px;

}

/*Sepet New*/
.management__section-information-price__and__input {
    display: flex;
    justify-content: space-between;
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr;
}

.management__section-information-price__and__input .select {
    width: 100%;
}

.management__section-information-price__and__input .trash__btn__wrapper {
    height: 18px;
    width: auto;
    right: -35px;
}


.management__section-information-price__and__input .trash__btn__wrapper img {
    height: 100%;
    width: 100%;
}

.management__section-information-price {
    display: flex;
    justify-content: end;
    width: auto;
    font-size: 20px;
}

.management__section-information-price .value {
    font-family: "Barlow Light", sans-serif;
    font-size: 20px;
}

/*! Paypals */
.rechnung_paypal #logo img, .rechnungsuberweisung #logo img {
    width: 145px;
    height: auto;
}


.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 9999;
}

.pulsing-circle {
    width: 70px;
    height: 70px;
    background-color: #d6ab00;
    border-radius: 50%;
    animation: pulse 2.5s infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: top left;
    transform: translate(-50%, -50%);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) translate(-50%, -50%);
        opacity: 1;
    }
    50% {
        transform: scale(1.5) translate(-50%, -50%);
        opacity: 0.5;
    }
}

/*! Mobile Menu */
.mobile__menu {
    z-index: 999;
}

.mobile__menu-links li {
    list-style-type: none;
    position: relative;
}

.mobile__menu-links li .dropdown__icon__wrapper {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translate(0%, -50%);
    display: flex;
    align-items: center;
    width: 10px;
    height: auto;
}

.mobile__menu-links li .dropdown__icon__wrapper img {
    width: 100%;
    height: auto;
}


.mobile__menu-links li .mobile__menu-link {
    font-size: 19px;
    font-family: "Barlow Light";
}

.mobile__menu-links li .mobile__menu-link .mobile__menu-link-text.active {
    font-family: "Barlow Semibold", sans-serif;
}


.mobile__menu-links li .mobile__menu-link .mobile__menu-link-text.mainactive {
    font-family: "Barlow Semibold", sans-serif;
}

.mobile__menu-link-dropdown__menu {
    background-color: #F2EFEF;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
}


.mobile__menu-link-dropdown__menu .header-links-dropdown__menu-group.active h4 {
    font-family: "Barlow Semibold", sans-serif;
}

.header-links-dropdown__menu-group.active ul {
    max-height: 600px !important;
}

.mobile__menu-link-dropdown__menu .header-links-dropdown__menu-group ul {
    max-height: 0;
    overflow: hidden;
    padding-left: 3.5rem;
}

.mobile__menu-link-dropdown__menu .header-links-dropdown__menu-group h4 {
    position: relative;
    font-size: 19px;
    background-color: #E2E2E2;
    margin-bottom: 2px !important;
}

.mobile__menu-link-text, .mobile__menu-link-dropdown__menu .header-links-dropdown__menu-group h4 {
    height: 38px;
    padding-left: 2.5rem;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}


/*  */

/* .gift-button {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    overflow: visible;
}
.gift-box {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: red;
    display: none;
    border-radius: 5px;
} */

#confetti-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#confetti-container canvas {
    transform: scale(10); /* Adjust the scale value to increase/decrease the size */
    transform-origin: center;
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    margin: auto;
    display: none;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));

    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.priceA-del {
    font-family: 'Barlow SemiBold', sans-serif;
    font-size: 20px;
}

.priceA-del span {
    text-decoration: line-through;
    text-decoration-color: var(--color-primary);
}

.priceColorA2 {
    color: var(--color-primary);
    justify-content: end;
    position: relative;
    top: 5px;
    font-size: 16px !important;
}