
.hide {
    display: none !important;
}

button > .link-text-wrapper > .link-text {
    cursor: pointer;
}

#mini-spinner  {
    display:flex;
    width: 20px;
    height: 20px;
    border: 3px solid transparent;
    border-top-color: #ff604d ;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    box-sizing: initial;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.border-red {
    border: 2px solid red !important;
}