#loading-page-admin {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.22);
    z-index: 9999;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lds-ripple,
.lds-ripple div {
    box-sizing: border-box;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ripple div {
    position: absolute;
    border: 4px solid currentColor;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 1;
    }

    100% {
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

.card-credit ::selection {
    background-color: rgba(0, 0, 0, 0);
}

.card-credit {
    background: radial-gradient(circle, white 0%, #d5d5d5 100%);
    width: 300px;
    height: 200px;
    border-radius: 20px;
    position: relative;
    box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.55);
}

.card-credit .logo svg {
    height: auto;
    width: 54px;
    border-radius: 4px;
}

.card-credit .using_default,
.card-credit .remove,
.card-credit .logo {
    position: absolute;
}

.card-credit .using_default {
    top: 30px;
    right: 65px;
    opacity: .9;
    color: black;
}

.card-credit .remove {
    top: 30px;
    right: 30px;
    opacity: .9;
    color: black;
}

.card-credit .logo {
    top: 20px;
    left: 30px;
    font-size: 0em;
    opacity: 1;
}

.card-credit .number,
.card-credit .owner {
    display: block;
    position: absolute;
    left: 30px;
    cursor: default;
    color: black;
    opacity: .9;
    transition: color .7s ease-out;
}

.card-credit .number {
    bottom: 60px;
    letter-spacing: 4px;
}

.card-credit .owner {
    bottom: 30px;
    letter-spacing: 1px;
}