/* CSS backtop */
.backtop{
    appearance: none;
    background-color:none;
    border: 1px solid #006666;
    border-radius: 6px;
    box-sizing: border-box;
    color: #006666;
    cursor: pointer;
    font-family: arial;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    padding: 6px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    float:right;
    bottom: 5px;

  }
  .backtop:focus:not(:focus-visible):not(.focus-visible) {
    box-shadow: none;
    outline: none;
  }
  
  .backtop:hover {
    background-color: #cacece;
  }
  
  .backtop:focus {
    box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
    outline: none;
  }
  
  .backtop:disabled {
    background-color: #94d3a2;
    border-color: rgba(27, 31, 35, .1);
    color: rgba(255, 255, 255, .8);
    cursor: default;
  }
  
  .backtop:active {
    background-color: #006666;
    box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
  }
  
 