.card {
    box-shadow: 0 4px 8px 0 rgba(157, 24, 24, 0.2);
    transition: 0.3s;
    width: 30%;
    border-radius: 5px;

    border: 1px solid;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.inner_card {
    box-shadow: 0 4px 8px 0 rgba(157, 24, 24, 0.2);
    transition: 0.3s;
    width: 30%;
    border-radius: 5px;

    border: 1px solid;
}

.mobile-card {
    box-shadow: 0 4px 8px 0 rgba(157, 24, 24, 0.2);
    transition: 0.3s;
    width: 30%;
    border: 1px solid lightgray !important;
    border-radius: 5px;
}

.mpl {
    display: flex;
    align-items: center;
    height: 7vh;
}

.inner_card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

img {
    /* border-radius: 5px 5px 0 0; */
}

.container {
    padding: 2px 16px;
}

@media only screen and (max-width: 900px) {
    .center {
        margin: auto;
        width: 100%;
        padding: 10px;
    }
}

.logo {
    height: 100px;
    width: auto;
}

.margin-left-15 {
    margin-left: 15px;
}

.margin-left-10 {
    margin-left: 10px;
}

.scheme-logo {
    width: 40px;
}

.float-right {
    float: right;
}

.wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10000;
    background: #000000ad;
}

loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    border: none;
    background: transparent;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 1rem 2rem;
}

loader>svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

loader>svg>rect {
    fill: none;
    stroke: white;
    stroke-width: 2px;
    stroke-dasharray: 240 160 240 160;
    stroke-dashoffset: 0;
    animation: pathRect 2s linear infinite;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
}

@keyframes pathRect {
    25% {
        stroke-dashoffset: 100;
    }

    50% {
        stroke-dashoffset: 200;
    }

    75% {
        stroke-dashoffset: 300;
    }

    100% {
        stroke-dashoffset: 400;
    }
}

.p-r-l {
    padding-right: 0px;
    padding-left: 0px;
}

.securitycode {
    font-size: 13px;
}

.delete-card-link i {
    float: right;
}

.float_right {
    float: right;
}


.custom-height {
    height: 450px;
    overflow: auto;
}