a {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.noSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button.primary {
    background-color: var(--primaryButton);
    color: var(--text);
}

.button.secondary {
    background-color: var(--secondaryButton);
    color: var(--background);
}

.button.disabled {
    background-color: var(--blocked);
    color: var(--text);
    cursor: not-allowed;
}

.button {
    text-align: center;
    line-height: 60px;
    height: 60px;
    border-radius: 20px;
    margin: 0 20px;
    font-size: 20px;
    padding: 0 40px;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.80);
    cursor: pointer;
}

.button.tiny {
    font-size: 10px;
}

.button.tiny2 {
    font-size: 16px;
    line-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 20px;
}

.container {
    min-height: calc(100vh - 335px);
    width: 100%;
}

html {
    /* min-height: calc(100vh - 240px);  */
    min-height: 100vh;
}

* {
    margin: 0;
}

body {
    font-family: Quicksand, serif;
    margin-top: 120px;
    overflow-x: hidden;
}

.ac1 {
    color: var(--accent1);
}

.ace8 {
    color: var(--accente8);
}

.error {
    color: var(--error);
}

.blocked {
    color: var(--blocked);
}

.backButton, .globBackButton {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 14px solid var(--text);
    cursor: pointer;
}

.globBackButton:after {
    content: 'Wróć';
    top: -10px;
    left: 22px;
    position: absolute;
}

.globBackButton {
    position: absolute;
    left: 40px;
    top: 160px;
}

@media (max-width: 1300px) {
    .button {
        text-align: center;
        line-height: 50px;
        height: 50px;
        border-radius: 20px;
        margin: 0 20px;
        font-size: 16px;
        padding: 0 40px;
    }
}

