@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

body {
    font-family: 'arial', sans-serif;
}

.box-wrapper {
    max-width: 576px;
}

#header {
    margin: 0 auto;
    max-width: 700px;
    /* padding: 0 10px; */
}

.langbtnwrap {
    float: right;
    margin: 8px;
}

.title {
    font-family: 'Rubik', sans-serif;
    font-size: 1.15rem;
    line-height: 1.5;
}

.button-wrapper {
    width: 85%;
}

.button {
    letter-spacing: 1px;
    font-size: 1.15rem;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    background: linear-gradient(180deg, #00b4db 0%, #0083b0 100%);
    color: white;
    border: 3px solid #1ad5ff;
}

.button:hover,
.button:focus {
    color: white;
}

.info {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.7;
    text-align: justify;
}

.select-lang { 
    text-align: right;
    font-size: 12px;
    margin: 0;
    padding: 0;
}
.select-lang li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
    margin-right: 2px;
}

.icon-animate {
    display: inline;
}

.bounce {
    animation: bounce 3s ease infinite;
}

.form-check-inline {
    font-size: 0.875rem;
    margin-right: 0.25rem;
}
.form-check-inline:last-child {
    margin-right: 0;
}

@keyframes bounce {
    70% {
        transform: translateY(0%);
    }
    80% {
        transform: translateY(-15%);
    }
    90% {
        transform: translateY(0%);
    }
    95% {
        transform: translateY(-7%);
    }
    97% {
        transform: translateY(0%);
    }
    99% {
        transform: translateY(-3%);
    }
    100% {
        transform: translateY(0);
    }
}

.footer {
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
    padding: 0;
}

.footer li {
    display: inline-block;
    list-style: none;
}

.footer li::after {
    content: '\00B7';
    padding-right: 5px;
    padding-left: 5px;
}

.footer li:last-child {
    border-right: none;
    padding-right: 0;
}

.footer li:last-child::after {
    content: none;
}

.loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(225, 225, 225, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
}

/* Lang custom */

#header {
    margin: 0 auto;
    max-width: 700px;
}

.langbtnwrap {
    float: right;
    margin: 8px;
}