:root {
  /*! CORPORATE DESIGN COLORS */
  --dark-color: #F1940A;
  --light-color: #eeb766;
  --very-light-color: #f5e1c4;
  --secondary-color: #000000;
}


.logo {
  height: 3.5em;
  width: 15em;
  margin-top: 0em;
  background-image: url("logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  float: left;
}

/*! Iphone portrait */
@media screen and (-webkit-min-device-pixel-ratio: 2) and (orientation:portrait),
(min-resolution: 192dpi) {
  .logo {
    height: 2em;
    width: 8em;
  }
}





























/* custom classes */

.center {
  display: inherit;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background {
  background-color: var(--light-color);
  color: white;
}

.lightbackground {
  background-color: var(--very-light-color);
  color: var(--light-color);
}

.border {
  border: 1px solid silver;
}

.lightborder {
  border: 1px solid var(--light-color);
}

.radius {
  border-radius: 5px
}

.pointer {
  cursor: pointer;
}

.fullwidth {
  width: 100%;
}

.width2x3 {
  width: 66%;
}

.width1x3 {
  width: 33%;
}

.fullheight {
  height: 100vh;
}

.little {
  width: 50px;
  height: auto;
}

.medium {
  width: 100px;
  height: auto;
}

.big {
  width: 150px;
  height: auto;
}

.transparent {
  opacity: 0.5;
}

.hover:hover {
  color: darkgrey;
  background-color: #b18e60;
}

.test {
  background-color: black;
  color: white;
}

.marginTop {
  margin: 40px 0px 0px 0px
}

.marginRight {
  margin: 0px 40px 0px 0px
}

.marginBottom {
  margin: 0px 0px 40px 0px
}

.marginLeft {
  margin: 0px 0px 0px 40px
}

.marginBig {
  margin: 100px;
}


.displayInherit {
  display: inherit;
}