@import url('https://fonts.googleapis.com/css2?family=Chela+One&display=swap" rel="stylesheet');

:root {
  --bgColor1: #F7F9A6;
  --bgColor2: #EBB00E;
  --bgColor3: #EEB413;
  --bgColor4: #217E9E;
  --bgColor5: #00ADD9;
  --defaultShadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

body {
  font-family: 'Chela One', sans-serif;
  letter-spacing: 1.5px;
  background-color: #ddeeff;
  font-size: 1.25rem;
}

#divLoading {
  display: none;
}

#divLoading.show {
  display: block;
  position: fixed;
  z-index: 90000 !important;
  background-image: url('/libs/images/gifs/loading_blue.gif');
  background-color: #fff;
  opacity: 0.5;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
}

html, body {
  height: 100%;
  margin: 0px;
}

.content {
  padding-bottom: 100px;
  padding-top: 10px;
}

.title-session {
  font-size: 2rem;
  text-align: center;
}

.session {
  margin-bottom: 100px;
}

/* MOBILE */
@media only screen and (max-width: 800px) {

  .title-session {
    margin-top: 30px !important;
    width: 100% !important;
  }

  .col {
    margin-bottom: 30px !important;
  }
}

/* WEB */
@media only screen and (min-width: 801px) {}