.invoice-request {
    display: flex;
    margin-bottom: 12px;
    margin-top: 8px;
}
.invoice-request button{
    margin-left: 4px;
    padding: 5px;
    border: 2px solid #ccc;
}
.invoice-request button:hover{
  cursor: pointer;
}

.invoice-request button.checked {
    border: 2px solid green!important;
    background-color: green;
    color: white;
}

.invoice-request button:focus {outline:0;}

#loading {
    margin-left: 4px;
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #E30613;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}

div.d-none{
    display: none;
}