@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";

.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: clamp(1rem, 3vw, 1.5rem);
    margin-inline: clamp(2rem, 12vw, 12rem)
}

@media (min-width: 720px) {
    .nav {
        justify-content: space-between;
        flex-direction: row
    }
}

.nav__logo:visited, .nav__logo:active, .nav__logo {
    color: #d159b9;
    font-weight: 700;
    font-size: clamp(1.188rem, 3vw, 1.438rem)
}

.nav__list {
    display: flex;
    gap: 2rem;
    justify-content: center
}

.nav li:hover {
    border-bottom: solid 1px #858585
}

.nav li.active:hover, .nav .active {
    border-bottom: solid 1px #000
}

.footer {
    margin-inline: auto;
    margin-block: auto clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(.688rem, 3vw, 1rem)
}

.footer a {
    color: #406ac9;
    text-decoration: underline
}

*, *::before, * *::after {
    box-sizing: border-box
}

* {
    padding: 0;
    margin: 0;
    font: inherit
}

html {
    font-size: 100%
}

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

body {
    min-height: 100vh
}

h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.1
}

h1 {
    font-size: 3rem
}

h2 {
    font-size: 2.5rem
}

h3 {
    font-size: 2.062rem
}

h4 {
    font-size: 1.75rem
}

h5 {
    font-size: 1.438rem
}

h6 {
    font-size: 1.188rem
}

p {
    line-height: 1.5;
    font-size: clamp(.95rem, 3vw, 1.15rem)
}

a, a:visited, a:active {
    text-decoration: none;
    color: inherit
}

ul, li {
    list-style: none
}

body {
    font-family: "Inter", sans-serif
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.download {
    margin-inline: clamp(2rem, 12vw, 12rem)
}

.download__header {
    text-align: center
}

@media (min-width: 520px) {
    .download__header {
        margin-block: 2rem
    }
}

.download__header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700
}

.download__header p {
    margin-top: .25rem;
    color: #4a4a4a;
    font-size: clamp(.812rem, 3vw, 1.188rem)
}

.download__header p a {
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer
}

.download__toggle {
    display: flex;
    gap: .75rem;
    justify-content: center;
    margin-block: 1.75rem
}

.download__toggle__original {
    border-radius: 50px;
    font-weight: 500;
    color: #fff;
    padding: clamp(.6rem, 3vw, .75rem) 0;
    width: clamp(6rem, 16vw, 8rem);
    font-size: clamp(1rem, 3vw, 1.438rem);
    transition: .5s;
    background-size: 200% auto;
    background-image: linear-gradient(to right, #8c2778 0%, #df8bce 51%, #c837ab 100%);
    cursor: pointer;
    border: none
}

.download__toggle__original:hover {
    box-shadow: 0 2px 1px rgba(0, 0, 0, .09), 0 4px 2px rgba(0, 0, 0, .09), 0 8px 4px rgba(0, 0, 0, .09), 0 16px 8px rgba(0, 0, 0, .09), 0 32px 16px rgba(0, 0, 0, .09);
    background-position: right center
}

.download__toggle__clone {
    border-radius: 50px;
    font-weight: 500;
    color: #fff;
    padding: clamp(.6rem, 3vw, .75rem) 0;
    width: clamp(6rem, 16vw, 8rem);
    font-size: clamp(1rem, 3vw, 1.438rem);
    transition: .5s;
    background-size: 200% auto;
    background-image: linear-gradient(to right, #2d4a8d 0%, #90a9e0 51%, #406ac9 100%);
    cursor: pointer;
    border: none
}

.download__toggle__clone:hover {
    box-shadow: 0 2px 1px rgba(0, 0, 0, .09), 0 4px 2px rgba(0, 0, 0, .09), 0 8px 4px rgba(0, 0, 0, .09), 0 16px 8px rgba(0, 0, 0, .09), 0 32px 16px rgba(0, 0, 0, .09);
    background-position: right center
}

.download__table {
    width: 100%
}

.download__table__heading {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #666;
    padding-bottom: clamp(.75rem, 2vw, 2rem);
    margin-bottom: clamp(.75rem, 3vw, 2.5rem)
}

.download__table__heading__empty {
    flex-grow: 1
}

.download__table__heading__version, .download__table__heading__status, .download__table__heading__date, .download__table__heading__info {
    font-size: clamp(1.188rem, 3vw, 1.75rem);
    width: clamp(4rem, 20vw, 17.5rem)
}

.download__table__heading__version, .download__table__heading__status {
    text-align: left
}

.download__table__heading__date, .download__table__heading__info {
    text-align: right
}

.download__table__body__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(.812rem, 3vw, 1.188rem);
    margin-bottom: clamp(.75rem, 4vw, 2rem)
}

.download__table__body__row__status__tag {
    background-image: linear-gradient(to right, #bfbfbf 0%, #858585 100%);
    border-radius: 15px;
    padding: .25rem .5rem
}

@media (min-width: 520px) {
    .download__table__body__row__status__tag {
        border-radius: 30px;
        padding: .25rem .75rem
    }
}

.download__table__body__row__version {
    font-weight: 500;
    text-decoration: underline
}

.download__table__body__row__info {
    display: flex;
    justify-content: end
}

@media (min-width: 520px) {
    .download__table__body__row__info img {
        width: 30px;
        aspect-ratio: 1
    }
}

.download__table__body__row__info button {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border: none
}

.download__table__body__row__empty {
    flex-grow: 1
}

.download__table__body__row__version, .download__table__body__row__status, .download__table__body__row__date, .download__table__body__row__info {
    width: clamp(4rem, 20vw, 17.5rem)
}

.download__table__body__row__version, .download__table__body__row__status {
    text-align: left
}

.download__table__body__row__date, .download__table__body__row__info {
    text-align: right
}

.download__explainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-block: clamp(1.5rem, 6vw, 0rem);
    padding: clamp(.5rem, 2vw, .75rem) clamp(.75rem, 2vw, 1.25rem);
    background-color: #ecf0fa;
    border-radius: 5px;
}



.active_button {
    border-radius: 50px;
    padding: clamp(.6rem, 3vw, .75rem) 0;
    width: clamp(6rem, 16vw, 8rem);
    font-size: clamp(1rem, 3vw, 1.438rem);
    font-weight: 500;
    color: #fff;
    background-color: #666;
    border: none;
    box-shadow: rgba(50, 50, 93, .25) 0px 30px 60px -12px inset, rgba(0, 0, 0, .3) 0px 18px 36px -18px inset
}

.strike {
    text-decoration: line-through
}

.current {
    background-image: linear-gradient(to right, #8c2778 0%, #df8bce 51%, #c837ab 100%);
    color: #fff;
    padding: .25rem .5rem;
    border-radius: 15px;
}

@media (min-width: 520px) {
    .current {
        border-radius: 30px;
        padding: .5rem .75rem
    }
}

.hide {
    display: none
}

.source {
    margin-top: 2rem
}

@media (min-width: 520px) {
    .source {
        margin-top: 4rem
    }
}

@media (min-width: 520px) {
    .hover_download:hover {
        padding: .5rem .75rem;
        border-radius: 15px;
        transition: .3s;
        box-shadow: rgba(240, 46, 170, .4) -5px 5px, rgba(240, 46, 170, .3) -10px 10px, rgba(240, 46, 170, .2) -15px 15px, rgba(240, 46, 170, .1) -20px 20px, rgba(240, 46, 170, .05) -25px 25px;
        background-image: linear-gradient(to right, #e7484f, #e7484f 16.65%, #f68b1d 16.65%, #f68b1d 33.3%, #fced00 33.3%, #fced00 49.95%, #009e4f 49.95%, #009e4f 66.6%, #00aac3 66.6%, #00aac3 83.25%, #732982 83.25%, #732982 100%, #e7484f 100%);
        animation: slidebg 10s linear infinite
    }
}

@keyframes slidebg {
    to {
        background-position: 20vw
    }
}

.modal {
    background-color: #fff;
    width: -moz-fit-content;
    width: fit-content;
    padding: .75rem 1rem;
    position: fixed;
    top: 2%;
    left: 5%;
    right: 5%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ddd;
    border-radius: 15px;
    z-index: 2
}

@media (min-width: 520px) {
    .modal {
        width: 25rem;
        top: 20%
    }
}

.modal__heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: .75rem
}

.modal__heading p {
    font-size: 1.438rem
}

@media (min-width: 520px) {
    .modal__heading p {
        font-size: 1.75rem
    }
}

.modal__heading__close {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer
}

.modal__heading__close img {
    width: 24px;
    aspect-ratio: 1
}

@media (min-width: 520px) {
    .modal__heading__close img {
        width: 30px
    }
}

.modal__header {
    font-weight: 500;
    margin-bottom: .5rem
}

.modal__changelog {
    margin-bottom: .75rem
}

@media (min-width: 520px) {
    .modal__changelog {
        margin-bottom: 1.5rem
    }
}

.modal__changelog li {
    font-size: .812rem;
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: .25rem
}

@media (min-width: 520px) {
    .modal__changelog li {
        font-size: 1rem
    }
}

.modal__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.modal__tags__version {
    background-image: linear-gradient(to right, #8c2778, #c837ab 100%)
}

.modal__tags__architecture {
    background-image: linear-gradient(to right, #2d4a8d, #406ac9 100%)
}

.modal__tags__android {
    background-image: linear-gradient(to right, #0d9047, #13ce66 100%)
}

.modal .pill {
    padding: .25rem .65rem;
    border-radius: 15px;
    font-size: .812rem
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 1
}

.modal-open {
    overflow: hidden
}

/*# sourceMappingURL=download.css.map */