.container {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
}

.right-menu {
  position: absolute;
  top:0;
  right: 1px;
}

.help{
    cursor: pointer;
    width: 20px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #00AECD;
    text-shadow: 0 1px 0 #fff;
    opacity: .7;
    border: 0px;
}
.accept {
   cursor: pointer;
   width: 20px;
   border: 0px;
   font-size: 1rem;
   line-height: 1;
   color: #00AECD;
   text-shadow: 0 1px 0 #fff;
   opacity: .7;
   border: 0px;
}
.accept-checkbox:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #00AECD;;
    font-size: 0.8rem;
    line-height: 1;
     margin-left: -4px;
}

.tooltip .tooltiptext {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1;
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 120%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}