.aviso-mobius {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(212, 237, 218);
    margin-bottom: 10px;
}


div.aviso-mobius * {
    text-decoration-color: rgb(21, 87, 36);
    margin-left: 10px ;
    margin-top: 10px ;
    padding: auto ;
}

.botones-aviso-mobius {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.boton-mobius {
    background:none;
    border:none;
    margin:0;
    padding:0;
    cursor: pointer;
    color: #4BA0B5;
    outline: none;
}

.boton-mobius:hover {
    color: #8abbc8;
  }

  .boton-mobius-rojo:hover {
    color: rgb(234, 114, 114);
  }

.boton-mobius-rojo {
    color: red;
}


.boton-mobius:focus {
    outline: none;
    border: none;
  }

  .lds-ring {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    margin: 8px;
    border: 4px solid #4BA0B5;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #4BA0B5 transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }