:root {
    --bs-body-font-family: var(--font-family-base);
    --bs-body-color: var(--black);
    --bs-body-bg: var(--white);
    --bs-primary: var(--blue-sky-600);
    --bs-primary-rgb: 0, 88, 210;
    --bs-link-color: var(--blue-sky-600);
    --bs-link-hover-color: var(--blue-sky-700);
    --bs-border-color: var(--gray-250);
    --bs-secondary-color: var(--gray-700);
    --bs-secondary-color-rgb: 56, 56, 56;
    --bs-tertiary-bg: var(--gray-100);
    --rv-focus-ring-color: var(--blue-sky-500, #3379db);
    --rv-focus-ring-outline: var(--white, #ffffff);
    --rv-focus-ring-shadow: 0 0 0 4px rgba(51, 121, 219, 0.24);
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    color: var(--black);
    background: var(--white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
    font-family: var(--font-family-base);
}

:where(a, button, [role="button"], input, select, textarea):focus-visible {
    outline: 2px solid var(--rv-focus-ring-outline);
    outline-offset: 2px;
    box-shadow: var(--rv-focus-ring-shadow);
}

a {
    color: var(--color-link-primary-default);
}

a:hover {
    color: var(--color-link-primary-hover);
}

ul,
ol {
    padding-left: 1.25rem;
}

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-main,
main {
    flex: 1 1 auto;
}

.app-main > .container {
    width: min(100%, 1280px);
    padding-inline: 0;
}

@media (max-width: 768px) {
    .app-main > .container {
        width: 100%;
        padding-inline: 16px;
    }
}

body.is-mobile-nav-open {
    overflow: hidden;
    touch-action: none;
}

.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    flex: 0 0 auto;
    fill: currentColor;
}

.icon.small {
    width: 16px;
    height: 16px;
}

.icon.medium {
    width: 20px;
    height: 20px;
}

.icon.large {
    width: 24px;
    height: 24px;
}

.bg-gray-100 {
    background-color: var(--gray-100) !important;
}

.text-seccondary {
    color: var(--gray-600) !important;
}

.btn.btn-md {
    padding: var(--spacing-8) var(--spacing-16);
    font-size: 16px;
    line-height: 1.5;
}

.btn-rounded {
    border-radius: var(--border-radius-full);
}

.btn-loading {
    position: relative;
    pointer-events: none;
    color: transparent !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 1rem;
    height: 1rem;
    margin: -0.5rem 0 0 -0.5rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: rv-spin 0.8s linear infinite;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes rv-spin {
    to {
        transform: rotate(360deg);
    }
}
