.hot-matches-wrapper {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 999999;
}

.hot-matches {
    pointer-events: auto;
    position: relative;
    -webkit-transition: -webkit-transform 300ms linear;
    transition: -webkit-transform 300ms linear;
    transition: transform 300ms linear;
    transition: transform 300ms linear, -webkit-transform 300ms linear;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.hot-matches * {
    box-sizing: border-box;
}
.hot-matches.active {
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
}
.hot-matches--quick-charge {
    margin-top: 10px;
}
.hot-matches__header {
    background: #30b1fa;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 8px 0;
    border-top-right-radius: 10px;
    cursor: pointer;
}
.hot-matches__header-text {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}
.hot-matches__header-text:after {
    content: "";
    width: 12px;
    height: 12px;
    margin-left: 5px;
    display: block;
    background: url("../images/hm_close.svg") no-repeat center center transparent;
    background-size: contain;
}
.hot-matches__body {
    background: -webkit-gradient(linear, left bottom, left top, from(#a9e0ff), color-stop(50%, #ffffff));
    background: linear-gradient(to top, #a9e0ff 0%, #ffffff 50%);
    border-bottom-right-radius: 10px;
}
.hot-matches--quick-charge .hot-matches__body {
    background: #ffffff;
}
.hot-matches .swiper-button-prev, .hot-matches .swiper-button-next {
    width: 15px;
    height: 15px;
    margin-top: 0;
    top: 177px;
    background: url("../images/hm_button-next.svg") no-repeat center center transparent;
}
.hot-matches .swiper-button-next {
    right: 3px;
}
.hot-matches .swiper-button-prev {
    left: 3px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.hot-matches__show-btn {
    position: absolute;
    right: 0;
    height: 100%;
    width: 40px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    cursor: pointer;
    padding: 0 5px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    border-top-right-radius: 4px;
    box-shadow: 3px 3px 0 #acb200;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f7ff00), color-stop(50%, #fbff73));
    background: linear-gradient(to top, #f7ff00 0, #fbff73 50%);
    bottom: 0;
}
.hot-matches--quick-charge .hot-matches__show-btn {
    top: 0;
    padding: 0 5px;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 0;
    box-shadow: 3px -3px 0 #1879af;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #23adfb), color-stop(50%, #c2e9ff));
    background: linear-gradient(to top, #23adfb 0, #c2e9ff 50%);
}
.hot-matches.active .hot-matches__show-btn {
    display: none;
}
.hot-matches__show-btn-ico {
    width: 25px;
    height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
}
.hot-matches__show-btn-text {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    margin: 10px 0 0;
    line-height: 1;
    -webkit-writing-mode: tb-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: tb-rl;
}
.hot-matches--quick-charge .hot-matches__show-btn-text {
    margin: 0 0 10px;
}

.matches img {
    max-width: 100%;
    max-height: 50px;
}
.matches__header {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background-color: #dcf2fe;
    margin-bottom: 10px;
}
.matches__body {
    margin-bottom: 5px;
}
.matches__left, .matches__right {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    padding: 10px;
    background-color: #a1dcfd;
    -webkit-box-flex: 1;
    flex: 1 0 40%;
    width: 40%;
    min-width: 40%;
    max-width: 40%;
}
.matches__name {
    color: #000000;
    font-size: 12px;
    padding: 0;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    margin: 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.matches__wrap-image {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 5px;
}
.matches__vs {
    color: #23adfb;
    font-size: 26px;
    font-weight: bolder;
    font-style: italic;
    margin: 0 7px;
    padding: 0;
    text-transform: uppercase;
    line-height: 1em;
    text-align: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    text-shadow: -1px 0 0 #000000;
}
.matches__title {
    color: #23adfb;
    font-size: 14px;
    font-weight: bold;
    padding: 0 10px;
    text-transform: uppercase;
    line-height: 1em;
    text-align: center;
    margin: 10px 0 10px;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.matches__wrap-info {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}
.matches__datetime {
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    font-weight: bold;
    margin: 0;
    padding: 0;
}
.matches__footer {
    padding: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}
.matches__number-of-players {
    font-size: 12.5px;
    color: #000000;
    font-weight: normal;
    text-align: center;
    padding: 5px 0;
    margin: 0 0 10px 0;
    border-top: 1px solid #23adfb;
    border-bottom: 1px solid #23adfb;
    width: 100%;
}
.matches__number-of-players span {
    color: #da251d;
}
.matches__btn-play {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../images/hm_button.png") no-repeat center center transparent;
    background-size: contain;
    padding: 0;
    margin-bottom: 10px;
    box-shadow: none;
    text-decoration: none;
    height: 46px;
    width: 160px;
    -webkit-transition: -webkit-filter 300ms linear;
    transition: -webkit-filter 300ms linear;
    transition: filter 300ms linear;
    transition: filter 300ms linear, -webkit-filter 300ms linear;
}
.matches__btn-play:hover {
    -webkit-filter: brightness(1.3);
    filter: brightness(1.3);
}
.matches__link {
    text-align: center;
    font-weight: normal;
    font-style: italic;
    color: #23adfb;
    font-size: 10px;
    margin-bottom: 10px;
}
.matches__odds {
    padding: 5px 0;
    margin-top: 5px;
    margin-bottom: 0;
}
.matches__odds span {
    font-size: 14px;
    color: #23adfb;
}
.matches__odds span:first-child {
    margin-right: 5px;
}
.matches__odds span:last-child {
    font-weight: bold;
    color: #f8fe54;
}

.hm-quick-charge__body {
    padding: 15px;
}
.hm-quick-charge__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: stretch;
    justify-content: stretch;
    margin-bottom: 10px;
}
.hm-quick-charge__item:last-child {
    margin-bottom: 0;
}
.hm-quick-charge__item img {
    width: 25px;
    height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 10px;
}
.hm-quick-charge__item a {
    padding: 5px 10px;
    font-size: 14px;
    color: #000000;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #23adfb), color-stop(50%, #81e0ff));
    background: linear-gradient(to right, #23adfb 0, #81e0ff 50%);
    border-radius: 12px;
    text-decoration: none;
    -webkit-box-flex: 1;
    flex: 1 0 auto;
    position: relative;
}
.hm-quick-charge__item a:hover {
    font-weight: bold;
}
.hm-quick-charge__item a:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 15px;
    width: 15px;
    background: url("../images/hm_button-next.svg") no-repeat center center #ffffff;
    background-size: 40%;
    border-radius: 50%;
}
.hm-quick-charge__footer {
    padding: 15px;
    border-top: 1px solid #23adfb;
}
.hm-quick-charge__footer a {
    padding: 5px 10px;
    width: 100%;
    display: block;
    background-color: #f9f900;
    font-weight: bold;
    font-style: italic;
    color: #000000;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 2px 0 #35b7fc;
}
.hm-quick-charge__footer a:hover {
    background-color: #efef00;
}
/*# sourceMappingURL=main.css.map*/