/* import fontu */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&family=Rubik:wght@300;400;500;600&display=swap');
* {
    font-family: 'Rubik', sans-serif;

}



/* Odebrání šipek u input typu number */
/* Chrome, Safari, Edge, Opera  */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}


.text-large {
    font-size: 350%;
}

.text-nav {
    font-size: 150%;
}
.btn-zaplatit {
    width: 50%;
    height: 100px;
    font-size: xx-large;
}
.btn-prihlasit {
    height: 50px;
    font-size: large;
}

.btn-formular {
    width: 120px;
    font-size: large;
}

.kolecko {
    width: 50px; 
    height: 50px;
    -webkit-animation: tocit 1s infinite linear;
    animation: tocit 1s infinite linear;
    border-radius: 50%;
    border-bottom: 3px solid black;
}
@-webkit-keyframes tocit {
    to {-webkit-transform: rotate(360deg)}
}
@keyframes tocit {
    to {transform: rotate(360deg)}
}


