@font-face {
    font-family: pauza-book;
    src: url(/pauza-book.woff);
}

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

*:focus {
    outline: none;
}

html {
    font-size: 14px;
}

body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}


.App {
    line-height: 1.2em;
    height: 1.2em;
    position: absolute;
    top: 0;
    width: 100%;
}

.App--ltr {
    left: 0;
    direction: ltr;
}

.App--rtl {
    right: 0;
    direction: rtl;
}

.App.App--disabled {
    pointer-events: none;
}

.Inputs-container {
    position: absolute;
    left: 0;
    right: 0;
    white-space: nowrap;
    overflow: hidden;
}

.App--ltr .cardImage-container + .Inputs-container {
    left: 3em;
}

.App--rtl .cardImage-container + .Inputs-container {
    right: 3em;
}

.Input-wrapper {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

.Input-wrapper::after {
    height: 0;
    visibility: hidden;
    content: attr(data-max);
}

.Input-wrapper, Input {
    font-size: 1em;
}

.Inputs-container__child {
    position: relative;
    display: inline-block;
}

.Input {
    position: absolute;
    top: 0;
    display: block;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    width: 100%;
    line-height: 1.2em;
    height: 1.2em;
    direction: ltr;
}

.cardImage-container {
    pointer-events: none;
    height: 100%;
    position: absolute;
    top: 0;
    text-align: center;
    width: 2.5em;
}

.App--ltr .cardImage-container {
    left: 0;
}
.App--rtl .cardImage-container {
    right: 0;
}

.cardImage {
    height: 100%;
    width: 100%;
}

.cardImage img {
    width: 100%;
    height: 100%;
}