@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
@import url("jquery-ui.css");
.tal {
    text-align: left;
}

.tar {
    text-align: right;
}

.accent_text {
    color: #37548D;
}

button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
    pointer-events: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    color: white;
}

html {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

@media (min-width: 320px) {
    html {
        font-size: calc(14px + 2 * (100vw - 320px) / 860);
    }
}

@media (min-width: 1180px) {
    html {
        font-size: 16px;
    }
}

.container {
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1180px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

* {
    box-sizing: border-box;
}

[v-cloak] {
    display: none!important;
}

.bold {
    font-weight: bold;
}

.uppercase {
    text-transform: uppercase;
}

.btn {
    display: flex;
    height: 40px;
    line-height: 40px;
    background: #37548D;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    border-radius: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn.accent2 {
    background: #28364B;
}

.btn.accent2:hover {
    background: #161e2a;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background: #293e68;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type=text], input[type=tel], input[type=email] {
    height: 40px;
    line-height: 40px;
    border: none;
    border-radius: 40px;
    font-family: "Roboto", sans-serif;
    display: flex;
    width: 100%;
    font-size: 14px;
    margin: 5px 0;
    padding: 0 15px;
    -webkit-appearance: none;
    color: white;
    background: #3C5C9D;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder {
    color: white;
}

input[type=text]::placeholder, input[type=tel]::placeholder, input[type=email]::placeholder {
    color: white;
}

input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus {
    box-shadow: 0 0 15px rgba(55, 84, 141, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type=submit] {
    border: none;
    background: #37548D url(/img/arrow-right.svg) no-repeat right center;
    color: white;
    text-align: center;
    justify-content: center;
    width: auto;
    padding: 0 40px;
    margin: auto;
    margin-top: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

input[type=submit]:hover {
    background: #293e68;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type=submit]:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(55, 84, 141, 0.8);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0px;
    margin-right: 0px;
}

[class*=col-] {
    width: 100%;
}

p {
    margin: 0;
    margin-bottom: 20px;
    line-height: normal;
}

h1, .h1 {
    margin: 20px 0 10px 0;
    font-size: 20px;
    width: 100%;
}

@media (min-width: 320px) {
    h1, .h1 {
        font-size: calc(20px + 16 * (100vw - 320px) / 860);
    }
}

@media (min-width: 1180px) {
    h1, .h1 {
        font-size: 36px;
    }
}

h2, .h2 {
    font-size: 1.5em;
    font-size: 18px;
    width: 100%;
}

@media (min-width: 320px) {
    h2, .h2 {
        font-size: calc(18px + 12 * (100vw - 320px) / 860);
    }
}

@media (min-width: 1180px) {
    h2, .h2 {
        font-size: 30px;
    }
}

h3, .h3 {
    font-size: 1.17em;
    font-size: 15px;
    width: 100%;
}

@media (min-width: 320px) {
    h3, .h3 {
        font-size: calc(15px + 11 * (100vw - 320px) / 860);
    }
}

@media (min-width: 1180px) {
    h3, .h3 {
        font-size: 26px;
    }
}

h4, .h4 {
    font-size: 1.12em;
    font-size: 14px;
    width: 100%;
}

@media (min-width: 320px) {
    h4, .h4 {
        font-size: calc(14px + 10 * (100vw - 320px) / 860);
    }
}

@media (min-width: 1180px) {
    h4, .h4 {
        font-size: 24px;
    }
}

h5, .h5 {
    font-size: 0.83em;
    font-size: 12px;
    width: 100%;
}

@media (min-width: 320px) {
    h5, .h5 {
        font-size: calc(12px + 8 * (100vw - 320px) / 860);
    }
}

@media (min-width: 1180px) {
    h5, .h5 {
        font-size: 20px;
    }
}

h6, .h6 {
    font-size: 0.75em;
    font-size: 11px;
    width: 100%;
}

@media (min-width: 320px) {
    h6, .h6 {
        font-size: calc(11px + 7 * (100vw - 320px) / 860);
    }
}

@media (min-width: 1180px) {
    h6, .h6 {
        font-size: 18px;
    }
}

.popup_wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.popup_wrapper.show {
    transform: translateY(0%);
    opacity: 1;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.popup_wrapper.show .animation svg {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.popup_wrapper.show .popup {
    transform: translateY(0%) scale(1);
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.popup_wrapper .animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.popup_wrapper .animation svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(15) rotate(90deg);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.popup_wrapper .animation svg path, .popup_wrapper .animation svg rect {
    fill: #0c121f;
}

.popup_wrapper .popup {
    background: white;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    overflow-y: scroll;
    padding: 20px;
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(250%) scale(2);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.popup_wrapper .popup .close {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 40px;
    top: 40px;
    display: block;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.popup_wrapper .popup .close svg {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
}

.popup_wrapper .popup .close svg path {
    stroke-width: 4;
    stroke: #8b8b8b;
}

.popup_wrapper .popup .close:hover svg {
    transform: rotate(90deg);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.popup_wrapper .popup .close:focus {
    transform: scale(0.1);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.popup_wrapper.accent2 .animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.popup_wrapper.accent2 .animation svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(15) rotate(90deg);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.popup_wrapper.accent2 .animation svg path, .popup_wrapper.accent2 .animation svg rect {
    fill: #161e2a;
}

.popup_wrapper.accent2.show {
    transform: translateY(0%);
    opacity: 1;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.popup_wrapper.accent2.show .animation svg {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.popup_wrapper.accent2.show .popup {
    transform: translateY(0%) scale(1);
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.popup_wrapper.accent2.show .popup input[type=text]:focus, .popup_wrapper.accent2.show .popup input[type=tel]:focus, .popup_wrapper.accent2.show .popup input[type=email]:focus {
    box-shadow: 0 0 15px rgba(40, 54, 75, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popup_wrapper.accent2.show .popup input[type=submit] {
    border: none;
    background: #28364B;
    color: white;
    text-align: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popup_wrapper.accent2.show .popup input[type=submit]:hover {
    background: #161e2a;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popup_wrapper.accent2.show .popup input[type=submit]:focus {
    box-shadow: 0 0 15px rgba(40, 54, 75, 0.7);
}

.img_wrapper {
    width: 100%;
    height: 100%;
}

.img_wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.img_wrapper.fixed_height {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.img_wrapper.fixed_height img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.btn-order:disabled {
    background: #a0aec0 url(/img/arrow-right.svg) no-repeat right 10px center;
}

@media (min-width: 642px) {
    .col-1 {
        width: 8.3333333333%;
    }

    .col-offset-1 {
        margin-left: 8.3333333333%;
    }

    .col-2 {
        width: 16.6666666667%;
    }

    .col-offset-2 {
        margin-left: 16.6666666667%;
    }

    .col-3 {
        width: 25%;
    }

    .col-offset-3 {
        margin-left: 25%;
    }

    .col-4 {
        width: 33.3333333333%;
    }

    .col-offset-4 {
        margin-left: 33.3333333333%;
    }

    .col-5 {
        width: 41.6666666667%;
    }

    .col-offset-5 {
        margin-left: 41.6666666667%;
    }

    .col-6 {
        width: 50%;
    }

    .col-offset-6 {
        margin-left: 50%;
    }

    .col-7 {
        width: 58.3333333333%;
    }

    .col-offset-7 {
        margin-left: 58.3333333333%;
    }

    .col-8 {
        width: 66.6666666667%;
    }

    .col-offset-8 {
        margin-left: 66.6666666667%;
    }

    .col-9 {
        width: 75%;
    }

    .col-offset-9 {
        margin-left: 75%;
    }

    .col-10 {
        width: 83.3333333333%;
    }

    .col-offset-10 {
        margin-left: 83.3333333333%;
    }

    .col-11 {
        width: 91.6666666667%;
    }

    .col-offset-11 {
        margin-left: 91.6666666667%;
    }

    .col-12 {
        width: 100%;
    }

    .col-offset-12 {
        margin-left: 100%;
    }

    .col {
        width: 8.3333333333%;
        flex-basis: 0;
        flex-grow: 1;
    }

    .container {
        /*width: 597px;*/
        width: 642px;
    }

    .btn {
        width: auto;
        padding: 0 40px;
    }

    .popup_wrapper .popup {
        width: 400px;
        height: auto;
        position: relative;
        overflow: visible;
    }

    .popup_wrapper .popup .close {
        right: -50px;
        top: 0;
    }

    .popup_wrapper .popup .close svg path {
        stroke: white;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -4px;
        margin-right: -4px;
    }
}

@media (min-width: 1180px) {
    .container {
        width: 1150px;
    }
}

.vc-is-dark .vc-day-content[data-v-243c9412]:hover {
    background-color: rgba(255, 255, 255, 0) !important;
}

.vc-day-content[data-v-243c9412] {
    height: 15px !important;
    min-height: 15px !important;
}

.vc-day-box-center-center[data-v-243c9412] {
    height: 22px !important;
}

.vc-highlight[data-v-243c9412] {
    width: 28px;
    height: 22px !important;
}

.vc-day-content[data-v-a1110b40] {
    height: 15px !important;
}

.vc-day[data-v-a1110b40] {
    min-height: 15px !important;
}

.vc-day[data-v-243c9412] {
    min-height: 20px !important;
}

.vc-day-content[data-v-a1110b40] {
    height: 17px !important;
}

.vc-weekday[data-v-3491b290] {
    padding: 0 !important;
}

.vc-is-dark .vc-day-content[data-v-243c9412]:focus {
    background-color: rgba(114, 129, 151, 0) !important;
}

.vc-day-layer[data-v-243c9412] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0px !important;
    bottom: 0px !important;
    pointer-events: none;
}

.mx_capcha {
    position: absolute;
    border-radius: 40px;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mx_capcha ~ input {
    padding-left: 140px;
}

.mx_capcha a {
    display: flex;
}

html {
    height: 100%;
    font-family: "Roboto", sans-serif;
    background: #28364B;
    color: white;
}

input, button {
    font-family: "Roboto", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: "Roboto", sans-serif;
}

.vc-container {
    --rounded-full: 4px !important;
    --font-bold: 500 !important;
    --text-xs: 20px !important;
    --text-sm: 20px !important;
    --text-base: 20px !important;
    --text-lg: 20px !important;
}

.vc-weekday[data-v-3491b290], .vc-title[data-v-3491b290] {
    text-transform: capitalize;
}

.vc-day-content[data-v-a1110b40] {
    --rounded-full: 10px !important;
    border-radius: 0px !important;
}

.vc-highlight {
    background-color: white !important;
}

.vc-container {
    --rounded-full: 4px !important;
}

header {
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    /*background: linear-gradient(-90deg, rgba(60, 92, 157, 0.82) 0%, rgba(47, 50, 46, 0) 90.36%);*/
	position:relative;
	z-index:1;
	
}
header:before{
	content:"";
	background:#164194;
	box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.40);
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:-2;
}
header .logo_wrapper {
	height:83px;
    display: flex;
    flex-wrap: wrap;
	align-content: center;
}

header .logo_wrapper .logo {
   /* width: 174px;*/
   width:120px;
}

header .logo_wrapper .logo img {
    max-width: 100%;
    padding: 10px;
}

header .logo_wrapper .pretitle {
   /* width: 28%;
    font-size: 8px;
    display: flex;
    align-items: center;*/
	width:175px;
}
header .logo_wrapper .pretitle img{
   max-width: 100%;
    padding: 10px;
}
header .in {
    width: calc(100% + 16px);
    height: 40px;
    margin: 0 -8px;
    padding: 0 19px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}

header .in:before {
    content: "";
   /* background: #3C5C9D;*/
   background:#2E2F32;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

header .order_btn {
    background: url(../img/new/ticket_mobile.svg) no-repeat;
    color: white;
    padding: 3px 0 0 34px;
    height: 34px;
    display: flex;
    font-size: 14px;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
}

header .training_trainer_btn {
    background: url(../img/new/ice-skating-shoes_mobile.svg) no-repeat;
    border-right: 1px solid rgba(255, 254, 254, 0.4);
    display: flex;
    padding: 3px 3px 0 34px;
    height: 27px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
}

main {
    /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 1 0 auto;
}

main ul {
    list-style-type: unset;
    padding: 0;
    margin: 20px;
    display: block;
    width: 100%;
}

main .hero_slider.confirm_in {
    display: none;
}

main .hero_slider .container {
    padding: 0;
}

main .hero_slider .container .row {
    margin: 0;
}

main .hero_slider .img_wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

main .hero_slider .title {
   /* background: #30322E;
    width: 100%;
    padding: 10px 22px;
    font-size: 20px;*/
	position: relative;
	font-size: 24px;
	font-weight:900;
    text-transform: uppercase;
    width: 235px;
	margin:19px 0 0 19px;
	z-index:1;
}
main .hero_slider .title p{
	margin:0;
}
main .scedule {
   /* position: absolute;
    top: 207px;
	left: 0;
	*/
    text-align: left;
    width: 100%;
	margin:0 0 20px;
    padding: 0px 15px 10px 22px;
    
    background: #30322E;
}

main .vc-container {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    --white: #37548d;
}

main .vc-container.vc-is-dark {
    background-color: #334B79;
    border: none;
    --rounded-lg: 24px;
}

main .mxapp {
    padding: 17px 0;
    text-align: center;
}

@media (min-width: 1180px) {
    main .mxapp {
        padding: 17px 7px;
        text-align: center;
    }
}

main .mxapp .title_wrapper {
    text-align: left;
}

main .mxapp .title_wrapper .title {
    text-transform: uppercase;
}

main .mxapp .title_wrapper .pretitle {
    font-size: 14px;
    width: 100%;
    text-align: left;
    margin: 20px 0;
}

main .mxapp .title {
    font-size: 20px;
    margin-bottom: 5px;
}

main .mxapp .calendar_wrapper {
    min-height: 114px;
	margin: 0 0 20px;
}

main .mxapp .calendar_wrapper .choose_date_title {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    color: white;
    background: #2E446E;
    border-radius: 40px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: -60px;
    z-index: 5;
    position: relative;
    width: 258px;
    margin-left: auto;
    margin-right: auto;
}

main .mxapp .calendar_wrapper .vc-container {
    padding-top: 45px;
    display: none;
}

main .mxapp .count_wrapper.disabled {
    opacity: 0.5;
}

main .mxapp .count_wrapper .pretitle {
    margin: 10px;
}


main .mxapp .ticket_section .ticket_add {
    margin-top: 10px;
    display: none;
}

main .mxapp .ticket_section .ticket_add.fake {
    margin-left: 0;
}

main .mxapp .ticket_section .ticket_add.active {
    display: block;
}

main .mxapp .ticket_section .ticket_add button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    background: #38558D;
    color: white;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 7px;
    outline: none;
    text-align: left;
    align-items: center;
    min-height: 44px;
}

main .mxapp .ticket_section .ticket_add button:disabled {
    background: gray;
}

main .mxapp .ticket_section .ticket_add button span:last-child {
    text-align: right;
    flex-shrink: 0;
}

main .mxapp .ticket_section .ticket_add button.current {
    color: #37548D;
    background: white;
}

.hide {
    display: none;
}

main .mxapp .submiting_form .date {
    line-height: 36px;
}

main .mxapp .end_point {
    display: none;
    width: 100%;
}

main .mxapp .end_point.show {
    display: flex;
}

main .vrppr .additional_1 {
    width: 100%;
    padding: 50px 20px 10px 20px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    background: #38558D;
    color: white;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    margin-top: -50px;
    z-index: -1;
    position: relative;
    margin-bottom: 6px;
    display: none;
    text-align: left;
}

main .vrppr .additional_1.show {
    display: block;
}

main .time_wrapper {
    margin-bottom: 20px;
}

main .time_wrapper.disabled {
    opacity: 0.4;
}

main .time_wrapper .left {
    margin: 16px 0;
}

main .time_wrapper .left .white-text {
    color: white;
}

main .time_wrapper .left .red-text {
    font-size: 14px;
    color: red;
    text-align: justify;
}

main .time_wrapper .timing {
    display: flex;
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}


main .time_wrapper .timing button {
    background: #37548D;
    border: none;
    color: white;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    margin: 4px;
}

main .time_wrapper .timing button.disabled {
    opacity: 0.5;
    background: gray;
}

main .time_wrapper .timing button:disabled {
    opacity: 0.5;
    background: gray;
}

main .time_wrapper .timing button.active {
    background: white;
    color: #37548D;
    outline: none;
}

main .additional .title {
    text-transform: none;
}

main .additional .tickets {
    display: flex;
    justify-content: space-evenly;
    margin-top: 5px;
}

main .additional .tickets button {
    height: 44px;
    width: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3C5C9D;
    color: white;
    font-size: 20px;
    border: none;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    border-radius: 40px;
    outline: none;
}

main .additional .tickets button.active {
    color: #37548D;
    background: white;
}

main .additional .tickets button:disabled {
    background: #3C5C9D !important;
    color: white;
    opacity: 0.2;
}

main .additional .item {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    color: white;
    background: #2E446E;
    border-radius: 20px;
    text-align: left;
    margin: 10px 0;
}

main .additional .item .inwrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #37548D;
    border-radius: 20px;
    padding-left: 20px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

main .additional .item .inwrapper.active {
    color: #37548D;
    background: white;
}

main .additional .item .inwrapper span {
    width: calc(100% - 105px);
    position: relative;
}

main .additional .item .inwrapper .mx_counter {
    margin: 0;
    margin-right: -1px;
    flex-shrink: 0;
    width: 105px;
    position: relative;
}

main .additional .item .dop {
    padding: 0px;
    font-size: 0px;
}

main .additional .item .dop.show {
    padding: 10px 20px;
    font-size: 14px;
}

main .additional .item.selected .inwrapper {
    background: white;
    color: #2E446E;
}

main .inner_text {
    width: 100%;
    text-align: left;
    margin-top: 20px;
    font-size: 14px;
}

main .btn-order {
    background: #37548D url(/img/arrow-right.svg) no-repeat right 10px center;
    color: white;
    border: none;
    height: 40px;
    border-radius: 30px;
    padding: 0 40px 0 20px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    min-width: 165px;
}

main a.back {
    position: relative;
    padding-left: 20px;
    text-decoration: none;
    margin: 20px 0;
    display: inline-block;
    width: 100%;
    text-align: left;
}

main a.back:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 20px;
    left: 0;
    top: 0;
    transform: rotate(180deg);
    background: url(/img/arrow-right.svg) no-repeat center;
    background-size: contain;
}

.submiting_form {
    width: 100%;
    text-align: left;
    font-size: 20px;
}

.submiting_form .title {
    text-transform: uppercase;
}

.submiting_form button {
    border: none;
    margin: 20px auto;
    background: #37548D url(/img/arrow-right.svg) no-repeat right 10px center;
    color: white;
    text-align: center;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
}

.mx_counter {
    display: flex;
    height: 40px;
    width: 105px;
    margin: 10px auto;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.mx_counter button {
    background: #12254A;
    font-size: 24px;
    color: white;
    border: none;
    height: 100%;
    width: 35px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    outline: none;
}

.mx_counter button:focus {
    background-color: #152035;
}

.mx_counter button:first-child {
    border-radius: 20px 0 0 20px;
}

.mx_counter button:last-child {
    border-radius: 0 20px 20px 0;
}

.mx_counter input {
    height: 100%;
    margin: 0;
    text-align: center;
    border: none;
    border-radius: 0;
    font-size: 20px;
    color: white;
    padding: 0;
    display: flex;
    align-items: center;
    background-color: #37548D;
}

footer {
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 0 0 auto;
    /*padding: 40px 0;*/
	padding:10px 11px 20px;
    /*min-height: 217px;*/
    /*background: linear-gradient(180deg, #3C5C9D 0%, rgba(47, 50, 46, 0) 40.36%);*/
	/*background: linear-gradient(180deg, #164194 0%, rgba(47, 50, 46, 0) 40.36%);*/
	
	position:relative;
	min-height: 735px;
}
footer:before{
	content:"";
	background: #2F322E url(../img/new/pic105.png) repeat-x;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index:-1;
}
footer .row {
   
    flex-direction: column;
}
footer .logo_section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	width:120px;
	margin:0 0 19px;
}

footer .logo_section img {
   /* width: calc(100% - 100px);*/
   max-width:100%;
    padding-right: 10px;
}

footer .logo_section .title {
    width: 100px;
    flex-shrink: 0;
    font-size: 10px;
}

footer .socs {
   /* margin: 20px 0;
    width: 100%;*/
	position:absolute;
	top:13px;
	right:15px;
}
footer .socs .title{
	margin:0 0 3px;
	font-size:12px;
}
footer .socs ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
	margin:0 0 0 -5px;
}

footer .socs ul li {
    margin: 5px;
}
footer .socs ul a {
	display:block;
	width:28px;
	height:26px;
	position:relative;
	overflow:hidden;
}
footer .socs ul img{
	max-width:100%;
	max-height:100%;
	margin:auto;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	vertical-align:top;
}
.additional_footer{
	margin:0 0 8px;
}
.additional_footer .call{
	font-size:16px;
}
.additional_footer .call a{
	font-size:20px;
	font-weight:bold;
}
.additional_footer .mail{
	font-size:16px;
}
.additional_footer .mail a{
	font-size:20px;
	font-weight:bold;
}
footer .return {
    margin-bottom: 39px;
    width: 100%;
}
footer .return div{
	margin:0 0 19px;
}
footer .return a {
    color: white;
    font-size: 14px;
	text-decoration:none;
}

footer .return_2 {
    width: 100%;
	text-align:center;
}
footer .return_2 div{
	margin:0 0 4px;
}
footer .return_2 a {
    color: white;
    font-size: 12px;
	text-decoration:none;
}

footer .bottom_text {
	
	 width: auto;
	 padding:19px 10px 0;
	
    font-size: 12px;
	font-style:italic;
	position:relative;
   
}
footer .bottom_text:before{
	content:"";
	 border-top: 1px solid rgba(255, 255, 255, 0.5);
	 position:absolute;
	 top:0;
	 right:-19px;
	 left:-19px;
}
footer .bottom_text p {
	margin:0;
	line-height:1.3;
}

.input_wrapper .error {
    color: red;
    font-size: 11px;
    margin-bottom: 15px;
    width: 100%;
}

.input_wrapper label {
    padding-left: 10px;
}

.input_wrapper.df {
    display: flex;
}

.form_wrapper {
    padding: 10px 0;
    margin-bottom: 20px;
}

.form_wrapper input[type=checkbox] {
    margin-top: 10px;
    width: 13px;
    height: 13px;
    display: block;
    flex-shrink: 0;
}

.form_wrapper .error {
    border: 1px solid red;
    border-radius: 6px;
    padding: 10px;
    margin: 8px 0;
    color: red;
    font-size: 14px;
}

.res_data table {
    margin-bottom: 30px;
}

table {
    border-collapse: collapse;
    position: relative;
    width: 100%;
}

table td {
    padding: 5px;
}

table .total td {
    padding: 20px 5px;
}

.total_table {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.total_table:before {
    content: "";
    position: absolute;
    width: 98.9vw;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30px);
    background: rgba(255, 255, 255, 0.4);
}

.end_point {
    flex-wrap: wrap;
}

.end_point .popup {
    background: url(/img/ticket_icon.svg) no-repeat left center;
    background-size: 90px;
    padding-left: 100px;
    min-height: 100px;
    display: flex;
    align-items: center;
    margin: auto;
    flex-wrap: wrap;
    font-size: 16px;
}

.end_point .popup a {
    width: 100%;
    margin-top: -10px;
}

.res_data {
    margin: auto;
}

.res_data table tr td:nth-child(1) {
    width: 70%;
}

.res_data table tr td:nth-child(2) {
    width: 10%;
}

.res_data table tr td:nth-child(3) {
    width: 20%;
    text-align: right;
}

.tickets_popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    z-index: 99;
    color: #37548D;
}

.tickets_popup.show {
    display: flex;
}

.tickets_popup .wrapper {
    border-radius: 30px;
    padding: 43px 10px 13px 10px;
    width: 285px;
    background: linear-gradient(180deg, #2F322E 0%, #3C5C9D 100%);
    position: relative;
}

.tickets_popup .wrapper .close {
    background: url(/img/close_2.svg) no-repeat center;
    width: 21px;
    height: 21px;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 0;
}

.tickets_popup .wrapper .h2 {
    font-size: 20px;
    color: white;
}

.tickets_popup .wrapper .goback {
    background: #2F322E url(/img/goback.svg) no-repeat left 1px top 5px;
    border-radius: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    height: 37px;
    display: block;
    width: 164px;
    border: none;
    color: white;
    font-size: 14px;
    margin: 4px auto;
}

.tickets_popup .wrapper .force {
    background: #2F322E url(/img/arrow-right.svg) no-repeat right 1px top 5px;
    border-radius: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    height: 37px;
    display: block;
    width: 164px;
    border: none;
    color: white;
    font-size: 14px;
    margin: 4px auto;
}

.additional_footer .call span {
    
    display: block;
	margin:0 0 8px;
}

.additional_footer .call a {
    
    text-decoration: none;
}

.additional_footer .mail {
    margin-top: 27px;
    margin-bottom: 37px;
}

.additional_footer .mail span {
   
    display: block;
	margin:0 0 5px;
}

.additional_footer .mail a {
    font-size: 24px;
    text-decoration: none;
}

.additional_footer .ooo_1 {
    font-size: 12px;
}

.additional_footer .ooo_2 {
    font-size: 12px;
}

.bottom_wrapp {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-areas: "a1" "a2" "a3";
}

.bottom_wrapp .pop_title {
    width: 100%;
    font-size: 12px;
    color: white;
    background: #3C5C9D;
    border-radius: 15px;
    padding: 15px;
    grid-area: a1;
}

.bottom_wrapp .pop_title p {
    padding: 0;
    margin: 0;
}

.bottom_wrapp .inner_text {
    width: 100%;
}

.bottom_wrapp .warn {
    color: red;
    font-size: 14px;
    margin-top: 20px;
}

.white_space {
    background: white;
    border-radius: 0px;
   /* margin-left: -22px;
    margin-right: -22px;*/
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
}

.space {
    border-radius: 0px;
    margin-left: -22px;
    margin-right: -22px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
}

.white_space p {
    color: #3C5C9D;
    font-size: 14px;
    margin: 0;
}
.white_space a{
    color:  #3C5C9D !important;
}
.white_space img {
    max-width: 100%;
}

.training_trainer_step {
    width: 100%;
    margin: 0 auto;
    padding: 19px 0 21px;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: center;
}

.training_trainer_step > p {
    margin-bottom: 9px;
}

.training_trainer_step .h1 {
    margin: 20px 0 16px 0;
    font-size: 24px;
    text-transform: uppercase;
}

.training_trainer_step .h2 {
    margin: 0 0 14px;
    padding: 0;
    font-size: 24px;
    text-transform: uppercase;
}

.training_trainer_step .red-text {
    margin: 0 0 10px;
    color: #FF0000;
}

.training_trainer_step .download_file {
    margin: 0 0 26px;
}

.training_trainer_step .download_file .link {
    background: url(../img/new/download_file.svg) no-repeat;
    display: inline;
    padding: 0 0 0 24px;
    color: #fff;
}

.training_trainer_step .download_file .link:hover {
    text-decoration: none;
}

.lessons_list {
    display: flex;
    flex-direction: column;
    margin: 0 0 11px;
}

.lessons_list .item {
    margin: 0 0 9px;
}

.lessons_list .btn {
    background: #3C5C9D;
    border: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    display: block;
    width: 100%;
    height: 140px;
    padding: 0 22px 16px 53px;
    color: #fff;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: left;
}

.lessons_list .active .btn {
    background: #fff;
    color: #3C5C9D;
}

.lessons_list .title {
    display: flex;
    flex-direction: row;
    margin: -2px 0 4px -39px;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.1;
}

.lessons_list .fig {
    width: 29px;
    height: 29px;
    margin: 0 11px 0 0;
    position: relative;
    overflow: hidden;
}

.lessons_list .img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    vertical-align: top;
}

.lessons_list .text {
    width: 84%;
    padding: 3px 0 0;
}

.lessons_list .fig_blue {
    display: none;
}

.lessons_list .active .fig_blue {
    display: block;
}

.lessons_list .active .fig_white {
    display: none;
}

.lessons_list .price {
    font-weight: bold;
    line-height: 1.1;
}

.lessons_list p {
    margin: 0 0 8px;
}

.training_trainer_step .btn-further {
    background: #3C5C9D;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    border: none;
    display: inline-block;
    width: 100%;
    height: 37px;
    position: relative;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    line-height: 37px;
    text-align: center;
}

.training_trainer_step .btn-further .text {
    background: url(/img/arrow-right.svg) no-repeat 100% 50%;
    display: inline-block;
    padding: 0 28px 0 0;
}

.training_trainer_step .btn-further:disabled {
    background: #6B717B;
}

.ar {
    text-align: right;
}

.choice_list {
    display: flex;
    flex-direction: column;
    margin: 0 0 13px;
}

.choice_list .item {
    margin: 0 0 12px;
}

.choice_list .btn {
    background: #3C5C9D;
    border: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 20px 0 26px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: left;
    text-transform: uppercase;
    line-height: 1.1;
}

.choice_list .active .btn {
    background: #fff;
    color: #3C5C9D;
}

.choice_list .title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.choice_list .fig {
    width: 22px;
    height: 23px;
    margin: 0 11px 0 0;
    position: relative;
    overflow: hidden;
}

.choice_list .img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    vertical-align: top;
}

.choice_list .text {
    width: calc(100% - 33px);
}

.choice_list .fig_blue {
    display: none;
}

.choice_list .active .fig_blue {
    display: block;
}

.choice_list .active .fig_white {
    display: none;
}

.training_trainer_step .back {
    background: #3C5C9D;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    border: none;
    display: inline-block;
    width: 100%;
    height: 37px;
    margin: 0 0 20px;
    padding: 0;
    position: relative;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    line-height: 37px;
    text-align: center;
}

.training_trainer_step .back .text {
    display: inline-block;
    padding: 0 0 0 28px;
    position: relative;
}

.training_trainer_step .back .text:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 37px;
    left: 0;
    top: 0;
    transform: rotate(180deg);
    background: url(/img/arrow-right.svg) no-repeat 0 50%;
    background-size: contain;
}

.training_trainer_step .btn_block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}



.class_time {
    column-count: 2;
    margin: -10px 0 20px 8px;
}

.class_time .item {
    min-width: 144px;
    margin: -10px -10px -4px -20px;
}
.class_time .item:first-child{
	 margin: 0 -10px -4px -20px;
}
.class_time button {
    background: rgba(60, 92, 157, 0.78);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    border: none;
    width: calc(100% - 20px);
    height: 40px;
	margin:10px;
    position: relative;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    text-align: left;
}

@media (min-width: 360px) {
    .class_time button {
        padding: 0 0 0 10px;
    }
}

.class_time button:hover {
    cursor: pointer;
}

.class_time button:disabled {
    background: #6B717B;
}

.class_time button:disabled:hover {
    cursor: default;
}

.class_time button.active {
    background: #fff;
    color: #3C5C9D;
}

.class_time .group:before {
    content: "";
    background: url(../img/new/class_time_groupe_white.svg) no-repeat 0 50%;
    width: 20px;
    height: 40px;
    position: absolute;
    right: 6px;
    top: 0;
}

.class_time .active.group:before {
    content: "";
    background: url(../img/new/class_time_groupe_blue.svg) no-repeat 0 50%;
    width: 20px;
    height: 40px;
    position: absolute;
    right: 6px;
    top: 0;
}

.class_time .one:before {
    content: "";
    background: url(../img/new/class_time_one_white.svg) no-repeat 0 50%;
    width: 18px;
    height: 40px;
    position: absolute;
    right: 6px;
    top: 0;
}

.class_time .active.one:before {
    content: "";
    background: url(../img/new/class_time_one_blue.svg) no-repeat 0 50%;
    width: 18px;
    height: 40px;
    position: absolute;
    right: 6px;
    top: 0;
}

.notes_calendar {
    width: 265px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.notes_calendar .item {
    display: flex;
    flex-direction: row;
    font-size: 12px;
    color: #fff;
}

.notes_calendar .dot {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    width: 15px;
    height: 15px;
    margin: 0 8px 0 0;
}

.training_trainer_step .search {
    background: #3C5C9D url(../img/new/coach_search_lupa.svg) no-repeat 93% 50%;
    border-radius: 25px;
    width: 100%;
    height: 49px;
    margin: 0 0 7px;
    position: relative;
    transition: all 0.5s ease 0s;
}

.training_trainer_step .search:before {
    content: "Выберите тренера";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 50px;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.training_trainer_step .search.over {
    background: none;
    height: auto;
}

.training_trainer_step .search.over:before {
    display: none;
}

.training_trainer_step .search .field {
    background: #fff;
    border: none;
    border-radius: 25px;
    display: none;
    height: 43px;
    margin: 0 0 13px;
    padding: 5px 45px 6px 15px;
    font-size: 20px;
    color: #3C5C9D;
    text-align: center;
    transition: all 0.5s ease 0s;
}

.training_trainer_step .search.over .field {
    display: inline-block;
    width: 100%;
}

.training_trainer_step .search .field:-moz-placeholder {
    font-size: 20px;
    color: #3C5C9D;
    opacity: 1;
}

.training_trainer_step .search .field::-moz-placeholder {
    font-size: 20px;
    color: #3C5C9D;
    opacity: 1;
}

.training_trainer_step .search .field::-webkit-input-placeholder {
    font-size: 20px;
    color: #3C5C9D;
    opacity: 1;
}

.training_trainer_step .search .field:-ms-input-placeholder {
    font-size: 20px;
    color: #3C5C9D;
    opacity: 1;
}

.training_trainer_step .search .field.placeholder {
    font-size: 20px;
    color: #3C5C9D;
    opacity: 1;
}

.training_trainer_step .search .btn {
    background: #6B717B url(/img/arrow-right.svg) no-repeat 166px 50%;
    border: 0;
    border-radius: 25px;
    display: none;
    width: 100%;
    height: 43px;
    padding: 0 0 0 115px;
    position: relative;
    font-size: 14px;
    color: #fff;
    text-align: left;
    transition: all 0.5s ease 0s;
}

.training_trainer_step .search.over .btn {
    display: inline-block;
}

.training_trainer_step .search .click.btn {
    background: #3C5C9D url(/img/arrow-right.svg) no-repeat 166px 50%;
}

.training_trainer_step .delete {
    background: url(../img/new/coach_search_delete.svg) no-repeat 50% 50%;
    border: 0;
    display: none;
    width: 45px;
    height: 43px;
    position: absolute;
    top: 3px;
    right: 0;
}

.coach_list {
    column-count: 1;
	margin:0 0 29px;
}

.coach_list .item{
	margin:0 0 6px;
}

.coach_list button {
    background: rgba(60, 92, 157, 0.78);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    border: none;
    width: 100%;
    height: 44px;
    padding: 10px;
    position: relative;
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.coach_list button:hover {
    cursor: pointer;
}

.coach_list button:disabled {
    background: #6B717B;
}

.coach_list button:disabled:hover {
    cursor: default;
}

.coach_list button.active {
    background: #fff;
    color: #3C5C9D;
}
.datepicker .title{
    background: #3C5C9D;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    display: inline-block;
    width: 100%;
    height: 49px;
	margin:0;
    padding: 0;
    font-size: 20px;
    color: #fff;
    line-height: 49px;
    text-align: center;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}





.ui-datepicker {
    background: rgba(60,92,157,0.56);
    border-radius: 20px;
    width: 100%;
	margin:-40px 0 0;
  
}

.ui-widget-header {
    background: none;
    border-radius: 0;
    border: none;
    padding: 46px 0 0;
	position:relative;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;

    color: #fff;
    font-weight: normal;
    text-align: center;

}

.ui-datepicker-month {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;

    color: #fff;
    font-weight: normal;
}

.ui-widget select {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;

    color: #fff;
    font-weight: normal;
}

.ui-widget-content {
    color: #fff;
}

.ui-widget {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
}

.ui-widget.ui-widget-content {
    border: none;
}

.ui-datepicker-prev {
    background: url(../img/new/calendari_arrow_left.svg) no-repeat;
	border:none;
    display: block;
    width: 17px;
    height: 15px;
    position: absolute;
    top: 52px;
    left: 6px;
}
.ui-datepicker-prev-hover{
	 background: url(../img/new/calendari_arrow_left.svg) no-repeat !important;
	 border:none !important;
}
.ui-datepicker-next {
    background: url(../img/new/calendari_arrow_right.svg) no-repeat;
	border:none;
    display: block;
    width: 17px;
    height: 15px;
    position: absolute;
    top: 52px;
    right: 6px;
}
.ui-datepicker-next-hover{
	background: url(../img/new/calendari_arrow_right.svg) no-repeat !important;
	border:none !important;
}
.ui-datepicker-year {
    display: none;
}

.ui-datepicker-calendar th {
    font-weight: normal;
    text-align: center;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: none;
    background: none;
    font-weight: normal;
    display: block;
    width: 25px;
    height: 24px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 24px;
}

.ui-datepicker-week-end .ui-state-default {
     color: #fff;
}

.ui-state-active {
    border: none;
    background: #fff !important;
	border-radius:3px;

    font-weight: normal;
    color: #3C5C9D !important;
}

.ui-datepicker-calendar {
	margin:-4px 0 0;
    padding: 0 19px 20px;
	border-collapse: separate;
}

.ui-datepicker-calendar td {
    padding: 0;
}
main .hero_slider {
	position:relative;
    min-height: auto;
	padding-bottom:39%;
}
main .hero_slider .img_wrapper {
    width: 100%;
	    position: absolute;
    
    right: 0;
    bottom: 0;
    top: 0;
	left:0;
}
   

@media (min-width: 360px) {
	main .hero_slider {
    min-height: auto;
	padding-bottom:43%;
}
}
@media (min-width: 375px) {
	main .hero_slider {
    min-height: auto;
	padding-bottom:44%;
}
}
@media (min-width: 411px) {
	main .hero_slider {
    min-height: auto;
	padding-bottom:46%;
}
}
@media (min-width: 414px) {
	main .hero_slider {
    min-height: auto;
	padding-bottom:47%;
}
}
@media (min-width: 642px) {
    .white_space, .space {
        border-radius: 15px;
        padding: 15px 40px;
    }

    header .container .row {
        justify-content: space-between;
        align-items: center;
        /*height: 77px;*/
		height:103px;
    }
header .logo_wrapper {
	height:103px;
}
    header .logo_wrapper .logo {
        /*width: 253px;*/
       /* width: 164px;*/
	   width:190px;
    }

   
    header .logo_wrapper .pretitle {
        /* width: 90px;
        font-size: 10px;*/
       /* width: 77px;
        font-size: 8px;*/
		width:285px;
    }

    header .in {
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
    }

    header .in:before {
        display: none;
    }

    header .order_btn {
        /*background: url(/img/ticket_icon.svg) no-repeat left 10px center;*/
        background: url(../img/new/ticket_planshet.svg) no-repeat 0 0;
        width: auto;
        box-shadow: none;
        height: 42px;
        margin: 0 5px 0 0;
        padding: 0 0 0 40px;
        font-size: 12px;
    }

    header .training_trainer_btn {
        background: url(../img/new/ice-skating-shoes_planshet.svg) no-repeat;
        border: none;
        height: 29px;
        margin: 0 23px 0 0;
        padding: 0 0 0 35px;
        font-size: 12px;
    }

    main .hero_slider {
        /*min-height: 400px;*/
		min-height: 458px;
        position: relative;
		padding:0;
    }
main .hero_slider .img_wrapper {
    background: url(../img/new/pic103.jpg) no-repeat;
    width: 768px;
	 position: absolute;
    left:auto;
        right: 0;
        bottom: 0;
        top: 0;
}

main .hero_slider .img_wrapper img {
    display: none;
}
    main .hero_slider .title {
       
        width: auto;
        position: relative;
        z-index: 1;
       font-size: 40px;
        margin: 66px 0 0 10px;
       /* background: linear-gradient(90deg, rgba(60, 92, 157, 0.75) 64.89%, rgba(60, 92, 157, 0) 98.58%);
	    margin-top: 30px;
	    padding-right: 180px;
	    font-size: 30px;
	   */
    }

   /* main .hero_slider .title:before {
        content: "";
        position: absolute;
        width: 30px;
        height: 100%;
        left: 0%;
        top: 0%;
        background: #3C5C9D;
        opacity: 0.75;
        transform: translateX(-100%);
    }*/

   

    main .scedule {
        position: relative;
        top: auto;
        text-align: left;
        width: 100%;
        padding: unset;
        left: unset;
        background: none;
        font-size: 20px;
    }

    main .title_wrapper {
        text-align: left;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    main .mxapp {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    main .mxapp .title_wrapper .title {
        text-transform: uppercase;
    }

    main .mxapp .title_wrapper .pretitle {
        font-size: 14px;
        width: 100%;
        text-align: left;
        margin: 0;
    }

    main .mxapp .ticket_section {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    main .mxapp .calendar_wrapper {
        width: 50%;
    }

    main .mxapp .calendar_wrapper .vc-container {
        margin: 20px 0;
        width: calc(100% - 48px);
    }

    main .mxapp .calendar_wrapper .choose_date_title {
        width: 314px;
        margin-left: 0;
        margin-right: unset;
    }

    main .mxapp .time_wrapper {
        width: 50%;
        padding-top: 0px;
    }

    main .mxapp .time_wrapper .timing button {
        width: 45%;
    }

    main .mxapp .count_wrapper {
        width: 43%;
    }

    main .mxapp .additional {
        width: calc(100% - 43%);
    }

    footer {
        padding: 14px 0 0;
        position: relative;
    }

    footer .row {
        justify-content: space-between;
        position: relative;
    }

    footer .logo_section {
        /*width: 365px;*/
		width:197px;
    }

   
  footer .socs .title {
    margin: 0 0 3px;
    font-size: 16px;
}
footer .socs ul a {
    width: 31px;
    height: 28px;
}
    table {
        width: 100%;
    }

    .end_point {
        display: flex;
        min-height: 300px;
    }

    .end_point .popup {
        width: 370px;
        font-size: 25px;
    }

    .additional_footer {
        display: flex;
        flex-wrap: wrap;
    }

    .additional_footer .call {
        width: 50%;
        flex-shrink: 0;
    }

    .additional_footer .call span {
        font-size: 16px;
        display: block;
    }

    .additional_footer .call a {
        font-size: 20px;
        text-decoration: none;
    }

    .additional_footer .mail {
        margin-top: 0px;
        margin-bottom: 0px;
        width: 50%;
        flex-shrink: 0;
    }

    .additional_footer .mail span {
        font-size: 16px;
        display: block;
    }

    .additional_footer .mail a {
        font-size: 20px;
        text-decoration: none;
    }

    .additional_footer .ooo_1 {
        margin-top: 20px;
        width: 100%;
    }

    .additional_footer .ooo_2 {
        margin-top: 20px;
        width: 100%;
    }

    .bottom_wrapp {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: "g2" "g1" "g3" "g4";
    }

    .bottom_wrapp .pop_title {
        grid-area: g1;
        width: 100%;
        margin: auto;
    }

    .bottom_wrapp .pop_title p {
        padding: 0;
        margin: 0;
    }

    .bottom_wrapp .inner_text {
        grid-area: g2;
    }

    .bottom_wrapp .warn {
        grid-area: g3;
        margin: 10px 0;
        text-align: left;
    }

    .bottom_wrapp button {
        grid-area: g4;
    }

    main .time_wrapper .left .red-text {
        text-align: left;
    }

    main .mxapp .calendar_wrapper .choose_date_title {
        width: max-content;
        margin-left: 0;
        margin-right: unset;
        margin: auto;
        padding: 0 20px;
        margin-top: 14px;
        background: #3C5C9D;
    }

    .adds {
        margin: 20px 0;
    }

    .additional_footer .ooo_1 {
        width: 234px;
		position: absolute;
top: 258px;
right: 0;
z-index:2;
    }

    .additional_footer .ooo_2 {
         width: 234px;
		position: absolute;

top: 206px;
right: 0;
z-index:2;
    }
footer .return_2 {
    width: 145px;
    text-align: center;
    position: absolute;
    top: 102px;
     left: 221px;
	text-align:left;
}
footer .return_2 div {
    margin: 0 0 32px;
}
    main .time_wrapper .left {
        margin: 16px auto;
        width: 90%;
    }

    main .time_wrapper .timing button {
        width: 48%;
    }

    main .mxapp .title_wrapper {
        margin-bottom: 0;
    }

    .training_trainer_step {
        margin: 0 auto;
        padding: 19px 0 66px;
        font-size: 14px;
        letter-spacing: 0.05em;
        text-align: center;
    }

    .training_trainer_step > p {
        margin-bottom: 9px;
    }

    .training_trainer_step .h1 {
        margin: 20px 0 16px 0;
        font-size: 24px;
        text-transform: uppercase;
    }

    .training_trainer_step .h2 {
        margin: 0 0 14px;
        padding: 0;
        font-size: 24px;
        text-transform: uppercase;
    }

    .training_trainer_step .red-text {
        margin: 0 0 10px;
        color: #FF0000;
    }

    .training_trainer_step .download_file {
        margin: 0 0 26px;
    }

    .training_trainer_step .download_file .link {
        background: url(../img/new/download_file.svg) no-repeat;
        display: inline-block;
        padding: 0 0 0 24px;
        color: #fff;
    }

    .training_trainer_step .download_file .link:hover {
        text-decoration: none;
    }

    .lessons_list {
        display: flex;
        flex-direction: row;
        margin: 0 0 30px -12px;
    }

    .lessons_list .item {
        width: 50%;
        margin: 0 0 0 12px;
    }

    .lessons_list .btn {
        background: #3C5C9D;
        border: none;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
        display: block;
        width: 100%;
        height: 160px;
        padding: 13px 43px 16px 54px;
        color: #fff;
        letter-spacing: 0.05em;
        text-decoration: none;
        text-align: left;
    }

    .lessons_list .active .btn {
        background: #fff;
        color: #3C5C9D;
    }

    .lessons_list .title {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin: 0 0 13px -35px;
        font-weight: bold;
        font-size: 18px;
        text-transform: uppercase;
        line-height: 1.1;
    }

    .lessons_list .text {
        width: 76%;
    }

    .lessons_list .fig {
        width: 29px;
        height: 29px;
        margin: 0 6px 0 0;
        position: relative;
        overflow: hidden;
    }

    .lessons_list .img {
        max-width: 100%;
        max-height: 100%;
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        vertical-align: top;
    }

    .lessons_list .fig_blue {
        display: none;
    }

    .lessons_list .active .fig_blue {
        display: block;
    }

    .lessons_list .active .fig_white {
        display: none;
    }

    .lessons_list .price {
        font-weight: bold;
    }

    .lessons_list p {
        margin: 0;
    }

    .training_trainer_step .btn-further {
        background: #3C5C9D;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 30px;
        border: none;
        display: inline-block;
        width: auto;
        height: 37px;
        padding: 0 36px 0 31px;
        position: relative;
        font-size: 14px;
        color: #fff;
        text-decoration: none;
        line-height: 37px;
        text-align: center;
    }

    .training_trainer_step .btn-further:disabled {
        background: #6B717B;
    }

    .ar {
        text-align: right;
    }

    .choice_list {
        display: flex;
        flex-direction: row;
        margin: 0 0 30px -12px;
    }

    .choice_list .item {
        margin: 0 0 0 12px;
        width: 50%;
    }

    .choice_list .btn {
        background: #3C5C9D;
        border: none;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 25px;
        display: block;
        width: 100%;
        height: auto;
        padding: 9px 21px 7px 39px;
        font-size: 14px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.05em;
        text-decoration: none;
        text-align: left;
        text-transform: uppercase;
        line-height: normal;
    }

    .choice_list .active .btn {
        background: #fff;
        color: #3C5C9D;
    }

    .choice_list .title {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .choice_list .text {
        width: 80%;
    }

    .choice_list .fig {
        width: 22px;
        height: 24px;
        margin: 0 11px 0 0;
        position: relative;
        overflow: hidden;
    }

    .choice_list .img {
        max-width: 100%;
        max-height: 100%;
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        vertical-align: top;
    }

    .choice_list .fig_blue {
        display: none;
    }

    .choice_list .active .fig_blue {
        display: block;
    }

    .choice_list .active .fig_white {
        display: none;
    }

    .training_trainer_step .back {
        background: #3C5C9D;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 30px;
        border: none;
        display: inline-block;
        width: 135px;
        height: 37px;
        padding: 0;
        position: relative;
        font-size: 14px;
        color: #fff;
        text-decoration: none;
        line-height: 37px;
        text-align: center;
    }

    .training_trainer_step .btn_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
	
	



    .class_time {
        column-count: 2;
       margin: -10px -8px 20px 11px;
    }

    .class_time .item {
         margin: -10px -10px -4px -20px;
    }
.class_time .item:first-child{
	 margin: 0 -10px -4px -20px;
}
    .class_time button {
        background: rgba(60, 92, 157, 0.78);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 25px;
        border: none;
        width: calc(100% - 20px);
        height: 40px;
        padding: 0 46px 0 18px;
		margin:10px;
        position: relative;
        font-size: 20px;
        color: #fff;
        line-height: 40px;
        text-align: left;
    }

    .class_time button:hover {
        cursor: pointer;
    }

    .class_time button:disabled {
        background: #6B717B;
    }

    .class_time button:disabled:hover {
        cursor: default;
    }

    .class_time button.active {
        background: #fff;
        color: #3C5C9D;
    }

    .class_time .group:before {
        content: "";
        background: url(../img/new/class_time_groupe_white.svg) no-repeat 0 50%;
        width: 20px;
        height: 40px;
        position: absolute;
        right: 20px;
        top: 0;
    }

    .class_time .active.group:before {
        content: "";
        background: url(../img/new/class_time_groupe_blue.svg) no-repeat 0 50%;
        width: 20px;
        height: 40px;
        position: absolute;
        right: 20px;
        top: 0;
    }

    .class_time .one:before {
        content: "";
        background: url(../img/new/class_time_one_white.svg) no-repeat 0 50%;
        width: 18px;
        height: 40px;
        position: absolute;
        right: 22px;
        top: 0;
    }

    .class_time .active.one:before {
        content: "";
        background: url(../img/new/class_time_one_blue.svg) no-repeat 0 50%;
        width: 18px;
        height: 40px;
        position: absolute;
        right: 22px;
        top: 0;
    }

    main .training_trainer_step .time_wrapper {
        width: calc(100% - 279px);
    }

    main .training_trainer_step .calendar_wrapper {
        width: 276px;
        margin: 0 3px 0 0;
    }

    main .training_trainer_step .calendar_wrapper .choose_date_title {
        width: 100%;
        margin: 0;
    }

    .notes_calendar {
        width: 100%;
        margin: 10px auto 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .notes_calendar .item {
        display: flex;
        flex-direction: row;
        font-size: 12px;
        color: #fff;
    }

    .notes_calendar .dot {
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
        width: 15px;
        height: 15px;
        margin: 0 8px 0 0;
    }

    .class_time .item {
        min-width: 182px;
    }

    .training_trainer_step .search {
        background: #3C5C9D url(../img/new/coach_search_lupa.svg) no-repeat 98% 50%;
        border-radius: 25px;
        width: 100%;
        height: 49px;
        margin: 0 0 7px;
        padding: 3px 110px 3px 3px;
        position: relative;
        transition: all 0.5s ease 0s;
    }

    .training_trainer_step .search:before {
        content: "Выберите тренера";
        position: absolute;
        top: 10px;
        left: 10px;
        right: 50px;
        font-size: 20px;
        color: #fff;
        text-align: center;
    }

    .training_trainer_step .search.over {
        background: #fff;
    }

    .training_trainer_step .search.over:before {
        display: none;
    }

    .training_trainer_step .search .field {
        background: #fff;
        border: 1px solid #6B717B;
        border-radius: 25px;
        display: none;
        height: 43px;
        padding: 5px 49px 6px 15px;
        font-size: 20px;
        color: #3C5C9D;
        text-align: center;
        transition: all 0.5s ease 0s;
    }

    .training_trainer_step .search .field {
        margin: 0;
    }

    .training_trainer_step .search.over .field {
        display: inline-block;
        width: 100%;
    }

    .training_trainer_step .search .field:-moz-placeholder {
        font-size: 20px;
        color: #3C5C9D;
        opacity: 1;
    }

    .training_trainer_step .search .field::-moz-placeholder {
        font-size: 20px;
        color: #3C5C9D;
        opacity: 1;
    }

    .training_trainer_step .search .field::-webkit-input-placeholder {
        font-size: 20px;
        color: #3C5C9D;
        opacity: 1;
    }

    .training_trainer_step .search .field:-ms-input-placeholder {
        font-size: 20px;
        color: #3C5C9D;
        opacity: 1;
    }

    .training_trainer_step .search .field.placeholder {
        font-size: 20px;
        color: #3C5C9D;
        opacity: 1;
    }

    .training_trainer_step .search .btn {
        background: #6B717B url(/img/arrow-right.svg) no-repeat 90% 50%;
        border: 0;
        border-radius: 25px;
        display: none;
        width: 102px;
        height: 43px;
        padding: 0 0 0 22px;
        position: absolute;
        top: 3px;
        right: 3px;
        font-size: 14px;
        color: #fff;
        text-align: left;
        transition: all 0.5s ease 0s;
    }

    .training_trainer_step .search.over .btn {
        display: inline-block;
    }

    .training_trainer_step .search .click.btn {
        background: #3C5C9D url(/img/arrow-right.svg) no-repeat 90% 50%;
    }

    .training_trainer_step .delete {
        background: url(../img/new/coach_search_delete.svg) no-repeat 50% 50%;
        border: 0;
        display: none;
        width: 49px;
        height: 43px;
        position: absolute;
        top: 3px;
        right: 111px;
    }

    .coach_list {
        column-count: 2;
        margin: -10px 0 20px 4px;
    }

    .coach_list .item {
        margin: -10px -10px -4px -14px;
    }
.coach_list .item:first-child{
	 margin: 0 -10px -4px -14px;
}
    .coach_list button {
        background: rgba(60, 92, 157, 0.78);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 25px;
        border: none;
        width: calc(100% - 20px);
        height: 44px;
		margin:10px;
        padding: 10px;
        position: relative;
        font-size: 16px;
        color: #fff;
        text-align: center;
    }

    .coach_list button:hover {
        cursor: pointer;
    }

    .coach_list button:disabled {
        background: #6B717B;
    }

    .coach_list button:disabled:hover {
        cursor: default;
    }

    .coach_list button.active {
        background: #fff;
        color: #3C5C9D;
    }
	footer .socs {
   
    top: 138px;
    right: auto;
    left: 0;
}
.additional_footer {
    margin: 0;
    
}
.additional_footer .call {
	width:234px;
   
    position: absolute;
    top: 17px;
    right: 0;
}
.additional_footer span{
	line-height:1.3;
}
.additional_footer .mail {
    width:234px;
    position: absolute;
    top: 117px;
    right: 0;
}
footer .return {
    margin-bottom: 0;
    width: auto;
    position: absolute;
    top: 14px;
    left: 221px;
}
footer .return div {
    margin: 0 0 26px;
}
footer .return_2 a {
    font-size: 14px;
}
footer .bottom_text {
	display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
	 width: auto;
	 padding:19px 305px 0 0;
	 position: absolute;
	 top:212px;
	 left:0;
	 right:0;
    font-size: 12px;
	font-style:italic;
   
   
}
footer .bottom_text:before{
	display:none;
}
footer {
	/*background: linear-gradient(180deg, #164194 0%, rgba(47, 50, 46, 0) 50.36%);*/
    min-height:356px;
}
footer::before {
    content: "";
    background: #2F322E url(../img/new/pic106.png) repeat-x;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
}

@media (min-width: 768px) {
	main .hero_slider {
    min-height: 458px;
}
main .hero_slider .img_wrapper {
	background: url(../img/new/pic103.jpg) no-repeat;
    width: 768px;
	left:auto;
   
}
main .hero_slider .img_wrapper img{
	display:none;
}
  header .logo_wrapper .logo {
      
	   width:163px;
    }

   
    header .logo_wrapper .pretitle {
       
		width:242px;
    }
}
@media (min-width: 769px) {
	main .hero_slider {
    min-height: 529px;
}
main .hero_slider .img_wrapper {
	background: url(../img/new/pic102.jpg) no-repeat;
    width: 1024px;
	left:auto;
   
}
main .hero_slider .img_wrapper img{
	display:none;
}
}
@media (min-width: 1024px) {
	
  
  header .logo_wrapper .logo {
      
	   width:163px;
    }

   
    header .logo_wrapper .pretitle {
       
		width:242px;
    }
}
@media (min-width: 1050px) {
	main .hero_slider {
    min-height: 529px;
}
main .hero_slider .img_wrapper {
	background: url(../img/new/pic101.jpg) no-repeat;
    width: 1200px;
	left:auto;
   
}
main .hero_slider .img_wrapper img{
	display:none;
}
}
@media (min-width: 1180px) {

    main .time_wrapper .left {
        margin: 16px auto;
        width: auto;
    }

    main .mxapp .ticket_section .ticket_add.fake {
        margin-left: 20px;
    }

    main .title_wrapper {
        width: 100%;
    }

    main .title_wrapper .pretitle {
        margin: 0;
    }

    main .mxapp .calendar_wrapper {
        width: 276px;
        margin: 0 18px 0 0;
    }
.ui-datepicker {
    width: 276px;
}
    main .mxapp .calendar_wrapper .vc-container {
        width: calc(100% - 30px);
    }

    main .mxapp .calendar_wrapper .choose_date_title {
        width: 265px;
    }

    main .mxapp .time_wrapper {
        width: 24%;
    }

    main .mxapp .count_wrapper {
        width: 20%;
    }

    main .mxapp .additional {
        width: calc(100% - 70%);
    }

    main .inner_text {
        padding-left: 50%;
    }

    .res_data {
        width: 700px;
        margin: auto;
    }

    .res_data table tr td:nth-child(1) {
        width: 70%;
    }

    .res_data table tr td:nth-child(2) {
        width: 10%;
    }

    .res_data table tr td:nth-child(3) {
        width: 20%;
        text-align: right;
    }

    .additional_footer .call {
        position: absolute;
        top: 10px;
        left: 380px;
        width: auto;
    }

    .additional_footer .mail {
        position: absolute;
        top: 10px;
        left: 680px;
        width: auto;
    }

    .additional_footer .ooo_1 {
        position: absolute;
        top: 40px;
        left: 377px;
        width: 300px;
    }

    .additional_footer .ooo_2 {
        position: absolute;
        top: 40px;
        left: 680px;
        width: 300px;
    }

    .bottom_wrapp {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "g1 g2" "g3 g3" "g4 g4";
    }

    .bottom_wrapp .pop_title {
        grid-area: g1;
        width: 92%;
        margin: auto;
    }

    .bottom_wrapp .pop_title p {
        padding: 0;
        margin: 0;
    }

    .bottom_wrapp .inner_text {
        grid-area: g2;
    }

    .bottom_wrapp .warn {
        grid-area: g3;
        margin: 10px 0;
        text-align: center;
        font-size: 14px;
    }

    .bottom_wrapp button {
        grid-area: g4;
    }

    main .inner_text {
        padding-left: 0;
    }

    main .time_wrapper .left .red-text {
        text-align: justify;
    }

    .white_space, .spacewhite_space {
        width: 75%;
        margin: 0px auto 25px auto;
    }

    main .mxapp .title_wrapper {
        margin-bottom: 20px;
    }

    header .training_trainer_btn {
        background: url(../img/new/ice-skating-shoes.svg) no-repeat;
        border: none;
        height: 48px;
        padding: 0 0 0 58px;
        margin: 0 63px 0 0;
        font-size: 20px;
    }

    header .order_btn {
        background: url(/img/ticket_icon.svg) no-repeat;
        width: auto;
        height: 64px;
        padding: 0 0 0 70px;
        font-size: 20px;
    }
header .container .row {
    
    height: 103px;
}
    header .logo_wrapper .logo {
     
	   width:190px;
	   margin:0 30px 0 0;
    }

   

    header .logo_wrapper .pretitle {
      
		width:285px;
    }

    header .in {
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
    }

    header .in:before {
        display: none;
    }

    .training_trainer_step {
        margin: 0 auto;
        padding: 19px 0 66px;
        font-size: 14px;
        letter-spacing: 0.05em;
        text-align: center;
    }

    .training_trainer_step > p {
        margin-bottom: 9px;
    }

    .training_trainer_step .h1 {
        margin: 20px 0 16px 0;
        font-size: 24px;
        text-transform: uppercase;
    }

    .training_trainer_step .h2 {
        margin: 0 0 14px;
        padding: 0;
        font-size: 24px;
        text-transform: uppercase;
    }

    .training_trainer_step .red-text {
        margin: 0 0 10px;
        color: #FF0000;
    }

    .training_trainer_step .download_file {
        margin: 0 0 26px;
    }

    .training_trainer_step .download_file .link {
        background: url(../img/new/download_file.svg) no-repeat;
        display: inline-block;
        padding: 0 0 0 24px;
        color: #fff;
    }

    .training_trainer_step .download_file .link:hover {
        text-decoration: none;
    }

    .lessons_list {
        display: flex;
        flex-direction: row;
        margin: 0 0 30px -12px;
    }

    .lessons_list .item {
        width: 50%;
        margin: 0 0 0 12px;
    }

    .lessons_list .btn {
        background: #3C5C9D;
        border: none;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
        display: block;
        width: 100%;
        height: 124px;
        padding: 13px 58px 16px 92px;
        color: #fff;
        letter-spacing: 0.05em;
        text-decoration: none;
        text-align: left;
    }

    .lessons_list .active .btn {
        background: #fff;
        color: #3C5C9D;
    }

    .lessons_list .title {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0 0 0 -42px;
        font-weight: bold;
        font-size: 18px;
        text-transform: uppercase;
        line-height: 1;
    }

    .lessons_list .fig {
        width: 29px;
        height: 29px;
        margin: 0 11px 0 0;
        position: relative;
        overflow: hidden;
    }

    .lessons_list .img {
        max-width: 100%;
        max-height: 100%;
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        vertical-align: top;
    }

    .lessons_list .fig_blue {
        display: none;
    }

    .lessons_list .active .fig_blue {
        display: block;
    }

    .lessons_list .active .fig_white {
        display: none;
    }

    .lessons_list .price {
        font-weight: bold;
        line-height: 40px;
    }

    .lessons_list p {
        margin: 0;
    }

    .training_trainer_step .btn-further {
        background: #3C5C9D;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 30px;
        border: none;
        display: inline-block;
        height: 37px;
        position: relative;
        font-size: 14px;
        color: #fff;
        text-decoration: none;
        line-height: 37px;
        text-align: left;
    }

    .training_trainer_step .btn-further:disabled {
        background: #6B717B;
    }

    .ar {
        text-align: right;
    }

    .choice_list {
        display: flex;
        flex-direction: row;
        margin: 0 0 30px -12px;
    }

    .choice_list .item {
        margin: 0 0 0 12px;
        width: 50%;
    }

    .choice_list .btn {
        background: #3C5C9D;
        border: none;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 25px;
        display: block;
        width: 100%;
        height: 50px;
        padding: 0 58px 0 26px;
        font-size: 14px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.05em;
        text-decoration: none;
        text-align: left;
        text-transform: uppercase;
    }

    .choice_list .active .btn {
        background: #fff;
        color: #3C5C9D;
    }

    .choice_list .title {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .choice_list .fig {
        width: 29px;
        height: 50px;
        margin: 0 11px 0 0;
        position: relative;
        overflow: hidden;
    }

    .choice_list .img {
        max-width: 100%;
        max-height: 100%;
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        vertical-align: top;
    }

    .choice_list .fig_blue {
        display: none;
    }

    .choice_list .active .fig_blue {
        display: block;
    }

    .choice_list .active .fig_white {
        display: none;
    }

    .training_trainer_step .back {
        background: #3C5C9D;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 30px;
        border: none;
        display: inline-block;
        width: 135px;
        height: 37px;
        position: relative;
        font-size: 14px;
        color: #fff;
        text-decoration: none;
        line-height: 37px;
    }

    .training_trainer_step .btn_block {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
	
	

   


    .class_time {
        column-count: 3;
       margin: -10px -8px 20px 1px;
    }

    .class_time .item {
         margin: -10px -10px -4px -12px;
    }
.class_time .item:first-child{
	 margin: 0 -10px -4px -12px;
}
    .class_time button {
        background: rgba(60, 92, 157, 0.78);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 25px;
        border: none;
         width: calc(100% - 20px);
        height: 40px;
		margin:10px;
        position: relative;
        font-size: 20px;
        color: #fff;
        line-height: 40px;
        text-align: center;
    }

    .class_time button:hover {
        cursor: pointer;
    }

    .class_time button:disabled {
        background: #6B717B;
    }

    .class_time button:disabled:hover {
        cursor: default;
    }

    .class_time button.active {
        background: #fff;
        color: #3C5C9D;
    }

    .class_time .group:before {
        content: "";
        background: url(../img/new/class_time_groupe_white.svg) no-repeat 0 50%;
        width: 20px;
        height: 40px;
        position: absolute;
        right: 20px;
        top: 0;
    }

    .class_time .active.group:before {
        content: "";
        background: url(../img/new/class_time_groupe_blue.svg) no-repeat 0 50%;
        width: 20px;
        height: 40px;
        position: absolute;
        right: 20px;
        top: 0;
    }

    .class_time .one:before {
        content: "";
        background: url(../img/new/class_time_one_white.svg) no-repeat 0 50%;
        width: 18px;
        height: 40px;
        position: absolute;
        right: 22px;
        top: 0;
    }

    .class_time .active.one:before {
        content: "";
        background: url(../img/new/class_time_one_blue.svg) no-repeat 0 50%;
        width: 18px;
        height: 40px;
        position: absolute;
        right: 22px;
        top: 0;
    }

    main .training_trainer_step .time_wrapper {
        width: calc(100% - 294px);
    }

    .notes_calendar {
        width: 265px;
        margin: 10px auto 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .notes_calendar .item {
        display: flex;
        flex-direction: row;
        font-size: 12px;
        color: #fff;
    }

    .notes_calendar .dot {
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
        width: 15px;
        height: 15px;
        margin: 0 8px 0 0;
    }

    .training_trainer_step .search {
        background: #3C5C9D url(../img/new/coach_search_lupa.svg) no-repeat 98% 50%;
        border-radius: 25px;
        width: 100%;
        height: 49px;
        margin: 0 0 7px;
        padding: 3px 110px 3px 3px;
        position: relative;
        transition: all 0.5s ease 0s;
    }

    .training_trainer_step .search:before {
        content: "Выберите тренера";
        position: absolute;
        top: 10px;
        left: 10px;
        right: 50px;
        font-size: 20px;
        color: #fff;
        text-align: center;
    }

    .training_trainer_step .search.over {
        background: #fff;
    }

    .training_trainer_step .search.over:before {
        display: none;
    }

    .training_trainer_step .search .field {
        background: #fff;
        border: 1px solid #6B717B;
        border-radius: 25px;
        display: none;
        height: 43px;
        padding: 5px 49px 6px 15px;
        font-size: 20px;
        color: #3C5C9D;
        text-align: center;
        transition: all 0.5s ease 0s;
    }

    .training_trainer_step .search.over .field {
        display: inline-block;
        width: 100%;
    }

    .training_trainer_step .search .field:-moz-placeholder {
        font-size: 20px;
        color: #3C5C9D;
        opacity: 1;
    }

    .training_trainer_step .search .field::-moz-placeholder {
        font-size: 20px;
        color: #3C5C9D;
        opacity: 1;
    }

    .training_trainer_step .search .field::-webkit-input-placeholder {
        font-size: 20px;
        color: #3C5C9D;
        opacity: 1;
    }

    .training_trainer_step .search .field:-ms-input-placeholder {
        font-size: 20px;
        color: #3C5C9D;
        opacity: 1;
    }

    .training_trainer_step .search .field.placeholder {
        font-size: 20px;
        color: #3C5C9D;
        opacity: 1;
    }

    .training_trainer_step .search .btn {
        background: #6B717B url(/img/arrow-right.svg) no-repeat 90% 50%;
        border: 0;
        border-radius: 25px;
        display: none;
        width: 102px;
        height: 43px;
        padding: 0 0 0 22px;
        position: absolute;
        top: 3px;
        right: 3px;
        font-size: 14px;
        color: #fff;
        text-align: left;
        transition: all 0.5s ease 0s;
    }

    .training_trainer_step .search.over .btn {
        display: inline-block;
    }

    .training_trainer_step .search .click.btn {
        background: #3C5C9D url(/img/arrow-right.svg) no-repeat 90% 50%;
    }

    .training_trainer_step .delete {
        background: url(../img/new/coach_search_delete.svg) no-repeat 50% 50%;
        border: 0;
        display: none;
        width: 49px;
        height: 43px;
        position: absolute;
        top: 3px;
        right: 111px;
    }
	
	

	
	

    .coach_list {
        column-count: 2;
        margin: -10px 0 20px 4px;
    }

    .coach_list .item {
       margin: -10px -10px -4px -14px;
    }
.coach_list .item:first-child{
	 margin: 0 -10px -4px -14px;
}
    .coach_list button {
        background: rgba(60, 92, 157, 0.78);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 25px;
        border: none;
       width: calc(100% - 20px);
        height: 44px;
		margin:10px;
        padding: 10px;
        position: relative;
        font-size: 16px;
        color: #fff;
        text-align: center;
    }

    .coach_list button:hover {
        cursor: pointer;
    }

    .coach_list button:disabled {
        background: #6B717B;
    }

    .coach_list button:disabled:hover {
        cursor: default;
    }

    .coach_list button.active {
        background: #fff;
        color: #3C5C9D;
    }
	footer .logo_section {
    width: 261px;
	margin: 37px 0 19px;
}
footer .return div {
    margin: 0 0 33px;
}
footer {
	background: linear-gradient(180deg, #164194 0%, rgba(47, 50, 46, 0) 50.36%);

    min-height: 343px;
}
.additional_footer .call {
	width:194px;
    top: 17px;
    right: 306px;
	left:auto;
}
.additional_footer .call span {
    margin: 0 0 13px;
}
.additional_footer .mail {
	width:228px;
top: 17px;
   right: 0;
	left:auto;

}
.additional_footer .mail span {
    margin: 0 0 13px;
}
footer .return {
	width:215px;
    top: 14px;
    left: 360px;
}
footer .return_2 {
	width:215px;
	 top: 121px;
    left: 360px;
}
footer .return_2 div {
    margin: 0 0 35px;
}
footer .bottom_text {
    padding: 19px 305px 0 0;
    top: 233px;

}
.additional_footer .ooo_1 {
    top: 151px;
   right: 306px;
   left:auto;
    width: 194px;
	margin-top: 0;
}
.additional_footer .ooo_2 {
   
    top: 151px;
     right: 0;
   left:auto;
    width: 228px;
	margin-top: 0;
}
footer .socs {
    top: 255px;
    right: 0;
    left: auto;
	z-index:2;
}
footer .socs ul {
    margin: 0 0 0 -8px;
}
footer .socs ul li {
    margin: 5px 5px 5px 8px;
}
footer .socs ul a {
    width: 36px;
    height: 33px;
}


footer .socs .title {

    margin: 0 0 5px;

}
}
@media (min-width: 1200px) {
	main .hero_slider {
    min-height: 529px;
}
main .hero_slider .img_wrapper {
	background: url(../img/new/pic101.jpg) no-repeat;
    width: 1200px;
	left:auto;
   
}
main .hero_slider .img_wrapper img{
	display:none;
}
}
@media (min-width: 1201px) {
	main .hero_slider {
    min-height: 649px;
}
main .hero_slider .img_wrapper {
	background: url(../img/new/pic100.jpg) no-repeat;
    width: 1920px;
	left:auto;
   
}
main .hero_slider .img_wrapper img{
	display:none;
}
}

@media (min-width: 1350px) {
	main .hero_slider {
    min-height: 649px;
}
main .hero_slider .img_wrapper {
	background: url(../img/new/pic100.jpg) no-repeat;
    width: 1920px;
	left:auto;
   
}
main .hero_slider .img_wrapper img{
	display:none;
}

}

@media (min-width: 1921px) {
	main .hero_slider {
    min-height: 649px;
}
main .hero_slider .img_wrapper {
	background: url(../img/new/pic100.jpg) no-repeat;
	background-size:100% 100%;
    width: 100%;
	left:0;
   
}
main .hero_slider .img_wrapper img{
	display:none;
}
}
/*# sourceMappingURL=style.css.map */
