.draw-block,
.magnifying-field-hover,
.magnifying-block
{
	-moz-user-select: -moz-none;
	-o-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.draw-block {
	white-space: nowrap;
}

.game-img-conteiner{
	display: block;
	position: relative;
}

.magnifying-block{
	display: block;
	position: absolute;
	overflow: hidden;
}

/* magnifying glass */
.magnifying-glass{
	z-index: 90;
	display: block;
	position: absolute;
	overflow: hidden;

	border: 2px solid red;  /* border */
	border-radius: 50px;
}

.magnifying-main-img{
	z-index: 70;
	position: absolute;
	display: block;
	margin-left: -2px; /* -border */
	margin-top: -2px; /* -border */
}

.magnifying-field-hover{
	position: absolute;
	z-index: 100;
	display: block;
	width: 100%;
	height: 100%;
	cursor: crosshair;
}

.magnifying-cords{
	position: absolute;
	z-index: 1;
	color: white;
	font-weight: 600;
	font-size: 12px;
	text-shadow: 1px 0 0 black, -1px 0 0 black, 0 1px 0 black, 0 -1px 0 black, 1px 1px black, -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black;
}


/* ÃÂÃÂ½ÃÂ¸ÃÂ¼ÃÂ°Ã‘â€ ÃÂ¸Ã‘Â ÃÂ¿Ã‘â‚¬ÃÂ¸Ã‘â€ ÃÂµÃÂ»ÃÂ° - ÃÂ²Ã‘â‚¬ÃÂ°Ã‘â€°ÃÂµÃÂ½ÃÂ¸ÃÂµ */

.magnifying-rotate{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 99;
	border: 2px solid #FFFFFF;
	border-radius: 50px;
}

/* Ãâ€™Ã‘â‚¬ÃÂ°Ã‘â€°ÃÂµÃÂ½ÃÂ¸ÃÂµ*/


.rotate{
	border: 5px solid white;
	border-left: 5px solid #ff00ff;
	border-right: 5px solid #ff00ff;
}
.rotate{
	-webkit-animation: preloader 0.8s infinite linear;
	-moz-animation: preloader 0.8s infinite linear;
	-ms-animation: preloader 0.8s infinite linear;
	-o-animation: preloader 0.8s infinite linear;
	animation: preloader 0.8s infinite linear;
}

@-webkit-keyframes preloader {
	to { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes preloader {
	to { -moz-transform: rotate(360deg); }
}

@-ms-keyframes preloader {
	to { -ms-transform: rotate(360deg); }
}

@-o-keyframes preloader {
	to { -o-transform: rotate(360deg); }
}

@keyframes preloader {
	to { transform: rotate(360deg); }
}



/*
	Crosses
*/

.single-cross {
	position: absolute;
	display: block;
}

.magnifying-main-img .single-cross{
	z-index: 80;
}

.game-img-div .single-cross{
	z-index: 60;
}

.information-block{
	text-align: right;
}

.count-crosses{
	color: #4285f4;
	font-weight: bold;
}

/*
	Draw block
*/

.draw-button {
	display: inline-block;
	color: #4285F4;
	padding: 3px 10px;
	font-size: 14px;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
	background-color: #fed427;
	border: 1px solid #dfb300;
	border-radius: 3px;
	margin-right: 3px;
	transition: all 0.2s;
}
.draw-button .fa {
	font-size: 20px;
	position: relative;
	top: 3px;
}

.draw-button.active {
	background-color: #e6e6e6;
	border-color: #adadad;
	box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

.draw-button:hover {
	background-color: #fed427b3;
	border-color: #dfb300b3;
}

.draw-mode.active, .draw-place.active, .draw-snap.active {
	background-color: #FFF;
	border: 1px solid red;
}

@-webkit-keyframes draw-mode-animation{
	0%   {background-color: #ffffff;}
	50%  {background-color: #ce3833;}
	100% {background-color: #ffffff;}
}

@keyframes draw-mode-animation {
	0%   {background-color: #ffffff;}
	50%  {background-color: #ce3833;}
	100% {background-color: #ffffff;}
}


.drawing-lines{
	z-index: 50;
	position: absolute;
	display: block;
}

.draw-block .glyphicon{
	font-size: 16px;
	margin-top: 5px;
}

.draw-button .selected{
	border-bottom: 2px solid grey; /*bottom border for color*/
	text-align: center;
	padding: 1px;
}

.draw-button .select-color{
	z-index: -1;
	position: relative;
	left: -100px;
	opacity: 0;
	width: 0px;
	-webkit-transition: left 0.2s, width 0.4s, opacity 0.2s;
	transition: left 0.2s, width 0.4s, opacity 0.2s;
}

.draw-button.active > .select-color{
	z-index: 999;
	position: relative;
	left: 0px;
	opacity: 1;
	width: 18px;
}

.draw-mode-text{
	position: relative;
	border-bottom: 1px solid grey;
}

.draw-button.draw-mode{
	padding-right: 0px !important;
	margin-left: 15px;
}

.draw-button.active .padding-right-12{
	padding-right: 12px !important;
}

.padding-right-12{
	padding-right: 0px !important;
}

.select-color{
	padding-right: 1px;
}


/*
	Hidden block
*/

.game-img-div{
	overflow: hidden;
	position: relative;
}
.crosses-div > img {
	position: absolute;
}
/*crosses in bg*/
.single-bg-cross {
	position: absolute;
	display: none;
	z-index: 9999;
}

/*Snap function*/
.snap-point{
	z-index: 100;
	position: absolute;
	opacity: 0;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	margin-left: -7px;
	background-color: white;
	border: 1px solid red;
	border-radius: 50px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.snap-active {
	opacity: 0.8;
}

.snap-active {
	-webkit-animation: blink 0.5s linear infinite;
	animation: blink 0.5s linear infinite;
}
@-webkit-keyframes blink {
	0% { border-color: rgb(255, 0, 0); }
	50% { border-color: rgb(255, 255, 255); }
	100% { border-color: rgb(255, 0, 0); }
}
@keyframes blink {
	0% { border-color: rgb(255, 0, 0); }
	50% { border-color: rgb(255, 255, 255); }
	100% { border-color: rgb(255, 0, 0); }
}


/* !!!!! */
.single-ticket:not(.played) .reload-cross {
	display: none !important;
}

.magnifying-main-img img {
	max-width: unset !important;
}






/* Widget tables */

.game-widget.game-coord-table {
	display: none;
}

.game-box .game-widget.open-coord-table,
.game-box .game-widget.open-tickets-table {
	display: none;
}

.game-widget {
	border-radius: 10px;

}
.game-widget.game-tickets-table, .game-widget.game-coord-table {
	margin-top: 25px;
	margin-bottom: 30px;

}

.game-widget .game-widget-header {
	background-color: #4285F4;
	border-left: 8px solid #fed427;
	border-radius: 3px 3px 0 0;
}
.game-widget .game-widget-header h2 {
	color: #FFF;
	padding: 10px 15px;
	margin: 0;
}
.game-widget .game-widget-content {
	background-color: #FFF;
	padding: 10px 25px 15px 25px;
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
}

.game-coord-table .game-widget-content {
	height: 296px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.game-widget.game-cart-table .game-widget-content {
	padding-bottom: 10px;
	padding-top: 10px;
}
.game-widget.game-tickets-table .game-widget-content {
	padding-bottom: 0px;
}
.game-widget .game-widget-footer {
	background-color: #FFF;
	border-radius: 0 0 3px 3px;
	padding: 0px 25px 25px 25px;

	border-left: 1px solid #DDDDDD;;
	border-right: 1px solid #DDDDDD;;
	border-bottom: 1px solid #DDDDDD;;
}

.game-widget table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 15px;
}
.game-widget table td {
	background-color: #EBF2FF;
	color: #8F8F8A;
	padding: 10px 20px;
	font-size: 14px;
}

.game-widget table tr:last-child td {
	color: #37003C;
}

.game-widget .reload-cross {
	color: red;
	cursor: pointer;
	width: 20px;

}
.game-widget .ticket-loading {
	width: 20px;
}
.game-tickets-table tr:nth-child(2n),
.game-coord-table tr:nth-child(2n) {
	background-color: #dce8ff;
}

.game-cart-table td {
	padding-left: 3px;
}
.game-cart-table td:nth-child(2n) {
	text-align: center;
}

/* tickets table */
.game-widget .tickets-table-info p {
	color: #37003C;
	text-align: center;
	font-size: 14px;
}
.game-widget .tickets-table-info p span {
	color: #963CFF;
	font-weight: bold;
}
.game-widget .game-widget-separator {
	border-bottom: 1px solid #F1E4E4;
	margin: 5px 0px;
}


/* Welcome message */
.game-widget.game-welcome-msg {
	position: absolute;
	width: 100%;
}
.game-widget.game-welcome-msg h3 {
	color: #3f0145;
	text-align: center;
	font-size: 16px;
	line-height: 16px !important;
	white-space: nowrap;
}
.game-widget.game-welcome-msg h3 span {
	color: #4285f4;
	font-weight: bold;
}



.table-scroll {
	height: 136px;
	overflow-y: auto;
	overflow-x: hidden;
}

.game-coord-table td {
	width: 25%;
}

/* Buttons */

.game-widget button {
	width: 100%;
	border: unset;
	padding: 14px 0;
	background: #4285f4;
	color: #FFF;
	border-radius: 3px;
	transition: all 0.2s;
	font-size: 16px;
	font-family: "PremierLeagueW01-Bold";
	text-transform: uppercase;
	line-height: 16px;
	cursor: pointer;
}
.game-widget button.open-coord-table {
	margin-top: 10px;
}

.game-widget button:hover {
	opacity: 0.8;
}

.ticket-offer-one-free {
	color: #1277da !important;
	padding-top: 7px;
	padding-bottom: 7px;
}


video::-webkit-media-controls-fullscreen-button
{
	display: none !important;
}


/* swiper */

.swiper {
	color: black;
}
.swiper-tickets-select {
	width: 100%;
	padding-top: 10px;
	padding-bottom: 30px;
	margin-bottom: -5px;
}
.swiper-slide {
	width: 250px !important;
	height: 119px;
	background-image: url('https://premierleague.fixtheball.scot/wp-content/uploads/sites/8/2025/02/select-ticket-background.png');
	background-position: center;
	background-size: cover;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}
.swiper-slide.single-ticket-free {
	background-image: url('https://premierleague.fixtheball.scot/wp-content/uploads/sites/8/2025/03/select-ticket-background-pink.png');
}


.swiper-tickets {
	width:100%;
	padding-top: 10px;
	padding-bottom: 30px;
	margin-bottom: -5px;
}

.swiper-tickets-select .swiper-slide {
	text-align: center;
}
.swiper-tickets-select .swiper-pagination {
	display: none;
}

.game-coord-table .swiper-pagination {
	font-size: 14px;
	color: #4285F4;
}

.swiper-tickets-select .swiper-pagination-custom {
	padding-top: 10px;
	margin-bottom: 19px;
	text-align: center;
	display: flex;
	justify-content: center;
}

.swiper-tickets-select .swiper-pagination-custom .swiper-pagination-bottom-title {
	font-weight: bold;
	margin-top: 5px;
}
.swiper-tickets-select .swiper-pagination-custom .swiper-pagination-bottom-title span {
	color: #ff00ff;
}

.swiper-tickets-select .swiper-pagination-custom .game-select-ticket {
	border: 1px solid #37003C;
	margin-left: -1px;
	text-align: center;
	width: 45px;
	height: 30px;
	color: #37003C;
}

.swiper-tickets-select .swiper-pagination-custom .game-select-ticket.active {
	background-color: #DBE7FA;
	color: #4285F4;
	font-weight: bold;
}
.swiper-tickets-select .swiper-pagination-custom .game-select-ticket:hover {
	background-color: #DBE7FA;
	color: #4285F4;
}

.swiper-tickets .swiper-slide {
	text-align: center;
}

.swiper-slide > div {

	width: 35%;
}



.swiper-slide .swiper-tickets-select__info,
.swiper-slide .swiper-tickets__coord {
	font-size: 14px;
	color: #4285F4;
}

.swiper-tickets-select__info a,
.swiper-slide .swiper-tickets__buttons .reload-cross {
	background-color: #4285F4;
	color: #FFF;
	padding: 3px 5px;
	border-radius: 3px;
	font-size: 12px;
	transition: all 0.2s;
}
.swiper-tickets-select__info a:hover,
.swiper-slide .swiper-tickets__buttons .reload-cross:hover {
	color: #FFF;
	opacity: 0.8;
}

.swiper-slide .swiper-tickets-select__title,
.swiper-slide .swiper-tickets__title {
	font-family: "PremierLeagueW01-Bold";
	font-size: 20px;
	color: #FFF;
}

.swiper-slide .swiper-tickets__buttons {
	border-top: 1px solid #F1E4E4;

}

/* swiper navigation buttons */
.swiper-button-prev,
.swiper-button-next {
	top: 63px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 18px;
}
.swiper-button-prev {
	left: -8px;

}
.swiper-button-next {
	right: -8px;
}



/* *****************
	New Design
***************** */
.ftb-desktop-game {
	display: flex;
	flex-direction: row;
}

.game-box {
	height: 100%;
	color: #3f0145;
	position: relative;
	padding-right: 15px;
	padding-left: 15px;
}
.game-box.game-left-box {
	width: 70%;
	padding-left: 0;
}
.game-box.game-right-box {
	width: 30%;
	padding-right: 0;
	margin-top: 60px;
}
.game-box.game-footer-box {
	display: none;
}

/* All Game*/
.game-box p {
	margin: 0
}
/* Game info */
.game-box .game-info {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: flex-end;
}
.game-box .game-info .game-info-logo {
	width: 197px;
}
.game-box .game-info h1,
.game-box .game-info h2,
.game-box .game-info h3,
.game-box .game-info p
{
	color: #3f0145;
}
.game-box .game-info h1 {
	line-height: 40px !important;
}
.game-box .game-info a {
	color: #963CFF;
	transition: all 0.2s;
}
.game-box .game-info a:hover {
	opacity: 0.6;
}
.game-box .game-info h1 span {
	font-size: 45px;
	color: #4285f4;
}
.game-box .game-info .game-info-separator {
	border-bottom: 1px solid #68416b;
	margin: 10px 0px;
}

/* Game controls */
.game-box .game-controls p {
	font-size: 14px;
	padding: 10px 0;
	text-align: center;
}
.game-box .game-controls .draw-container {
	display: flex;
	gap: 10px;
	padding-bottom: 5px;
	align-items: center;
}

.game-box .game-controls .count-crosses-block p {
	line-height: 16px;
}
/* Game */
.game-box .game-main-block {
	border: 1px solid #FFF;
	margin-bottom: 30px;
}
/* Game Instruction */
.game-box .game-instruction {
	display: flex;
	max-height: 170px; /* TODO fix for diff screen sizes*/
}
.game-box .game-instruction-bg {
	position: absolute;
}
.game-box .game-instruction-content {
	z-index: 1;
	display: flex;
}
.game-box .game-instruction .instruction-title {
	display: flex;
	align-items: center;
	padding: 17px 25px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.game-box .game-instruction .instruction-title h1 {
	text-align: center;
	color: #4285f4;
	font-size: 32px;
	margin: 0;
}

.game-box .game-instruction .instruction-text {
	display: flex;
	align-items: center;
}
.game-box .game-instruction .instruction-text p {
	font-size: 15px;
	color: #37003C;
	padding: 0 50px 0 30px;
}
.game-box .game-instruction .instruction-text p span {
	font-size: 18px;
	font-weight: bold;
	display: inline-block
}

/* Modal */
.modal-dialog .modal-header {
	background-color: #649af6;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.modal-dialog .modal-header h3 {
	color: #FFF;
	text-transform: uppercase;
	font-weight: bold;
}
.modal-dialog .modal-header button {
	color: #FFF;
	opacity: 1;
}
.modal-dialog .modal-footer .button {
	padding: 10px 25px;
	transition: all 0.2s;
	font-size: 16px;
	text-transform: uppercase;
}

/* Affiliate Info Box */
.game-info-box__affiliate-info {
	background-color: #a546f2;
	padding: 10px 15px;
	width: 100%;
}
.game-info-box__affiliate-info a {
	color: #FFF !important;
	text-decoration:underline;
	font-weight: bold;
}
.game-info-box__affiliate-info p {
	color: #FFF !important;
}

.game-info-box__affiliate-info p:nth-child(1) {
	font-size: 13px;
}
.game-info-box__affiliate-info p:nth-child(2) {
	font-size: 10.5px;
	white-space: nowrap;
}

/* Over 18 Info Box */
.game-info-box__over-18-info {
	border: 1px solid #a546f2;
	padding: 0px 5px;
	position: absolute;
	right: 0;
	margin-right: 15px;
	margin-top: -35px;
	background-color: #f9ebf7;
	font-weight: bold;
}



.game-separator {
	margin: 50px 0 -40px 0;
	background-color: #fed427;
	height: 10px;
}



/* bulk-tickets button */
.bulk-tickets-action-wrap {
	width: 100%;
	text-align: center;
}
.game-widget button.open-bulk-tickets-modal {
	border: unset;
	color: #FFF;
	border-radius: 3px;
	transition: all 0.2s;
	font-family: "Roboto", sans-serif;
	line-height: 16px;
	cursor: pointer;
	font-size: 12px;
	background: #4285F4;
	margin-bottom: 10px;
	padding: 5px 15px;
	width: auto;
	text-transform: none;
}


/* bulk-tickets Modal */
.bulk-tickets-modal-wrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00000078;
	z-index: 9999;
}
.bulk-tickets-modal-container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bulk-tickets-modal {
	border: 2px solid #4285f4;
	width: 840px;
	background-color: #ffffff;
	border-radius: 14px;
	padding: 20px 25px;
	position: absolute;
	box-shadow: 0px 2px 6px 1px #00000040;
	text-align: center;
}
.bulk-tickets-modal p {
	margin: 0;
}
.bt-modal-header {
	padding-bottom: 15px;
}
.bt-modal-body {
	padding-bottom: 15px;
}
.bulk-tickets-option-table {
	display: flex;
	justify-content: space-around;
	flex-direction: row;
	gap: 20px;
}

.bulk-tickets-option-table-row {
	width: 33.333%;
}
.bt-modal-text {
	font-size: 13px;
	line-height: 22px;
	color: #000;
}
.bt-modal-header .bt-modal-text {
	text-align: left;
}
.bulk-tickets-card-desc {
	font-size: 14px;
	line-height: 22px;
	padding-top: 5px;
	padding-bottom: 10px;
}
.bulk-tickets-card-price-desc {
	font-size: 14px;
	line-height: 22px;
}
.bulk-tickets-card-price-desc span {
	font-family: 'PremierLeagueW01-Bold';
	font-size: 24px;
	font-weight: bold;
}

.bt-close {
	position: absolute;
	right: 6px;
	top: 5px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: #4285F4;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #FFF;
	font-size: 13px;
	padding-left: 1px;
	font-weight: bold;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
}
.bt-close:hover {
	color: #FFF;
	opacity: 0.8;
}

.bulk-tickets-option-header {
	padding-bottom: 5px;
}
.bulk-tickets-option-title {
	background-color: #fed427;
	color: #005dab;
	font-size: 16px;
	font-weight: bold;
	padding: 8px 16px;
}

.bulk-tickets-card-title {
	background-color: #4285F4;
	color: #FFF;
	font-size: 24px;
	font-weight: bold;
	padding: 5px 16px;
}
.bulk-tickets-option-card {
	background-color: #FFF;
	color: #000000;
	box-shadow: 0px 4px 4px 0px #00000040;
}
.bulk-tickets-card-footer-text {
	font-family: 'PremierLeagueW01-Bold';
	font-size: 32px;
	line-height: 45px;
	font-weight: bold;
	color: #4285F4;
}

.bulk-tickets-card-call-to-action {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 8px;
	padding-bottom: 10px;
	align-items: center;
}
.bulk-tickets-card-price-wrap {
	display: flex;
	gap: 1px;
}
.bulk-tickets-card-blue-box {
	background-color: #4285F4;
	width: 20px;
	position: relative;
}
.bulk-tickets-card-blue-box::after{
	content:"";
	position:absolute;
	transform:translateY(-50%);
	width:15px;
	height:15px;
	border-radius:50%;
	background:#FFF;
	z-index:2;
	top: 50%;
	left: 11px;
}
.bulk-tickets-card-price {
	font-family: 'PremierLeagueW01-Bold';
	background-color: #fad8d9;
	color: #ff0000;
	font-size: 20px;
	font-weight: bold;
	border: 2px dotted #9D3E8C;
	line-height: 36px;
	padding: 0px 15px;
}

.bulk-tickets-card-button {
	color: #FFFFFF;
	background-color: #4285F4;
	transition: all 0.2s;
	padding: 3px 15px;
	border-radius: 3px;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
}
.bulk-tickets-card-button:hover {
	opacity: 0.8;
	color: #FFFFFF;
}

/* responsive */
@media (max-width: 1200px) {
	.ftb-desktop-game {
		flex-direction: column;
	}
	.game-box.game-left-box,
	.game-box.game-right-box {
		width: 100%;
		margin: 0;
	}
	/* show full-screen footer with instruction */
	.game-box.game-footer-box {
		display: block;
	}
	/* hide left-box instruction */
	.game-box.game-left-box .game-instruction {
		display: none;
	}
	.game-tickets-tables-wrap {
		display: flex;
		gap: 15px;
		flex-direction: row;
		padding-bottom: 15px;
		justify-content: center;
		align-items: center;
	}
	.game-tickets-tables-wrap .game-widget {
		width: 50%;
		max-width: 350px;
		margin: 0;
	}
	.game-widget.game-welcome-msg {
		position: relative;
		padding-bottom: 5px;
	}
	.game-cart-table .game-widget-content { /* fix cart height */
		height: 296px;
	}

	.game-left-box .game-separator {
		display: none;
	}

	.game-widget table td {
		padding: 6px 20px;
	}
	.game-box .game-instruction-content {
		max-width: 828px;
	}
	.game-box .game-instruction {
		justify-content: center;
	}

}
@media (max-width: 700px) {
	.game-box .game-instruction, .game-box .game-instruction .instruction-bg img {
		max-height: 300px;
	}
	.game-tickets-tables-wrap {
		flex-direction: column;
	}
	.game-tickets-tables-wrap .game-widget {
		width: 100%;
	}
}
