/* Fonts */
@font-face {
  font-family: "Helvetica Bold";
  src: url("https://forest.edu.unibe.ch/assets/Helvetica-Bold.ttf");
  font-weight: bold;
}

@font-face {
  font-family: "Helvetica Light";
  src: url("https://forest.edu.unibe.ch/assets/Helvetica-Light.ttf");
  font-weight: normal;
}
body {
  font-family: "Helvetica Light", Arial, sans-serif;
}

h1, h2, h3 {
  font-family: "Helvetica Bold", Arial, sans-serif;
  font-weight: bold;
}

p {
  font-family: "Helvetica Light", Arial, sans-serif;
}

/*background colors --> bgc-*/
/*
	Erste #fdfdfd
	Zweite #dacbb7
	Dritte#79b0ae
	Vierte #355b73
	FÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼nfte #9cb0b5
	Gold c8a160
*/


.bgc-fdfdfd {
    background-color: #fdfdfd;
}

.bgc-dacbb7 {
    background-color: #dacbb7;
}

.bgc-79b0ae {
    background-color: #79b0ae;
}

.bgc-6f9da2 {
    background-color: #6f9da2;
    color: white;
}

.bgc-72a3b3 {
    background-color: #72a3b3;

}

.bgc-e4ebed {
    background-color: #e4ebed;

}

.bgc-0b5e76 {
    background-color: #0b5e76;
    color: white;
}

.bgc-9cb0b5 {
    background-color: #9cb0b5;
}

.bgc-c8a160 {
    background-color: #c8a160;
    color: white;
}

.bgc-dbc197 {
    background-color: #dbc197;
    color: white;
}

.bgc-dbceba {
    background-color: #dbceba;
    color: white;
}

.bgc-e8dec9 {
    background-color: #e8dec9;
    color: black;
}

.bgc-79afae {
    background-color: #79afae;
}

.bgc-bezi-inner {
    background-color: #96a4a9;
}

.bgc-dein-inner {
    background-color: #ede5d2;
}

.bgc-acht-inner {
    background-color: #dbc299;
}

.bgc-resi-inner {
    background-color: #dbc299;
    color: black;
}

.bgc-init-inner {
    background-color: #b9cec6;
}

.bgc-emo-inner {
    background-color: #c9cec8;
}

.bgc-wohl-inner {
    background-color: #ede5d2;
}

.bgc-wohl-navi {
    background-color: #dbceba;
}

.bgc-test-inner {
    background-color: #daeced;
    color: black;
}

.bgc-init-navi {
    background-color: #79afae;
}

.bgc-button-lea {
    background-color: #0b5e76;
    color: white;
    border-radius: 8px;
}

.bgc-button-elias {
    background-color: #e89200;
    color: white;
    border-radius: 8px;
}

.bgc-button-anja {
    background-color: #de368a;
    color: white;
    border-radius: 8px;
}

.bgc-input-lea {
    background-color: #e4ebed;
    color: #1b303a;
    border-radius: 8px;
}

.bgc-input-elias {
    background-color: #f6ce96;
    color: #1b303a;
    border-radius: 8px;
}

.bgc-input-anja {
    background-color: #fce4f0;
    color: #1b303a;
    border-radius: 8px;
}

.bgc-card-lea1 {
    background-color: #ebd5c4;
}

.bgc-card-lea2 {
    background-color: #e6cab6;
}

.bgc-card-elias1 {
    background-color: #b4dcf6;
}

.bgc-card-elias2 {
    background-color: #92b1c9;
}

.bgc-card-anja1 {
    background-color: #dfeee2;
}

.bgc-card-anja2 {
    background-color: #95caa7;
}



/* login & register page */
.loginCardContainer>.card {
    border-style: none;
}

.loginCardContainer>.card>.card-header {
    background-color: #79b0ae;
    color: #0b5e76 !important ;
    border-style: none;
}

.loginCardContainer>.card>.card-header>h5 {
    border-style: none;
}

.loginCardContainer>.card>.card-header {
    background-color: #79b0ae;
    color: #0b5e76;
    border-style: none;
}

.loginCardContainer>.card>.card-body {
    background-color: #fdfdfd;
}

.loginCardContainer>.card>.card-body>form>button {
    border-color: white;
    background-color: #c8a160;
}

/*Button position*/
.bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

/*Card style*/
.card-header {
    background-color: #e4ebed !important;
    color: #0b5e76 !important;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 8px
}

.no-border {
    border-style: none;
}

.card>.card-header>.align-items-center {
    color: #0b5e76;
}

.verticalcenter {
    display: flex;
    align-items: center;
}

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    background-color: transparent;
    width: 300px;
    height: 200px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #bbb;
    color: #0b5e76;
}

/* Style the back side */
.flip-card-back {
    background-color: #e4ebed;
    color:#0b5e76;
    transform: rotateY(180deg);
}

.invisible {
    opacity: 0;
}

.navbar-brand {
    background: url(https://forest.edu.unibe.ch/assets/Logo.png);
    background-size: cover;
    width: 104px;
    height: 64px;
    color: #1b3039 !important;
}

.container-fluid nav {
	background-color: #1b3039 !important;
}

.footer-holder{
    background-color: #1b3039 !important;
    color: var(--light);
}

.footer a {
    color: var(--light) !important;
}

a {
    color: #365d74;
}

a:hover {
    color: #497e9d;
}

.button {border-radius: 8px;}


body {
  color: black;
}

h1 {
  color:#0b5e76;
}

h2 {
  color:#0b5e76;
}
h3 {
  color:#0b5e76;
}

.input {
  color:#0b5e76;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

