:root {
    --utma-primary-color: #EB3808;
    --utma-primary-color-darker: #b62c06;
    --utma-primary-color-text: white;
    --utma-primary-color-text-shadow: 1px 1px 3px white; /* If font visibility is low then use 1px 1px 3px #000000; */
    --utma-border-radius: 3px;
    --utma-primary-color-border: 1px solid black;
    --utma-primary-color-text-shadow: 1px 1px 5px white;
    --utma-primary-font: "Oswald", serif;
}
input[type='checkbox'] {
    accent-color:var(--utma-primary-color);
}
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}
@keyframes new-movement {
    0%   {transform:rotate(0deg)}
    33%  {transform:rotate(20deg)}
    66%  {transform:rotate(-20deg)}
    100% {transform:rotate(0deg)}
}
.block {
    display:block;
}
.new {
    position:relative;
    transition:0.3s all;
    box-shadow: 1px 1px 8px 0px var(--utma-primary-color) !important;
}
.new::before {
    position: absolute;
    content: "new";
    top: 12px;
    right: 2px;
    font-size: 11px;
    text-transform: uppercase;
    color: white !important;
}
.new-animation::before {
    animation-name:new-movement;
    animation-duration: 0.5s;
}
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    min-width: 150px;
}
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: -1px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
[dir="rtl"] .checkmark {
    right:0;
    left:auto;
}
.container:hover input~.checkmark {
    background-color: #ccc;
}
.container input:checked~.checkmark {
    background-color: var(--utma-primary-color);
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container input:checked~.checkmark:after {
    display: block;
}
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid var(--utma-primary-color-text);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* iOS style switch with animation START */
.inactiveMixin {
    content: "";
    position: absolute;
    display: block;
}

.beforeAnimation {
    transition: .2s cubic-bezier(.24, 0, .5, 1);
}

.afterAnimation {
    box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, .04), 0 4px 9px hsla(0, 0%, 0%, .13), 0 3px 3px hsla(0, 0%, 0%, .05);
    transition: .35s cubic-bezier(.54, 1.60, .5, 1);
}
.toggleWrapper-main {
    display:flex;
    gap:10px;
    align-items:center;
}
.toggleWrapper-main span {
    line-height:14px;
    font-size:14px;
    display:block;
    color: white;
}
.toggleWrapper-main .inactive {
    opacity:0.3;
    transition:0.3s all;
}
.toggleWrapper {
    border-radius: 5px;
    max-width: 700px;
    box-sizing: border-box;
    transition: 0.3s all;
    padding-top:5px;
}
@media only screen and (max-width: 950px) {
    .toggleWrapper {
        zoom:0.8;
        transition: 0.3s all;
    }
    .toggleWrapper-main span {
        line-height:12px;
        font-size:12px;
    }
}
.toggleWrapper input, .toggleWrapper .mobileToggle
{
    opacity: 0;
    position: absolute;
}
.toggleWrapper label {
    position: relative;
    display: inline-block;
    user-select: none;
    transition: .4s ease;
    height: 30px;
    width: 50px;
    border: 1px solid #e4e4e4;
    border-radius: 60px;
}
.toggleWrapper input.mobileToggle + label:before {
    content: "";
    position: absolute;
    display: block;
    transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    height: 32px;
    width: 51px;
    top: -1px;
    left: -2px;
    border-radius: 30px;
}
.toggleWrapper input.mobileToggle:checked + label:before {
    background: #2ecc71;
    transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
}
.toggleWrapper input.mobileToggle + label:after {
    content: "";
    position: absolute;
    display: block;
    box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
    transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    background: whitesmoke;
    height: 29px;
    width: 29px;
    top: 0px;
    left: 0px;
    border-radius: 60px;
}
.toggleWrapper input.mobileToggle:checked + label:after {
    left: 20px;
}
/* iOS style switch with animation END */
a {
    cursor: pointer;
    transition: 0.3s all;
    text-decoration: none;
}
.like-filter
{
    filter: sepia(56%) saturate(3769%) hue-rotate(13deg) brightness(101%) contrast(104%);
    transition:0.3s all;
}
.btn-primary-small {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 17px;
    text-align: center;
    color: var(--utma-primary-color-text);
    background: var(--utma-primary-color);
    padding: 9px 9px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    transition: 0.3s all;
    border-radius: var(--utma-border-radius);
    border: var(--utma-primary-color-border);
}
.btn-primary-small:disabled {
    background: grey;
    cursor: no-drop;
    color: black;
    transition: 0.3s all;
    opacity: 0.7;
}
.login-red-text {
    color: #ff2c2c;
    text-shadow: 2px 1px #000000;
    font-size: 18px;
    font-weight: 900;
    padding-top: 15px;
    display: block;
}
@media screen and (max-width: 550px) {
    .login-red-text {
        font-size: 14px;
        font-weight: 600;
        padding-top: 10px;
        display: block;
        line-height: 17px;
    }
}

.header-betting {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    background: #080808;
    border: 1px solid var(--utma-primary-color);
    padding: 8px 30px;
    display: flex;
    gap: 33px;
    justify-content: center;
    align-items: center;
}

.header-betting img {
    max-width: 223px;
    width: 100%;
}

.btn-primary {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--utma-primary-color-text);
    background: var(--utma-primary-color);
    padding: 15px 30px;
    text-decoration: none;
    transition:0.3s all;
    border-radius: var(--utma-border-radius);
    border: var(--utma-primary-color-border);
}
.btn-primary:disabled {
    background: #323e00;
    cursor:no-drop;
    color:grey;
    transition:0.3s all;
}
.btn-primary:disabled:hover {
    background: #323e00;
    cursor:crosshair;
    color:grey;
    transition:0.3s all;
}

div {
    font-family: 'Poppins';
    font-style: normal;
}

.login-modal-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
}

.modal-background {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.login-modal {
    width: 100%;
    max-width: 1200px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url(../images/login/modal-background.jpg);
    position: fixed;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 99;
    box-sizing: border-box;
    top: 15%;
    background-size: 100% 100%;
    border-radius:var(--utma-border-radius);
    margin-top:5px;
}
@media screen and (max-width: 1050px) {
    .login-modal {
        background-size: cover;
    }
}

.login-modal img:not(.nostyle) {
    display: block;
    width: 100%;
    max-width: 156px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    filter: invert(1);
}

.login-modal p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 55px;
    text-align: center;
    color: white;
    box-sizing: border-box;
    text-shadow: 2px 1px #000000;
    margin-block-start:0;
    margin-block-end: 20px;
}

.login-modal label {
    display: block;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #080808;
    padding-bottom: 15px;
    box-sizing: border-box;
    margin-right: auto;
    color:white;
    text-shadow: 2px 1px #000000;
}

.login-modal input {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    background: #030303;
    border: 1px solid #171717;
    padding-left: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 25px;
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
}

.login-modal input::placeholder {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    box-sizing: border-box;
}

.login-modal button {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--utma-primary-color-text);
    outline: none;
    border: 0;
    padding: 15px 30px;
    background: var(--utma-primary-color);
    margin-top: 80px;
    box-sizing: border-box;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--utma-border-radius);
    border: var(--utma-primary-color-border);
}


a:hover {
    opacity: 0.7;
    transition: 0.3s all;
}

.header-logo-container {
    width: 150px;
    height: 40px;
    overflow: hidden;
}

.page-bottom-container {
    width: 100%;
    background: #151515;
    overflow: hidden;
}

.page-bottom-container p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #303030;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.banner-container {
    display: flex;
    gap: 95px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 90px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.banner-container a img {
    max-width:150px;
}

.big-banner {
    max-width: 532px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 85px;
}

.small-banners {
    display: flex;
    gap: 48px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.small-banners img {
    width: 100%;
    max-width: 120px;
}

.subscribe-container-inner {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5px;
    padding-bottom: 35px;
}

.subscribe-container-inner p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 55px;
    text-align: center;
    color: #080808;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
}

.subscribe-container-inner-input-container {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 15px;
}

.subscribe-container-inner-input-container input {
    background: #ACD300;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    padding-left: 35px;
    width: 380px;
    border: 0;
    outline: none;
}

.subscribe-container-inner-input-container input::placeholder {
    color: #FFFFFF;
}

.subscribe-container-inner-input-container form {
    display: flex;
    gap: 15px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-container-inner-input-container button {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #080808;
    background: #FFFFFF;
    box-shadow: 0px 7px 20px rgba(141, 40, 173, 0.15);
    padding: 20px 40px;
    border: 0;
    outline: none;
}

.subscribe-container {
    background: var(--utma-primary-color);
    width: 100%;
}

.utm-top-container-1 {
    width: 40%;
}

.utm-top-container-2 {
    width: 60%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}

.utm-top-container-2 video {
    max-width: 100%;
    width: 100%;
}

.success-container {
    background-image: linear-gradient(rgb(0 0 0 / 80%), rgb(0 0 0 / 80%)), /* bottom, image */ url(../images/success-background.png);
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 120px;
    margin-top: -85px;
    background-size: cover;
}

.success-container-inner {
    display: flex;
    max-width: 802px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 15px;
    box-sizing: border-box;
    margin-top: -80px;
    background: #131313;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--utma-border-radius);
}

.success-container-inner img {
    width: 130px;
}

.success-container-inner h1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    color: #FFFFFF;
    margin-block-end: 0;
    margin-block-start: 1rem;
}

.success-container-inner p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #8D8D8D;
}

.success-container-inner a {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--utma-primary-color-text);
    background: var(--utma-primary-color);
    padding: 15px 20px;
    margin-top: 60px;
    border-radius: var(--utma-border-radius);
    display: block;
    width: fit-content;
    margin: 20px auto;
}

.utm-top-container {
    background-image: linear-gradient(rgb(0 0 0 / 80%), rgb(0 0 0 / 80%)),
        /* bottom, image */
        url(../images/background_3.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-y: 55px;
}

.utm-top-container-inner {
    display: flex;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    gap: 90px;
    padding-top: 13rem;
    box-sizing: border-box;
    padding-bottom: 10rem;
    margin-top: -135px;
}

.temp-photo {
    max-width: 710px;
    width: 100%;
    margin: auto;
}

.time-left {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: var(--utma-primary-color);
}

.date-time {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.utm-top-container-inner h1 {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 800;
    font-size: 81px;
    line-height: 70px;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    text-shadow: 0px 11px 27px #000000;
}

.utm-top-container-inner h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    padding-bottom: 30px;
    max-width: 510px;
}

.header-buy {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}


.header-buy img {
    width: 14px;
}

.header-lang {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.header-lang img {
    width: 24px;
}

.container-buy {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #080808;
    background: var(--utma-primary-color);
    box-shadow: 0px 7px 42px rgba(0, 15, 147, 0.44);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 20px 30px;
    width: 200px;
}

.container-buy img {
    width: 19px;
}

.container-tickets {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--utma-primary-color);
    border: 1px solid var(--utma-primary-color);
    filter: drop-shadow(0px 7px 42px rgba(0, 15, 147, 0.44));
    padding: 20px 30px;
    width: 200px;
}

.header-tickets {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--utma-primary-color-text);
    border: var(--utma-primary-color-border);
    background: var(--utma-primary-color);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--utma-border-radius);
}

.cookies-container {
    background: linear-gradient(92.82deg, rgba(39, 41, 44, 0.58) -1.83%, rgba(29, 30, 32, 0.82) 102.67%);
    border: 1px solid rgba(135, 135, 135, 0.05);
    backdrop-filter: blur(11px);
    padding: 20px 35px;
    max-width: 340px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    gap: 15px;
}

.cookies-container p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #C0C0C0;
    padding-right: 5px;
}

.cookies-container button {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    background: var(--utma-primary-color);
    padding: 15px 30px;
    text-decoration: none;
}

button {
    transition: 0.3s all;
}

button:hover {
    opacity: 0.7;
    cursor: pointer;
    transition: 0.3s all;
}

.header-section {
    padding-top: 15px;
    padding-bottom: 15px;
    position: sticky;
    display: block;
    top: 0;
    box-sizing: border-box;
    z-index: 9;
    transition: 0.3s all;
    background: rgba(19, 19, 19, 0.42);
    box-shadow: 0px 29px 39px rgba(0, 0, 0, 0.01);
}

.header-logo {
    width: 100%;
}

.scrolled {
    background: #000000d9 !important;
    box-shadow: 1px 1px 8px 0px var(--utma-primary-color) !important;
}

.header-section-2 {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.header-items {
    display: flex;
    gap: 12px;
    margin-left: auto;
    margin-right: 36px;
    padding-left: 20px;
    justify-content: end;
    flex-wrap:wrap;
}

.header-items-2 {
    display: flex;
    gap: 12px;
}

.spin {
    transform: rotate(90deg);
}

.footer {
    display: block;
    max-width: 1505px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.footer-1 {
    display: inline-block;
    width: 100%;
    max-width: 420px;
    vertical-align: top;
    margin-top: 20px;
}

.footer-1 img {
    width: 100;
    max-width: 188px;
}

.footer-1 p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #C0C0C0;
}

.footer-2 {
    display: inline-block;
    width: 100%;
    max-width: 210px;
    vertical-align: top;
    padding-left: 70px;
    padding-right: 90px;
}

.footer-2 div {
    display: flex;
    gap: 14px;
}

.footer-2 p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

.footer-fb {
    width: 58px;
    height: 58px;
    border: 1px solid #333333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-fb img {
    width: 10px;
}

.footer-tiktok {
    width: 58px;
    height: 58px;
    border: 1px solid #333333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-tiktok img {
    width: 20px;
    filter: invert(100%);

}

.footer-ig {
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--utma-primary-color);
}

.footer-ig img {
    width: 17px;
}


.footer-3 {
    display: inline-block;
    width: 100%;
    max-width: 155px;
    vertical-align: top;
    padding-right: 65px;
}

.footer-3 p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
}

.footer-3 a {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #8D8D8D;
    display: block;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-4 {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    height: 263px;
    background: transparent;
}

.footer-4 a {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}
.footer-4 a img
{
    width:100%;
}


@media screen and (max-width: 1560px) {
    .footer-4 {
        display: inline-block;
        width: 100%;
        max-width: 250px;
        height: 153px;
    }
}




@media screen and (max-width: 1550px) {
    .footer {
        display: block;
        max-width: 1350px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3rem;
        width: 95%;
    }
}

@media screen and (max-width: 850px) {
    .login-modal-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 95%;
        width: 100%;
        margin: auto;
        box-sizing: border-box;
    }

    .login-modal input {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .login-modal button {
        margin-top: 20px;
    }

    .login-modal p {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 600;
        font-size: 23px;
        line-height: 28px;
        text-align: center;
        box-sizing: border-box;
        margin-block-end: 10px;
        margin-block-start: 15px;
    }

    .login-modal img {
        display: block;
        width: 100%;
        max-width: 156px;
        margin-bottom: 0px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .small-banners {
        display: flex;
        gap: 48px;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .success-container-inner {
        display: flex;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        margin-top: -80px;
        background: #131313;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
    }

    .footer-1 {
        display: block;
        padding: 0;
    }

    .footer-3 {
        display: block;
        padding: 0;
    }

    .footer-4 {
        display: block;
        width: 100%;
        max-width: 400px;
        height: 263px;
        box-sizing: border-box;
        margin-top: 50px;
    }

    .footer-2 {
        display: block;
        width: 100%;
        max-width: 210px;
        vertical-align: top;
        padding: 0;
    }
}

@media screen and (max-width: 1250px) {
    .login-modal {
        width: 97%;
        max-width: 1200px;
        padding-top: 40px;
        padding-bottom: 40px;
        position: fixed;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        z-index: 99;
        box-sizing: border-box;
        top: 5%;
    }
}

@media screen and (max-width: 1350px) {
    .utm-top-container {
        background-size: 200%;
        background-position-x: -3%;
        background-position-y: 20%;
    }

    .header-section-2 {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }

    .utm-top-container-inner {
        display: flex;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        gap: 30px;
        padding-top: 7rem;
        box-sizing: border-box;
        padding-bottom: 10rem;
        margin-top: -80px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .utm-top-container-1 {
        width: 100%;
    }

    .utm-top-container-2 {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 1005px) {
    .header-items {
        display: flex;
        gap: 8px;
        margin-left: auto;
        margin-right: 10px;
    }

    .header-items-2 {
        gap: 8px;
    }

    .header-betting img {
        max-width: 140px;
        width: 100%;
    }

    .header-buy {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 600;
        font-size: 13px;
        line-height: 17px;
        text-align: center;
        color: #FFFFFF;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 9px 9px;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3px;
        margin-left:8px;
    }

    .header-buy img {
        width: 11px;
    }

    .header-tickets {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 600;
        font-size: 13px;
        line-height: 17px;
        text-align: center;
        color: var(--utma-primary-color-text);
        background: var(--utma-primary-color);
        border: var(--utma-primary-color-border);
        padding: 9px 9px;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .new::before {
        top: 11px;
        right: 6px;
        font-size: 10px;
    }

    .header-logo-container {
        width: 90px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 2px;
    }

    .header-section {
        padding-top: 15px;
        position: sticky;
        display: block;
        top: 0;
        box-sizing: border-box;
        z-index: 9;
        transition: 0.3s all;
        background: rgba(19, 19, 19, 0.42);
        box-shadow: 0px 29px 39px rgb(0 0 0 / 1%);
    }
}

@media screen and (max-width: 640px) {
    .header-betting {
        display: none;
    }
}

@media screen and (max-width: 660px) {


    .cookies-container {
        width: 95%;
        max-width: 95%;
        box-sizing: border-box;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 15px;
    }

    .utm-top-container-inner h1 {
        font-size: 50px;
        line-height: 70px;
    }

    .container-buy {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 30px;
        text-align: center;
        color: #080808;
        background: var(--utma-primary-color);
        box-shadow: 0px 7px 42px rgb(0 15 147 / 44%);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 15px 25px;
        width: auto;
    }

    .container-tickets {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 30px;
        text-align: center;
        color: var(--utma-primary-color);
        border: 1px solid var(--utma-primary-color);
        filter: drop-shadow(0px 7px 42px rgba(0, 15, 147, 0.44));
        padding: 15px 25px;
        width: auto;
    }

    .container-buy img {
        width: 15px;
    }

    .subscribe-container-inner {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .subscribe-container-inner-input-container {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        gap: 10px;
    }

    .subscribe-container-inner-input-container form {
        display: flex;
        gap: 10px;
        margin-left:auto;
        margin-right:auto;
        width:100%;
        box-sizing: border-box;
    }

    .subscribe-container-inner-input-container button {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #080808;
        background: #FFFFFF;
        box-shadow: 0px 7px 20px rgb(141 40 173 / 15%);
        padding: 15px 10px;
    }

    .subscribe-container-inner-input-container input {
        background: #ACD300;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 400;
        font-size: 13px;
        line-height: 24px;
        color: #FFFFFF;
        padding-left: 20px;
        width: 100%;
        border: 0;
        outline: none;
    }

    .subscribe-container-inner p {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 600;
        font-size: 30px;
        line-height: 45px;
        text-align: center;
        color: #080808;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 680px;
    }

    .big-banner {
        max-width: 532px;
        width: 90%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 85px;
    }

    .small-banners img {
        width: 95%;
        max-width: 120px;
    }

}
