.lds-ring {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    margin: 4px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff 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);
    }
  }
  

#rates-box {
    position: fixed;
    display: flex;
    flex-direction: column;
    bottom: 110px;
    right: -15px;
    width: 135px;
    cursor: pointer;
    padding: .6em 1em 1.6em 1.8em;
    font-size: 16px;
    z-index: 1000;
    box-shadow: 2px 1px 0.6em 0 rgba(40, 40, 40, .8);
    background: #5aac4e;
    color: #fff;
    border-radius: .3em 0 0 .3em;
     /*Chrome, Safari*/
     -webkit-transition: right 1000ms linear 0s;

     /*Firefox*/
     -moz-transition: right 1000ms linear 0s;
     /*Opera*/
     -o-transition: right 1000ms linear 0s;
     /*Standard*/
     transition: right 1000ms linear 0s;
    }

#rates-box:hover {
    right: 0;   
}

#rates-box h3 {
    font-size: 16px;
    font-family: 'roboto';
    color: white;
    margin: 0;
}

#rates-box ul {
    list-style: none;
    margin: 0;
}

#rates-box ul li{
    margin: 0;
}

em {
    display: inline-block;
  }

em::first-letter{
    font-size: .9em;
  }

/*
@media (max-width: 770px) {
    #rates-box {
        display: none;
    }
}

*/