.card {
    width: 100%;
    min-width: 256px;
    min-height: 64px;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.25);
    background-color: #f2f2f6;
    
    color: #333;
    font-size: 1.5em;
    font-family: Arial, Helvetica, sans-serif;
    
    transition: 0.25s;
}

.card-inner {
    padding: 16px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #fff;
    border-radius: 16px;
}
.card-inner p { margin-top: 0; margin-bottom: 8px; }
.card-inner ul { margin-bottom: 8px; }

.card-double {
    display: flex;
    justify-content: space-between;
}
.card-double .app-link {
    margin-right: 0;
}

.card-row {
    margin-bottom: 24px;
}

.card-page {
    display: flex;
    flex-direction: row;
    margin-bottom: 1em;
    padding: 0.75em;
}
.card-page.blue {
    color: #fff;
    background: rgb(71, 134, 194);
    background: linear-gradient(29deg, rgba(71,134,194,1) 0%, rgba(14,74,134,1) 100%);
    text-shadow: 2px 2px 4px #1a5083;
    border: 1px solid rgba(68,119,181,1);
    box-shadow: 0px 8px 20px 0px rgba(26,80,131,0.5);
}
.card-page.cyan {
    color: #fff;
    background: rgb(107,119,255);
    background: linear-gradient(29deg, rgb(82, 206, 255) 0%, rgb(60, 105, 255) 100%);
    border: 1px solid rgb(110, 161, 255);
    text-shadow: 2px 2px 4px #2646a6;
    box-shadow: 0px 8px 20px 0px rgba(26, 98, 131, 0.5);
}
.card-page p {
    margin: 0;
    margin-left: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icon-page {
    width: 4em;
    height: 4em;
    min-width: 4em;
    border-radius: 15%;
    image-rendering: auto;
}

.icon-profile {
    width: 4em;
    height: 4em;
    min-width: 4em;
    border-radius: 100%;
}

.button-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5em;
    font-size: 0.75em;
    flex-basis: 0;
    color: #fff;
    text-align: center;
    background-color: #333;
    background: linear-gradient(180deg, #333 0%, #333 100%);
    text-shadow: none;
    padding: 0.25em 0.5em;
    padding-right: 0.75em;
    border-radius: 0.5em;
    text-decoration: none;
    user-select: none;
    -webkit-user-drag: none;
    white-space: nowrap
}
.button-link img {
    width: 2em;
    height: 2em;
    flex-shrink: 0;
}
.button-link:hover {
    color: #fff;
    text-decoration: none;;
}
.button-link.yt:hover, .button-link.yt:active {
    background: linear-gradient(180deg, #333 0%, #941919 100%);
}
.button-link.tg:hover, .button-link.tg:active {
    background: linear-gradient(180deg, #333 0%, #3d7092 100%);
}
.button-link.tt:hover, .button-link.tt:active {
    background: linear-gradient(180deg, #406463 0%, #333 33%, #333 66%, #942b4b 100%);
}

.tag {
    display: inline-block;
    padding: 0.25em 0.5em;
    font-size: 0.75em;
    color: #fff;
    background-color: #333;
    border-radius: 0.5em;
    text-decoration: none;
}

.spinner {
    width: 30%;
    max-width: 160px;
    max-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner-circle {
    width: 100%;
    height: auto;
    transform-origin: center center;
    animation: spinner-rotate 2s linear infinite;
}
.spinner-circle circle {
    stroke-dasharray: 150,200;
    stroke-dashoffset: -10;
    stroke-linecap: round;
    animation: spinner-dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
}
.spinner-box .spinner {
    display: flex;
    padding: 2%;
    border-radius: 20%;
    background-color: #333;
    background: linear-gradient(180deg, #d5d5d5 0%, #bdbdbd 100%);
    box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.15);
}
.spinner-box circle {
    stroke: #525252;
}

.button-spinner {
    position: relative;
    padding-left: 2.5em;
    padding-right: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-spinner .spinner {
    position: absolute;
    width: 1.6em;
    height: auto;
    left: 0.5em;
    top: 50%;
    transform: translateY(-50%);
}
.button-spinner circle {
    stroke: #fff;
    stroke-width: 0.2em;
}

@media (max-width: 700px) {
    .card {
        padding: 16px;
        font-size: 1em;
        border-radius: 12px;
    }

    .card-inner {
        border-radius: 8px;
    }
}

@keyframes spinner-rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spinner-dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124;
    }
}