+body.is-open {
+ height: 100%;
+ overflow-y: hidden;
+}
+
+.l-change-pop {
+ margin-top: 18px;
+}
+.is-open .l-change-pop {
+ height: auto;
+ margin-top: 18px;
+ padding: 10px 50px;
+}
+
+.l-navigation__logo {
+ height: 44px;
+}
+
+.l-navigation__menu {
+ .scrollable {
+ height: 100%;
+ overflow-y: scroll;
+ padding-bottom: 30px;
+ }
+}
+
+.l-navigation__menu__book__header {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+
+ p {
+ margin: 0;
+
+ &.korona {
+ &:before {
+ content: url('images/korona.svg');
+ width: 21px;
+ margin-right: -21px;
+ position: relative;
+ top: -10px;
+ left: -3px;
+ }
+ }
+ }
+}
+.l-navigation__menu__book {
+ .button {
+ display: inline-block;
+ font-size: 16px;
+ font-weight: 700;
+ padding: 0 20px;
+ min-width: 212px;
+ line-height: 38px;
+ text-align: center;
+
+ /* green 700 */
+ background: #92BD39;
+ color: #083F4D;
+ border-radius: 6px;
+
+ transition: background-color 150ms;
+
+ &:hover {
+ background-color: #FBC40F;
+ }
+ }
+}
+.l-navigation__menu__book__info {
+ img {
+ width: 42px;
+ height: 60px;
+ }
+}
+.l-navigation__menu__links ul li a em {
+ font-style: normal;
+ color: #FFA500;
+ font-weight: 600;
+}
+.l-navigation__login {
+ color: #74BDC2;
+ margin-right: 20px;
+
+ a {
+ color: white;
+ }
+}
+.l-navigation__actions {
+ position: relative;
+ height: 44px;
+
+ .user {
+ margin-right: 25px;
+ }
+}
+
+
.l-books {
margin-right: -17px;
}
}
}
+.l-checkout__box {
+ position: relative;
+}
.l-checkout__payments {
display: none;
}
}
+.l-checkout__footer__content__item > div ul {
+ font-weight: normal;
+ font-size: 15px;
+ line-height: 150%;
+ color: #808080;
+}
.l-checkout__form__row {
}
}
}
+
+
+
+#user-menu {
+ //display: none;
+
+ position:absolute;
+ top: 60px;
+ z-index: 1;
+
+ position: absolute;
+ width: 186px;
+ top: 48px;
+ right: 45px;
+
+ /* yellow 900 */
+ background: #F7BA00;
+ box-shadow: 0px 0px 20px rgba(1, 129, 137, 0.2);
+ border-radius: 10px;
+ overflow: hidden;
+
+ opacity:0;
+ pointer-events: none;
+ transition: 200ms opacity;
+
+ &.is-open {
+ //display: block;
+ pointer-events: all;
+ opacity: 100%;
+ }
+
+ ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+
+ li {
+ a {
+ color: #474747;
+ display: block;
+ line-height: 27px;
+ padding: 8px 21px;
+ &:hover {
+ color: #474747;
+ background: #EDAA00;
+ }
+
+ strong {
+ font-weight: 600;
+ }
+ }
+ }
+ }
+}
+
+
+form {
+ label.required:before {
+ content: "* ";
+ color: #FF4C54;
+ }
+ .helptext {
+ color: #808080;
+ font-size: 15px;
+ line-height: 150%;
+ margin-bottom: 30px;
+ }
+
+}
+
+.socialaccount_providers {
+ list-style: none;
+ padding: 0;
+
+ li {
+ display: inline-block;
+ margin-right: 10px;
+ }
+}
+
+
+
+.page-simple {
+ margin-bottom: 70px;
+ padding-bottom: 30px;
+ border-radius: 10px;
+ background: #E1F1F2;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+
+ .white-box {
+ // for legacy templates
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ }
+
+ h1 {
+ width: 100%;
+ margin: 0 0 50px 0;
+ padding: 32px 45px;
+ border-radius: 10px 10px 0 0;
+
+ font-style: italic;
+ font-weight: 300;
+ font-size: 48px;
+ line-height: 55px;
+ letter-spacing: -0.02em;
+ background: #083F4D;
+ color: #92BD39;
+ }
+
+ > p, form {
+ min-width: 300px;
+ margin-left: 50px;
+ margin-right: 50px;
+ }
+
+ button, input[type=submit] {
+ margin: 24px 0;
+ height: 56px;
+ background: #083F4D;
+ border-radius: 3px;
+ font-weight: 600;
+ font-size: 20px;
+ line-height: 25px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ color: #FFFFFF;
+ width: 340px;
+ }
+
+ label {
+ font-style: normal;
+ font-weight: 600;
+ font-size: 15px;
+ line-height: 160%;
+ color: #083F4D;
+ margin-top: 24px;
+ }
+
+ input, textarea, select {
+ display: block;
+ width: 100%;
+ background: #FFFFFF;
+ color: black;
+ border: 1px solid #D5ECED;
+ border-radius: 3px;
+ transition: all cubic-bezier(0, 0, 0.2, 1) 250ms;
+ padding: 10px;
+ outline: 0;
+ }
+ input, select {
+ height: 56px;
+ }
+ input[type=checkbox], input[type=radio] {
+ display: inline;
+ float: left;
+ width: 1.2em;
+ height: 1.2em;
+ vertical-align: middle;
+ margin-right: 1em;
+ }
+}