@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    /* Браузер сначала попробует найти шрифт локально */
    src: local("Inter"),
        /* Если не получилось, загрузит ttf */
        url("/fonts/Inter/InterRegular.ttf") format("ttf"),
        /* Если браузер не поддерживает woff2, загрузит otf */
        url("/fonts/Inter/Inter-Regular.otf") format("otf");
}

@font-face {
    font-family: "Inter-medium";
    font-style: normal;
    font-weight: 500;
    /* Браузер сначала попробует найти шрифт локально */
    src: url("fonts/Inter/Inter-Medium.otf") format("opentype");
}

:root {
    --base-color: #FF7F00;
    --new-accent-8: var(--base-color-light, #FFF6ED);
    --black-design: #121212;
    --dark-design: #797E84;
    --border-color: #BEC5CC;
    --disabled-color: #BEC5CC;
    --new-input-placeholder-color: #BEC5CC;
    --accent-color: #ffead5;
    --bs-body-bg: #fff;
    --bs-body-bg-blue: #f2f7fc;
    --base-color-light: #C9E4FF;
    --main-color-logo: var(--base-color);
    --main-color-text: #233550;
    --bs-background-color: #FFD9B3;
    --new-dark-grey: #797E84;
    --new-light-grey: #E0E0E0;
    --new-background: #F7F9FB;
    --new-black: #121212;
    --new-white: #fff;
    --new-notification-neutral-bg: #EEF3FB;
    --new-notification-neutral: #8294AE;
    --new-notification-alert-background: #FFEDF0;
    --new-notification-alert: #FE002E;
    --new-notification-done-bg: #D7FFD7;
    --new-notification-done: #11D15E;
    --new-notification-purple-bg: #FADEFF;
    --new-notification-purple: #BC3AFA;
    --element-radius: 8px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
div {
    font-family: "Inter", sans-serif;
    color: var(--black-design);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: #BEC5CC;
    border-radius: 20px;
    border: 3px solid #BEC5CC;
}

::-webkit-scrollbar-track {
    background: #fff;
}

a {
    color: var(--base-color);
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 22px;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
}

.loader::before,
.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #FFF;
    animation: prixClipFix 2s linear infinite;
}

.loader::after {
    transform: rotate3d(90, 90, 0, 180deg);
    border-color: #FF3D00;
}

.loader::before,
.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #FFF;
    border-top-color: rgb(255, 255, 255);
    border-right-color: rgb(255, 255, 255);
    border-bottom-color: rgb(255, 255, 255);
    border-left-color: rgb(255, 255, 255);
    animation: prixClipFix 2s linear infinite;
}

.btn-secondary {
    z-index: 1;
    position: relative;
}

.theme-orange input {
    font-size: 16px;
    width: 100%;
    height: 46px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px;
    gap: 10px;
    border: 1px solid var(--border-color);
    margin: 0px;
}

.theme-orange input::placeholder,
.theme-orange textarea::placeholder {
    color: var(--border-color);
}

.theme-orange .error input {
    box-shadow: 0px 0px 4px 0px #FE002E;
}

.theme-orange input:focus {
    border: 1px solid var(--base-color) !important;
    box-shadow: 0px 0px 4px 0px var(--base-color);
}

.theme-orange input[class*="icon"] {
    padding-left: 42px;
}

.theme-orange input[class*="icon-search"] {

    background: no-repeat url('../img/svg/icons/search.svg') center left;
    background-position-x: 15px;
}

.theme-orange button:disabled {
    border: 1px solid var(--disabled-color) !important;
    background: var(--disabled-color) !important;
}

.theme-orange textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin: 0px;
    font-size: 16px;
    line-height: 22px;
}

.theme-orange .checkbox {
    width: 22px;
}

.theme-orange .checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.theme-orange .checkbox input+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.theme-orange .checkbox input+label:hover::before {
    cursor: pointer;
    border: 1px solid var(--base-color) !important;
    box-shadow: 0px 0px 4px 0px var(--base-color)var(--new-accent-8, #FFF6ED);
}

.theme-orange .checkbox input+label::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid rgba(224, 224, 224, 1);
    border-radius: 6px;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.theme-orange .checkbox input:checked+label::before {
    border: 1px solid var(--base-color) !important;
    box-shadow: 0px 0px 4px 0px var(--base-color);
    border-color: #0b76ef;
    background-color: white;
}

.theme-orange .checkbox input:checked+label::after {
    content: " ";
    background: var(--base-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14'%3e%3cpath fill='none' d='M1.5 6.75607L6.4606 11.7126L16.5 1.6731' stroke='%23FF7F00' stroke-width='2.5'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14'%3e%3cpath fill='none' d='M1.5 6.75607L6.4606 11.7126L16.5 1.6731' stroke='%23FF7F00' stroke-width='2.5'/%3e%3c/svg%3e");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-repeat: no-repeat;
    mask-position: 5px center;
    mask-size: 12px 12px;
    width: 20px;
    height: 20px;
    position: absolute;
}

.theme-orange .checkbox.gross {
    width: 40px;
}

.theme-orange .checkbox.gross input+label::before {
    width: 40px;
    height: 40px;
}

.theme-orange .checkbox.gross input:checked+label::after {
    width: 40px;
    height: 40px;
    mask-position: 10px center;
    mask-size: 20px 20px;
}

.theme-orange .btn-gross {
    height: 46px;
    padding: 12px 16px;
    border-radius: 10px;
    gap: 8px;
    line-height: 20px;
}
.theme-orange .event-cards__elem .btn-gross
{
    padding: 0px 16px;
    line-height: 32px;
    height: 32px;
}
.theme-orange .btn-white
{
    background: white;
    color: var(--base-color);
    border-color: var(--base-color);
}

.theme-orange .btn-white:hover {
    background: var(--base-color);
    ;
    color: white;
    border-color: var(--base-color);
}

.theme-orange button .next {
    width: 30px;
    display: block;
    float: right;
    margin-top: 4px;
    padding-left: 10px;
    text-align: center;
}

.theme-orange button:hover .next svg path {
    stroke: white;
}

.theme-orange .wh100 {
    width: 100%;
}

.theme-orange .button-top.orange {
    height: 48px;
    width: 84px;
    border-radius: 62px;
    border: 1px solid var(--base-color);
    background: white;
    margin-bottom: 30px;
    position: fixed;
    cursor: pointer;
    bottom: 0px;
    right: 0px;
    margin-right: 40px;
    line-height: 70px;
    text-align: center;
    z-index: 1000;
    -webkit-box-shadow: 0px 0px 3px 0px var(--base-color);
    -moz-box-shadow: 0px 0px 3px 0px var(--base-color);
    box-shadow: 0px 0px 3px 0px var(--base-color);
}

.button-top.orange span {
    height: 38px;
}

.button-top.orange span svg {
    margin-top: -26px;
}

.button-top.orange span svg path {
    fill: var(--base-color);
}

.theme-orange footer {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-color-30, --accent-color) 100%);
    margin-top: 50px;
    box-shadow: none;
}

.theme-orange footer .title {
    display: none;
}

.theme-orange footer ul li {
    margin-bottom: 20px;
}
.theme-orange footer .information-block ul li
{
    height: 24px;
    margin-bottom: 20px;
    line-height: 26px;
}

.theme-orange footer {
    color: #797E84;
    font-weight: 500;
    font-size: 12px;
}

.theme-orange footer ul li a {
    font-family: "Inter", sans-serif;
    ;
    font-size: 14px;
    color: rgba(18, 18, 18, 1);
}

.theme-orange footer ul li .whatsapp-button {
    font-size: 24px;
}

.theme-orange footer ul li.social-groups a {
    color: var(--base-color);
}

.theme-orange footer ul li span {
    margin: 0px 10px;
}

.theme-orange footer .copyright {
    font-family: "Inter", sans-serif;
    color: var(--dark-design);
    border-top: 0px solid;
    padding-top: 0px;
}

.theme-orange footer .copyright div {
    font-family: "Inter", sans-serif;
    ;
    color: var(--dark-design);
}

.theme-orange footer .pay-logos {
    width: 162px;
    display: block;
    height: auto;
    margin-top: 40px;
}

.theme-orange .go-top {
    color: rgba(18, 18, 18, 1);
    font-size: 14px;
    line-height: 20px;
    margin-left: 27px;
    margin-top: 35px;
    cursor: pointer;
}

.theme-orange .go-top span {
    background: url("/local/templates/new_arena/themes/orange/img/svg/icons/up.svg") no-repeat center center;
    width: 16px;
    height: 16px;
    position: absolute;
    margin-left: -27px;
    margin-top: 3px;
}

.theme-orange .o-klube {
    max-width: 808px;
    margin: 0px auto;
}

.theme-orange .o-klube.orange.home-page {
    max-width: 100%;
}

.theme-orange .o-klube.orange.home-page p,
.theme-orange .o-klube.orange.home-page div {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: left;
    color: var(--dark-design);
}

.theme-orange .o-klube.orange.home-page h3 {
    font-family: "Inter-medium";
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: left;
    color: var(--dark-design);
}

.theme-orange .o-klube p {
    font-family: "Inter-medium";
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
}

.theme-orange .o-klube h2 {
    font-family: "Inter-medium";
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: left;
}

.theme-orange .o-klube #players {
    margin: 0px;
    padding: 0px;
    background: none;
    margin-top: 80px;
}

.theme-orange .o-klube #players .container {
    max-width: 808px;
    margin: 0px;
    padding: 0px;
}

.theme-orange .o-klube #players .container .tc .player {
    margin: 0px;
    padding: 0px;
    background: linear-gradient(0deg, #F7F9FB, #F7F9FB),
        linear-gradient(0deg, #E0E0E0, #E0E0E0);
    padding: 8px;
    border-radius: 24px;
    border: 1px solid #E0E0E0;
    gap: 12px;
}

.theme-orange .o-klube #players .container .tc .player .photo {
    border-radius: 16px;
    overflow: hidden;
}

.theme-orange .o-klube #players .container .title-block h3 {
    font-family: "Inter-medium";
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: left;
    text-transform: none;
}

.theme-orange .o-klube #players .container .title-block h3 .name {
    text-transform: uppercase;
}

.theme-orange .o-klube #players .player .flag {
    position: relative;
    top: -20px;
    left: auto;
    width: 47px;
    height: 33px;
    border-radius: 15px;
    margin: 0px auto;
    background: white;
    margin-top: -10px;
    box-shadow: 0px 0px 7px 0px #0000001A;
}

.theme-orange .o-klube #players .player .flag img {
    max-width: 23px;
    width: 100%;
    margin-top: 8px;
}

.theme-orange .o-klube #players .player .name {
    margin-top: 0px;
    font-family: "Inter-medium";
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: center;
}

.theme-orange .o-klube #players .player .position {
    font-family: "Inter-medium";
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--dark-design);
}

.theme-orange .o-klube #players .player .carrier {
    margin-top: -18px;
}

.theme-orange .o-klube .buy-ticket {
    text-align: center;
    margin: 30px 0px;
}

.theme-orange .sticky-menu {
    transition: all 0.1s ease;
}

.cart-success.orange h1 {
    font-size: 40px;
    line-height: 46px;
    display: flex;
    color: #121212;
}

.cart-success.orange h1 .icon-good {
    background: url(/local/templates/new_arena/themes/orange/img/svg/icons/icon-good.svg) no-repeat center center;
    width: 32px;
    height: 32px;
    display: block;
    background-size: 100% 100%;
    margin-top: 8px;
    margin-right: 16px;
}

.cart-success.orange .success-block {
    background: #F7F9FB;
    border-radius: 36px;
    padding: 40px;
    color: #121212;
}

.cart-success.orange .success-block .success-block-header {
    display: flex;
    font-size: 22px;
    line-height: 32px;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 15px;
}

.cart-success.orange .success-block .success-block-header .order-price {
    text-align: right;
}

.cart-success.orange .success-block .success-block-content {
    font-size: 14px;
    line-height: 20px;
    color: var(--dark-design);
    padding: 16px 0px;
}

.cart-success.orange .success-block .success-block-email {
    background: white;
    padding: 12px;
    border-radius: 8px;
    display: inline-block;
}

.cart-success.orange .success-block .success-block-email .content-email {
    float: left;
}

.cart-success.orange .success-block .success-block-email .logo-email {
    background: url(/local/templates/new_arena/themes/orange/img/svg/icons/icon-email.svg) no-repeat center center;
    width: 32px;
    height: 32px;
    float: left;
    margin-right: 10px;
}

.cart-success.orange .success-block .content-email .success-email {
    font-size: 12px;
    line-height: 16px;
    color: var(--dark-design);
}

.cart-success.orange .success-block .content-email .success-text {
    font-size: 14px;
    line-height: 20px;
}

.cart-success.orange .success-block .success-block-fan-id {
    background: white;
    padding: 12px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid var(--base-color);
}

.cart-success.orange .success-block .success-block-fan-id .logo-fan-id {
    width: 32px;
    height: 32px;
    float: left;
    margin-right: 10px;
}

.cart-success.orange .success-block .success-block-fan-id .logo-fan-id svg path {
    fill: var(--base-color);
}

.cart-success.orange .success-block .success-block-fan-id .content-fan-id {
    float: left;
}

.cart-success.orange .success-block .success-block-fan-id .content-fan-id span {
    width: 6px;
    height: 32px;
    line-height: 30px;
    margin-left: 10px;
    display: block;
    float: right;
}

.cart-success.orange .success-block .success-block-fan-id .content-fan-id span svg path {
    stroke: var(--base-color);
}

.cart-success.orange .success-block .success-block-breadcrumb {
    margin-top: -10px;
    margin-bottom: 16px;
}

.cart-success.orange .success-block .success-block-breadcrumb ul {
    display: inline-flex;
    margin: 0px;
    padding: 0px;
}

.cart-success.orange .success-block .success-block-breadcrumb ul li {
    list-style: none;
    padding: 4px 8px;
    border: 1px solid #E0E0E0;
    font-size: 12px;
    line-height: 16px;
    border-radius: 8px;
    margin-right: 20px;
}

.cart-success.orange .success-block .success-block-breadcrumb ul li:after {
    content: "";
    background: url(/local/templates/new_arena/themes/orange/img/svg/icons/right-gl.svg) no-repeat center center;
    width: 18px;
    height: 18px;
    position: absolute;
    margin-left: 10px;
}

.cart-success.orange .success-block .success-block-breadcrumb ul li:last-child:after {
    background: url('') no-repeat center center;
}

.cart-success.orange .success-block .success-block-fan-id .content-fan-id a {
    font-size: 14px;
    line-height: 30px;
    color: var(--base-color);
    font-weight: 500;
}

.content-site {
    padding: 0px;
    background: #fff;
}

.container,
.news-detail {
    text-align: justify;
    font-size: 16px;
    line-height: 22px;
    color: rgb(18, 18, 18);
}

.news-detail .date {
    color: rgba(121, 126, 132, 1);
    margin: 0px;
    padding: 0px;
    margin-bottom: 24px;
}

.back-all-news a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--base-color);
    float: left;
    margin: 0px;
    padding: 0px;
    position: absolute;
    left: 0px;
}

.container h1,
.news-detail h1 {
    display: block;
    font-size: 40px !important;
    line-height: 46px !important;
    color: rgba(18, 18, 18, 1) !important;
    margin: 0px auto;
    margin-bottom: 0px;
    margin-bottom: 24px;
    padding: 0px;
    text-align: left;
}

.container h3,
.news-detail h3 {
    margin-top: 0;
}

.container h2,
.news-detail h2 {
    text-align: left;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    color: rgb(18, 18, 18);
    margin: 24px 0px;
    padding: 0px;
}

.container h3,
.news-detail h3 {
    text-align: left !important;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    color: rgb(18, 18, 18);
    margin: 24px 0px;
    padding: 0px;
}

.bgWarning .warningText,
.news-detail blockquote {
    width: 100%;
    padding: 24px;
    border-radius: 8px;
    background: rgba(255, 237, 240, 1) !important;
    font-size: 16px;
    line-height: 22px;
    color: #121212;
}

div.news-detail {
    max-width: 800px;
    margin: 0px auto;
    word-wrap: break-word;
}

div.news-detail p {
    margin-bottom: 24px;
}

div.news-detail a {
    color: var(--base-color);
}

div.news-detail .col-12 {
    margin: 0px;
    padding: 0px;
}

div.news-detail img.detail_picture {
    float: left;
    margin: 0 8px 6px 1px;
}

div.news-detail img {
    width: 100%;
    height: auto;
}

.news-detail-preview {
    border-radius: 15px;
}

.news-date-time {
    color: #486DAA;
}

.btn--to-all-news {
    display: block;
    color: #2489FF !important;
    font-weight: 700 !important;
    margin: 50px 0 30px;
}

.aData {
    color: white;
    position: absolute;
    /* border-radius: 15px; */
    margin: 20px;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 1;
}

.aData::before {
    z-index: -1;
    position: absolute;
    content: "";
    border: 1px solid black;
    background-color: black;
    border-radius: 5px;
    opacity: 0.7;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.m-header {
    margin-top: 120px;
}

.theme-orange .bottom-cart.active {
    height: 78px;
}
.theme-orange .bottom-cart.active:before
{
    content: " ";
    width: 100%;
    height: 100%;
    opacity: 0.7;
    position: absolute;
    background-color: var(--accent-color);
}

.theme-orange .bottom-cart .bottom-cart__center {
    gap: 0px;
}

.theme-orange .bottom-cart .bottom-cart__center .bottom-cart__block {
    width: 100%;
    height: 46px;
    font-size: 16px;
    line-height: 22px;
    padding: 13px 24px;
    border-radius: 8px;
    gap: 16px;
    background: white;
    color: black;
    text-align: center;
    white-space: nowrap;
}

.theme-orange .bottom-cart .bottom-cart__center .bottom-cart__block:first-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.theme-orange .bottom-cart .bottom-cart__center .bottom-cart__block:last-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.theme-orange .bottom-cart .bottom-cart__center .bottom-cart__block.center {
    padding: 0px;
    background: none;
    margin: 0px -1px;
}

.theme-orange .bottom-cart .bottom-cart__dop_service {
    display: flex;
    justify-content: center;
}



.theme-orange .bottom-cart .bottom-cart__dop_service .bottom-cart__dop_service__price {
    border: 1px solid var(--base-color);
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 24px;
    padding-right: 24px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    align-items: center;
}

.theme-orange .bottom-cart .bottom-cart__dop_service .bottom-cart__dop_service__text-count {
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 24px;
    padding-right: 24px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top: 1px solid var(--base-color);
    border-bottom: 1px solid var(--base-color);
    border-left: 1px solid var(--base-color);
    display: flex;
    align-items: center;
}

.theme-orange .bottom-cart .bottom-cart__dop_service .bottom-cart__dop_service__text-count span{
    margin-left:5px;
}

.bottom-cart__clear {
    display: flex;
    font-size: 16px;
    text-transform: lowercase;
    transition: opacity 0.5s ease-out;
    align-items: center;
    margin: 0 0 0 6px;
    cursor: pointer;
    font-weight: 600;
    color: var(--base-color);
    line-height: 22px;
}

.bottom-cart__button {
    width: 100%;
    font-family: "Inter", "Roboto", sans-serif;
    height: 46px;
    font-size: 16px;
    line-height: 22px;
    padding: 12px 16px;
    border-radius: 8px;
    gap: 8px;
    font-weight: 500;
}

.home-callback--empty-events.home-callback {
    padding: 0;
    background: transparent;
}

.home-callback--empty-events .home-callback__block {
    border-radius: 24px;
    padding: 24px;
}

.home-callback--empty-events .home-callback__block-left {
    border: 1px solid #E0E0E0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100%;
}

.home-callback--empty-events .home-callback__text {
    font-family: "Inter", sans-serif;
    max-width: 400px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: var(--dark-design);
}

.home-callback.home-callback--empty-events h3.home-callback__title {
    font-family: "Inter", sans-serif;
    max-width: 300px;
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.02em;
    text-align: center !important;
    margin-bottom: 24px;
}

h3.home-callback-form__title {
    margin-top: 0;
}

.home-callback--empty-events .home-callback__block-right {
    background: #F7F9FB;
    padding: 40px;
}

.container h3.home-callback__title {
    margin: 0px;
    margin-top: 10px;
}

.advantages.orange {
    background: white;
    margin: 30px 0px;
    padding: 0px;
}

.advantages.orange .advantages__title {
    font-size: 32px;
    margin-bottom: 16px;
    text-transform: none;
}

.advantages.orange .row>.col-md-4 {
    background: #F7F9FB;
    border-radius: 24px;
    padding: 40px;
    margin-right: 24px;
    width: calc(calc(100% / 3) - calc(48px / 3));
}

.advantages.orange .row>.col-md-4:nth-child(3n+3) {
    margin-right: 0px;
}

.block-advantage .block-advantage__title {
    color: var(--black-design);
    text-transform: none;
}

.advantages.orange .row>.col-md-4 .block-advantage:first-child {
    margin-top: 0px;
}

.advantages.orange .row>.col-md-4 .block-advantage:last-child {
    margin-top: 72px;
}

.advantages.orange .row .block-advantage {
    background: #F7F9FB;
    border-radius: 24px;
    display: block;
    position: relative;
    margin-top: 24px;
}

.advantages.orange .row>.col-md-8 .block-advantage {
    padding: 40px;
    margin: 0px 0px 24px 24px;
    width: calc(50% - 24px);
}

.advantages.orange .row>.col-md-8 .mb-0 {
    margin-bottom: 0px;
}

.advantages.orange .row .svg-advantages {
    background-size: 100%;
    position: absolute;
    right: -15px;
    top: -15px;
}

.advantages.orange .row .svg-advantages,
.advantages.orange .row .svg-advantages svg {
    width: 66px;
    height: 66px;
}

.advantages.orange .row .svg-advantages svg path {
    fill: var(--base-color);
}

.advantages.orange .block-advantage__title {
    font-size: 18px;
    line-height: 26px;
}

.advantages.orange .block-advantage__content {
    font-size: 14px;
    line-height: 20px;
    color: var(--dark-design);
    text-align: left;
}

.advantages.orange .advantages__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.03em;
    text-align: left;
}

.cart.orange #cart {
    display: flex;
    overflow-x: hidden;
}

.cart.orange .container.basket {
    width: 33%;
    min-width: 392px;
}

.cart.orange .order {
    width: 66%;
    padding: 0px;
    margin: 0px;
}

.cart.orange .basket__item {
    background: white;
    padding: 0px;
    margin: 0px;
    border-radius: 0px;
    border-bottom: 1px dashed rgb(121, 126, 132);
    padding-bottom: 23px;
    min-width: 312px;
}

.cart.orange div,
.cart.orange p,
.cart.orange a,
.cart.orange span {
    font-family: "Inter-medium";
}

.cart.orange .total__basket {
    font-size: 22px;
    line-height: 32px;
    border-bottom: 1px dashed rgb(121, 126, 132);
    padding-bottom: 25px;
}

.cart.orange .container.basket,
.cart.orange .container.order {
    border: 1px solid rgba(224, 224, 224, 1);
    border-radius: 36px;
    box-shadow: none;
    padding: 40px;
    background: white;
}

.cart.orange .container.order {
    border: 0px solid rgba(224, 224, 224, 1);
    background: rgba(247, 249, 251, 1);
}

.cart.orange .container.basket {
    margin: 0px;
    margin-right: 25px;
}

.cart.orange .container.order .order__title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
}

.cart.orange .order__privacy-policy {
    font-size: 12px;
    margin-bottom: 16px;
    color: rgb(190, 197, 204);
}

.cart.orange .new-input__item {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(190, 197, 204, 1);
    font-size: 16px;
}

.cart.orange .new-input__item::placeholder {
    color: rgba(190, 197, 204, 1);
    opacity: 1;
    /* Firefox */
}

.cart.orange .new-input {
    margin-bottom: 16px;
}

.cart.orange .total__basket span {
    float: right;
}

.cart.orange .basket__date {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.cart.orange .basket__event-img {
    width: 73px;
    height: 54px;
    min-width: 73px;
}

.cart.orange .basket__event-info {
    display: flex;
    margin: 0px;
    margin-left: 12px;
    justify-content: space-between;
    flex-direction: column;
}

.cart.orange .basket__event-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-top: 19px;
    color: var(--base-color);
}

.cart.orange .basket__event-title a {
    text-decoration: underline;
}

.cart.orange .basket__timing {
    display: flex;
    gap: 5px 40px;
    flex-wrap: wrap;
  margin-top: -5px;
}

.cart.orange .basket__adress {
    color: rgb(121, 126, 132);
    font-size: 12px;
    line-height: 16px;
    margin-top: -4px;
}

.cart.orange .basket__event-preview {
    display: flex;
    margin-top: 23px;
}

.cart.orange .basket__item .event-cards__team-logos {
    padding-top: 0px;
}

.cart.orange .basket-tab__row {
    display: block;
}

.cart.orange .basket-tab__col-price--ticket {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: left;
    font-weight: 500;
}

.cart.orange .basket-tab__col-title--ticket,
.cart.orange .basket-tab__col-count--ticket {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    max-width: 80%;
    text-align: left;
}

.cart.orange .basket-tab__col-title--ticket
{
    font-size: 12px;
}
.cart.orange .basket-tab__col-remove {
    background: none;
    margin: 0px;
    padding: 0px;
    right: 0px;
    display: flex;
    float: right;
    margin-right: 8px;
    height: 38px;
    line-height: 38px;
    padding-top: 8px;
}

.cart.orange .basket-tab__col-remove .cart_quantity {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.02em;
    text-align: center;
    margin-right: 8px;
    background: #F7F9FB;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    height: 24px;
    line-height: 12px;
}

.cart.orange .cart_del {
    width: 16px;
    height: 16px;
    background: none;
    background-size: none;
    opacity: 1;
    cursor: pointer;
    transition: opacity 1s ease-out;
    margin: 0px;
    padding: 0px;
    height: 24px;
    line-height: 20px;
}

.cart.orange .basket-tab {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
}

.cart.orange .gotoback.all {
    width: 100%;
    max-width: 100%;
    margin: 0px;
    margin-top: 24px;
    height: 46px;
}

.cart.orange .gotoback.all a {
    padding: 12px 16px;
    border: 1px solid var(--base-color);
    border-radius: var(--element-radius);
}

.cart.orange .gotoback.all a:hover {
    background-color: var(--base-color);
    color: #fff;
}

.cart.orange .gotoback.all a {
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    color: var(--base-color);
}

.cart.orange .gotoback.all a svg {
    float: right;
    line-height: 22px;
    margin-top: 5px;
}

.cart.orange .gotoback.all a svg path {
    stroke: var(--base-color);
}

.cart.orange .pay-methods__title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 16px;
    text-transform: none;
    color: #233550;
    margin-top: 16px;
    font-weight: 500;
}

.cart.orange .delivery-address {
    padding-top: 16px;
}

.cart.orange .pay-methods__item {
    display: block;
    padding: 18px;
    box-shadow: none;
    border: 1px solid rgba(190, 197, 204, 1);
    border-radius: 16px;
}

.cart.orange .order__info {
    margin-top: 10px;
    font-size: 12px;
    color: rgb(190, 197, 204);
    width: 100%;
    line-height: 16px;
    margin-bottom: 16px;
    font-weight: 500;
}

.cart.orange .pay-methods__item-bg {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cart.orange .pay-methods__item-bg:checked {
    background: linear-gradient(0deg, var(--base-color), var(--base-color)),
        linear-gradient(0deg, #FFFFFF, #FFFFFF);
    box-shadow: 0px 0px 4px 0px var(--new-accent-8, #FFF6ED);
    border: 1px solid var(--base-color)
}


.cart.orange .basket__title {
  font-weight: 500;
    font-size: 40px;
    line-height: 46px;
    color: rgb(18, 18, 18);
    margin-bottom: 23px;
}

.cart.orange .pay-methods__item-title {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 22px;
}

.cart.orange .pay-methods__item-text {
    width: 100%;
}

.cart.orange .pay-methods__point-pack {
    display: flex;
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    margin: 0px;
    box-shadow: inset 0px 0px 4.37676px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    float: right;
}

.cart.orange .pay-methods__item-bg.selected .pay-methods__item {
    box-shadow: 0px 0px 4px 0px var(--base-color)var(--new-accent-8, #FFF6ED);
    border: 1px solid var(--base-color)
}

.cart.orange .pay-methods__item-bg.selected .pay-methods__point-pack {
    border: 1px solid var(--base-color);
}

.cart.orange .pay-methods__item-bg.selected .pay-methods__item .pay-methods__item-title {
    color: var(--base-color);
}

.pay-methods__point {
    background: var(--base-color);
}

.cart.orange .safe-transaction {
    width: 100%;
    max-width: 150px;
    height: 28px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    background: rgba(17, 209, 94, 1);
    border-radius: 10px;
    line-height: 28px;
    text-align: center;
    color: white;
    margin-top: 10px;
}

.cart.orange .pay-methods__item-descript {
    font-size: 12px;
    line-height: 16px;
    color: rgba(121, 126, 132, 1);
    margin-top: 40px;
    font-weight: 500;
}

.cart.orange .btn--order {
    width: auto;
    max-width: 230px;
    height: auto;
    line-height: 46px;
/*    padding: 0px 16px 2px;*/
    border-radius: 8px;
    background: var(--base-color);
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    border: 0px solid white;
}

.cart.orange .text-soglasie {
    font-size: 12px;
    line-height: 16px;
    color: rgb(121, 126, 132);
    font-weight: 500;
    padding-top: 8px;
    height: 46px;
    font-weight: 500;
}

.cart.orange .text-soglasie a {
    color: rgb(121, 126, 132);
    border-bottom: 1px solid;
}

.cart.orange #soglasie+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.cart.orange #soglasie+label:hover::before {
    cursor: pointer;
    border: 1px solid var(--base-color) !important;
    box-shadow: 0px 0px 4px 0px var(--base-color)var(--new-accent-8, #FFF6ED);
}

.cart.orange #soglasie+label::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid rgba(224, 224, 224, 1);
    border-radius: 6px;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.cart.orange #soglasie {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.cart.orange #soglasie:checked+label::before {
    border: 1px solid var(--base-color) !important;
    box-shadow: 0px 0px 4px 0px var(--base-color);
    border-color: var(--base-color);
    background-color: white;
}

.cart.orange #soglasie:checked+label::after {
    content: " ";
    background: var(--base-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14'%3e%3cpath fill='none' d='M1.5 6.75607L6.4606 11.7126L16.5 1.6731' stroke='%23FF7F00' stroke-width='2.5'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14'%3e%3cpath fill='none' d='M1.5 6.75607L6.4606 11.7126L16.5 1.6731' stroke='%23FF7F00' stroke-width='2.5'/%3e%3c/svg%3e");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-repeat: no-repeat;
    mask-position: 5px center;
    mask-size: 12px 12px;
    width: 20px;
    height: 20px;
    position: absolute;
}

.event_success {
    padding-top: 30px;
}

.event_success .events-title,
.event_success .search-form {
    display: none;
}

.event_success .container .container {
    max-width: 100% !important;
    margin: 0px;
    padding: 0px;
}

.event-cards__elem .event-cards__part-top {
    cursor: pointer;
}

.event-cards__elem .event-cards__part-top picture img {
    transition: ease 1s;
    /* Время эффекта */
}

.event-cards__elem .event-cards__part-top:hover picture img {
    transform: scale(1.2);
    /* Увеличиваем масштаб */
}

.event_success .event__elem--show-more {
    display: flex !important;
}

.cart.orange .soglasie {
    display: flex;
    padding-left: 0;
    max-width: 500px;
    position: relative;
}

.cart.orange .text-soglasie {
    max-width: 325px;
    height: auto;
    padding-bottom: 8px;
}

.home-callback .text-muted.error,
.guest-form .text-muted.mt-3.error {
    border-radius: 8px;
    background: #FFEDF0;
    box-shadow: 0px 0px 4px 0px #FE002E;
    padding-top: 10px;
}

.guest-form .text-muted.mt-3.error {
    padding-bottom: 8px;
}

.form-check-input.check-error+label.form-check-label {
    background: none;
}

.cart.orange .checkbox-soglasie {
    height: 46px;
    padding-top: 12px;
    width: 22px;
    margin-right: 16px;
}

.cart.orange .js-validation.error .new-input__item {
    border: 1px solid red !important;
}

.cart.orange .desktop-hidden {
    display: none;
}

.bx-pagination .bx-pagination-container {
    text-align: center;
    position: relative
}

.bx-pagination .bx-pagination-container ul {
    margin: 0;
    list-style: none;
    display: flex;
    padding: 0px;
    border-radius: 15px;
}

.bx-pagination .bx-pagination-container ul li {
    margin: 0px
}

.bx-pagination .bx-pagination-container ul li span {
    -webkit-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    -moz-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    -ms-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    -o-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    padding: 0 8px;
    display: block;
    height: 34px;
    min-width: 34px;
    line-height: 34px;
    color: black;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 10px;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.bx-pagination .bx-pagination-container ul li a {
    text-decoration: none;
    display: block;
    border-radius: 16px;
    height: 34px;
    min-width: 34px;
    line-height: 34px;
    color: #444;
    vertical-align: middle;
}

.bx-pagination .bx-pagination-container ul li a:hover span {
    background: #dadada
}

.bx-pagination .bx-pagination-container ul li span,
.bx-pagination .bx-pagination-container ul li a {
    font-family: "Inter-medium";
}

.bx-pagination .bx-pagination-container ul li.bx-active span {
    color: white;
    background: var(--base-color);
}

.bx-pagination .bx-pagination-container ul li.bx-pag-all a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span {
    background: #fff;
    border: 2px solid #eff0f1;
    line-height: 28px;
    padding: 0 18px;
    color: #444;
}

.bx-pagination .bx-pagination-container ul li.bx-pag-all span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span {
    color: #aab1b4;
    background: #fff;
    border: 2px solid #eff0f1;
    line-height: 28px;
    padding: 0 18px;
}

.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span {
    background: #fff;
    border-color: #dadada;
    color: #000;
}

.bx-pagination .arrow-icon {
    width: 34px;
    height: 34px;
    display: inline-block;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #A5ADB8;
}

.bx-pagination .arrow-icon.active {
    background-color: black;
}

.bx-pagination .arrow-right {
    -webkit-mask: url(/local/templates/new_arena/components/bitrix/system.pagenavigation/orange/images/arrow_right.svg) no-repeat 50% 50%;
    mask: url(/local/templates/new_arena/components/bitrix/system.pagenavigation/orange/images/arrow_right.svg) no-repeat 50% 50%;
}

.bx-pagination .arrow-left {
    -webkit-mask: url(/local/templates/new_arena/components/bitrix/system.pagenavigation/orange/images/arrow_left.svg) no-repeat 50% 50%;
    mask: url(/local/templates/new_arena/components/bitrix/system.pagenavigation/orange/images/arrow_left.svg) no-repeat 50% 50%;
}

.bottom-cart__clear-label {
    color: var(--base-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    font-family: "Inter", "Roboto", sans-serif;
    letter-spacing: -0.32px;
}

.theme-orange .contact-page {
    margin: 0px;
    padding: 0px;
    box-shadow: none;
    border: 0px solid white;
    margin-left: 12px;
}

.theme-orange .contact-page .col-sm-6:first-child {
    padding: 40px;
    border-radius: 36px;
    gap: 16px;
    background: #F7F9FB;
}

.theme-orange .contact-page .col-sm-6 hr
{
    color: #E0E0E0;
}

.theme-orange .contact-page .contact-page__title-col
{
    font-family: "Inter-medium";
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: left;
    text-transform: none;
    color: var(--black-design);
}

.theme-orange .contact-page .contact-page__text-col {
    font-family: "Inter-medium";
    color: #797E84;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.32px;
    text-align: left;
}

.theme-orange .contact-page .contact-page__text-col a {
    font-family: "Inter-medium";
    white-space: nowrap;
}

.theme-orange .contact-page .home-callback {
    margin: 0px;
    padding: 40px;
    border-radius: 36px;
    gap: 16px;
}

.theme-orange .contact-page .home-callback #contacts {
    margin-top: 16px;
}

.theme-orange #formCheck {
    width: 22px;
    height: 22px;
    padding: 0px;
    margin-top: 4px;
    margin-right: 6px;
    margin-left: -6px;
    cursor: pointer;

}

.theme-orange #contacts #formCheck {
    margin-top: 4px;
    margin-right: 6px;
}

.theme-orange #formCheck:checked {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    flex-grow: 0;
    border-radius: 5px;
    background: white;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    border: 1px solid var(--base-color) !important;
    box-shadow: 0px 0px 4px 0px var(--base-color);
    border-color: #0b76ef;
}

.theme-orange #formCheck:checked:after {
    content: " ";
    background: var(--base-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14'%3e%3cpath fill='none' d='M1.5 6.75607L6.4606 11.7126L16.5 1.6731' stroke='%23FF7F00' stroke-width='2.5'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14'%3e%3cpath fill='none' d='M1.5 6.75607L6.4606 11.7126L16.5 1.6731' stroke='%23FF7F00' stroke-width='2.5'/%3e%3c/svg%3e");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center 3px;
    mask-repeat: no-repeat;
    mask-position: center 3px;
    mask-size: 12px 12px;
    width: 20px;
    height: 20px;
    position: absolute;
}

.theme-orange .form-check-inline {}

.theme-orange .form-check-label {
    width: 90%;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #797E84;
}

.theme-orange .contact-page .home-callback #contacts .js-validation {
    margin-bottom: 16px;
}


.home-callback {
    box-shadow: none;
    background: #F7F9FB;
    padding: 40px;
    border-radius: 24px;
}

.home-callback .home-callback__title {
    font-size: 22px;
    line-height: 32px;
    color: #121212;
}

#contacts .text-muted {
    position: relative;
    top: 0px;
    bottom: 0px;
    margin: 0px;
    max-width: 100%;
    margin-top: 10px;
}

.home-callback .text-muted {
    font-size: 12px;
    line-height: 16px;
    color: #797E84;
}

.home-callback .text-muted a {
    color: #797E84;
    text-decoration: underline;
}

.home-callback .text-muted a:hover {
    text-decoration: none;
}

form input {
    border: 1px solid #BEC5CC;
    height: 46px;
}

.home-callback form input {
    margin: 0 0 16px;
    font-size: 16px;
}

.js-validation {
    padding-right: 4px;
}

.home-callback form .pr-0 {
    padding-right: 0px;
}

.btn--my-orange {
    width: 100%;
    height: 46px;
    border-radius: 8px;
    border: 0px;
    font-size: 16px;
    background: var(--base-color);
    line-height: 32px;
    text-align: center;
}

.btn--my-orange:hover {
    background: var(--base-color);
}

.col-button {
    padding-right: 0px;
}

.text-muted.mobile {
    display: none;
}

.cart.orange .soglasie.error {
    border-radius: 8px;
    background: #FFEDF0;
    box-shadow: 0px 0px 4px 0px #FE002E;
}

.cart.orange .soglasie.error .checkbox-soglasie {
    margin-left: 12px;
}

.cart.orange .soglasie.error #soglasie+label::before {
    border: 1px solid #FE002E;
    box-shadow: 0px 0px 4px 0px #FE002E;
}

.theme-orange header svg:not(.menu-icon) {
    fill: var(--base-color);
}

.theme-orange header svg:not(.menu-icon) path {
    stroke: var(--base-color);
}

.theme-orange .information .cont-text {
    color: var(--dark-design);
    font-family: "Inter", "Roboto", sans-serif;
    font-size: 12px;
    line-height: 16px;
}

.theme-orange .information {
    height: auto;
    margin-top: 16px;
    width: 100%;
    max-width: 1090px;
    top: auto;
    bottom: 12px;
    border-radius: 16px;
    background: #ffffff;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    border: none;
    box-shadow: 0px 0px 7px 0px #0000001A;
    z-index: 1000000;
}

.theme-orange .information .cont-text br {
    display: none;
}

.theme-orange .information .cont-close {
    width: 100px;
    margin-right: -30px;
    text-align: center;
}

.theme-orange .information .close {
    margin: 0px;
}

.theme-orange .information .close svg {
    fill: none !important;
    min-width: 16px;
}

.home-callback .text-muted {
    min-width: 380px;
    margin-top: 20px;
    position: absolute;
    float: left;
    left: 0px;
    margin-left: -425px;
    top: 40px;
    max-width: 400px;
}

.cart.orange .basket-tab__col-remove svg path {
    stroke: var(--base-color);
}

.cart.orange .col-count-2 {
    width: calc(100%/2);
}

.cart.orange .col-count-3 {
    width: calc(100%/3);
}

.cart.orange .col-count-5 {
    width: calc(100%/3);
}

.cart.orange .col-count-5.last {
    width: calc(100%/2);
}

.cart.orange .col-count-7 {
    width: calc(100%/3);
}

.cart.orange .col-count-7.last {
    width: 100%;
}

.home-callback #contacts input {
    margin: 0px;
}

.theme-orange .otzyvy {
    max-width: 808px;
    margin: 0px auto;
}

.theme-orange .otzyvy .container {
    margin: 0px;
    padding: 0px;
}

.theme-orange .otzyvy .container .reviews-row {
    max-width: 808px;
    margin: 0px auto;
}

.theme-orange .otzyvy #reviews {
    margin-top: 24px;
}

.theme-orange .otzyvy #reviews .col-12 {
    display: flex;
    margin-top: 16px;
    padding: 0px;
}

.theme-orange .otzyvy #reviews .row {
    max-width: 100%;
    margin: 0px auto;
}

.theme-orange .otzyvy #reviews .text-muted {
    margin: 0px;
    position: relative;
    padding-top: 5px;
}

.theme-orange .otzyvy .home-callback .text-muted {
    top: 0px;
}

.theme-orange .otzyvy #reviews .form-check-label br {
    display: none;
}

.theme-orange .otzyvy #reviews .form-check-inline {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0px;
}

.theme-orange .otzyvy #reviews .btn {
    margin-left: -16px;
    height: 46px;
    line-height: 46px;
}

.contact-page .home-callback .text-muted.error {
    border-radius: 8px;
    background: #FFEDF0;
    box-shadow: 0px 0px 4px 0px #FE002E;
    padding-top: 10px;
    margin: 10px;
    margin-left: 14px !important;
    margin-right: 20px !important;
    max-width: calc(100% - 24px) !important;
    padding-bottom: 10px;
}

#reviews .text-muted.error {
    max-width: auto;
    min-width: auto;
    margin-right: 30px !important;
}

#reviews .form-check-label {
    width: 93%;
}

#reviews .row .js-validation {
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.showmobile {
    display: none;
}

footer .rid {
    padding-top: 20px;
    color: var(--base-color) !important;
}

footer .rid div {
    color: var(--base-color) !important;
}

#MAP {
    border-radius: 24px;
    overflow: hidden;
}

/*.loading {
    width: 48px;
    height: 48px;
    border: 5px solid var(--base-color);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
*/

/*.home-callback.loading:before {
    content: '';
    background: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%
    border: 5px solid var(--base-color);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}*/

.information .close svg path {
    stroke: var(--base-color);
}

.theme-orange .home-callback
{
  padding: 40px 40px 30px;
}

.theme-orange .home-callback .text-muted
{
    position: absolute;
    max-width: auto;
    left: 0px;
    margin-top: 30px;
}

.theme-orange input.search-form__search-input
{
    height: 48px;
}

.theme-orange .content-site .row .col-12 h1:not(.basket__title)
{
      text-align: center !important;
      margin-bottom: 0px;
}

.theme-orange .content-site .row .col-12 .cart.orange h1
{
      text-align: left !important;
      margin-bottom: 20px;
}

.theme-orange .search-form
{
    margin: 30px 0 37px;
    gap: 8px;
}

.theme-orange .search-form .search-form__row-select
{
    gap: 8px;
}

.theme-orange .home-callback .text-muted
{
    position: relative;
    max-width: auto;
    top: 0px;
    left: 0px;
    margin: 0px;
}

form.loading:before,
.cart_del.loading:before,
.search-form.loading:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 5px solid var(--base-color);
    border-bottom-color: transparent;
    background: none;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.bottom-cart__info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-orange .content-site .row .col-12 .cart.orange h1
{
    font-family: Inter-medium, sans-serif;
    text-align: left !important;
    display: block;
    margin-bottom: 20px;
}

.theme-orange .cart-success .after-text
{
    font-size: 12px;
    line-height: 20px;
    color: var(--dark-design);
    padding: 16px 40px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 1400px) {
    .home-callback .form-check.form-check-inline
    {
        margin-left: -10px;
        margin-right: 1.5em;
    }
}

@media screen and (min-width: 960px) {
    .contact-page .col-sm-6 {
        width: calc(50% - 12px);
    }

    .contact-page .col-sm-6:first-child {
        margin-right: 12px;
    }

    .event_success .container .container .event-cards__elem:nth-child(4) {
        display: none !important;
    }

    #container
    {
        min-height: 450px;
    }
}

@media screen and (max-width: 1400px) {
    .home-callback .text-muted {
        margin-left: -375px;
    }

    .cart.orange .soglasie {
        max-width: 100%;
        width: 100%;
        position: relative;
        margin-bottom: 14px;
        margin-top: 10px;
        margin-left: 11px;
    }

    .home-callback .text-muted.error {
        min-width: 300px;
        max-width: 350px;
        padding-bottom: 10px;
    }

    .home-callback .text-muted:has(.error) {
        min-width: 300px;
        max-width: 350px;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 1200px) {
    .other_form .col-sm-9 {
        width: 100%;
    }

    .home-callback .text-muted {
        position: relative;
        margin: 0px;
        top: 8px;
    }

    .cart.orange .row.align-items-end {
        margin: 0px;
    }

    .cart.orange .row.align-items-end .order__info {
        margin: 0px;
        padding: 0px;
        text-align: left;
    }

    .cart.orange .row.align-items-end .col-md-4 {
        margin: 0px;
        padding: 0px;
    }

    .home-callback .text-muted.error {
        min-width: 400px;
        max-width: 400px;
        padding-bottom: 0px;
        margin-top: -15px;
        margin-left: 12px;
    }

    .theme-orange .home-callback
    {
        padding: 40px;
    }

    .theme-orange .home-callback .text-muted
    {
        position: relative;
        max-width: auto;
        left: 0px;
        margin-top: 0px;
    }

}

@media screen and (max-width: 960px) {

    .event_success .event-cards__elem
    {
        max-width: calc((100% / 2) - var(--margin-events) * 1 / 6) !important;
        display: flex !important;
    }
}

@media screen and (max-width: 860px) {

    .home-callback .text-muted {
        top: 0px;
    }

    .theme-orange .otzyvy #reviews .col-12 {
        display: block;
    }

    .theme-orange .otzyvy #reviews .col-12 .col-6 {
        width: 100%;
    }

    .theme-orange .otzyvy #reviews .btn {
        margin: 0px;
        margin-top: 16px !important;
    }

    .theme-orange .otzyvy #reviews .col-12 .col-6 {
        max-width: 100%;
    }

    .home-callback .text-muted {
        min-width: auto;
    }

    .theme-orange .home-callback
    {
        padding: 16px;
    }

    .advantages.orange .row>.col-md-4 {
        width: 100%;
    }

    .advantages.orange .row .svg-advantages {
        position: relative;
        width: 72px;
        height: 72px;
        top: 0px;
        right: 0px;
        left: 0px;
        margin-bottom: 10px;
    }

    .advantages.orange .row .svg-advantages svg {
        width: 72px;
        height: 72px;
    }

    .advantages.orange .row>.col-md-4:first-child .block-advantage__content {
        display: block;
    }

    .advantages.orange .advantages__title {
        font-size: 22px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: -0.02em;
        text-align: left;
    }

    .theme-orange {
        overflow: hidden;
        overflow-y: auto;
    }

    .scheme .map:not(.map-guest-form):before {
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 10000;
    }

    .theme-orange .home-callback .text-muted
    {
        margin-top: 12px;
    }        

    .theme-orange .cart-success .after-text
    {
        padding: 16px 0px;
    }
}

@media screen and (max-width: 767px) {
    .theme-orange .home-callback .text-muted {
        padding-bottom: 8px;
    }

    .home-callback--empty-events .home-callback__block-right {
        padding: 24px;
    }

    .home-callback--empty-events .home-callback__block-left {
        margin-bottom: 24px;
    }

    .home-callback.home-callback--empty-events h3.home-callback__title {
        font-size: 22px;
        line-height: 26px;
    }

    .home-callback.home-callback--empty-events .home-callback__text {
        font-size: 14px;
        line-height: 20px;
    }

    h3.home-callback-form__title {
        font-size: 18px;
        line-height: 26px;
    }

    .advantages.orange {
        padding-bottom: 30px;
    }

    .advantages.orange .advantages__title {
        font-size: 22px;
        margin-bottom: 10px;
        padding-top: 30px;
    }

    .advantages.orange .row>.col-md-4 .block-advantage:last-child {
        margin-top: 16px;
    }

    .advantages.orange .row>.col-md-4 .block-advantage:last-child .block-advantage__content {
        display: block;
    }

    .advantages.orange .row>.col-md-4 {
        padding: 20px;
        margin: 8px 12px;
        max-width: calc(100% - 24px);
    }

    .block-advantage .block-advantage__title {
        font-size: 16px;
    }

    .block-advantage .block-advantage__title span {
        background: url("/local/templates/new_arena/themes/orange/img/svg/down.svg") no-repeat center center;
        width: 16px;
        height: 16px;
        position: absolute;
        right: 0px;
        margin-right: 20px;
        margin-top: -6px;
        cursor: pointer;
        padding: 20px;
    }

    .block-advantage.active .block-advantage__title span {
        transform: rotate(180deg);
    }

    .block-advantage .block-advantage__content {
        font-size: 12px;
        line-height: 16px;
        margin-top: 10px;
        display: none;
    }

    .block-advantage.active .block-advantage__content {
        display: block;
    }

    .advantages.orange .row>.col-md-8 .block-advantage {
        width: calc(100% - 24px);
        margin: 8px 12px;
        padding: 16px;
    }

    .advantages.orange .row>.col-md-8 .block-advantage.mb-0 {
        margin-bottom: 8px !important
    }

    .home-callback .row {
        display: block;
    }

    .home-callback .row .home-callback__title {
        margin-bottom: 12px;
    }

    .form-check {
        margin-bottom: 0px;
    }

    .theme-orange .bottom-cart .bottom-cart__button--mobile-text {
        display: none;
    }

    .theme-orange .bottom-cart .wrapper.container.wrapper-bottom-cart {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        gap: 0;
        max-width: 100% !important;
        padding: 0 12px 0 0;
    }

    .theme-orange .bottom-cart .bottom-cart__clear-label {
        display: none;
    }

    .theme-orange .bottom-cart .cart-button .bottom-cart__clear {
        display: none;
    }

    .theme-orange .bottom-cart .bottom-cart__center {
        flex-wrap: nowrap;
    }

    .theme-orange .bottom-cart .bottom-cart__button {
        margin-bottom: 0;
        width: 100%;
    }

    .theme-orange .bottom-cart .cart-button {
        max-width: 120px;
    }

    .theme-orange .bottom-cart .circle-button.circle-button--cross.bottom-cart__clear-icon {
        width: 32px;
        margin-left: 0;
    }

    .theme-orange .bottom-cart .bottom-cart__center .bottom-cart__block {
        padding-left: 8px;
        padding-right: 8px;
        height: 40px;
    }

}

@media screen and (max-width: 700px) {
    .theme-orange .bottom-cart .bottom-cart__dop_service .bottom-cart__dop_service__text-count,
    .theme-orange .bottom-cart .bottom-cart__dop_service .bottom-cart__dop_service__price{
        padding: 1px 10px 1px 10px;
        font-size: 14px;
    }

    .theme-orange .bottom-cart .bottom-cart__dop_service .bottom-cart__dop_service__price{
        display: flex;
        justify-content: center;
    }

    .bottom-cart__info{
        flex-direction: column;
    }

}

@media (max-width: 680px) {
    div.news-detail img {
        height: auto !important;
        margin: 1% !important;
        width: 98% !important;
    }
}

@media only screen and (max-width: 860px) {
    .theme-orange .o-klube {
        margin: 0px 12px;
    }

    .home-news {
        margin-right: 12px;
    }

    .home-news.mini {
        margin: 0px 12px;
    }

    .cart-success.orange h1 {
        font-size: 20px;
        line-height: 23px;
        display: flex;
        color: #121212;
    }

    .cart-success.orange h1 .icon-good {
        width: 16px;
        height: 16px;
        margin-right: 12px;
        margin-top: 4px;
    }

    .cart-success.orange .success-block {
        padding: 24px;
    }

    .cart-success.orange .success-block .success-block-header {
        font-size: 18px;
        line-height: 26px;
    }

    .cart-success.orange .success-block .success-block-header .col {
        flex: auto;
    }

    .cart-success.orange .success-block .success-block-breadcrumb ul li {
        padding: 3px 5px;
        font-size: 10px;
        line-height: 14px;
        white-space: nowrap;
    }

    .cart-success.orange .success-block .success-block-breadcrumb ul li::after {
        width: 16px;
        height: 16px;
        margin-left: 8px;
    }

    .cart-success.orange .success-block .success-block-fan-id {
        width: 100%;
        padding: 10px;
        margin-right: 6px;
    }

    .cart-success.orange .success-block .success-block-fan-id .logo-fan-id {
        margin-right: 6px;
    }

    .cart-success.orange .success-block .success-block-fan-id .content-fan-id {
        line-height: 32px;
    }

    .cart-success.orange .success-block .success-block-fan-id .content-fan-id a {
        font-size: 12px;
        line-height: 16px;
    }

    .cart-success.orange .success-block .success-block-fan-id .content-fan-id span {
        width: 8px;
        line-height: 34px;
    }

    .cart-success.orange .success-block .success-block-content {
        font-size: 12px;
        line-height: 16px;
        text-align: left;
    }

    /*   .content-site .container:nth-child(2),
    .content-site .container:nth-child(2) .row,
    .content-site .container:nth-child(2) .col-12,
    .content-site .container:nth-child(2) .col-12 .container
    {
        margin: 0px;
        padding: 0px;
        width: 100% !important;
        max-width: 100% !important;
    }*/
    .news-detail {
        padding: 0px 12px !important;
    }

    .back-all-news {
        margin: 0px;
        padding: 0px !important;
        margin-bottom: 16px;
    }

    .back-all-news a {
        position: relative;
    }

    .news-detail {
        font-size: 14px;
        line-height: 20px;
    }

    .news-detail h1 {
        font-size: 22px !important;
        line-height: 26px !important;
        text-align: left;
    }

    .news-detail h2 {
        font-size: 18px;
        line-height: 26px;
    }

    .news-detail blockquote {
        font-size: 14px;
        line-height: 20px;
    }

    .home-callback {
        border: 0px solid black;
        padding: 16px;
    }

    .home-callback .js-validation,
    .home-callback form .pr-0 {
        padding-right: 12px;
    }

    .theme-orange .form-check {
        padding: 0px;
        margin: 0px;
    }

    .theme-orange .home-callback .form-check-label {
        width: 85%;
        margin: 0px;
        padding: 0px !important;
        font-size: 10px;
        font-weight: 500;
        line-height: 14px;
        letter-spacing: -0.02em;
        text-align: left;
    }

    .theme-orange .home-callback #formCheck {
        margin-left: 10px;
        margin-right: 10px;
        width: 18px;
        height: 18px;
        padding: 0px;
        margin-top: 5px;
    }

    .theme-orange #formCheck:checked::after {
        mask-position: center 1px;
        mask-size: 12px 12px;
        width: 16px;
        height: 16px;
        position: absolute;
    }

    .home-callback .text-muted {
        margin: 5px auto 10px;
    }

    .home-callback .text-muted.mobile {
        display: none;
    }

    .col-button {
        padding-right: 12px;
    }

    .home-callback .home-callback__title {
        margin-bottom: 15px;
    }

    /*.text-muted - класс серого стиля текста. Ему нельзя делать none*/
    /*{*/
    /*    display: none;*/
    /*}*/
    .text-muted.mobile {
        display: block;
    }

    .home-callback .col.col-sm-4,
    .home-callback .col.col-sm-8 {
        width: 100%;
    }

    .not-mobile {
        display: none;
    }

    .js-validation,
    .col-button {
        width: 100%;
    }

    .other_form {
        margin-bottom: 15px;
    }

    .home-news .card-title {
        height: 44px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

@media (max-width: 960px) {
    .home-news {
        margin-right: 12px;
    }

    .home-news.mini {
        margin: 0px 12px;
    }

    .theme-orange footer {
        padding: 40px;
    }

    .theme-orange footer .menu-block {
        width: 50%;
        margin: 0px;
        padding: 0px;
        text-align: left;
    }

    .theme-orange footer .menu-block:first-child ul {
        margin-left: 12px;
    }

    .theme-orange footer ul li a {
        font-size: 12px;
        line-height: 16px;
    }

    .theme-orange footer ul li .whatsapp-button {
        font-size: 24px;
    }

    .theme-orange footer .unmobile {
        display: none;
    }

    .theme-orange footer .col-xs-12.col-sm-3.showmobile {
        margin: 35px auto;
    }

    .showmobile {
        display: block;
    }

    .whatsapp-button {
        font-size: 16px;
    }

    .theme-orange footer .information-block {
        margin: 12px;
        padding: 0px;
        text-align: left;
        margin-bottom: 20px;
    }

    .theme-orange footer .payments {
        margin: 10px auto 30px;
    }

    .theme-orange footer .pay-logos {
        margin-top: 30px;
    }

    .theme-orange footer .copyright,
    .theme-orange footer .rid {
        font-size: 10px;
        line-height: 14px;
        text-align: justify;
    }

    .theme-orange footer {
        box-shadow: none;
    }

    .theme-orange .go-top {
        font-size: 12px;
        line-height: 16px;
        margin-top: 50px;
        text-align: left;
    }

    footer .rid {
        padding-top: 0px;
        color: var(--base-color) !important;
        margin-top: -30px;
    }

    .theme-orange .go-top span {
        margin-top: -1px;
    }

    .cart.orange #cart {
        display: block;
    }

    .cart.orange .container.basket {
        margin-bottom: 8px;
    }

    .cart.orange .total__basket,
    .cart.orange .container.order .order__title {
        font-size: 18px;
        line-height: 26px;
    }

    .cart.orange .order__privacy-policy {
        font-size: 10px;
        line-height: 14px;
    }

    .mobile-none {
        display: none;
    }

    .pay-methods__list .col-xl-6 {
        margin-bottom: 12px;
    }

    .pay-methods__list .col-xl-6:last-child {
        margin-bottom: 0px;
    }

    .cart.orange .pay-methods__item-title {
        font-size: 14px;
        line-height: 20px;
    }

    .cart.orange .pay-methods__item-descript {
        font-size: 10px;
        line-height: 14px;
        text-align: left;
    }

    .cart.orange .order__info {
        font-size: 10px;
        line-height: 14px;
        margin-bottom: 14px;
    }

    .cart.orange .container.basket,
    .cart.orange .container.order {
        padding: 24px;
    }

    .cart.orange .basket__event-title,
    .cart.orange .gotoback.all a {
        font-size: 14px;
        line-height: 20px;
    }

    .basket__event-preview {
        flex-direction: unset !important;
    }

    .cart.orange .basket__adress {
        width: 100%;
    }

    .basket__item .basket__event-img {
        background-size: 100% 100% !important;
        background-position: auto !important;
    }

    .cart.orange .btn--order {
        width: 100%;
        max-width: 100%;
        height: 40px;
        line-height: 46px;
        padding: 0px 14px;
        border-radius: 8px;
        background: var(--base-color);
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
        border: 0px solid white;
    }

    .cart.orange .basket__title {
        font-weight: 500;
        font-size: 20px;
        line-height: 23px;
        color: rgb(18, 18, 18);
        margin-bottom: 23px;
    }

    .cart.orange .mobile-hidden {
        display: none;
    }

    .cart.orange .desktop-hidden {
        display: block;
    }

    .cart.orange .count-row-basket {
        font-size: 10px;
        line-height: 14px;
        width: 100%;
        font-weight: 500;
        margin-top: 16px;
        color: rgba(121, 126, 132, 1);
        cursor: pointer;
    }

    .cart.orange .count-row-basket span {
        float: right;
        color: var(--base-color);
    }

    .cart.orange .count-row-basket span svg {
        margin-left: 2px;
    }

    .cart.orange .count-row-basket span svg path {
        stroke: var(--base-color);
    }

    .cart.orange .count-row-basket.selected span svg {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .cart.orange .basket-tab__col-title--ticket,
    .cart.orange .basket-tab__col-count--ticket {
        font-size: 10px;
        line-height: 14px;
        font-weight: 500;
    }

    .cart.orange .basket-tab__col-price--ticket {
        font-weight: 600;
        line-height: 1.35;
        text-align: right;
        text-transform: uppercase;
        color: #233550;
        white-space: nowrap;
        width: 100%;
        text-align: left;
        font-size: 12px;
        line-height: 16px;
    }

    .cart.orange .basket-tab__col-remove {
        padding-right: 24px;
    }

    .cart.orange .cart_del {
        float: right;
    }

    .otzyvy .home-callback {
        padding: 24px;
    }

    .home-callback input,
    .home-callback textarea {
        font-family: "Inter-medium";
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        text-align: left;
    }

    .home-callback .home-callback__title {
        font-family: "Inter-medium";
        font-size: 18px;
        line-height: 26px;
        letter-spacing: -0.02em;
        text-align: left;
    }

    .theme-orange .otzyvy #reviews {
        margin-top: 14px;
    }

    .otzyvy .home-callback textarea {
        height: 120px;
    }

    .home-callback form input {
        font-size: 14px;
    }

    .home-callback button {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        text-align: center;
    }

    .theme-orange .o-klube #players .container .tc {
        width: calc(50% - 12px);
        margin: 6px;
        padding: 0px;
    }

    .theme-orange .o-klube .buy-ticket .btn {
        width: 100%;
        height: 40px;
        line-height: 24px;
    }

    .theme-orange .o-klube {
        margin: 0px;
    }

    .contact-page .row .col-6 {
        width: 100%;
    }

    .theme-orange .contact-page .col-sm-6:first-child {
        padding: 24px;
        padding-top: 20px;
        margin: 12px;
        width: calc(100% - 24px);
    }

    .theme-orange .contact-page .col-sm-6:last-child {
        width: 100%;
    }

    .theme-orange .contact-page .contact-page__title-col {
        font-size: 18px;
        font-weight: 500;
        line-height: 26px;
        letter-spacing: -0.02em;
        text-align: left;
    }

    .theme-orange .contact-page .contact-page__text-col {
        font-size: 16px;
        font-weight: 500;
        line-height: 22px;
        letter-spacing: -0.02em;
        text-align: left;
    }

    hr {
        border-top: 2px solid;
        color: #E0E0E0;
    }

    .theme-orange .contact-page .home-callback {
        padding: 24px;
    }

    .contact-page .home-callback button {
        height: 40px;
    }

    .cart.orange {
        margin-left: -4px;
        margin-right: -4px;
    }

    .cart.orange>.container {
        margin: 0px;
        padding: 0px;
    }

    .cart.orange .container.basket {
        min-width: 100%;
        margin: 0px;
        margin-bottom: 8px;
    }

    .cart.orange .basket__item {
        min-width: 100%;
    }

    .cart.orange #text {
        height: 80px;
    }

    .cart.orange .new-input__item {
        font-size: 14px;
        height: 40px;
        padding: 10px 14px;
        border-radius: 8px;
        border: 1px;
        gap: 10px;
        border: 1px solid var(--border-color);
    }

    .cart.orange .pay-methods__item {
        padding: 12px;
        border-radius: 16px;
    }

    .cart.orange .text-soglasie {
        font-size: 10px;
        font-weight: 500;
        line-height: 14px;
        letter-spacing: -0.02em;
        text-align: left;
        height: auto;
    }

    .cart.orange #soglasie+label::before {
        width: 18px;
        height: 18px;
    }

    .cart.orange .checkbox-soglasie {
        height: inherit;
        padding-top: 12.5px;
        width: 18px;
        margin-right: 24px;
        padding-left: 12px;
    }

    .cart.orange .soglasie {
        margin-bottom: 14px;
        padding-bottom: 0;
        margin-left: 0;
    }

    .cart.orange .pay-methods__point-pack {
        width: 18px;
        height: 18px;
    }

    .pay-methods__point {
        width: 10px;
        height: 10px;
    }

    .home-callback .text-muted.error {
        min-width: calc(100% - 28px);
        max-width: calc(100% - 28px);
        padding-bottom: 0px;
        margin-top: -15px;
        margin-left: 14px;
        margin-bottom: 20px;
    }

    .cart.orange #soglasie:checked+label::after {
        mask-position: 3px center;
        width: 18px;
    }

    .cart-success.orange h1 {
        font-size: 20px !important;
        font-weight: 600;
        line-height: 23px !important;
        letter-spacing: -0.02em;
        text-align: left;
    }

    .cart-success.orange .container {
        max-width: 100% !important;
    }

    .event_success {
        padding-top: 30px;
    }

    .event_success .container h2 {
        font-size: 22px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: -0.02em;
        text-align: left;
    }

    .event_success .container .container .event-cards__elem:nth-child(4) {
        display: block;
    }

    .event__elem--show-more.event-cards__elem {
        background: var(--base-color);
        border-radius: 10px;
        height: 44px;
    }

    .theme-orange .o-klube.orange.home-page {
        margin: 0px 12px;
    }

    #MAP {
        margin-top: 12px;
    }

    .guest-form .text-muted .form-check {
        display: block;
        min-height: 1.5rem;
        padding-left: 15px;
        margin-bottom: .125rem;
    }

    .guest-form #formCheck,
    .guest-form #formCheck:checked {
        width: 18px;
        height: 18px;
        margin-right: 0px;
        margin-top: 6px;
    }

    .theme-orange #formCheck:checked::after {
        mask-position: center 2px;
        mask-size: 12px 12px;
        width: 16px;
        height: 16px;
        position: absolute;
    }

    #reviews .form-check-label {
        width: 90%;
    }

    .theme-orange .contact-page .contact-page__text-col a {
        white-space: normal;
    }

}

@media (max-width: 786px) {
    .container h1 {
        margin: 0px !important;
    }
}

@media (max-width: 520px) {
    .home-callback .text-muted.error {
        min-width: calc(100% - 28px);
        max-width: calc(100% - 28px);
        padding-bottom: 0px;
        margin-top: -15px;
        margin-left: 14px;
        margin-bottom: 20px;
    }

    .theme-orange .bottom-cart .bottom-cart__dop_service .bottom-cart__dop_service__text-count,
    .theme-orange .bottom-cart .bottom-cart__dop_service .bottom-cart__dop_service__price{
        font-size: 10px;
        border: 0px;
    }

    .guest-form #formCheck,
    #reviews #formCheck {
        margin-top: 16px;
    }

    #reviews .form-check-label {
        width: 80%;
        padding-bottom: 8px !important;
    }

    .guest-form #formCheck,
    .guest-form #formCheck:checked {
        margin-top: 16px;
    }

    .theme-orange .o-klube.orange.home-page h3,
    .theme-orange .o-klube.orange.home-page p {
        font-size: 12px;
        font-weight: 500;
        line-height: 16px;
        letter-spacing: -0.02em;
        text-align: left;
    }

    .theme-orange .o-klube.orange.home-page h3 {
        margin-bottom: 0px;
    }

    .o-klube.orange .container-text {
        height: 80px;
    }

    .o-klube.orange .container-text .container {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}

@media (max-width: 450px) {
    .guest-form #formCheck {
        margin-top: 23px;
    }

    .guest-form #formCheck,
    .guest-form #formCheck:checked {
        margin-top: 23px;
    }
}

@media (max-width: 420px) {
    .cart.orange .checkbox-soglasie {
        height: inherit;
        padding-top: 18px;
    }

    .cart-success.orange .success-block .success-block-fan-id .content-fan-id {
        line-height: 30px;
    }

    .cart-success.orange .success-block .success-block-fan-id .content-fan-id a {
        font-size: 10px;
    }
}

@media (max-width: 1080px) {
    div.news-detail img {
        max-width: 100% !important;
        height: auto !important;
        width: 100%;
        object-fit: cover;
    }
}
