
/* API input box actions */
div.api-box div{
    padding: 0px 5px;
    margin: 0px 5px;

    &.hide{
        display: none;
    }
}
div.api-box svg{
    cursor: pointer;
    transform: scale(1.4);
    

    &:hover{
        opacity: 0.7;
    }

    &.rotating{
        animation: rotation 2s infinite linear;
        pointer-events: none;
    }
}

/* Toasts */
.toast{
    min-width:240px;
}
.toast-body span{
font-size: 16px;
font-weight:400;
}
.toast-body svg{
transform:scale(1.5);
color:white;
margin-left:15px;
}
.blue{
background-color: #3C75D5;
}

@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }