@charset 'UTF-8';


/* Estilos generales */

h1 {
	font-size: 1.5em;
	font-weight: 400;
	line-height: 1.4em;
}

p a {
	color: inherit !important;
}

.banner-club {
	border: 1px solid skyblue;
	padding: 10px 15px;
	margin-right: 50px;
	font-style: italic;
	border-radius: 4px;
	background-color: #87ceeb1f;
}

.tournament-wrapper {
	border: 1px solid #ddd;
	border-radius: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	overflow: hidden;
	background-color: #f0f0f0;
	margin-bottom: 15px;
}

.tournament-wrapper .thumb {
	width: 35%;
	position: relative;
}

.tournament-wrapper .thumb > div {
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	position: relative;
	background-position: center;
	border-right: 1px solid #ddd;
}

.tournament-wrapper.ended .thumb > div::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: -o-repeating-linear-gradient(45deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .25) 10px, transparent 10px, transparent 20px);
	background: repeating-linear-gradient(45deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .25) 10px, transparent 10px, transparent 20px);
}

.tournament-wrapper.ended .thumb > div {
	-webkit-filter: grayscale(100%);
	        filter: grayscale(100%);
}

.tournament-wrapper .thumb > div img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.tournament-wrapper .content {
	padding: 20px;
	width: 65%;
	padding-bottom: 3em;
	position: relative;
}

.tournament-wrapper h2 {
	font-size: 1.25em;
	font-weight: bold;
	line-height: 1.4em;
	color: #333;
}

.tournament-wrapper .date {
	color: #1b83ce;
	display: block;
	padding: 3px 0;
	font-weight: 400;
}

.tournament-wrapper .closed {
	color: #f44336;
	display: block;
	padding: 3px 0;
	font-weight: 400;
}

.tournament-wrapper .ended,
.tournament-wrapper .thumb .closed {
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: #f44336;
	color: white;
	font-weight: normal;
	padding: 0 .5em;
	border-radius: 2px;
}

.tournament-wrapper [id*="timer-"] {
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: #ff9700;
	color: white;
	font-weight: 400;
	padding: 0 .5em;
	border-radius: 2px;
}

.tournament-wrapper .red-alert {
	position: absolute;
	top: 20px;
	left: 10px;
	background-color: #f44336;
	color: white;
	font-weight: 400;
	padding: 0 .5em;
	border-radius: 2px;
	-webkit-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	        transform: translateY(100%);
}

.blinker {
	-webkit-animation: blinker 2s 0s infinite;
	        animation: blinker 2s 0s infinite;
}

@-webkit-keyframes blinker {
	0%,
	35%,
	65% {
		opacity: 1;
	}
	40%,
	60% {
		opacity: 0;
	}
}

@keyframes blinker {
	0%,
	35%,
	65% {
		opacity: 1;
	}
	40%,
	60% {
		opacity: 0;
	}
}

.tournament-wrapper p {
	display: block;
	margin: 3px 0;
}

.button {
	padding: .5em 1.5em;
	border-radius: 2px;
	display: inline-block;
	margin: 20px 10px 0 0;
	font-weight: 400;
}

.button.green {
	color: white !important;
	background-color: #23a455;
}

.button.grey {
	color: white !important;
	background-color: #555;
}

.button.red {
	color: white !important;
	background-color: red;
}

.map-wrapper {
	height: 300px;
}

.category-info {
	padding-top: 1em;
}

.category-info .red {
	color: #f44336;
}

.profile-wrapper {
	padding: 60px 0;
	margin: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	max-width: 800px;
}

.profile-wrapper.logged {
	max-width: 100%;
}

.profile-wrapper > div {
	width: 50%;
	padding: 60px;
}

.profile-wrapper.logged > div:first-child {
	width: 40%;
}

.profile-wrapper.logged > div:last-child {
	width: 60%;
}

.profile-wrapper > div:first-child {
	border-right: 1px solid #ddd;
}

.profile-wrapper h2 {
	font-size: 1.5em;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: #333;
	font-weight: 400;
	line-height: 1em;
}

.profile-wrapper input,
.profile-wrapper select {
	width: 100%;
	border: 1px solid #ddd;
	-webkit-appearance: none;
	border-radius: 4px;
	background-color: white;
	-webkit-box-shadow: none;
	        box-shadow: none;
	outline: 0;
	padding: .2em 1em;
	margin: 5px 0;
	font-size: 1em;
}

.profile-wrapper .invalid input,
.profile-wrapper .invalid select {
	border: 1px solid red;
	background-color: #ffebee;
}

.hamburger {
	height: 30px;
	width: 40px;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
	-webkit-transition-duration: 0.22s;
	     -o-transition-duration: 0.22s;
	        transition-duration: 0.22s;
	-webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	     -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 30px;
	height: 2px;
	border-radius: 5px;
	background-color: rgba(84, 89, 95, .51);
	position: absolute;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: 0.15s;
	     -o-transition-duration: 0.15s;
	        transition-duration: 0.15s;
	-webkit-transition-timing-function: ease;
	     -o-transition-timing-function: ease;
	        transition-timing-function: ease;
}

.hamburger-inner {
	width: 25px;
}

.hamburger-inner::before {
	width: 20px;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
	right: 0;
}

.hamburger-inner::before {
	top: -8px;
	-webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
	-o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger-inner::after {
	bottom: -8px;
	-webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	-o-transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger.active .hamburger-inner {
	width: 25px;
	-webkit-transform: rotate(225deg);
	    -ms-transform: rotate(225deg);
	        transform: rotate(225deg);
	-webkit-transition-delay: 0.12s;
	     -o-transition-delay: 0.12s;
	        transition-delay: 0.12s;
	-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	     -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.active .hamburger-inner::before {
	width: 25px;
	top: 0;
	opacity: 0;
	-webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
	-o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger.active .hamburger-inner::after {
	width: 25px;
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	-webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main-menu {
	z-index: 0;
	position: fixed !important;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	display: none;
	-webkit-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in;
	padding: 14vw 0 4vw 0;
	pointer-events: all;
}

.main-menu.active {
	display: block !important;
}

.elementor-sticky--active {
	z-index: 1;
}

input[type="checkbox"]:not(.cli-user-preference-checkbox) {
	display: none !important;
}

input[type="checkbox"]:not(.cli-user-preference-checkbox) + label {
	position: relative;
}

input[type="checkbox"]:not(.cli-user-preference-checkbox) + label::before {
	border: 1px solid #ddd;
	position: relative;
	content: '';
	height: 1em;
	width: 1em;
	margin-right: .5em;
	display: inline-block;
	vertical-align: middle;
	border-radius: 2px;
	background-color: white;
}

.invalid input[type="checkbox"]:not(.cli-user-preference-checkbox) + label::before {
	border: 1px solid red;
	background-color: #ffebee;
}

input[type="checkbox"]:not(.cli-user-preference-checkbox):checked + label::after {
	position: absolute;
	content: '';
	background-color: #ff9700;
	top: .1em;
	left: .1em;
	width: 1em;
	height: 1em;
	-webkit-clip-path: polygon(0 55%, 2px calc(55% - 2px), 45% calc(100% - 5px), calc(100% - 2px) 0, 100% 2px, 45% 100%);
	        clip-path: polygon(0 55%, 2px calc(55% - 2px), 45% calc(100% - 5px), calc(100% - 2px) 0, 100% 2px, 45% 100%);
}

.player-list > .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: 1px solid #ddd;
	background-color: #f0f0f0;
	border-radius: 4px;
	padding: .5em;
	font-size: 1em;
	color: #444;
	margin-bottom: 10px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
}

.player-list > .item[data-gender="male"] > div:first-child::before,
.button[data="male"]::before {
	content: '';
	position: relative;
	width: 18px;
	height: 18px;
	margin-right: 10px;
	display: inline-block;
	background-image: url('/wp-content/uploads/male.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.player-list > .item[data-gender="female"] > div:first-child::before,
.button[data="female"]::before {
	content: '';
	position: relative;
	width: 18px;
	height: 18px;
	margin-right: 10px;
	display: inline-block;
	background-image: url('/wp-content/uploads/female.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.gender-selector img {
	width: 16px;
	vertical-align: middle;
}

.winner > div:nth-child(2)::before {
	content: '';
	position: relative;
	width: 18px;
	height: 18px;
	margin-right: 10px;
	display: inline-block;
	background-image: url('/wp-content/uploads/winner.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}

.gender-selector .button {
	background-color: #eee;
	cursor: pointer;
}

.gender-selector .button:not(.active) {
	opacity: .4;
}

.gender-selector .winner {
	opacity: 1 !important;
	background-color: transparent !important;
	cursor: default !important;
}

.player-list .item span {
	background-color: #ff9700;
    color: white;
    font-size: 80%;
    padding: 0 1em;
    display: inline-block;
    border-radius: 50px;
    margin-left: 10px;
    vertical-align: bottom;
}

[data-tooltip]::after {
	background-color: rgba(0, 0, 0, .6);
	color: white;
	content: attr(data-tooltip);
	position: absolute;
	font-size: 80%;
	padding: .2em 1em;
	border-radius: 4px;
	bottom: calc(100% + 6px);
	left: -1px;
	opacity: 0;
	-webkit-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	pointer-events: none;
}

[data-tooltip]::before {
	border-top: 8px solid rgba(0, 0, 0, .6);
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	position: absolute;
	content: '';
	left: 20px;
	bottom: calc(100% - 2px);
	opacity: 0;
	-webkit-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	pointer-events: none;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
	opacity: 1;
}

.player-list > .item > div:first-child {
	width: calc(70% - 28px);
}

.player-list > .item > div:nth-child(2) {
	width: 20%;
}

.player-list > .item > div:nth-child(3) {
	width: calc(10% + 28px);
	text-align: right;
}

.player-list > .item > div:nth-child(3) i {
	font-size: 80%;
	margin-left: 4px;
	opacity: .6;
	cursor: pointer;
}

.add-player {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.add-player .half {
	width: calc(50% - 5px);
}

.add-player .half.first + .half {
	margin-left: 10px;
}

.add-player .third {
	width: calc((100% - 20px) / 3);
}

.add-player .third + .third {
	margin-left: 10px;
}

.delete-profile {
	background-color: red !important;
	display: block;
}

.profile-wrapper .elementor-message::before {
	display: none !important;
}

.profile-wrapper .elementor-message {
	font-size: 90%;
	line-height: 1.2em;
	font-weight: 300;
	font-style: italic;
}

.inscription-wrapper p {
	line-height: 1.4em;
	margin: 0;
}

.inscription-wrapper .price {
	font-size: 4em;
	line-height: 1em;
	font-weight: 500;
	display: block;
	color: #666;
}

.inscription-wrapper .price small {
	color: #333;
	font-size: .25em;
	font-weight: 300;
}

.button-wrapper {
	position: absolute;
	bottom: 20px;
	left: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.progressbar {
	background-color: #efefef;
	height: 15px;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .25) inset;
	        box-shadow: 0 0 5px rgba(0, 0, 0, .25) inset;
	border-radius: 4px;
	margin: 5px 0 15px 0;
	overflow: hidden;
	position: relative;
}

.progressbar > div {
	background-color: #23a455;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
}

.marginless {
	margin: 0 !important;
}

.elementor-message::before {
	display: none !important;
}

.wp-block-embed__wrapper {
	padding-bottom: 56.5%;
}

.wp-block-embed__wrapper > iframe {
	position: absolute;
	widows: 100%;
	height: 100%;
}

.reset-pass {
	display: inline-block;
	width: 100%;
	padding-top: 20px;
}

.inscription-list .header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	background-color: #ff9701;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
	
}

.inscription-list > div:not(.header) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	border-bottom: 1px solid #ddd;
}

.inscription-list > div.hidden {
	display: none;
}

.inscription-list > div:not(.hidden):nth-of-type(odd):not(.header) {
	background-color: #f6f6f6;
}

.inscription-list .grey {
	background-color: #f6f6f6 !important;
}

.inscription-list .white {
	background-color: white !important;
}

.inscription-list > div > div:nth-child(1) {
	width: calc(5% - 1em);
}

.inscription-list > div > div:nth-child(5) {
	width: calc(10% - 1em);
}

.inscription-list > div > div:nth-child(2),
.inscription-list > div > div:nth-child(3) {
	width: calc(27.5% - 1em);
}

.inscription-list > div > div:nth-child(4) {
	width: calc(20% - 1em);
}

.inscription-list > div > div:nth-child(6) {
	width: calc(15% - 1em);
}

.inscription-list > div > div {
	padding: .5em;
}

.progress {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 4px;
	margin-bottom: 20px;
	overflow: hidden;
}

.progress > a {
	background-color: #23a455;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 0px;
	        flex: 1 1 0;
	display: inline-block;
	font-size: 12px;
	padding: 2px;
	position: relative;
	text-align: center;
	color: white !important;
}

.progress > a.opened {
	background-color: #a3a3a3;
}

.progress > a.closed::before {
	content: '';
	position: absolute;
	background-color: #23a455;
	width: 10px;
	height: 10px;
	right: -2px;
	z-index: 1;
	top: calc(50% - 5px);
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.progress > a.opened::before {
	content: '';
	position: absolute;
	background-color: #a3a3a3;
	top: 0;
	bottom: 0;
	width: 10px;
	left: -8px;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 100% 50%);
	        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 100% 50%);
}

.progress > a:not(:last-child)::after {
	position: absolute;
	content: '';
	top: 0;
	width: 14.5px;
	right: -5px;
	bottom: 0;
	z-index: 1;
	background-color: white;
	-webkit-clip-path: polygon(0 0, calc(100% - 2px) 50%, 0 100%, 2px 100%, 100% 50%, 2px 0);
	        clip-path: polygon(0 0, calc(100% - 2px) 50%, 0 100%, 2px 100%, 100% 50%, 2px 0);
}

/* Cabecera de página */

.main-bar {
	width: 100vw;
}

.main-bar.fixed {
	-webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, .15);
	        box-shadow: 0 0 0 5px rgba(0, 0, 0, .15);
}

/* Pie de página */


/* Responsive : Tablet */

@media (max-width: 767px) {

}


/* Responsive : Móvil */

@media (max-width: 767px) {

	.progress > a {
		font-size: 0;
	}

	.tournament-wrapper {
		height: auto !important;
	}

	h1,
	.profile-wrapper h2 {
		font-size: 20px;
	}

	#primary {
		padding-top: 50px !important;
	}

	.elementor-location-header {
		background-color: white;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		z-index: 20;
		-webkit-box-shadow: 0 0  10px rgba(0, 0, 0, .15);
		        box-shadow: 0 0  10px rgba(0, 0, 0, .15);
	}

	.calendar-wrapper {
		padding-top: 30px !important;
	}

	.tournament-wrapper .thumb {
		width: 100%;
		padding-top: 40%;
		background-size: cover;
		background-position: center;
	}

	.tournament-wrapper .content {
		width: 100%;
		padding: 15px 20px 20px 20px;
	}

	.button-wrapper {
		position: relative;
		left: 0;
		bottom: 0;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}

	.button-wrapper .button {
		width: 100%;
		text-align: center;
	}

	.button {
		margin: 10px 10px 0 0;
	}

	.menu-item-3590 {
		text-align: right;
	}

	.profile-wrapper.logged {
		padding-top: 20px;
	}

	.profile-wrapper > div,
	.profile-wrapper.logged > div:first-child,
	.profile-wrapper.logged > div:last-child {
		width: 100%;
		padding: 20px;
	}

	.player-list > .item > div:first-child {
		width: 100%;
	}

	.player-list > .item > div:nth-child(2),
	.player-list > .item > div:nth-child(3) {
		width: 50%;
	}

	.inscription-parent {
		overflow: scroll;
	}

	.inscription-list {
		width: 200vw;
		font-size: 13px;
	}

}