/* app css stylesheet */

.menu {
  list-style: none;
  border-bottom: 0.1em solid black;
  margin-bottom: 2em;
  padding: 0 0 0.5em;
}

.menu:before {
  content: "[";
}

.menu:after {
  content: "]";
}

.menu > li {
  display: inline;
}

.menu > li:before {
  content: "|";
  padding-right: 0.3em;
}

.menu > li:nth-child(1):before {
  content: "";
  padding: 0;
}

.clickable {
  cursor: pointer;
}

.collapsing {
}

.rtmsams {
    float: left;
    margin: 2em;
    position: relative;
    display: inline-block;
}
.rtmsams div {
    border: solid rgb(174, 199, 232);
    border-radius: 90px;
    background-color: rgb(174, 199, 232);
    text-align: center;
    width: 1.5em;
    height: 1.5em;
    font-size: 4em;
}
.rtmsams p {
    width: 5em;
    text-align: center;
}
/* Tooltip text */
.tooltiptext {
    visibility: hidden;
    width: 22em;
    background-color: #555;
    color: #fff;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 5px 5px 13px 5px #888888;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 90%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Tooltip arrow */
.tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 3em;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.rtmsams:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.settings {
    float: right;
    color: white;
    cursor: pointer;
    position: relative;
}
.settings input {
    color:black;
    width: 5em;
}

.settings .tooltiptext {
    top: 150%;
    right: 0%;
    bottom: unset;
    left: unset;

}

/* Tooltip arrow */
.settings .tooltiptext::after {
    bottom: 100%;
    top: unset;
    right: 5px;
    left: unset;
    border-color: transparent transparent #555 transparent;
}
/* Show the tooltip text when you mouse over the tooltip container */
.active .tooltiptext {
    visibility: visible;
    opacity: 1;
}