/*!
 * Moonkake 8.3.1
 *
 * https://github.com/detectiveshelby/moonkake
 */

:root {
    --base-font-size: 10px;
    --base-font-family: "Pragmatica", sans-serif;
    --base-text-color: #333;
    --base-text-color-rgb: 51, 51, 51;
    --base-text-line-height: 1.6;
    --container-max-width: 128rem;
    --gap: 4rem;
    --header-text-font-family: "ManropeThin", sans-serif;
    --header-text-color: inherit;
    --header-text-line-height: 1.2;
    --header-text-bottom-offset: 3rem;
    --header-text-font-size-1: 4.8rem;
    --header-text-font-size-2: 3.4rem;
    --header-text-font-size-3: 2.8rem;
    --header-text-font-size-4: 2rem;
    --header-text-font-size-5: 1.8rem;
    --header-text-font-size-6: 1.6rem;
    --content-text-font-size: 1.6rem;
    --content-text-bottom-offset: 2.5rem;
    --content-text-bottom-offset-header: 3rem;
    --content-text-list-offset: calc(var(--content-text-bottom-offset) / 3);
    --color-accent-1: #95c600;
    --color-accent-1-rgb: 149, 198, 0;
    --color-accent-2: #82ad00;
    --color-accent-2-rgb: 130, 173, 0;
    --color-gray-1: #eef0f3;
    --color-gray-2: #d2d4d6;
    --color-gray-3: #afb0b4;
    --color-highlight: #e17a00;
    --color-error: #ff401a;
}

@font-face {
    font-family: ManropeSemibold;
    font-display: swap;
    src: url(../fonts/Manrope-Semibold.woff2) format("woff2"), url(../fonts/Manrope-Semibold.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: ManropeRegular;
    font-display: swap;
    src: url(../fonts/Manrope-Regular.woff2) format("woff2"), url(../fonts/Manrope-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: ManropeThin;
    font-display: swap;
    src: url(../fonts/Manrope-Thin.woff2) format("woff2"), url(../fonts/Manrope-Thin.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}

html {
    font-size: 10px;
    font-size: var(--base-font-size);
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    width: 2160px;
    height: 3840px;
    margin: 0;
}

*,
:after,
:before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    line-height: 1.6;
    line-height: var(--base-text-line-height);
    font-size: 1.6rem;
    font-size: var(--content-text-font-size);
    margin: 0;
    direction: ltr;
    text-align: left;
    font-family: Pragmatica, sans-serif;
    font-family: var(--base-font-family);
    color: #333;
    color: var(--base-text-color);
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
    width: 2160px;
    height: 3840px;
}

.wrapper {
    width: 2160px;
    height: 3840px;
    background-image: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    -webkit-transition: color .25s, border-color .25s, background-color .25s, opacity .25s;
    transition: color .25s, border-color .25s, background-color .25s, opacity .25s;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

a:not([class]) {
    color: #82ad00;
    color: var(--color-accent-2);
}

a:not([class]):hover {
    color: #95c600;
    color: var(--color-accent-1);
}

a svg,
a use {
    pointer-events: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 3rem;
    margin: 0 0 var(--header-text-bottom-offset) 0;
    font-family: Pragmatica, sans-serif;
    font-family: var(--header-text-font-family);
    font-weight: 700;
    color: inherit;
    color: var(--header-text-color);
    line-height: 1.2;
    line-height: var(--header-text-line-height);
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: none;
    color: inherit;
}

.h1,
h1 {
    font-size: 4.8rem;
    font-size: var(--header-text-font-size-1);
}

.h2,
h2 {
    font-size: 3.4rem;
    font-size: var(--header-text-font-size-2);
}

.h3,
h3 {
    font-size: 2.8rem;
    font-size: var(--header-text-font-size-3);
}

.h4,
h4 {
    font-size: 2rem;
    font-size: var(--header-text-font-size-4);
}

.h5,
h5 {
    font-size: 1.8rem;
    font-size: var(--header-text-font-size-5);
}

.h6,
h6 {
    font-size: 1.6rem;
    font-size: var(--header-text-font-size-6);
}

dl + .h1,
dl + .h2,
dl + .h3,
dl + .h4,
dl + .h5,
dl + .h6,
dl + h1,
dl + h2,
dl + h3,
dl + h4,
dl + h5,
dl + h6,
ol + .h1,
ol + .h2,
ol + .h3,
ol + .h4,
ol + .h5,
ol + .h6,
ol + h1,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6,
p + .h1,
p + .h2,
p + .h3,
p + .h4,
p + .h5,
p + .h6,
p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6,
table + .h1,
table + .h2,
table + .h3,
table + .h4,
table + .h5,
table + .h6,
table + h1,
table + h2,
table + h3,
table + h4,
table + h5,
table + h6,
ul + .h1,
ul + .h2,
ul + .h3,
ul + .h4,
ul + .h5,
ul + .h6,
ul + h1,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6 {
    margin-top: 3rem;
    margin-top: var(--content-text-bottom-offset-header);
}

p {
    margin: 0 0 2.5rem;
    margin: 0 0 var(--content-text-bottom-offset) 0;
}

ol,
ul {
    padding: 0;
    margin: 0 0 2.5rem 2.5rem;
    margin: 0 0 var(--content-text-bottom-offset) 2.5rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

ol:not([class]) li + li,
ul:not([class]) li + li {
    margin-top: .83333rem;
    margin-top: var(--content-text-list-offset);
}

dl {
    margin: 0 0 2.5rem;
    margin: 0 0 var(--content-text-bottom-offset) 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-left: 0;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}

sup {
    top: -50%;
}

sub {
    bottom: -25%;
}

big {
    font-size: 120%;
}

small {
    font-size: 80%;
}

code,
kbd,
plaintext,
pre,
samp,
tt,
xmp {
    font-family: monospace, sans-serif;
}

pre {
    overflow: auto;
}

address {
    font-style: normal;
}

cite,
dfn,
em,
i {
    font-style: italic;
}

ins,
u,
var {
    text-decoration: underline;
}

b,
strong {
    font-weight: 700;
}

del,
s,
strike {
    text-decoration: line-through;
}

abbr,
acronym {
    cursor: help;
    border-bottom: .1rem dashed;
}

mark {
    color: #000;
    background: #ff0;
}

blockquote,
q {
    quotes: "" "";
    font-style: normal;
    padding: 1rem 2rem;
    margin: 0 0 1rem;
    border-left: .5rem solid #eee;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
}

img {
    vertical-align: top;
    -ms-interpolation-mode: bicubic;
    max-width: 100%;
    height: auto;
}

hr,
img {
    border: 0;
}

hr {
    display: block;
    height: .1rem;
    background: #eee;
    margin: 2rem 0;
    padding: 0;
}

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

.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child,
blockquote:last-child,
dl:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
ol:last-child,
p:last-child,
q:last-child,
table:last-child,
ul:last-child {
    margin-bottom: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    -webkit-font-feature-settings: "tnum";
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

table caption,
table th {
    font-weight: 700;
}

table caption {
    text-align: center;
    padding-bottom: 1rem;
}

table[border] td,
table[border] th {
    border: 0;
}

table[cellpadding] td,
table[cellpadding] th {
    padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}

summary {
    display: list-item;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

video {
    max-width: 100%;
    height: auto;
}

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

[hidden],
template {
    display: none;
}

figure {
    margin: 0;
}

::-ms-clear {
    display: none;
}

fieldset,
form,
frame,
frameset,
iframe {
    padding: 0;
    margin: 0;
    border: 0;
}

label {
    display: block;
}

legend {
    padding: 0 .5rem;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    color: inherit;
    margin: 0;
    vertical-align: baseline;
    outline: none;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
    height: auto;
}

::-webkit-input-placeholder {
    color: #d2d4d6;
    color: var(--color-gray-2);
    opacity: 1;
}

:-moz-placeholder,
::-moz-placeholder {
    color: #d2d4d6;
    color: var(--color-gray-2);
    opacity: 1;
}

:-ms-input-placeholder {
    color: #d2d4d6;
    color: var(--color-gray-2);
    opacity: 1;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
    cursor: pointer;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
}

button[disabled],
input[disabled],
select[disabled],
textarea[disabled] {
    cursor: default;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

input[type=checkbox],
input[type=radio] {
    vertical-align: baseline;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=search],
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
    resize: none;
    height: auto;
}

optgroup {
    font-weight: 700;
}

#header {
    position: relative;
    height: 425px;
}

#header .time {
    position: absolute;
    color: #fff;
    bottom: 50px;
    left: 40px;
    font-weight: 600;
}

#header .gismeteo {
    position: absolute;
    color: #fff;
    bottom: 50px;
    right: 46px;
    width: 500px;
    font-weight: 600;
}

#header .gismeteo .meteo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 34px;
    line-height: 26px;
    font-family: ManropeThin;
    width: 500px;
    margin-bottom: 20px;
}

#header .gismeteo .meteo-item.temp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 90px;
    line-height: 80px;
    font-family: ManropeThin;
    margin-bottom: 0px;
}

.icon-temp-value {
    max-width: 300px;
    max-height: 260px;
    height: 260px;
}

.icon-temp-value canvas {
    fill: #fff !important;
}

.icon-temp-value div {
    width: 300px;
    height: 300px;
}

@media (max-width: 1500px) {
    icon-temp-value div {
        width: 240px;
        height: 240px;
    }
}

.icon-temp-value div div {
    width: 300px;
    height: 300px;
}

.icon-temp-value div div span {
    width: 300px;
    display: none;
    /* white-space: break-spaces; */
    /* word-break: break-word; */
    /*position: absolute;
    left: 0;
    top: 0;
    font-size: 10px;*/
}

.icon-temp-value div div canvas {
    position: absolute !important;
    max-width: 300px !important;
    max-height: 340px !important;
    top: auto !important;
    left: auto !important;
    height: auto !important;
    width: auto !important;
    bottom: 0px;
}

.temp-value {
    display: flex;
    align-items: flex-start;
}

.gradus-item {
    font-size: 16px;
}

#header .gismeteo .meteo-item:last-child {
    margin-bottom: 0px;
}

#header .gismeteo .meteo-item .value-meteo-item {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.desc-meteo-item {
    margin-left: 6px;
}

#header .week {
    line-height: 46px;
    font-size: 54px;
    font-family: ManropeRegular;
    text-align: left;
    margin-left: 12px;
}

#header .clock {
    margin-top: 76px;
    line-height: 126px;
    font-size: 160px;
    font-family: ManropeThin;
    text-align: left;
}

.main {
    position: relative;
    top: 500px;
    margin: 0px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.item-card {
    width: 220px;
    height: 140px;
    border-radius: 10px;
    padding: 15px;
    color: #272525;
    font-family: ManropeThin;
    margin-right: 55px;
    margin-bottom: 40px;
    color: #272525;
    font-weight: 600;
}

.item-card:nth-child(7n) {
    margin-right: 0px;
}

.time-item-card {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.desc-item-card {
    font-size: 20px;
    line-height: 28px;
}

.gsInformer {
    width: 540px !important;
    height: 300px !important;
}

.gsInformer .main_wrap {
    height: 160px !important;
}

.gsInformer .secondaryWrap {
    width: 100% !important;
    height: 160px !important;
}

.gsInformer .secondaryWrap table td {
    height: 160px !important;
}

.gsInformer .gsCity, .gsInformer .gsTemp, .gsInformer .gsTemp2 {
    font-size: 50px !important;
}

.gsInformer .gsCity {
    margin-top: 22px !important;
}

.gsInformer .gsWeatherIcon img {
    vertical-align: middle;
    width: 100%;
}

.gsInformer .gsTemp {
    padding-top: 30px !important;
}

.gsInformer .gsAddInfo {
    font-size: 42px !important;
    margin-bottom: 20px;
}

.widget-weather {
    zoom: 2.6;
}

.booked-prime-days-data .booked-wzs-pd-val {
    color: #fff !important;
}

.booked-prime-days-data .booked-pd {
    color: #fff !important;
}

.booked-prime-days-data .booked-pd-nidw {
    color: #fff !important;
}

.wrapper-trener {
    background-image: url(../img/background-trener.jpg);
}

.treners-main {
    margin: 0 40px;
    top: 360px;
}
.title {
    font-size: 100px;
    display: block;
    margin-bottom: 80px;
    width: 100%;
    color: #fff;
    text-align: center;
}
.treners-main .title {
    font-size: 80px;
    display: block;
    margin-bottom: 60px;
    width: 100%;
    color: #fff;
    text-align: center;
}
.wrapper-treners {
    width: 100%;
}
.item-trener {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
    background: url(../img/trener-background.png) right bottom no-repeat, #fff;
    border-radius: 20px;
    padding: 30px 120px;
}
.image-trener {
    border-radius: 50%;
    max-width: 280px;
}
.image-trener img {
    border-radius: 50%;
}
.info-trener {
    padding-left: 120px;
    max-width: 72%;
}
.fio-trener {
    font-size: 55px;
    font-family: ManropeRegular;
    margin-bottom: 30px;
}
.description-trener {
    font-size: 32px;
}
