#room-table-desc
{
    width: 100%;
}
#room-table-desc td
{
    border:1px solid #ebebeb;
    text-align: left;
    color: var(--color_5);
    padding: 10px;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 24px;
}
#room-table-desc td span
{
    color: #2A364D; 
}
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
    height: 100%;
}

/* Optional: Makes the sample page fill the window. */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}
/* =================    GROUPE ROOT  ================== */
:root {
    --bg_inactive: #2c5aa0;
    --bg_active: #2ad4ff;

    --color_inactive: white;
    --color_active: #156bc1;

    --title_font: bold 16px Poppins;
    --title_color: white;

    --item_font: normal 15px Poppins;
    --item_color: #515151;
}
/* :: 00.0 Root */
:root {
  --color_1: #2AD4FF;
  --color_2: #2C5AA0;
  --color_3: #FF6600;
  --color_4: #2A303B;
  --color_5: #AFB4BF;

  --title_font: bold 16px Poppins;
  --title_color: white;

  --item_font: normal 15px Poppins;
  --item_color: #515151;
}
/* =================    GROUPE "ACCORDION"  ================== */
#accordion {
  width: 100vh;
  margin: 0em auto 3em auto;
}
.acc-item{
  width: 100vh;
  margin: 1em auto;
  border: 1px solid var(--color_2);
}
.acc-item summary {
  background-color: var(--color_2);
  color: white;
  margin: auto;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.5s ease-in-out;
}
.acc-item summary .acc-title{
  font-weight: bolder;
  line-height: 2em;
}
.acc-item .acc-icon img {
  width: 1em;
  transition: transform 0.5s ease-in-out
}
.acc-item .acc-list {
  background-color: snow;
}
.acc-item .acc-list li {
  padding: 0.5em;
  font-weight: normal;
  line-height: 2em;
}
.acc-item .acc-list img {
  width: 1em;
  margin: 0.5em;
}
.acc-item[open] {
  border: 1px solid var(--color_1);
}
.acc-item[open] summary {
  background-color: var(--color_1);
}
.acc-item[open] .acc-icon img {
  transform: rotate(45deg);
}
/**
 * ----------------------------------------
 * animation shake-lr
 * ----------------------------------------
 */
.shake-lr {
	-webkit-animation: shake-lr 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-lr 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}
@-webkit-keyframes shake-lr {
    0%,100% {     -webkit-transform: rotate(0deg);    transform: rotate(0deg);
                  -webkit-transform-origin: 50% 50%;  transform-origin: 50% 50%;}
    10% {         -webkit-transform: rotate(8deg);    transform: rotate(8deg);}
    20%,40%,60% { -webkit-transform: rotate(-10deg);  transform: rotate(-10deg);}
    30%,50%,70% { -webkit-transform: rotate(10deg);   transform: rotate(10deg);}
    80% {         -webkit-transform: rotate(-8deg);   transform: rotate(-8deg);}
    90% {         -webkit-transform: rotate(8deg);    transform: rotate(8deg);}
}
@keyframes shake-lr {
    0%,100% {     -webkit-transform: rotate(0deg);    transform: rotate(0deg);
                  -webkit-transform-origin: 50% 50%;  transform-origin: 50% 50%;}
    10% {         -webkit-transform: rotate(8deg);    transform: rotate(8deg);  }
    20%,40%,60% { -webkit-transform: rotate(-10deg);  transform: rotate(-10deg);}
    30%,50%,70% { -webkit-transform: rotate(10deg);   transform: rotate(10deg); }
    80% {         -webkit-transform: rotate(-8deg);   transform: rotate(-8deg); }
    90% {         -webkit-transform: rotate(8deg);    transform: rotate(8deg);  }
}
/**
 * ----------------------------------------
 * animation blink-2
 * ----------------------------------------
 */
.blink-2 {
	-webkit-animation: blink-2 0.9s infinite both;
	        animation: blink-2 0.9s infinite both;
}
@-webkit-keyframes blink-2 {
  0% {    opacity: 1;}
  50% {   opacity: 0.2;}
  100% {  opacity: 1;}
}
@keyframes blink-2 {
  0% {    opacity: 1;}
  50% {   opacity: 0.2;}
  100% {  opacity: 1;}
}
/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
.heartbeat {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}













.divider-before {
  height: 1vh;
  width: 100%;
  margin: 0;
  padding: 0;
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.waves {
  position: relative;
  width: 100%;
  height: 25vh;
  margin-bottom: -0.5em;
}
.divider-after {
  background-color:#2C5AA0;
  height: 1vh;
}
/* Animation */
.wave-effect > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  fill:#2C5AA0;
}
.wave-effect > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
  opacity: 0.3;
}
.wave-effect > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
  opacity: 0.5;
}
.wave-effect > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
  opacity:0.7;
}
.wave-effect > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 16s;
  opacity:1;
}
@keyframes move-forever {
  0% {    transform: translate3d(-90px, 0, 0);}
  100% {  transform: translate3d(85px,  0, 0);}
}
/* /* Shrinking for mobile */
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
  .content {
    height: 30vh;
  }
  h1 {
    font-size: 24px;
  }
}