.re-container {
    border-radius: 10px;
    position: absolute;
    left: 10px;
    top: 5vh;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    z-index: 10000;
    color: black;
    font-size: 1vw;
    text-align: left;
    animation: slideInLeft 1s;
}

.re-header {
    font-size: 1.2vmax;
    margin: 0;
    padding: 3px 15px 3px 15px;
    text-align: left;
}

.re-baseNode {
    width: 90%;
    border-radius: 30px;
    padding: 2% 5%;
    margin-top: 5px;
}

.re-baseNode-title {
    font-size: 1vw;
    margin: 0;
    padding: 0;
    font-weight: bold;
    display: inline;
}

.re-baseNode-date {
    font-size: 1vw;
    margin: 0;
    padding: 0;
    font-weight: normal;
    display: inline;
}

.re-baseNode-content {
    font-size: 1vw;
    margin: 0;
    padding: 0;
    font-weight: normal;
}

.badge {
  display: inline-block;
  padding: 5px 7px;
  font-size: calc(1em - 0.3vmax);
  border-radius: 20px;
  color: #fff;
  background-color: rgba(52, 58, 64, 0.8);
}

.alert {
    padding: 0 0 0 10px;
    font-weight: bold;
}

.re-pointer {
    cursor: pointer;
}

/*************
**DEFAULT STYLE
*************/

.re-container-default {
    background-color: rgba(217, 217, 217, 1);
    border: 5px solid rgba(217, 217, 217, 1);
    color: black;
}

.re-container-default .re-baseNode {
    background-color: rgba(225, 225, 225, 0.7);
    border: 2px solid rgba(205, 205, 205, 0.6);
}

.re-container-default .re-baseNode:hover {
    background-color: rgba(235, 235, 235, 0.6);
    border: 2px solid rgba(200, 200, 200, 1);
}

/*************
**DARK STYLE
*************/
.re-container-dark {
    background-color: rgba(0, 0, 0, 0.7);
    border: 5px solid rgba(0, 0, 0, 0.1);
    color: white;
}

.re-container-dark .re-baseNode {
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.re-container-dark .re-baseNode:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

/*************
**ANIMATIONS
*************/
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(200%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
