/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/


#main-block .animation-bar {
color:transparent!important;
width:100%;
height:100%;
border: 1px solid #2980b9;
border-radius: 3px;
background-image: 
repeating-linear-gradient(
  -45deg,
  #2980b9,
  #2980b9 11px,
  #eee 10px,
  #eee 20px /* determines size */
);
background-size: 28px 28px;
animation: move .5s linear infinite;
transition: none;
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 28px 0;
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
* {box-sizing: border-box;}
body,.page_with_content {
	line-height: 1;
	width:100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100 - 2px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Commissioner', sans-serif;
    overflow: hidden;
    background-color: white;
    }
ol, ul {
	list-style: none;
}
input:focus {
    outline:none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
    --accent: #26ABEA;
    --orange: RGB(255,201,14);
    --orange-light: #ffc45e;
    --gap-s: 12px;
    --gap-m: 26px;
    --inside-block-color: #C3ECFF;
    --blend: #96DDFF;
    --blend-lighter: #C3ECFF;
    --inside-block-color: #EFFAFF;
    --inside-block-line: #C3ECFF;
    --darktone: #1488BE;
    --gray: #878787;
    --graylight: #F3F3F3;
    --topbar: 79px;
    }

/* Служебные классы */
.hidden, .hidden + span {display: none!important;}
.logo {
    width: 100%;
    text-align: center;
    }
    .logo img {
        display: inline-block;
        margin: 0 auto;
        width: 100%;
        max-width: 440px;
        }

.menu {
    margin-top: auto;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 300px);
    justify-items: center;
    }
    .menu__block {
        min-width: 240px;
        padding: 40px;
        position: relative;
        transition: background-color 0.5s ease-in-out;
        -webkit-transition: background-color 0.5s ease-in-out;
        -moz-transition: background-color 0.5s ease-in-out;
        -ms-transition: background-color 0.5s ease-in-out;
        -o-transition: background-color 0.5s ease-in-out;
        margin-bottom: 40%;
        }
        .menu__title {
            font-family: inherit;
            font-size: 24px;
            color: var(--orange);
            display: inline-block;
            margin-bottom: 12px;
            }
        .menu__link {
            font-size: 16px;
            display: block;
            color: white;
            margin-bottom: 5px;
            text-decoration: none;
            }
            .menu__link:last-child {
                padding-bottom: 30px;
            }

.copyright {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    }
    .copyright__el {
        color: white;
        padding: 20px;
        font-family: inherit;
        }

@media (min-width:570px) and (min-height:570px) {
    .logo {
        position: relative;
        top: 20%;
        }
}

@media (min-width:760px) {
    body.home {
        background: var(--accent) url(/i/background-small-cut.png);
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;
        }
}
@media (max-width:760px) {
    body.home {
        background: var(--accent) url(/i/background-small-cut.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding-bottom: 40px;
        justify-content: center;
        }
    .logo {position: static;}
    .logo img {max-width: 265px;}
    .menu {
        grid-template-columns: auto;
        grid-template-rows:max-content;
        gap: 0;
        margin-top: 0;
        }
        .menu__block {
            padding: 0;
            margin-bottom: 20px;
        }
}
@media (max-width:480px) {
    body.home {
        background: var(--accent) url(/i/background-smaller.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding-bottom: 40px;
        justify-content: center;
        }
}
/* iphone4 */
@media (max-width:320px) and (max-height:470px) {
    body {
        height: auto;
        overflow: auto;
        }
    .logo img {
        max-width: 265px;
        position: relative;
        top: 35px;
        }
        .copyright {position: static;}
}
@media (max-height:470px) {
    body {overflow-y: auto;}
    .copyright {position: static;}
}

/* SEARCH-PAGE */
/* sidebar */
input[type="submit"], button {
    border:none;
    color: white;
    text-align: center;
    box-sizing: border-box;
    padding: 10px 14xp;
    cursor: pointer;
    transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    }
    button {background: transparent;}
    input[type="submit"]:hover, button:hover {
        transition: 0.25s ease-in-out;
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -ms-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        }

a {
    color: black;
    display: inline-block;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    }
.search-page {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: space-between;
    }
    .searchbar__logo img {
        width: 100%;
        border-radius: 18px;
        -webkit-border-radius: 18px;
        -moz-border-radius: 18px;
        -ms-border-radius: 18px;
        -o-border-radius: 18px;
        margin-bottom: 20px;
        }   
.searchbar {
    text-align: left;
    background-color: white;
    height: 100%;
    flex: 0 0 309px;
    max-width: 309px;
    padding: 26px 26px 6px 26px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    }
    .searchbar__block {
        background-color: var(--accent);
        width: 100%;
        min-width: 257px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        color: white;
        padding: 10px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        }
        .searchbar__block:last-child {margin-bottom: 0;}
        .searchbar__title {
            display: block;
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 500;
            }
        .searchbar__input-block {
            color: var(--inside-block-color);
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            }
            .searchbar__input-block:last-child {
                margin-bottom: 0;
                }
        .search__input {
            flex: 0 1 192px;
            background-color: white;
            padding: 5px;
            border: 0;
            border-radius: 6px;
            -webkit-border-radius: 6px;
            -moz-border-radius: 6px;
            -ms-border-radius: 6px;
            -o-border-radius: 6px;
            }
        .searchbar__button {
            color: var(--inside-block-color);
            position: relative;
            cursor: pointer;
            }
            .searchbar__button:after {
                content: "";
                position: absolute;
                width: 100%;
                height: 1px;
                background-color: var(--inside-block-color);
                display: inline-block;
                bottom: -1px;
                left: 0;
                }
        .searchbar__options-list {
            font-size: 16px;
            color: var(--inside-block-color);
            overflow-y: auto;
            max-height: 148px;
            }
        .searchbar__option-item {
            margin-bottom: 10px;
            }
            .searchbar__filtered {margin-top: 20px;}
            .searchbar__filtered-item {
                box-sizing: border-box;
                background-color: white;
                border-radius: 6px;
                -webkit-border-radius: 6px;
                -moz-border-radius: 6px;
                -ms-border-radius: 6px;
                -o-border-radius: 6px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 8px 10px;
                margin-bottom: 10px;
                color: black;
                }
            .searchbar__filtered-item--disabled {color: var(--gray);}
            .searchbar__filtered-del {cursor: pointer;}

            /* КАЛЕНДАРЬ */
            .ui-widget-header .ui-icon {
                background-image:url(/i/calendar-icons.svg);
                }
                .ui-icon-circle-triangle-e {background-position: -10px center;}
                .ui-icon-circle-triangle-w {background-position: 0 center;}
                .ui-datepicker-next:hover, .ui-datepicker-prev:hover {
                    background: var(--blend);
                    border:none;
                    transition: 0.25s ease-in-out;
                    -webkit-transition: 0.25s ease-in-out;
                    -moz-transition: 0.25s ease-in-out;
                    -ms-transition: 0.25s ease-in-out;
                    -o-transition: 0.25s ease-in-out;
                    }
                    th.ui-datepicker-week-end,
                    td.ui-datepicker-week-end {
                        color: #DB2525;
                    }
                    .ui-datepicker {
                        font-family: 'Commissioner', sans-serif;
                    }
                    .ui-datepicker-calendar th {
                        font-weight: 400;
                        }
                        .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, .ui-button.ui-state-disabled:hover {
                            border: none;
                            background: transparent;
                            text-align: center;
                            width: 20px;
                            }
                            .ui-state-active, .ui-widget-content .ui-state-active {
                                position: relative;
                                z-index: 1;
                                text-align: center;
                                }
                            .ui-state-active::after {
                                content: "";
                                position: absolute;
                                width: 29px;
                                height: 29px;
                                border-radius: 50px;
                                -webkit-border-radius: 50px;
                                -moz-border-radius: 50px;
                                -ms-border-radius: 50px;
                                -o-border-radius: 50px;
                                background-color: var(--accent);
                                left: 0;
                                top: -4px;
                                z-index: -1;
                                }
                            .ui-datepicker-title {
                                text-align: center;
                                font-weight: 400;
                                text-transform: uppercase;
                                font-family: inherit;
                                }
                .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
                    border-radius: 8px;
                    -webkit-border-radius: 8pxt;
                    -moz-border-radius: 8pxt;
                    -ms-border-radius: 8pxt;
                    -o-border-radius: 8pxt;
}
                    .ui-widget.ui-widget-content {border: none;}
                    .ui-datepicker {
                        width: 230px;
                        margin:-5px 0 20px 0;
                        border: none;
                        }
                    .ui-datepicker .ui-datepicker-header {
                        background-color: white;
                        border: none;
                        }
                .datepicker-block, .datepicker-block {
                    display: none;
                    }
    /* checkbox */
    .input-style {
    position: absolute;
    z-index: -1;
    opacity: 0;
    }
    .input-style+label {
    display: block;
    align-items: center;
    user-select: none;
    }
    .input-style+label:before {
    content: '';
    display: inline-block;
    width: 20px;height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 10px;
    background-color: white;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    }
    .input-style--small+label:before {
        background-color: var(--blend);
        width: 16px;
        height: 16px;
        }
    .input-style:checked+label:before {
        background: #ffffff url(/i/check.svg)no-repeat;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 20px;
        transition: backgroound 0.25s ease-in-out;
        -webkit-transition: backgroound 0.25s ease-in-out;
        -moz-transition: backgroound 0.25s ease-in-out;
        -ms-transition: backgroound 0.25s ease-in-out;
        -o-transition: backgroound 0.25s ease-in-out;
        }
        .input-style--small:checked+label:before {
            background-color: var(--blend);
            width: 16px;
            height: 16px;
            background-size: 14px;
            transition: background 0.25s ease-in-out;
            -webkit-transition: background 0.25s ease-in-out;
            -moz-transition: background 0.25s ease-in-out;
            -ms-transition: background 0.25s ease-in-out;
            -o-transition: background 0.25s ease-in-out;
            }

        .input-style:not(:disabled):not(:checked)+label:hover::before {
            background-color: var(--inside-block-color);
            cursor: pointer;
            transition: background 0.25s ease-in-out;
            -webkit-transition: background 0.25s ease-in-out;
            -moz-transition: background 0.25s ease-in-out;
            -ms-transition: background 0.25s ease-in-out;
            -o-transition: background 0.25s ease-in-out;
            }
        .input-style:disabled+label::before {
            opacity: 0.7;
            transition: all 0.25s ease-in-out;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            }

        /* radio */
        .input-style--radio+label:before {
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            }
        .input-style--radio:checked+label:before {
            background: #ffffff url(/i/radio.svg)no-repeat;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 10px;
            }
        /* /radio */
    /* /checkbox */


/* EVENT ITEM */
.no-events {
    display: none;
    max-width: 152px;
    }
    .no-events p {
        line-height: 125%;
        }
    .no-events img {
        border: 5px solid aliceblue;
        border-radius: 150px;
        width: 100px;
        display: block;
        margin-bottom: 10px;
        }
.events-area {
    flex: 1 1 auto;
    height: 100%;
    background-color: var(--graylight);
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(337px, 1fr));
    grid-auto-rows: max-content;
    box-sizing: border-box;
    padding: 20px;
    overflow-y: auto;
    }
    .center-content {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-align: -moz-center;
        text-align: -webkit-center;
        }
    .event__item {
        background-color: white;
        box-sizing: border-box;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        padding: 10px;
        transition: all 0.25s ease-in-out;
        cursor: pointer;
        display: flex;
        }
        .event__item:hover {
            transition: all 0.25s ease-in-out;
            box-shadow: 0px 10px 23px 0px hsla(0, 0%, 80%, 1);
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            }
            .event__thumbnail {
                overflow: hidden;
                width: 145px;
                height: 100%;
                min-height: 205px;
                flex: 0 0 145px;
                border-radius: 8px;
                -webkit-border-radius: 8px;
                -moz-border-radius: 8px;
                -ms-border-radius: 8px;
                -o-border-radius: 8px;
                margin-right: 20px;
                }
                .event__thumbnail img {
                    width:100%;height: 100%;
                    object-fit: cover;
                    }
                .event__info {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                }
                .event__main {
                    margin-bottom: 20px;
                    }
                    .event__name {
                        font-size: 20px;
                        margin-bottom: 10px;
                        }
                    .event__type {
                        font-size: 16px;
                        color: var(--gray);
                        }
                    .event__data {flex-grow: 1;}
                    .event__date, .event__time, .event__adress {
                        padding: 7px 0 0 20px;
                        font-size: 12px;
                        background-repeat: no-repeat;
                        background-size: 16px auto;
                        background-position: left center;
                        min-height: 20px;
                        }
                        .event__date {
                            background-image: url(/i/event/date-icon.svg);
                            }
                        .event__time {
                            background-image: url(/i/event/time-icon.svg);
                            }
                        .event__adress {
                            background-image: url(/i/event/adress-icon.svg);
                            }
                    .event__tickets {
                        display: flex;
                        align-items: center;
                        margin-top: 10px;
                        }
                        .ticket__price {
                            padding-left: 25px;
                            background-image: url(/i/event/ticket.svg);
                            background-repeat: no-repeat;
                            background-size: 20px;
                            }
                        .ticket__price-value {font-size: 14px;}
                    .ticket__out {display: block;color: var(--gray);}
            .ticket__pushkin {width: 27px;}
                .ticket__pushkin img {width: 100%;height: 100%;object-fit: contain;}
            .ticket__price-value {
                display: inline;
                font-size: 16px;
            }
.searchbar-collapsed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: var(--accent);
    padding: 10px;
    box-sizing: border-box;
    border-radius: 150px;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
    width: 60px;height: 60px;
    border: 5px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    visibility: hidden;
    }
    .searchbar-collapsed img {
        width: 80%;height: auto;
    }
@media (max-width:680px) {
    .searchbar {display: none;}
    .searchbar-collapsed {z-index: 1;visibility: visible;}
    .mobile-searhbar {
        display: block;
        position: absolute!important;
        left: 0;
        box-shadow: 300px 0 0 600px hsla(199, 77%, 60%, 0.52);
        transform: translateX(-309px);
        -webkit-transform: translateX(-309px);
        -moz-transform: translateX(-309px);
        -ms-transform: translateX(-309px);
        -o-transform: translateX(-309px);
        transition: transform 0.5s ease-in-out, opacity 1s ease-in;
        -webkit-transition: transform 0.5s ease-in-out, opacity 1s ease-in;
        -moz-transition: transform 0.5s ease-in-out, opacity 1s ease-in;
        -ms-transition: transform 0.5s ease-in-out, opacity 1s ease-in;
        -o-transition: transform 0.5s ease-in-out, opacity 1s ease-in;
        opacity: 0;
        }
        .mobile-searhbar-reveal {
            position: absolute!important;
            transition: transform 0.5s ease-in-out, opacity 0.2s ease-in;
            -webkit-transition: transform 0.5s ease-in-out, opacity 0.2s ease-in;
            -moz-transition: transform 0.5s ease-in-out, opacity 0.2s ease-in;
            -ms-transition: transform 0.5s ease-in-out, opacity 0.2s ease-in;
            -o-transition: transform 0.5s ease-in-out, opacity 0.2s ease-in;
            transform: translateX(0);
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            opacity: 1;
            }
        }
@media (max-width:360px) {
    .events-area, .event__item {padding: 5px;}
    .ticket__price-value, .ticket__price-value span {font-size: 14px;}
}
/* EVENT /ITEM */
    
/* /sidebar */

/* EVENT PAGE EVENTPAGE */
.eventpage {
    display: block;
    align-items: stretch;
    justify-content: space-between;
    box-sizing: border-box;
    flex-wrap: wrap;
    overflow-y: auto;
    }
.eventpage__topbar {
    padding: 8px var(--gap-m);
    display: flex;
    align-items: center;
    background-color: var(--graylight);
    }
    .eventpage__logo {
        max-width: 257px;
        margin-right: var(--gap-m);  
        }
        .eventpage__logo img {
            width: 100%;
            border-radius: 18px;
            -webkit-border-radius: 18px;
            -moz-border-radius: 18px;
            -ms-border-radius: 18px;
            -o-border-radius: 18px;
            }
    .eventpage__links {display: flex;align-items: center;}
    .topbar__link {
        display: flex;
        align-items: center;
        margin-right: var(--gap-m);
        transition: 0.32s ease-in-out;
        -webkit-transition: 0.32s ease-in-out;
        -moz-transition: 0.32s ease-in-out;
        -ms-transition: 0.32s ease-in-out;
        -o-transition: 0.32s ease-in-out;
        padding: 2px 8px 2px 4px;
        }
        .topbar__link:hover {
            background: #fbfeff;
            transition: 0.32s ease-in-out;
            -webkit-transition: 0.32s ease-in-out;
            -moz-transition: 0.32s ease-in-out;
            -ms-transition: 0.32s ease-in-out;
            -o-transition: 0.32s ease-in-out;
            border-radius: 6px;
            -webkit-border-radius: 6px;
            -moz-border-radius: 6px;
            -ms-border-radius: 6px;
            -o-border-radius: 6px;
            }
        .topbar__link img {
            display: inline-block;
            margin-right: var(--gap-s);
            display: flex;
            align-items: center;
            }
.eventpage__data {
    display: grid;
    /* display: flex; */
    padding: var(--gap-m);
    box-sizing: border-box;
    overflow-y: auto;
    grid-gap: var(--gap-m); 
    /* grid-template-columns: 460px 1fr; */
    grid-template-columns: 1fr 1fr;
    }
.eventpage__thumbnail {
    overflow: hidden;
    height: auto;
    }
    .eventpage__thumbnail img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        }
.eventpage__info {
    line-height: 125%;
    flex: 0 0 70%;
    height: auto;
    background-color: #ffffff;
    box-sizing: border-box;
    overflow-y: auto;
    }
.eventpage__copyright {
    height: 58px;
    background-color: var(--graylight);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #433E3E;
    }
.eventpage__title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.1;
    }
.eventpage__type {
    font-size: 26px;
    margin-bottom: var(--gap-m);
    color: var(--gray);
    }
.eventpage__description {
    margin-bottom: var(--gap-s);
    overflow: hidden;
    max-height: 62px;
    transition: 0.35s ease-in-out;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -ms-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
}
    .eventpage__description.expanded {
        max-height: 100%;
        transition: 0.35s ease-in-out;
        -webkit-transition: 0.35s ease-in-out;
        -moz-transition: 0.35s ease-in-out;
        -ms-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        }
    .expand-text {
        width: 27px;
        height: 27px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        background-color: var(--accent);
        transition: 1s ease-in-out;
        -webkit-transition: 1s ease-in-out;
        -moz-transition: 1s ease-in-out;
        -ms-transition: 1s ease-in-out;
        -o-transition: 1s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: var(--gap-m);
        }
        .expand-text.rotated {
            transition: 1s ease-in-out;
            -webkit-transition: 1s ease-in-out;
            -moz-transition: 1s ease-in-out;
            -ms-transition: 1s ease-in-out;
            -o-transition: 1s ease-in-out;
            transform: rotate(-180deg);
            -webkit-transform: rotate(-180deg);
            -moz-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
            -o-transform: rotate(-180deg);
}
        .expand-text:hover {
            background-color: var(--darktone);
            transition: 0.25s ease-in-out;
            -webkit-transition: 0.25s ease-in-out;
            -moz-transition: 0.25s ease-in-out;
            -ms-transition: 0.25s ease-in-out;
            -o-transition: 0.25s ease-in-out;
            cursor: pointer;
            }
        .expand-text img {width: 14px;height: auto;}

.eventpage__place-list {
    box-sizing: border-box;
    max-width: max-content;
    }
.place {
    display: block;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border: 1px solid var(--gray);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    margin-bottom: var(--gap-m);
    }
    .place:last-child {margin-bottom: 0;}
    .place:hover {
        background-color: var(--inside-block-color);
        border-color: #C3ECFF;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        box-shadow: 5px 2px 16px rgba(207, 207, 207, 0.5);
        cursor: pointer;
        }
.place__title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
    }
    .place__data {
        color: black;
        font-size: 16px;
        }
        .place__data .event__date, .place__data .event__time, .place__data .event__adress {
            padding: 0;
            padding-left: 20px;
            padding-bottom: 4px;
            font-size: 16px;
            margin-bottom: 10px;
            background-position: left 4px;
            }
            .place__data .ticket__price p, .place__data .ticket__price span {
                position: relative;
                bottom: 2px;
                }
    .event-block__header {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: var(--gap-s);
        }
    .but {
        font-family: inherit;
        background-color: var(--accent);
        padding: 8px 10px;
        display: flex;
        align-items: center;
        color: white;
        font-size: 16px;
        font-weight: 500;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        transition: 0.25s ease-in-out;
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -ms-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out
        }
        .but--orange {background-color: var(--orange);color: black;font-weight: 600;}
        .but:hover{
            transition: 0.25s ease-in-out;
            -webkit-transition: 0.25s ease-in-out;
            -moz-transition: 0.25s ease-in-out;
            -ms-transition: 0.25s ease-in-out;
            -o-transition: 0.25s ease-in-out;
            background-color: var(--darktone);
            }
        .but--orange:hover {background-color: var(--orange-light);}
        .icon--but {margin-right: var(--gap-s);}
            @keyframes rot {
                from {
                    transform: rotate(0);
                    -webkit-transform: rotate(0);
                    -moz-transform: rotate(0);
                    -ms-transform: rotate(0);
                    -o-transform: rotate(0);
                    }
                to {
                    transform: rotate(-360deg);
                    -webkit-transform: rotate(-360deg);
                    -moz-transform: rotate(-360deg);
                    -ms-transform: rotate(-360deg);
                    -o-transform: rotate(-360deg);
                    }
                }

.event-block__header .place__title {margin: 0;margin-right: var(--gap-s);margin-bottom: var(--gap-s);}
.event-block__header .event__adress {
    padding: 0;padding-left: 20px;
    color:black;
    font-size: 16px;
    margin-right: var(--gap-s);
    margin-bottom: var(--gap-s);
    }
.event-block__header .but {margin-bottom: var(--gap-s);}

/* EVENT LIST EVENT ITEM */
.event-block__item {
    margin-bottom: var(--gap-m);
    }
.event-block__date {
	display: flex;
	align-items: center;
    margin-bottom: 5px;
    }
    .event-block__day {
        font-size: 20px;
        font-weight: 600;
        margin-right: var(--gap-s);
        }
        .event-block__time {
            padding-left: 24px;
            background-image: url(/i/event/time-icon.svg);
            background-size: 20px;
            background-repeat: no-repeat;
            background-position: left center;
            font-size: 18px;
            font-weight: 600;
            }
.event-block__place {
    color: var(--gray);
    font-size: inherit;
    }
.event-block__additional {
    display: flex;
    flex-direction: column;
    margin: var(--gap-s) 0;
    }
    .event-block__restriction {
        background-image: url(/i/info.svg);
        background-repeat: no-repeat;
        background-size: 20px;
        padding-left: 24px;
        background-position: left center;
        }
.event-block__desc {margin-bottom: var(--gap-s);}
.event-block__ticket {margin-bottom: var(--gap-s);}
    .event-block__ticket .ticket__pushkin {
        display: flex;
        align-items: center;
        width: auto;
        }
    .event-block__ticket .ticket__price {margin-right: var(--gap-s);}
        .event-block__ticket .ticket__pushkin img {flex: 0 0 32px;width: 32px;}
        .event-block__ticket .ticket__pushkin span {
            font-size: 10px;
            line-height: 1.2;
            color: var(--gray);
            }

/* PAGE VIEWERS INFO */
/* body */ .page_with_content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: var(--topbar) 1fr;
    align-items: stretch;
    overflow: hidden;
    1padding-bottom: var(--gap-m);
    }
.viewersinfo__topbar {
    grid-row: 1;
    width: 100%;
    height: var(--topbar);
    box-sizing: border-box;
}
.page {
    grid-row: 2;
    display: grid;
    height: 100%;
    overflow: hidden;
}
.page--one-third {
    grid-template-columns: 315px 1fr;
    }

    .page--one-third__sidebar {
        padding: var(--gap-m);
    }

.services__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    }
    .services__item a {
        line-height: 135%;
    }
.services__icon {
    flex: 0 0 45px;
    width: 45px;
    margin-right: 10px;
    fill: #1488BE;
    transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
}
    .services__item:hover {
        cursor: pointer;
    }
    .services__item:hover .services__icon {
        fill: var(--accent);
        cursor: pointer;
    }
    .services__item.active .services__icon {
        fill: #F9B233;
        transition: 0.25s ease-in-out;
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -ms-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        }

.page__content {
    height: 100%;
    overflow-y: auto;
    padding: var(--gap-m);
    }
    .page--one-third .page__content {
        padding-left: 0;
        }
    .page__content h1{
        font-size: 30px;
        line-height: 130%;
        font-weight: 600;
        margin-bottom: 20px; 
        }
        .page__content h2{
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px; 
            }
            .page__content h3{
                font-size: 20px;
                font-weight: 400;
                margin-bottom: 20px; 
                }
        .page__content p{
            line-height: 135%;
            font-weight: 400;
            margin-bottom: 20px; 
            }
            .page__content p strong {
                font-weight: 600;
                }
            .page__content p.alert {
                font-weight: 600;
                background-color: var(--blend);
                padding: var(--gap-s);
                border-radius: 6px;
                -webkit-border-radius: 6px;
                -moz-border-radius: 6px;
                -ms-border-radius: 6px;
                -o-border-radius: 6px;
                }
            .page__content a {
                display: inline;
                font-weight: 600;
                color: var(--accent);
                }
        .page__content ul,.page-list {
            list-style-image: url(/i/list-bullet.svg);
            padding-left: 15px;
            margin-bottom: 20px;
            }
            .page__content ul li,.page-list li {
                padding-left: 10px;
                margin-bottom: 10px;
                }

    .infoblock {
        padding: 20px;
        background-color: #F2F2F2;
        display: flex;
        align-items: flex-start;
        border-radius: 11px;
        -webkit-border-radius: 11px;
        -moz-border-radius: 11px;
        -ms-border-radius: 11px;
        -o-border-radius: 11px;
        margin-bottom: 20px;
        }
        .infoblock p {margin-bottom: 0;}
        .infoblock img {
            margin-top: 5px;
            margin-right: 40px;
        }
                
    @media (max-width:870px) {
        .viewersinfo {
            padding-bottom: 0;
            }
        .page--one-third {
            grid-template-columns: 1fr;
            grid-template-rows: 1fr auto;
            padding-bottom: 0;
            }
        .page--one-third .page__content {
            padding: var(--gap-s);
        }
        .page--one-third__sidebar {
            grid-row:2;
            background-color: var(--graylight);
            padding: 10px 20px;
        }
        .services__list {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: 1fr;
            align-items: start;
            }
        .services__item {
            justify-content: center;
            align-items: center;
            margin-right: 5px;
            margin-bottom:0;
            }
            .services__item:last-child {
                margin-right: 0;
            }
            .services__item p {
                font-size: 14px;
                line-height: 125%;
                }
    }
@media (max-width:700px) {
    .viewersinfo__link span {display: none;}
}
@media (max-width:650px) {
    .page--one-third {
        /*grid-template-rows: 1fr 90px;*/
        }
    .services__item {
        flex-direction: column;
        margin-right: 0;
        text-align: center;
        }
        .services__item svg {
            margin-right: 0;
            }
        .services__item p {
            font-size: 12px;
            padding: 0 10px;
        }
}
@media (max-width:440px) {
    .page--one-third__sidebar {
        padding: 8px 10px;
    }
    .services__item p {
        padding: 0 5px;
    }
        .services__item p {
            font-size: 10px;
            padding: 0 5px;
        }
}

/* КОНТАКТЫ */
    .page--one-half {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr 1fr;
        overflow-x: hidden;
        }
    .group {
        display: grid;
        gap: 20px;
        grid-template-columns: max-content max-content;
        margin-bottom:20px;
        }
        .group p {
            color: #9E9E9E;
            text-transform: uppercase;
            margin:0;
            }

    .page__infos-block {
        line-height: 125%;
        padding: 20px;
        background-color: var(--inside-block-color);
        margin-bottom: 20px;
        }
        .page__infos-block:last-child {margin-bottom: 0;} 
        
        @media (max-width:980px) {
            .page--one-half {
                display: grid;
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                overflow-x: hidden;
                }
                .group {
                    grid-template-columns: 1fr;
                    grid-template-rows: auto;
                }
            .group {
                gap: 0;
            }
        }
/* МОБ ОБЩИЙ */
@media (max-width:780px) {
    .eventpage__title {font-size: 32px;}
    .eventpage__type {font-size: 22px;}
    .eventpage__logo {margin-right: var(--gap-m);}
    .topbar__link span {display: none;}
    .topbar__link img {margin-right: 0;}
    .eventpage__data {grid-template-columns: 1fr 1fr;}
}
@media (max-width:570px) {
    body {min-width: 0;}
    .eventpage {
        grid-template-columns: auto;
        grid-template-rows: 62px 1fr 58px;
    }
    .eventpage__topbar {justify-content: space-between;}
    .topbar__link:last-child {margin-right: 0;}
    .topbar {
        padding: 5px var(--gap-s);
        box-sizing: border-box;
        }
    .eventpage__data {
        padding: 0;
        display: block;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: auto;
        height: auto;
        }
        .eventpage__thumbnail {
            margin-right: 0;
            max-height: none;
            background: #eaeaea;
            display: inline;
            overflow: visible;
            }
        .eventpage__thumbnail img {
            border-radius:0;
            -webkit-border-radius:0;
            -moz-border-radius:0;
            -ms-border-radius:0;
            -o-border-radius:0;
            height: auto;
            max-height: none;
            }
        .eventpage__info {
            padding: var(--gap-m);
            overflow-y: hidden;
            height: auto;
            }
        .eventpage__place-list {max-width: none;width: 100%;}

    .event-block__button {
        display: block;
        }
        .event-block__button .but {
            width: 100%;
            justify-content: center;
        }
        .topbar__link {padding: 0;}
}
@media (max-height:750px) and (max-width:570px) {
    .eventpage__data {
        display: block;
        height: auto;
        }
    .eventpage__thumbnail {
        display: inline;
        overflow: hidden;
        max-height: none;
        height: auto;
        flex: 1 1 320px;
        }
        .eventpage__info {flex: 1 1 auto;}
}
/* /EVENT PAGE */

@media (min-width:920px) and (max-width:1380px) {
    .eventpage__data {
        display: grid;
        grid-template-columns: 434px 1fr;
        grid-template-columns: calc(460px - var(--gap-m)) 1fr;
        grid-gap: var(--gap-m);
    }
}
@media (min-width:1381px) {
    .eventpage__data {
        grid-template-columns: 33.3% 1fr;
    }
    .eventpage__thumbnail, .eventpage__thumbnail img {max-height: none;}
}
@media (min-width:1680px) {
    .eventpage__data, .eventpage__topbar {
        max-width: 1680px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .eventpage__topbar {position: relative;}
        .eventpage__topbar:before, .eventpage__topbar:after {
            content: "";
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: var(--graylight);
            display: block;
            }
            .eventpage__topbar:before {
                left: -100%;
            }
            .eventpage__topbar:after {
                right: -100%;
            }
}

