@charset "UTF-8";

.card-border {
    width: 100%;
    height: 86px;
    margin: 0 auto;
    border: 2px solid #005dbd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-border::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #005dbd;
    border-right: 2px solid #005dbd;
    transform: rotate(135deg);
    position: absolute;
    top: 80%;
}

.anc-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.util-link:active,
.util-link:hover,
.util-link:link,
.util-link:visited {
    color: #0099ff;
}

@media print,
screen and (min-width: 768px) {
    .anc-hover {
        color: #000;
    }

    .anc-hover:hover {
        color: #fff;
        transition: all .25s cubic-bezier(.4, 0, .2, 1) 0s;
    }

    .card-border:hover::after {
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }

    .card-border:hover {
        background-color: #0070e4;
    }
}

@media print,
screen and (max-width: 767.98px) {
    .card-border {
        width: 95%;
        height: 70px;
    }

    .card-border::after {
        top: 75%;
    }

    .anc-text {
        font-size: 1.2rem;
    }
}

@media print,
screen and (max-width: 389.98px) {
    .anc-text {
        font-size: 1rem;
    }
}