/*@import "https://fonts.googleapis.com/css?family=Cabin:900,800,700,600,400,300,200,100";*/
@import "https://fonts.googleapis.com/css?family=Jost:900,800,700,600,400,300,200,100";

:root {
	--ga-blue: #0d6efd;
	--ga-indigo: #6610f2;
	--ga-purple: #6f42c1;
	--ga-pink: #d63384;
	--ga-red: #dc3545;
	--ga-orange: #fd7e14;
	--ga-yellow: #ffc107;
	--ga-green: #198754;
	--ga-teal: #20c997;
	--ga-cyan: #0dcaf0;
	--ga-black: #000;
	--ga-white: #fff;
	--ga-gray: #6c757d;
	--ga-gray-dark: #343a40;
	--ga-gray-100: #f8f9fa;
	--ga-gray-200: #e9ecef;
	--ga-gray-300: #dee2e6;
	--ga-gray-400: #ced4da;
	--ga-gray-500: #adb5bd;
	--ga-gray-600: #6c757d;
	--ga-gray-700: #495057;
	--ga-gray-800: #343a40;
	--ga-gray-900: #212529;
	--ga-primary: #0d6efd;
	--ga-secondary: #6c757d;
	--ga-success: #198754;
	--ga-info: #0dcaf0;
	--ga-warning: #ffc107;
	--ga-danger: #dc3545;
	--ga-inaktiv: #6c757d;
	--ga-light: #f8f9fa;
	--ga-dark: #212529;
	--ga-font-sans-serif: jost, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--ga-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--ga-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	--ga-body-font-family: var(--ga-font-sans-serif);
	--ga-body-font-size: 1rem;
	--ga-body-font-weight: 400;
	--ga-body-line-height: 1.5;
	--ga-body-color: var(--ga-gray-800);
	--ga-body-bg: var(--ga-white);
	--ga-border-width: 1px;
	--ga-border-style: solid;
	--ga-border-color: #dee2e6;
	--ga-border-color-translucent: rgba(0, 0, 0, 0.175);
	--ga-border-radius: 0.375rem;
	--ga-border-radius-sm: 0.25rem;
	--ga-border-radius-lg: 0.5rem;
	--ga-border-radius-xl: 1rem;
	--ga-border-radius-2xl: 2rem;
	--ga-border-radius-pill: 50rem;
	--ga-heading-color: var(--ga-gray-800);
	--ga-link-color: var(--ga-gray-800);
	--ga-link-hover-color: #0a58ca;
	--ga-code-color: #d63384;
	--ga-highlight-bg: #fff3cd;
	--ga-header-bg-color: #bcd587;
	--ga-footer-bg-color: #3c4132;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.inaktiv {
	color: var(--ga-inaktiv);
}
.fehler_meldung {
	color: var(--ga-red);
	font-size: 16px;
	margin-bottom: 10px;
}
html{
  /*position: relative; 
  height: 100%;
  overflow: hidden;*/
	text-rendering:optimizeLegibility!important;
	-webkit-font-smoothing:antialiased!important;
}

body{
	margin: 0;
	font-family: var(--ga-body-font-family);
    font-size: var(--ga-body-font-size);
    font-weight: var(--ga-body-font-weight);
    line-height: var(--ga-body-line-height);
    color: var(--ga-body-color);
    text-align: var(--ga-body-text-align);
	text-rendering: optimizeLegibility;
    background-color: var(--ga-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	height: 100vh;
	overflow-y:scroll;
	-webkit-overflow-scrolling:touch;
}
hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: 0.25;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--ga-heading-color);
	text-align: center;
	font-weight: 800;
}
h1, .h1 {
	font-size: calc(1.375rem + 1.5vw);
}
h2, .h2 {
	font-size: calc(1.325rem + 0.9vw);
}
h3, .h3 {
	font-size: calc(1.3rem + 0.6vw);
}
h4, .h4 {
	font-size: calc(1.275rem + 0.3vw);
}
h5, .h5 {
	font-size: 1.25rem;
}
h6, .h6 {
	font-size: 1rem;
}
p {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 18px;
}
ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
li {
	list-style: none;
}
b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}
a {
  color: var(--ga-link-color);
  text-decoration: none;
	touch-action: manipulation;
}
a:hover {
  color: var(--ga-link-hover-color);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
pre,
code,
kbd,
samp {
  font-family: var(--ga-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
img,
svg {
  vertical-align: middle;
}

table {
  --ga-table-color: var(--ga-body-color);
  --ga-table-bg: transparent;
  --ga-table-border-color: var(--ga-border-color);
  --ga-table-accent-bg: transparent;
  --ga-table-striped-color: var(--ga-body-color);
  --ga-table-striped-bg: rgba(0, 0, 0, 0.05);
  --ga-table-active-color: var(--ga-body-color);
  --ga-table-active-bg: rgba(0, 0, 0, 0.1);
  --ga-table-hover-color: var(--ga-body-color);
  --ga-table-hover-bg: rgba(0, 0, 0, 0.075);
  caption-side: bottom;
  border-collapse: collapse;
	width: 100%;
  margin-bottom: 1rem;
  color: var(--ga-table-color);
  vertical-align: top;
  border-color: var(--ga-table-border-color);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
/* Remove Arrows/Spinners
/* 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;
  appearance: textfield;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

.form-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.form-group .form-label {
  flex-basis: 145px;
  margin-right: 1%;
  padding-top: 10px;
}
.form-group label {
  font-size: 18px;
  font-weight: 400;
  max-width: 100%;
  margin-bottom: 5px;
}
.form-group .form-input {
  width: calc(100% - 145px);
}
.form-group .form-input textarea {
  height: 100px;
}
.form-group input, .form-group textarea, .form-group select, .select2-container--default .select2-selection--multiple {
  border-radius: 0 !important;
  border: 1px solid #999;
  -webkit-box-shadow: none !important;
  -mox-box-shadow: none !important;
  box-shadow: none !important;
  background-color: #f3f1ed !important;
  padding: 8px 15px !important;
}
.form-group .form-control {
  display: block;
  width: 100%;
  height: 38px;
  font-size: 14px;
  line-height: 1.43;
  color: #555;
}
.form-group .form-control.input-small {
  width: 10%;
  min-width: 60px;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

input:focus, select:focus {
	border: 2px solid #000066 !important;
}
/*input:not(:placeholder-shown) {
	border-color: 3px solid red;
}*/
/*input:not(:placeholder-shown):valid {
	border: 2px solid green;
}*/
input[type="submit"]:hover {
  color: green;
}
input:required:valid {
  border: 2px solid blue;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}
.btn {
  display: inline-block;
  padding: 10px 15px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
}
.btn-default {
  color: #333;
  background-color: #f9c56a;
  border-color: #ccc;
}
.btn-secondary {
  background-color: #e9e5dd;
  color: #8c8881;
  border: 1px solid #e9e5dd;
}
.btn-lg {
  font-weight: 700;
  padding: 15px 40px;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}
input[type=button], input[type=submit], button {
	cursor: pointer;
}
[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
  appearance: textfield;
}
.button.green {
	border: 0px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.25);
	background: #87a447;
	color: var(--ga-white);
}
.button.green:hover {
  background-color: #688a4d;
}
[hidden] {
  display: none !important;
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --ga-gutter-x: 1.5rem;
  --ga-gutter-y: 0;
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}

/*@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}*/
.row {
  --ga-gutter-x: 1.5rem;
  --ga-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--ga-gutter-y));
  margin-right: calc(-0.5 * var(--ga-gutter-x));
  margin-left: calc(-0.5 * var(--ga-gutter-x));
}
.jconfirm .row {
  justify-content: center;;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--ga-gutter-x) * 0.5);
  padding-left: calc(var(--ga-gutter-x) * 0.5);
  margin-top: var(--ga-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}
.clearfix {
	zoom: 1;
}
.clearfix::before, .clearfix::after {
	content: "\0020";
	display: block;
	height: 0;
	visibility: hidden;
}
.hidden {
  display: none !important;
}	
.hidden.flexbox {
  display: flex !important;
}
.right-space{
	margin-right:20px;
}

.left-padding {
	padding-left: 20px !important;
}
.clicky-menu {
	justify-content: stretch;
	margin: 0;
	padding: 0;
	list-style: none;
}
.clicky-menu ul {
	position: absolute;
	top: 100%;
	left: 0;
	visibility: hidden;
}
.clicky-menu.no-js li:hover > ul {
	visibility: visible;
}
.clicky-menu.no-js li:focus-within > ul {
	visibility: visible;
}
.clicky-menu ul[aria-hidden="false"] {
	visibility: visible;
}
.clicky-menu .sub-menu--right {
	left: auto !important;
	right: 0 !important;
}
.menu {
    padding-bottom: 30px;
}
.menu-card {
	display: flex;
}
.card {
	position: relative;
	width: 10%;
	height: 160px;
	margin: 0 5px;
	background-color: red;
	transition: 0.3s;
	overflow: hidden;
	cursor: pointer;
}
.mehr .card {
  background-color: white;
}
.card-kalender {
	position: relative;
	width: 130px;
	height: 194px;
	margin: 0 5px;
	transition: .3s;
	overflow: hidden;
	cursor: pointer;
}
.card h3 {
	position: absolute;
	padding-top: 70px;
	font-size: 16px;
	width: 100%;
	overflow: hidden;
	color: #fff;
	text-shadow: 0 0 5px black;
}
.card img, .card-kalender img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: .3s;
}
.card::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	opacity: 0;
	transition: .3s;
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
}
.card-content {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 1rem;
	z-index: 1;
	color: #fff;
	transition: .3s;
	opacity: 0;
}
.card a {
	padding: .3rem .8rem;
	font-size: .8rem;
	border: none;
	cursor: pointer;
	outline: none;
	color: #fff;
	background: transparent;
	border: 2px solid #fff;
	text-shadow: 0 0 5px black;
}
.card a:hover {
	background-color: var(--ga-header-bg-color);
	color: var(--ga-heading-color);
	text-shadow: none;
}
.card-content p {
	font-size: .8rem;
	margin: .5rem 0;
	text-shadow: 0 0 5px black;
}
.card:hover {
	width: 220px;
}
.card:hover img, .card-kalender:hover img {
	transform: scale(1.1);
}
.card:hover:after, .card:hover .card-content {
	opacity: 1;
}
.space60 {
    margin-bottom: 60px;
}
.recipie-single{
	padding:85px 0;
}
.single-recipe-image{
	padding:12px;
	border:1px solid #e9e9e9;
	margin:0 0 25px;
	background-color: #f9f9f9;
	text-align: center;
}
.single-recipe-image img {
	height: 400px;
	margin-left: auto;
	margin-right: auto;
}
.single-recipe{
	padding-bottom:40px;
	background-color:#fff;
}
.single-recipe h1,.single-recipe h2,.single-recipe h3,.single-recipe h4,.single-recipe h5,.single-recipe h6,.single-recipe .h1,.single-recipe .h2,.single-recipe .h3,.single-recipe .h4,.single-recipe .h5,.single-recipe .h6{
	text-transform:uppercase;
	text-align:left;
}
.single-recipe h3{
	margin-top:0;
}
.single-recipe p{
	margin-bottom:30px;
	font-size:17px;
	line-height:27px;
}
.single-recipe .heading-bottom-line{
	font-size:16px;
	padding-bottom:18px;
	margin-bottom:0;
}
.ingredients{
	padding:27px 29px;
	margin-bottom:40px;
	border-top:1px solid #f9c56a;
	background-color:#ffe6b9;
}
.ingredients .title{
	margin-bottom:30px;
	font-size:16px;
	text-transform:uppercase;
}
.ingredients ul{
	list-style:none;
	padding:0;
	margin:0;
}
.ingredients li{
	margin-bottom:17px;
	font-size:17px;
}
.nutrition-table{
	margin-bottom:40px;
}
.nutrition-table table,.nutrition-table table th,.nutrition-table table td{
	text-align:left;
	padding:10px 0;
	border:none;
}
.page_header_advent {
	background-color: var(--ga-header-bg-color);
}
.page_header_advent .titel {
	width: 90%;
	text-align: left;
}
.page_header_advent .titel h2 {
	text-align: left;
	padding: 30px 0;
	font-size: 30px;
}
.page_header_advent .user-btn {
	width: 10%;
	font-size: 24px;
	padding-top: 30px;
}
.page_header_advent .user-btn .nav_item {
	text-align: right;
}
.page_header_advent .user-btn .bewertung {
	background-image: url("../img/rate.png");
	background-repeat: no-repeat;
	background-position: top;
	margin-top: 20px;
	margin-left: 20px;
	width: 69px;
	height: 58px;
  cursor: pointer;
}
.page_header_advent .user-btn .bewertung:hover {
	background-image: url("../img/rate_hover.png");
}
.page_header_advent .user-btn .bewertung:hover a {
	color: var(--ga-link-hover-color);
}

.page_header_advent .user-btn .bewertung a {
	cursor: pointer;
	position: absolute;
	right: 18px;
	top: 60px;
}

.page-header-user {
	margin: 80px 0 40px;
	padding-left: 20px;
}
.user .menu-tags {
  margin-left: -40px;
  margin-right: -40px;
}
.user .profile_data #profile-tab {
	border-bottom: 1px solid #d9d9d9;
	padding-left: 20px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	color: #495057;
	background-color: #f1f1f1;
	border-color: #dee2e6 #dee2e6 #fafafa;

}
.user .profile_data #profile-tab a {
	padding: 15px;
	display: block;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 2.4px;
	color: #9b9b9b;
	font-weight: 600;
	margin-right: 15px;
	font-size: 18px;
	margin-bottom: 0 !important;
	border: 0 solid #bcd587 !important;
	border-bottom: 2px solid #f1f1f1 !important;
}
.user .profile_data #profile-tab a.active {
	border: 0 solid #bcd587 !important;
	border-bottom: 2px solid #bcd587 !important;
  color: #333;
  font-weight: bold;
}
a#profile-panel-tab {
	background-color: #fff;
}
.user .profile_data #profile-tab a:hover {
  background-color: #bcd587;
  color: #fff;
}
.user_dropdown .ga-dropdown-toggle {
	padding: 0;
	cursor: pointer;
	display: inline-block;
}
.user_dropdown .ga-dropdown-menu {
	width: 200px;
	box-shadow: 0 9px 16px 0 rgb(0 0 0 / 15%);
	border: 0;
	clear: both;
	right: 0;
	padding: 0;
	top: 75px;
	background: #ffffff;
	position: absolute;
	border-radius: 4px;
	display: none;
	z-index: 900;
}
.user_dropdown.open .ga-dropdown-menu {
	display: block;
}
.user_dropdown_item {
	padding: 10px 15px;
	display: block;
	font-size: 16px;
	color: #343c3f;
}
.user_dropdown_item:hover {
	background-color: #f5f5f5;
}
#drinks.menu-items3 {
	height: auto !important;
}
#tonic-content img {
	width: 80%;
	max-width: 209px;
}
footer {
	background: var(--ga-footer-bg-color);
	height: 70px;
	position: fixed;
	bottom: 0;
	width: 100%;
  z-index: 10000;
}
.feature-flex {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
}
footer .footer-now, footer .footer-archiv, footer .footer-mehr, footer .footer-suchen {
	text-align: center;
	display: flex;
	flex-direction: column;
	padding-top: 15px;
	color: white;
}
footer .footer-now:hover, footer .footer-archiv:hover, footer .footer-mehr:hover, footer .footer-suchen:hover, footer .footer-now.active, footer .footer-archiv.active, footer .footer-mehr.active, footer .footer-suchen.active {
	color: var(--ga-header-bg-color);
}
footer a {
	color: white;
}
footer .search-bar-holder {
	background-color: var(--ga-header-bg-color);
	width: 300px;
	position: absolute;
	right: 100px;
	top: -60px;
	height: 60px;
	text-align: center;
  justify-content: center;
}
footer .search-bar {
	width: 240px;
	height: 40px;
	padding: 10px;
	margin-top: 10px;
}
footer .search-bar-holder .search-bar-form-submit {
  background-color: #f1c40f;
  width: 40px;
  height: 40px;
  border: thin solid #9d9d9d;
  text-align: center;
  position: relative;
  top: 10px;
}
footer .search-bar-holder .search-bar-form-submit::before {
  font-family: FontAwesome;
  font-weight: 400;
  font-size: 18px;
  content:"\f002";
  text-decoration: none;
}
footer [data-badge] {
	position: relative;
	&:after {
		position: absolute;
		right: -10px;
		top: -10px;
		min-width: 20px;
		min-height: 20px;
		color: white;
		background-color:#bf1f1f;
		font-size: 12px;
		font-weight: bold;
		border-right: 50%;
		content:attr(data-badge);
		border: solid 1px #c93a3a;
	}
}
.ui-to-top.active {
	transform: translateY(0);
}
.ui-to-top.active:hover {
  background-color: darkgreen;
}
.ui-to-top {
	display: none;
	right: 40px;
	bottom: 80px;
	border: none;
	cursor: pointer;
	outline: none;
	width: 50px;
	height: 50px;
	font-size: 24px;
	line-height: 46px;
	color: #ffffff;
	background: #84bc0f;   /*#5bc0de; blau*/
	border-radius: 50%;
	position: fixed;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
	z-index: 11120;
	transition: 0.3s all ease;
}
.ui-to-top.mobile i {
  margin-left: -7px;
}
	