:root {
    --main-color: #59489C;
    --main-color-hover: #9082c9;
    --second-color: #5DE5DA;
    --background-color: #F0F0F0;
    --basic-black: #535353;
  }
  
  body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    background-color: var(--background-color);
  }
  
  a {
    color: var(--main-color);
  }
  
  a:hover {
    color: var(--main-color-hover);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Raleway", sans-serif;
  }

/*--------------------------------------------------------------
# Demo
--------------------------------------------------------------*/
.full {
  height: 100vh;
  width: 100%;
}

.query-params {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-color: white;
  border: 1px solid black;
  border-radius:  20px;
  padding: 20px 40px;
}

.query-params ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.img-cover-cropped {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.img-cover-cropped img.bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  min-width: 100%;
  min-height: 100%;
  height: auto;
  width: auto;
}
.img-cover-cropped img.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 80%;
  height: auto;
  width: auto;
}

.sf-toolbar-clearer, .sf-toolbarreset {
  display: none !important;
}

/*--------------------------------------------------------------
# Loading
--------------------------------------------------------------*/

.loading {
  background: rgba(255,255,255,.8);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
  .loading > div {
      display: table;
      height: 100%;
      width: 100%;
      text-align: center;
  }
      .loading > div > div {
          display: table-cell;
          vertical-align: middle;
      }