/*
@import "https://fonts.googleapis.com/css?family=Ubuntu:400,400i,700,700i&amp;subset=cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext";
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

::before {
    box-sizing: border-box;
    vertical-align: top;
}

::after {
    box-sizing: border-box;
    vertical-align: top;
}

:focus {
    outline: none;
    outline-offset: 0;
}

html {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(51, 51, 51, 1);
    font-family: "Ubuntu", sans-serif;
    font-size: 10px;
    height: 100%;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
}

body {
    font-size: 1.4rem;
    /*
    font-size: 2rem;
    font-size: 2.6rem;
    */
    line-height: 2rem;
    /*
    line-height: 2.4rem;
    line-height: 2.8rem;
    */
    min-height: 100%;
    min-width: 32rem;
    position: relative;
}

header {
    display: block;
}

section {
    display: block;
}

article {
    display: block;
}

h1 {
    font-size: inherit;
    font-weight: inherit;
}

h2 {
    font-size: inherit;
    font-weight: inherit;
}

h3 {
    font-size: inherit;
    font-weight: inherit;
}

h4 {
    font-size: inherit;
    font-weight: inherit;
}

h5 {
    font-size: inherit;
    font-weight: inherit;
}

h6 {
    font-size: inherit;
    font-weight: inherit;
}

nav {
    display: block;
}

aside {
    display: block;
}

footer {
    display: block;
}

main {
    display: block;
}

figure {
    display: block;
}

figcaption {
    display: block;
}

pre {
    font-family: inherit;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

::-moz-selection {
    background-color: rgba(0, 0, 0, 0);
    color: rgba(102, 102, 102, 1);
}

::selection {
    background-color: rgba(0, 0, 0, 0);
    color: rgba(102, 102, 102, 1);
}

a {
    background-color: rgba(0, 0, 0, 0);
    color: rgba(51, 51, 51, 1);
    cursor: pointer;
    text-decoration: none;
    -webkit-text-decoration-skip: objects;
}

a:visited {
    color: rgba(51, 51, 51, 1);
}

a:active {
    color: rgba(51, 51, 51, 1);
}

a:hover {
    color: rgba(51, 51, 51, 1);
}

abbr[title] {
    text-decoration: underline;
    text-decoration: underline dotted;
}

b {
    font-weight: bolder;
}

strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub {
    bottom: -0.2em;
    font-size: 80%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    font-size: 80%;
    line-height: 0;
    position: relative;
    top: -0.2em;
    vertical-align: baseline;
}

code {
    font-family: inherit;
}

samp {
    font-family: inherit;
}

kbd {
    font-family: inherit;
}

mark {
    background-color: rgba(255, 255, 0, 1);
    color: rgba(51, 51, 51, 1);
}

img {
    border: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

svg {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

svg:not(:root) {
    overflow: hidden;
}

audio {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

video {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}

iframe {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    max-width: 100%;
    vertical-align: middle;
}

table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}

th {
    font-weight: inherit;
    text-align: inherit;
}

label {
    cursor: pointer;
    display: block;
}

input[type="checkbox"] + label {
    background-color: rgba(255, 255, 255, 1);
    min-height: 5rem;
    padding: 1.5rem 2rem 1.5rem 7rem;
    position: relative;
}

input[type="radio"] + label {
    background-color: rgba(255, 255, 255, 1);
    min-height: 5rem;
    padding: 1.5rem 2rem 1.5rem 7rem;
    position: relative;
}

input[type="checkbox"] + label::before {
    background-color: rgba(102, 102, 102, 1);
    border-radius: 1rem;
    content: "";
    display: block;
    height: 2rem;
    left: 1.5rem;
    position: absolute;
    top: 1.5rem;
    transition-duration: 0.1s;
    transition-property: background-color;
    transition-timing-function: ease-in-out;
    width: 4rem;
}

input[type="checkbox"]:checked + label::before {
    background-color: rgba(0, 128, 0, 1);
}

input[type="radio"] + label::before {
    background-color: rgba(102, 102, 102, 1);
    border-radius: 1rem;
    content: "";
    display: block;
    height: 2rem;
    left: 1.5rem;
    position: absolute;
    top: 1.5rem;
    transition-duration: 0.1s;
    transition-property: background-color;
    transition-timing-function: ease-in-out;
    width: 4rem;
}

input[type="radio"]:checked + label::before {
    background-color: rgba(0, 128, 0, 1);
}

input[type="checkbox"] + label::after {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    content: "";
    display: block;
    height: 1.6rem;
    left: 1.7rem;
    position: absolute;
    top: 1.7rem;
    transition-duration: 0.1s;
    transition-property: left;
    transition-timing-function: ease-in-out;
    width: 1.6rem;
}

input[type="checkbox"]:checked + label::after {
    background-color: rgba(255, 255, 255, 1);
    left: 3.7rem;
}

input[type="radio"] + label::after {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    content: "";
    display: block;
    height: 1.6rem;
    left: 1.7rem;
    position: absolute;
    top: 1.7rem;
    transition-duration: 0.1s;
    transition-property: left;
    transition-timing-function: ease-in-out;
    width: 1.6rem;
}

input[type="radio"]:checked + label::after {
    background-color: rgba(255, 255, 255, 1);
    left: 3.7rem;
}

fieldset {
    border: none;
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal;
}

input[type="file"] {
    display: none;
}

input[type="checkbox"] {
    display: none;
}

input[type="radio"] {
    display: none;
}

input[type="text"] {
    background-color: rgba(255, 255, 255, 1);
    border: none;
    box-shadow: none;
    color: rgba(51, 51, 51, 1);
    display: block;
    font-family: inherit;
    font-size: inherit;
    height: 5rem;
    letter-spacing: inherit;
    line-height: inherit;
    overflow: visible;
    padding: 1.5rem 2rem;
    width: 100%;
}

input[type="password"] {
    background-color: rgba(255, 255, 255, 1);
    border: none;
    box-shadow: none;
    color: rgba(51, 51, 51, 1);
    display: block;
    font-family: inherit;
    font-size: inherit;
    height: 5rem;
    letter-spacing: inherit;
    line-height: inherit;
    overflow: visible;
    padding: 1.5rem 2rem;
    width: 100%;
}

textarea {
    background-color: rgba(255, 255, 255, 1);
    border: none;
    box-shadow: none;
    color: rgba(51, 51, 51, 1);
    display: block;
    font-family: inherit;
    font-size: inherit;
    height: 13rem;
    letter-spacing: inherit;
    line-height: inherit;
    overflow: auto;
    padding: 1.5rem 2rem;
    resize: vertical;
    width: 100%;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgba(255, 255, 255, 1);
    border: none;
    box-shadow: none;
    color: rgba(51, 51, 51, 1);
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: inherit;
    height: 5rem;
    letter-spacing: inherit;
    line-height: inherit;
    padding: 1.5rem 2rem;
    text-transform: none;
    width: 100%;
}

@-moz-document url-prefix() {
    select {
        padding-left: 1.6rem;
    }
}

[data-agent*="Trident/7"] select {
    padding-left: 1.8rem;
}

[data-agent*="MSIE 10"] select {
    padding-left: 1.8rem;
}

[data-agent*="MSIE 9"] select {
    padding-left: 1.8rem;
}

select::-ms-expand {
    display: none;
}

optgroup {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: bolder;
}

option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: normal;
}

.select {
    position: relative;
}

.select::after {
    border-bottom: 0.2rem solid rgba(51, 51, 51, 1);
    border-top: 0.6rem double rgba(51, 51, 51, 1);
    content: "";
    display: block;
    height: 1rem;
    pointer-events: none;
    position: absolute;
    right: 2rem;
    top: 2rem;
    width: 1rem;
}

button {
    -webkit-appearance: button;
    background-color: rgba(255, 255, 255, 1);
    border: none;
    box-shadow: none;
    color: rgba(51, 51, 51, 1);
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    overflow: visible;
    padding: 1.5rem 2rem;
    text-transform: none;
    width: 100%;
}

::-webkit-input-placeholder {
    color: rgba(102, 102, 102, 1) !important;
}

:-ms-input-placeholder {
    color: rgba(102, 102, 102, 1) !important;
}

::-moz-placeholder {
    color: rgba(102, 102, 102, 1) !important;
}

.placeholder {
    color: rgba(102, 102, 102, 1) !important;
}

details {
    display: block;
}

summary {
    display: list-item;
}

menu {
    display: block;
}

canvas {
    display: inline-block;
    vertical-align: middle;
}

template {
    display: none;
}

[hidden] {
    display: none;
}
