/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent;
    touch-action: none;
    touch-action: pan-y pan-x;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    user-select: none;
    font-family: "UntitledSans";
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow: hidden;
    background: #FFF;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

p {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/*--------------------*/

.bigred {
    font-size: 20px;
    color: red;
}

/*Дополнение*/
body {
    font-family: 'UntitledSans', 'Obibok', Arial;
}

button {
    background: transparent;
}

.df {
    display: flex;
}

.df.jcc {
    justify-content: center;
}

.df.jcsb {
    justify-content: space-between;
}

.df.fdc {
    flex-direction: column;
}

.df.aic {
    align-items: center;
}

.row {
    display: flex;
}

.fixed {
    position: fixed;
}

.fixed.left {
    left: 20px;
}

.fixed.right {
    right: 20px;
}

.fixed.top {
    top: 20px;
}

.fixed.bottom {
    bottom: 20px;
}

.global-button {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 51px;
    cursor: pointer;
    transition: .3s;
    border: 1px solid transparent;
}
.global-button.opacity-15 {
    background: rgba(255, 255, 255, 0.15);
}


.global-button.stroke {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.global-button.circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.global-button:hover,
.global-button.active {
    background: rgba(255, 255, 255, 0.5);
}

.global-button.stroke:hover {
    border-color: transparent;
}

.skeleton {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.cupertino-pane-wrapper {
    overflow: hidden;
}

.cupertino-pane-wrapper .pane {
    overflow: hidden;
}

