@font-face {
    font-family: 'SuisseIntl';
    src: url('../assets/SuisseIntl-Regular.otf') format("opentype");
}

:root {
    --md-text-font: 'SuisseIntl';
    --md-primary-fg-color: #022FB6;
    --md-primary-fg-color--light: #2158FD;
    --md-primary-fg-color--dark:  #022FB6;
    --md-admonition-icon--video: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"/><polygon points="160 112 112 80 112 144 160 112" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/><rect x="32" y="48" width="192" height="128" rx="8" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/><line x1="32" y1="208" x2="224" y2="208" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/></svg>')
}

.md-typeset .admonition.video,
.md-typeset details.video {
border-color: rgb(195, 47, 39);
}
.md-typeset .video > .admonition-title,
.md-typeset .video > summary {
background-color: rgb(195, 47, 39, 0.2);
}
.md-typeset .video > .admonition-title::before,
.md-typeset .video > summary::before {
background-color: rgb(195, 47, 39);
-webkit-mask-image: var(--md-admonition-icon--video);
        mask-image: var(--md-admonition-icon--video);
}

.md-button {
    border-radius: 9999rem !important;
    gap: .75rem !important;
}

.md-button--primary {
    background-image: linear-gradient(90deg, var(--md-primary-fg-color--dark) 0%, var(--md-primary-fg-color) 50%, var(--md-primary-fg-color--dark) 100%) !important;
    background-size: 300%;
    background-position: left;
    color: #fff !important;
    border: 0 !important;
    transition: all 500ms ease !important;
}

.md-button--productive {
    background-image: linear-gradient(90deg, #AB40FF 0%, #5D2BFF 50%, #AB40FF 100%) !important;
    background-size: 300%;
    background-position: left;
    color: #fff !important;
    border: 0 !important;
    transition: all 500ms ease !important;
}

.md-button--primary:hover,
.md-button--productive:hover {
    background-position: right;
}

div .admonition.note p:nth-child(2) {
    line-height: 2.5;
}

header {
    background: linear-gradient(90deg, #1F2129 0%, var(--md-primary-fg-color--dark) 25%, var(--md-primary-fg-color) 50%, var(--md-primary-fg-color--dark) 75% , #1F2129 100%);
}

.speed-dial {
    color: var(--md-primary-fg-color--light);
}

.success {
    color: rgb(49, 179, 73);
}

.warning {
    color: rgb(184, 136, 38);
}

.error {
    color: rgb(173, 30, 30);
}

.http-get,
.http-post,
.http-put,
.http-delete {
    font-weight: 700;
    font-size: 0.6rem;
    padding: 0.25rem 0.25rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
}

.http-get {
    color: rgb(78, 121, 199);
    background: rgba(78, 121, 199, 0.2)
}

.http-post {
    color: rgb(49, 179, 73);
    background: rgba(49, 179, 73, 0.2)
}

.http-put {
    color: rgb(184, 136, 38);
    background: rgba(184, 136, 38, 0.2)
}

.http-delete {
    color: rgb(207, 48, 48);
    background: rgba(207, 48, 48, 0.2)
}

.role-admin,
.role-authenticated,
.role-anonymous {
    font-size: 0.6rem;
    padding: 0.25rem 0.25rem;
    border-radius: 0.25rem;
    text-transform: capitalize;
}
.role-admin {
    color: rgb(49, 73, 179);
    background: rgba(49, 73, 179, 0.2)
}

.role-authenticated {
    color: rgb(56, 120, 68);
    background: rgba(56, 120, 68, 0.2)
}

.role-anonymous {
    color: rgb(149, 149, 149);
    background: rgba(149, 149, 149, 0.2)
}

.price {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgb(56, 120, 68);
}

.md-grid {
    max-width: 72rem;
}

.md-search {
    padding: 0;
}

.md-search__form {
    border-radius: 20px;
}

.md-button {
    display: inline-flex !important;
    gap: .5rem;
    align-items: center !important;
}

@media (prefers-color-scheme: dark) {
    .md-top:hover {
        color: #0f0f0f;
        background: #f0f0f0;
    }
}

@media (prefers-color-scheme: light) {
    .md-top:hover {
        color: #f0f0f0;
        background: #0f0f0f;
    }
}