@charset "UTF-8";
/*
    Project: Padeltrack
    Design and Development: dbsoftware
    Author: Sabrina Gonzalez Cotta
*/
/**** RESET ****/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

input, select, option, textarea, button {
  outline: 0;
  font-family: "klavika", serif;
  font-weight: 100;
}

a, p, span, label {
  font-weight: 100;
}

/* HTML5 display-role reset for older browsers*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Only Safari */
input[type="search"] {
  -webkit-appearance: none;
}

/*Colors*/
/* Categorias*/
/* Warning*/
/**** GRID ****/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[class*="col-"] {
  margin-bottom: 10px;
  min-height: 30px;
}

.flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex.row {
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}
.flex.column {
  -webkit-flex-flow: column wrap;
  flex-flow: column wrap;
}

[class*="col-"] {
  margin-right: 12px;
}

[class*="col-"]:last-child {
  margin-right: 0;
}

.col-1 {
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.col-2 {
  -webkit-box-flex: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 2;
  /* OLD - Firefox 19- */
  -webkit-flex: 2;
  /* Chrome */
  -ms-flex: 2;
  /* IE 10 */
  flex: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.col-3 {
  -webkit-box-flex: 3;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 3;
  /* OLD - Firefox 19- */
  -webkit-flex: 3;
  /* Chrome */
  -ms-flex: 3;
  /* IE 10 */
  flex: 3;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.col-4 {
  -webkit-box-flex: 4;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 4;
  /* OLD - Firefox 19- */
  -webkit-flex: 4;
  /* Chrome */
  -ms-flex: 4;
  /* IE 10 */
  flex: 4;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.col-5 {
  -webkit-box-flex: 5;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 5;
  /* OLD - Firefox 19- */
  -webkit-flex: 5;
  /* Chrome */
  -ms-flex: 5;
  /* IE 10 */
  flex: 5;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.col-6 {
  -webkit-box-flex: 6;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 6;
  /* OLD - Firefox 19- */
  -webkit-flex: 6;
  /* Chrome */
  -ms-flex: 6;
  /* IE 10 */
  flex: 6;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.col-7 {
  -webkit-box-flex: 7;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 7;
  /* OLD - Firefox 19- */
  -webkit-flex: 7;
  /* Chrome */
  -ms-flex: 7;
  /* IE 10 */
  flex: 7;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.col-8 {
  -webkit-box-flex: 8;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 8;
  /* OLD - Firefox 19- */
  -webkit-flex: 8;
  /* Chrome */
  -ms-flex: 8;
  /* IE 10 */
  flex: 8;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.col-9 {
  -webkit-box-flex: 9;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 9;
  /* OLD - Firefox 19- */
  -webkit-flex: 9;
  /* Chrome */
  -ms-flex: 9;
  /* IE 10 */
  flex: 9;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.col-10 {
  -webkit-box-flex: 10;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 10;
  /* OLD - Firefox 19- */
  -webkit-flex: 10;
  /* Chrome */
  -ms-flex: 10;
  /* IE 10 */
  flex: 10;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.col-11 {
  -webkit-box-flex: 11;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 11;
  /* OLD - Firefox 19- */
  -webkit-flex: 11;
  /* Chrome */
  -ms-flex: 11;
  /* IE 10 */
  flex: 11;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.col-12 {
  -webkit-box-flex: 12;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 12;
  /* OLD - Firefox 19- */
  -webkit-flex: 12;
  /* Chrome */
  -ms-flex: 12;
  /* IE 10 */
  flex: 12;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

html.app, .app body {
  height: 100%;
  margin: 0;
}

.flex-screen {
  display: flex;
  flex-flow: column nowrap;
  min-height: 100%;
}

.flex-screen-content {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}

/**** UI ****/
.hidden {
  display: none;
}

.vhidden {
  visibility: hidden;
}

.hidden-scroll-y {
  overflow-y: hidden;
}

.first-color {
  color: #00c3a1;
}

/* Text*/
strong {
  font-weight: 700;
}

p {
  padding: 7px 10px;
  color: #373737;
  font-size: 1.2em;
}

a {
  text-decoration: none;
  cursor: pointer;
}

h3 {
  color: #00c3a1;
  text-align: center;
  font-size: 1.5em;
}

.high-green {
  color: #00c3a1;
}

a.text-underline {
  color: #373737;
  text-decoration: underline;
  text-align: center;
  display: block;
  padding: 1em;
}

.bold {
  font-weight: bold;
}

.line-info {
  color: #8d8d8d;
  white-space: nowrap;
}
.line-info span {
  color: black;
}

.text-list {
  background: #f1f1f1;
  padding: 0 1em 1em;
  margin-top: 1em;
  border-radius: 5px;
}
.text-list li:not(.title-list) {
  font-weight: 100;
  padding: 3px 0;
}
.text-list .title-list {
  text-transform: uppercase;
  padding: 1em 0;
  /* border-bottom:1px solid #ccc; */
}
.text-list .title-list ~ li:hover {
  color: #00c3a1;
}
.text-list .title-list ~ li .icon-cerrar {
  color: #00c3a1;
  font-size: 0.7em;
  padding-left: 4px;
}
.text-list .title-list ~ li .icon-cerrar:hover {
  color: #8d8d8d;
}

.box-table .text-list li {
  background: transparent;
  border: 0;
  margin-bottom: auto;
}

/*Boxes*/
.container {
  width: 100%;
}

.mini-section {
  border-radius: 5px;
  border: 1px solid #00c3a1;
  padding: 10px;
}

/* Buttons*/
.btn {
  text-transform: uppercase;
  font-size: 1.3em;
  color: #00c3a1;
  border: 2px solid #00c3a1;
  border-radius: 5px;
  padding: 1em;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.btn-mini {
  font-size: 0.7em;
  color: #00c3a1;
  border: 2px solid #00c3a1;
  border-radius: 5px;
  padding: 1em;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.btn-update {
  font-size: 0.5em !important;
  }
.btn:hover {
  color: #009f83;
  border: 2px solid #009f83;
}
.btn.maxi {
  width: 100%;
  max-width: 300px;
}
.btn.medium {
  padding: 10px;
  font-size: 1em;
}
.btn.center {
  margin: 20px auto;
}
.btn a {
  font-size: 1.3em;
  color: #00c3a1;
  font-weight: bold;
}
.btn a:hover {
  color: #009f83;
}

.btn-fill {
  text-transform: uppercase;
  font-size: 1em;
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bold;
  background: #00c3a1;
  cursor: pointer;
  border: 0;
  text-align: center;
  align-items: center;
  display: flex;
}
.btn-fill:hover {
  background: #009f83;
}
.btn-fill i {
  color: white;
  font-size: 25px;
  margin-left: 5px;
}
.btn-fill.maxi {
  width: 100%;
  max-width: 300px;
  padding: 15px 20px;
  display: block;
}
.btn-fill.medium {
  padding: 15px 20px;
  font-size: 1em;
}
.btn-fill.mini {
  text-transform: initial;
  font-weight: 100;
  padding: 10px;
}
.btn-fill.center {
  margin: 20px auto;
}
.btn-fill a {
  font-size: 1em;
  color: white;
  font-weight: bold;
}
.btn-fill .icon-export:before, .btn-fill .icon-import:before {
  font-size: 18px;
  bottom: 3px;
  position: relative;
}

.none-button {
  cursor: initial !important;
}
.none-button:hover {
  color: initial !important;
}

.icon-cerrar {
  cursor: pointer;
}

/* Position*/
.float-right {
  float: right;
}

.float-left {
  float: left;
}

.padding1 {
  padding: 1em;
}

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

.inline-flex {
  display: inline-flex;
}

.space-between {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.space-around {
  justify-content: space-around;
  display: flex;
  align-items: center;
}

.flex-end {
  justify-content: flex-end;
  display: flex;
  align-items: center;
}

.flex-start {
  justify-content: flex-start;
  display: flex;
  align-items: center;
}

.flex-justify-center {
  justify-content: center;
  display: flex;
  align-items: center;
}

.flex-center {
  align-items: center;
  display: flex;
}

.title-space {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1em;
}
.title-space .btn-fill i {
  margin-right: 10px;
}
.title-space li {
  margin-right: 10px;
}
.title-space li:last-child {
  margin-right: 0;
}

/* Decoration*/
.underline {
  border-bottom: 1px solid #e5e5e5;
}

.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* General*/
html, body, .wrapper.split-layout {
  height: 100%;
}

body {
  font-family: "klavika", serif;
  background: #e5e5e5;
}

.wrapper {
  margin: 0 auto;
  max-width: 1400px;
}

.wrapper-2 {
  margin: 0 auto;
  max-width: 1200px;
}

.wrapper-3 {
  margin: 0 auto;
  max-width: 900px;
}

.wrapper-4 {
  margin: 0 auto;
  max-width: 400px;
}

.center {
  -ms-display: flex;
  display: flex;
  /* vertical center */
  align-items: center;
  /* horizontal center */
  justify-content: center;
}

/* Header*/
.inside-menu {
  background: #000;
  padding: 1em;
}
.inside-menu section {
  justify-content: space-between;
  align-items: center;
}
.inside-menu section a img {
  width: 180px;
}
.inside-menu .title h1 {
  color: #00c3a1;
  font-weight: 300;
  font-size: 2em;
}

/* Tooltip menu */
nav.box-tooltip {
  position: relative;
}
nav.box-tooltip .btn-nav {
  text-transform: initial;
  font-weight: 300;
}
nav.box-tooltip .btn-nav b {
  text-transform: uppercase;
  font-weight: bold;
}
nav.box-tooltip .tooltip {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s 0s, visibility 0s 0.5s;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  font-weight: bold;
  background: black;
  cursor: pointer;
  border: 1px solid #00c3a1;
  box-shadow: -2px 5px 10px 0px rgba(0, 0, 0, 0.41);
  text-align: center;
  z-index: 9;
  width: 100%;
}
nav.box-tooltip .tooltip p {
  opacity: 0.8;
  padding: 15px 5px;
  color: #00c3a1;
  font-size: 1em;
}
nav.box-tooltip .tooltip ul {
  padding: 0;
  border-top: 1px solid #8d8d8d;
  text-align: left;
}
nav.box-tooltip .tooltip ul li a {
  background: transparent;
  border-top: 1px solid white;
  color: white;
  font-weight: 300;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  display: block;
}
nav.box-tooltip .tooltip ul li a:hover {
  color: #00c3a1;
}
nav.box-tooltip:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s 0s, visibility 0s 0s;
}

/* Pista SVG */
.pista-edit .st0 {
  fill: none;
}
.pista-edit .names {
  fill: #373737;
  font-family: "klavika", serif;
  font-size: 26px;
  font-weight: normal;
}
.pista-edit .date {
  font-size: 29px;
  fill: #373737;
  font-family: "klavika", serif;
  font-weight: 100;
}

/* Loading */
.overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}
.overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: rotate 1s infinite;
  animation: rotate 1s infinite;
}

/**** ANIMATIONS ****/
.ac-container {
  overflow: hidden;
}

.ac-container .contact {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 20;
  display: inline;
}

.ac-container input:checked + .contact,
.ac-container input:checked + .contact:hover {
  display: inline;
}

.ac-container input#contacto {
  display: none;
}

.ac-container article {
  overflow: hidden;
  height: 0px;
  position: relative;
  transition: height 0.3s ease-in-out;
}

.ac-container article p {
  margin: 3px;
  padding: 10px;
  display: block;
}

.ac-container input:checked ~ article {
  transition: height 0.5s ease-in-out;
}

.ac-container input:checked ~ article.ac-tall {
  height: 390px;
  background: #009f83;
  margin-top: 20px;
}

/* Checkbox*/
.check-animation {
  text-align: left;
  color: #8d8d8d;
  font-size: 1em;
}
.check-animation [type="checkbox"]:not(:checked),
.check-animation [type="checkbox"]:checked,
.check-animation [type="radio"]:not(:checked),
.check-animation [type="radio"]:checked {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.check-animation [type="checkbox"] + label, .check-animation [type="radio"] + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}
.check-animation [type="checkbox"] + label:before, .check-animation [type="checkbox"]:not(.filled-in) + label:after, .check-animation [type="radio"] + label:before, .check-animation [type="radio"]:not(.filled-in) + label:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #00c3a1;
  border-radius: 1px;
  margin-top: 2px;
  transition: .2s;
}
.check-animation [type="checkbox"]:not(.filled-in) + label:after, .check-animation [type="radio"]:not(.filled-in) + label:after {
  border: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.check-animation [type="checkbox"].filled-in + label:after, .check-animation [type="radio"].filled-in + label:after {
  border-radius: 2px;
}
.check-animation [type="checkbox"].filled-in + label:before,
.check-animation [type="checkbox"].filled-in + label:after,
.check-animation [type="radio"].filled-in + label:before,
.check-animation [type="radio"].filled-in + label:after {
  content: '';
  left: 0;
  position: absolute;
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  z-index: 1;
}
.check-animation [type="checkbox"].filled-in:not(:checked) + label:before, .check-animation [type="radio"].filled-in:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 20% 40%;
  transform-origin: 100% 100%;
}
.check-animation [type="checkbox"].filled-in:not(:checked) + label:after, .check-animation [type="radio"].filled-in:not(:checked) + label:after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #00c3a1;
  top: 0px;
  z-index: 0;
}
.check-animation [type="checkbox"].filled-in:checked + label:before, .check-animation [type="radio"].filled-in:checked + label:before {
  top: 0;
  left: 0;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #00c3a1;
  border-bottom: 2px solid #00c3a1;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.check-animation [type="checkbox"].filled-in:checked + label:after, .check-animation [type="radio"].filled-in:checked + label:after {
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #00c3a1;
  background-color: transparent;
  z-index: 0;
}

/* Checkbox*/
.check-animation-footer {
  text-align: left;
  padding: 10px 0 0 !important;
}
.check-animation-footer [type="checkbox"]:not(:checked),
.check-animation-footer [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.check-animation-footer [type="checkbox"] + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}
.check-animation-footer [type="checkbox"] + label:before, .check-animation-footer [type="checkbox"]:not(.filled-in) + label:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #373737;
  border-radius: 1px;
  margin-top: 2px;
  transition: .2s;
}
.check-animation-footer [type="checkbox"]:not(.filled-in) + label:after {
  border: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.check-animation-footer [type="checkbox"].filled-in + label:after {
  border-radius: 2px;
}
.check-animation-footer [type="checkbox"].filled-in + label:before,
.check-animation-footer [type="checkbox"].filled-in + label:after {
  content: '';
  left: 0;
  position: absolute;
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  z-index: 1;
}
.check-animation-footer [type="checkbox"].filled-in:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 20% 40%;
  transform-origin: 100% 100%;
}
.check-animation-footer [type="checkbox"].filled-in:not(:checked) + label:after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #373737;
  top: 0px;
  z-index: 0;
}
.check-animation-footer [type="checkbox"].filled-in:checked + label:before {
  top: 0;
  left: 0;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.check-animation-footer [type="checkbox"].filled-in:checked + label:after {
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #00c3a1;
  background-color: #00c3a1;
  z-index: 0;
}

/* Radiobutton*/
input[type=radio].radio-check {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

input[type=radio].radio-check + label.radio-text {
  padding-left: 35px;
  height: 30px;
  display: inline-block;
  line-height: 30px;
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: middle;
  cursor: pointer;
}

input[type=radio].radio-check:checked + label.radio-text {
  background-position: 0 -30px;
}

label.radio-text {
  background-image: url(../images/mobile/radio-button.png);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Popup */
.cd-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.is-visible {
  opacity: 1;
  z-index: 999;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
  width: 100%;
  max-width: 560px;
  background: #FFF;
  border-radius: .25em .25em .4em .4em;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 3em 1em;
  max-height: 675px;
  overflow-y: auto;
  height: auto;
}

.cd-popup-container .cd-popup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 25px;
  height: 25px;
  color: #8d8d8d;
}

.cd-popup-container .cd-popup-close::before {
  font-family: "iconfont";
  content: '\e902';
  position: absolute;
  top: 5px;
  right: 5px;
}

.cd-popup.confirm-publish-group {
  z-index: 9999;
}

/* Icons ball animation*/
@-webkit-keyframes ball-animation {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes ball-animation {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Button Checkbox */
.button-group {
  display: inline-flex;
  width: 100%;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.check-on {
  padding: 20px 0;
  margin-bottom: 20px;
}
.check-on p {
  text-align: left;
}
.check-on label {
  text-align: center;
  color: #585858;
  font-size: 1em;
  display: block;
}
.check-on label p {
  padding: 5px 0;
  position: relative;
}
.check-on label p span {
  position: relative;
  top: 13px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 10px;
  z-index: 999;
  font-size: 0.8em;
  padding: 0 15px;
  display: block;
  text-align: center;
}
.check-on .checkbox-toggle {
  width: 100% !important;
  cursor: pointer;
}
.check-on .checkbox-toggle:before {
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  z-index: 1;
  display: block;
  border-radius: 5px;
  border: 1px solid #cacaca;
  background: white;
  height: 30px;
  margin: 0 5px;
  width: initial;
}
.check-on .checkbox-toggle:after {
  transition: all 0.2s ease;
  position: absolute;
  z-index: 2;
  border-radius: 5px;
  content: "";
  text-align: center;
  font-size: 30px;
  top: 10px;
  left: 0;
  width: 100%;
}
.check-on .checkbox-toggle:checked:after {
  height: 30px;
  color: black;
  background: #00c3a1;
  content: "";
  top: 10px;
  left: 0;
  right: 0;
  border: 1px solid black;
  margin: 0 5px;
  width: initial;
  /* border:0;*/
}

/* Select*/
.box-select {
  display: inline-flex;
  align-items: center;
}

.custom-select {
  position: relative;
  width: 100%;
  height: 30px;
  /* margin-left: 15px; */
  background-color: #fff;
  border: 1px solid #cacaca;
  border-radius: 4px;
  color: black;
}
.custom-select select {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  padding-left: 10px;
  padding-right: 20px;
  background-color: transparent;
  border: 0;
  color: black;
  font-weight: lighter;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.2em;
}
.custom-select:last-child {
  margin-bottom: 0;
}
.custom-select span {
  position: absolute;
  right: 6px;
  pointer-events: none;
}
.custom-select span:nth-child(1) {
  top: 11px;
  border-top: 8px solid #00c3a1;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.custom-select span:nth-child(2) {
  top: 8px;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

/* Drag and Drop */
.list-dragdrop {
  margin-top: 10px;
  display: inline-table;
  border: 0;
}
.list-dragdrop li {
  border: 1px solid #ccc;
  padding: 5px 12px;
  margin: 0 0 -1px 0 !important;
  text-align: left;
  font-size: 1.2em;
  position: relative;
  background: white;
  cursor: pointer;
}
.list-dragdrop li:after {
  content: "\e911";
  font-size: 17px;
  position: absolute;
  right: 7px;
  top: 6px;
  font-family: iconfont;
  color: #8d8d8d;
}
.list-dragdrop li:hover {
  border-color: #00c3a1;
  z-index: 10 !important;
}

@font-face {
  font-family: 'klavika';
  src: url("../fonts/Klavika-Regular.otf");
  src: url("../fonts/Klavika-Regular.eot") format("embedded-opentype"), url("../fonts/Klavika-Regular.woff") format("woff"), url("../fonts/Klavika-Regular.ttf") format("truetype"), url("../fonts/Klavika-Regular.svg#klavika_light_ultraregular") format("svg");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'klavika';
  src: url("../fonts/Klavika-Bold.otf");
  src: url("../fonts/Klavika-Bold.eot") format("embedded-opentype"), url("../fonts/Klavika-Bold.woff") format("woff"), url("../fonts/Klavika-Bold.ttf") format("truetype"), url("../fonts/Klavika-Bold.svg#klavika_bold_ultraregular") format("svg");
  font-weight: 500;
  font-style: normal;
}
/* ICONFONT*/
@font-face {
  font-family: 'iconfont';
  src: url("../fonts/iconfont/icomoon.eot?joq9cp");
  src: url("../fonts/iconfont/icomoon.eot?joq9cp#iefix") format("embedded-opentype"), url("../fonts/iconfont/icomoon.ttf?joq9cp") format("truetype"), url("../fonts/iconfont/icomoon.woff?joq9cp") format("woff"), url("../fonts/iconfont/icomoon.svg?joq9cp#iconfont") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'iconfont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-add-user:before {
  content: "\e91b";
}

.icon-mail:before {
  content: "\e91c";
}

.icon-export:before {
  content: "\e919";
}

.icon-import:before {
  content: "\e91a";
}

.icon-escuela:before {
  content: "\e912";
}

.icon-padel-icon2:before {
  content: "\e913";
}

.icon-plus:before {
  content: "\e914";
}

.icon-trofeo:before {
  content: "\e915";
}

.icon-menu:before {
  content: "\e911";
}

.icon-padel-icon:before {
  content: "\e910";
}

.icon-grupo:before {
  content: "\e90f";
}

.icon-search:before {
  content: "\e90e";
  color: #8c8c8c;
}

.icon-ajustes:before {
  content: "\e900";
}

.icon-arrow-left:before {
  content: "\e901";
  color: #a7a7a7;
}

.icon-arrow-right:before {
  content: "\e916";
  color: #a7a7a7;
}

.icon-arrow-top:before {
  content: "\e917";
  color: #a7a7a7;
}

.icon-arrow-down:before {
  content: "\e918";
}

.icon-cerrar:before {
  content: "\e902";
}

.icon-check:before {
  content: "\e903";
}

.icon-user:before {
  content: "\e904";
}

.icon-lugar:before {
  content: "\e905";
}

.icon-exclusivo:before {
  content: "\e906";
}

.icon-asocia:before {
  content: "\e907";
}

.icon-pista:before {
  content: "\e908";
}

.icon-tag:before {
  content: "\e909";
}

.icon-tiempo:before {
  content: "\e90a";
}

.icon-tiempo2:before {
  content: "\e90b";
}

.icon-twitter:before {
  content: "\e90c";
  color: #000;
}

.icon-facebook:before {
  content: "\e90d";
  color: #000;
}

/* Split layout */
.split-layout section {
  padding: 3em;
}
.split-layout .split-2 form {
  max-width: 435px;
  text-align: right;
}
.split-layout .split-2 > p.location {
  position: relative;
  padding-left: 35px;
}
.split-layout .split-2 > p.location:before {
  content: "\e905";
  position: absolute;
  font-family: iconfont;
  left: 0;
  border: 2px solid #00c3a1;
  border-radius: 5px;
  font-weight: bold;
  padding: 2px;
  margin-right: 5px;
  font-size: 0.8em;
  color: #00c3a1;
}
.split-layout .edit, .split-layout .edit a {
  color: #00c3a1;
  text-decoration: underline;
  cursor: pointer;
  position: absolute;
  right: -10px;
  top: 20px;
}
.split-layout .edit:hover, .split-layout .edit a:hover {
  color: black;
}
.split-layout .edit a {
  top: 0;
  right: 0;
}
.split-layout .bg-pista article {
  float: right;
  padding: 20px;
}
.split-layout .bg-pista h2 {
  color: #00c3a1;
  font-size: 2.2em;
  font-weight: 300;
}

.bg-pista {
  background: url("../images/bg-pista.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

/* Tabs */
ul.tabs {
  width: 100%;
}
ul.tabs li {
  text-transform: uppercase;
  border-bottom: 1px solid #cacaca;
  color: #8d8d8d;
  text-align: center;
  cursor: pointer;
  font-weight: 300;
  margin: 0;
  padding: 20px 0 10px;
  align-items: center;
  display: flex;
  justify-content: center;
}
ul.tabs li:last-child {
  justify-content: flex-end;
}
ul.tabs li.active {
  border-bottom: 2px solid #00c3a1;
  color: black;
}
ul.tabs li:hover {
  color: #00c3a1;
}

/* Tables */
.tab_container {
  width: 100%;
}

.box-table ul {
  width: 100%;
}
.box-table li {
  background: white;
  border: 1px solid #cacaca;
  margin-bottom: -1px;
}
.box-table .title {
  text-transform: uppercase;
  color: #8d8d8d;
  font-weight: 100;
  margin: 10px 0;
  min-height: 39px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box-table .table-rows .text {
  font-size: 1em;
  padding: 2px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.box-table .table-rows .text span:first-child {
  padding-left: 20px;
  padding-right: 20px;
}
.box-table .table-rows .text span {
  padding-right: 20px;
}
.box-table .table-rows .text span:last-child {
  padding-right: 0;
}
.box-table .table-rows .text > [class*="col-"] {
  margin-bottom: 0;
}
.box-table .table-rows .text .max-width-info {
  width: 475px;
}
.box-table .table-rows .text .hour {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.3em;
}
.box-table .table-rows .text .hour i {
  color: #cacaca;
  font-size: 0.8em;
  margin-right: 10px;
}
.box-table .table-rows .text .time {
  text-transform: uppercase;
  padding-left: 25px;
  position: relative;
  color: #8d8d8d;
}
.box-table .table-rows .text .time:before {
  font-family: "iconfont";
  content: "\e90a";
  position: absolute;
  left: 0;
  top: 0;
  color: #cacaca;
  font-size: 1em;
}
.box-table .table-rows .text .place {
  padding-left: 25px;
  position: relative;
}
.box-table .table-rows .text .place:before {
  font-family: "iconfont";
  content: "\e905";
  position: absolute;
  left: 0;
  top: 0;
  color: #00c3a1;
  font-size: 1em;
  font-weight: bold;
}
.box-table .table-rows .text .pista {
  text-transform: uppercase;
}
.box-table .table-rows .text .pista b {
  /* text-transform: initial; */
  font-weight: bold;
}
.box-table .table-rows .text .pista i {
  color: #cacaca;
  margin-right: 10px;
}
.box-table .table-rows .text .price i {
  color: #cacaca;
  margin-right: 10px;
}
.box-table .table-rows .text .exclusive {
  color: #FF5439;
  text-transform: uppercase;
}
.box-table .table-rows .text .exclusive i {
  margin-right: 10px;
}
.box-table .table-rows .icon-ajustes {
  color: #00c3a1;
  font-size: 1.3em;
}
.box-table .table-rows .icon-ajustes:hover {
  color: #009f83;
}
.box-table .table-rows .button {
  margin-bottom: 0;
  margin-right: 0;
  text-transform: uppercase;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box-table .table-rows .button:not(.exclusive) {
  justify-content: flex-end;
}
.box-table .table-rows .button.exclusive {
  background: #FFECE5;
  color: #FF5439;
  border-left: 2px solid #FF5439;
}
.box-table .table-rows .button.exclusive span {
  font-size: 1.2em;
}
.box-table .table-rows .button.exclusive .text:first-child {
  padding-left: 25px;
  position: relative;
}
.box-table .table-rows .button.exclusive .text:first-child:before {
  font-family: "iconfont";
  content: "\e910";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 1em;
}
.box-table .flex-start .custom-select {
  width: auto;
}
.box-table .flex-start .box-select {
  width: auto;
}

.table-data .title {
  padding: 30px 0;
  /* padding: 30px 40px 20px; */
}
.table-data .title h2 {
  font-size: 2em;
  color: #00c3a1;
  font-weight: 300;
  text-indent: 28px;
  padding-bottom: 20px;
}
.table-data .title p {
  font-size: 1.2em;
  text-transform: initial;
}
.table-data .table-rows .box-select select[disabled*="true"] {
  color: #cacaca;
}
.table-data .table-rows li {
  margin-top: 10px;
  border-radius: 5px;
}
.table-data .table-rows li > div {
  width: 100%;
  padding: 0 1%;
}
.table-data .table-rows li > .icon-validation {
  padding-right: 20px;
}
.table-data .table-rows li > .icon-validation .icon-check {
  color: #00c3a1;
}
.table-data .table-rows li > .icon-validation .icon-cerrar {
  color: #cacaca;
}
.table-data .table-rows .group-input {
  margin: 0;
  width: 70%;
}
.table-data .table-rows .check-on {
  margin: 0;
  padding: 0 0 10px 1%;
}
.table-data .table-rows .check-on.hours label {
  width: 100%;
  float: left;
  max-width: 100px;
}
.table-data .table-rows .check-on.hours label p span {
  font-size: 1em;
  top: 12px;
}
.table-data .table-rows .check-on .button-group.flex-justify-center {
  justify-content: center;
}
.table-data .table-rows .check-on .button-group.flex-justify-center label p {
  padding: 6px 20px;
}
.table-data .table-rows .pista {
  color: #00c3a1;
  text-transform: uppercase;
}
.table-data .table-rows .pista i {
  color: #8d8d8d;
  margin-right: 10px;
}
.table-data .table-rows .nueva-pista {
  background: rgba(255, 255, 255, 0.5);
}
.table-data .table-rows .nueva-pista a {
  color: #00c3a1;
  text-transform: uppercase;
  font-size: 1em;
  padding: 15px 1%;
  display: block;
}
.table-data .table-rows .nueva-pista a:hover {
  color: #009f83;
}
.table-data .name-table-box .custom-select {
  margin: auto 10px;
}
.table-data .name-table-box li:first-child #tipoPista:before, .table-data .name-table-box li:first-child #dias:before, .table-data .name-table-box li:first-child #desde:before, .table-data .name-table-box li:first-child #hasta:before, .table-data .name-table-box li:first-child #precio:before, .table-data .name-table-box li:first-child #precioSocio:before {
  position: absolute;
  top: -30px;
  text-transform: uppercase;
  font-size: 0.8em;
  width: 100%;
  text-align: center;
}
.table-data .name-table-box li:first-child #tipoPista:before {
  content: "Tipo de Pista";
}
.table-data .name-table-box li:first-child #dias:before {
  content: "Dias";
}
.table-data .name-table-box li:first-child #desde:before {
  content: "Desde las";
}
.table-data .name-table-box li:first-child #hasta:before {
  content: "Hasta las";
}
.table-data .name-table-box li:first-child #precio:before {
  content: "Precio";
}
.table-data .name-table-box li:first-child #precioSocio:before {
  content: "Precio Socio";
}
.table-data .box-select {
  width: 100%;
  margin: 10px 0;
  position: relative;
}
.table-data .box-select ~ .icon-validation {
  padding-left: 20px;
}

.container-table {
  width: 100%;
  padding: 40px 0 20px;
}
.container-table a {
  text-transform: uppercase;
  margin: 20px 20px 0 0;
  color: #00c3a1;
}
.container-table a:hover {
  color: #009f83;
}
.container-table table {
  width: 100%;
  border: 1px solid #cacaca;
}
.container-table table th {
  background: #00c3a1;
  color: white;
  padding: 15px;
  text-transform: uppercase;
  font-weight: 300;
  text-align: left;
}
.container-table table th.total {
  color: black;
  font-size: 1.4em;
  text-align: right;
}
.container-table table th.total b {
  font-weight: bold;
}
.container-table table tr {
  background: white;
  border-bottom: 1px solid #cacaca;
}
.container-table table td {
  padding: 15px;
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
}
.container-table table td:after {
  content: "";
  height: 27px;
  width: 1px;
  background: #cacaca;
  position: absolute;
  top: 10px;
  right: 0;
}
.container-table table td:last-child:after {
  background: white;
}
.container-table table td b {
  font-weight: bold;
}

/* Popup Asociar Club */
.asociar-club .cd-popup-container {
  background: white;
  background: linear-gradient(to bottom, white 64%, #cdf3ed 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cdf3ed',GradientType=0 );
}
.asociar-club h2 {
  font-size: 1.6em;
  text-transform: uppercase;
  font-weight: 300;
  padding: 2em 0 1em;
  position: relative;
}
.asociar-club h2:after {
  content: "";
  width: 100px;
  height: 1px;
  background: #cacaca;
  position: absolute;
  bottom: 0;
  left: 38%;
}
.asociar-club p {
  padding: 20px;
  line-height: 30px;
  color: black;
}
.asociar-club .box-avatar {
  position: relative;
}
.asociar-club .box-avatar .avatar-izq {
  width: 100px;
  position: absolute;
  left: -31px;
  top: -40px;
  -webkit-animation: ball-animation 1.5s infinite;
  animation: ball-animation 1.5s infinite;
}
.asociar-club .box-avatar .avatar-der {
  width: 110px;
  position: absolute;
  right: -40px;
  top: -63px;
  -webkit-animation: ball-animation 1.5s infinite 0.5s;
  animation: ball-animation 1.5s infinite 0.5s;
}

/* Popup Recuperar Pista */
.recuperar-pista h2 {
  font-size: 1.6em;
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 1em;
  position: relative;
  color: #00c3a1;
}
.recuperar-pista ul {
  padding: 1em 0;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
}
.recuperar-pista ul li {
  display: inline-flex;
  width: 100%;
  border: 0;
  text-align: left;
  padding-left: 1.5em;
  margin-bottom: 20px;
}
.recuperar-pista ul li:last-child {
  margin-bottom: 0;
}
.recuperar-pista ul li span {
  color: #cacaca;
  max-width: 160px;
  width: 100%;
}
.recuperar-pista ul li span.result {
  color: black;
  text-transform: uppercase;
  max-width: 100%;
  width: 100%;
}

/* Popup Capturar Partido */
.divided {
  border-bottom: 1px solid #cacaca;
  padding: 1em;
}

.capturar-partido h2 {
  font-size: 1.6em;
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 1em;
  position: relative;
  color: #00c3a1;
}
.capturar-partido ul {
  padding: 1em 0;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
}
.capturar-partido ul li {
  display: inline-flex;
  width: 100%;
  border: 0;
  text-align: left;
  padding-left: 1.5em;
  margin-bottom: 20px;
}
.capturar-partido ul li:last-child {
  margin-bottom: 0;
}
.capturar-partido ul li span {
  color: #cacaca;
  max-width: 160px;
  width: 100%;
}
.capturar-partido ul li span.result {
  color: black;
  text-transform: uppercase;
  max-width: 100%;
  width: 100%;
}
.capturar-partido ul li span.result.highlight {
  color: #FF5439;
}

/* Popup Publicar Pista */
.publicar-pista h2 {
  font-size: 1.6em;
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 1em;
  position: relative;
  color: #00c3a1;
}
.publicar-pista ul {
  padding: 1em 0;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
}
.publicar-pista ul li {
  display: inline-flex;
  width: 100%;
  border: 0;
  text-align: left;
  padding-left: 1.5em;
  margin-bottom: 20px;
}
.publicar-pista ul li:last-child {
  margin-bottom: 0;
}
.publicar-pista ul li span {
  color: #cacaca;
  max-width: 160px;
  width: 100%;
}
.publicar-pista ul li span.result {
  color: black;
  text-transform: uppercase;
  max-width: 100%;
  width: 100%;
}
.publicar-pista .check-on {
  margin-bottom: 0;
}
.publicar-pista div > p {
  text-align: left;
  padding-bottom: 20px;
}
.publicar-pista .box-select {
  margin-bottom: 15px;
}
.publicar-pista .box-select span.text {
  font-size: 1.2em;
  width: 100%;
  white-space: nowrap;
}
.publicar-pista .custom-select {
  min-width: 100px;
}

/* Popup Editar Partido */
.editar-partido h2, .editar-grupo h2, .crear-grupo h2, .invitar-whatsapp h2 {
  font-size: 1.6em;
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 1em;
  position: relative;
  color: #00c3a1;
  padding: 0 0 1em;
}
.editar-partido p, .editar-grupo p, .crear-grupo p, .invitar-whatsapp p {
  text-align: left;
}
.editar-partido ul li, .editar-grupo ul li, .crear-grupo ul li, .invitar-whatsapp ul li {
  margin-bottom: 20px;
}
.editar-partido .player, .editar-grupo .player, .crear-grupo .player, .invitar-whatsapp .player {
  cursor: pointer;
}
.editar-partido .player-detail, .editar-grupo .player-detail, .crear-grupo .player-detail, .invitar-whatsapp .player-detail {
  display: inline-block;
  padding: 5px 0 3px 10px;
  width: 100%;
}
.editar-partido .player-detail .user-balloon, .editar-grupo .player-detail .user-balloon, .crear-grupo .player-detail .user-balloon, .invitar-whatsapp .player-detail .user-balloon {
  height: 65px;
  width: 65px;
  position: relative;
  margin: auto;
  float: left;
}
.editar-partido .player-detail .user-balloon img, .editar-grupo .player-detail .user-balloon img, .crear-grupo .player-detail .user-balloon img, .invitar-whatsapp .player-detail .user-balloon img {
  width: 57px;
  height: 58px;
  position: absolute;
  border-radius: 100%;
  top: 4px;
  left: 4px;
  z-index: 1;
}
.editar-partido .player-detail .user-name, .editar-grupo .player-detail .user-name, .crear-grupo .player-detail .user-name, .invitar-whatsapp .player-detail .user-name {
  float: left;
  padding: 10px;
}
.editar-partido .player-detail .user-name p, .editar-grupo .player-detail .user-name p, .crear-grupo .player-detail .user-name p, .invitar-whatsapp .player-detail .user-name p {
  padding: 0;
  font-size: 1.4em;
  margin-bottom: 5px;
  text-align: left;
  display: block;
}
.editar-partido .player-detail .user-name span, .editar-grupo .player-detail .user-name span, .crear-grupo .player-detail .user-name span, .invitar-whatsapp .player-detail .user-name span {
  font-size: 1em;
  color: #8d8d8d;
  text-align: left;
  display: block;
}
.editar-partido #newPlayerButton, .editar-grupo #newPlayerButton, .crear-grupo #newPlayerButton, .invitar-whatsapp #newPlayerButton {
  margin-top: 15px;
}
.editar-partido .pista-edit:focus, .editar-partido .outspace:focus, .editar-grupo .pista-edit:focus, .editar-grupo .outspace:focus, .crear-grupo .pista-edit:focus, .crear-grupo .outspace:focus, .invitar-whatsapp .pista-edit:focus, .invitar-whatsapp .outspace:focus {
  outline: none;
}

/* Tooltip table */
.tab_content .box-tooltip {
  position: relative;
  min-width: 250px;
}
.tab_content .box-tooltip .btn-fill.mini {
  display: block;
  width: 100%;
}
.tab_content .box-tooltip .tooltip {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s 0s, visibility 0s 0.5s;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  font-weight: bold;
  background: #00c3a1;
  cursor: pointer;
  border: 0;
  box-shadow: -2px 5px 10px 0px rgba(0, 0, 0, 0.41);
  min-width: 250px;
  text-align: center;
  z-index: 8;
}
.tab_content .box-tooltip .tooltip p {
  text-transform: initial;
  font-size: 1em;
  color: white;
  padding: 15px 0;
}
.tab_content .box-tooltip .tooltip ul {
  padding: 0;
  border-top: 1px solid #8d8d8d;
}
.tab_content .box-tooltip .tooltip ul li {
  background: transparent;
  border: 0;
  color: #8d8d8d;
  font-weight: 300;
  padding-top: 10px;
  padding-bottom: 10px;
}
.tab_content .box-tooltip .tooltip ul li span {
  color: black;
}
.tab_content .box-tooltip:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s 0s, visibility 0s 0s;
}

.home .logo {
  max-width: 300px;
  width: 100%;
}
.home.bg-pista {
  background: url("../images/bg-pista2.jpg") top center no-repeat;
  background-size: 1400px auto;
  min-height: 100%;
}
.home:before {
  content: "";
  position: absolute;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
  max-width: 1400px;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
.home .inside-menu {
  background: transparent;
}
.home .inside-menu section {
  max-width: 1380px;
  justify-content: flex-end;
}
.home main {
  text-align: center;
}
.home main h1, .home main h2, .home main p {
  width: 100%;
}
.home main h1 {
  margin: 0 auto;
}
.home main h2 {
  text-transform: uppercase;
  color: white;
  font-size: 3.5em;
  padding: 1em 0 0;
  font-weight: 300;
}
.home main p {
  color: white;
  margin: 1em 25%;
  line-height: 25px;
}
.home main button {
  padding: 20px;
}
.home main button a {
  font-size: 1.2em;
}
.home .footer-float {
  margin-top: 50px;
  position: relative;
  /* &:after{*/
  /*   content:"";*/
  /*   background:white;*/
  /*   height: 250px;*/
  /*   width: 100%;*/
  /*   position:absolute;*/
  /*   bottom:0;*/
  /*   z-index: -1;*/
  /*   left: 0;*/
  /* }*/
  /* .social-media{
    position:absolute;
    right: -85px;
    bottom: 100px;
    display: inline;
    a{
      font-size: 40px;
      &:hover{
        background: $green-medium;
      }
    }
  } */
}
.home .footer-float article {
  position: relative;
}
.home .footer-float .avatar-izq {
  position: absolute;
  left: 0;
  -webkit-animation: ball-animation 1.5s infinite;
  animation: ball-animation 1.5s infinite;
}
.home .footer-float .avatar-der {
  position: absolute;
  right: 0;
  -webkit-animation: ball-animation 1s infinite;
  animation: ball-animation 1s infinite;
}

/* Popup Login */
.login form {
  margin: 0 auto;
  max-width: 400px;
}
.login form .btn-fill.maxi {
  max-width: 100%;
}
.login a {
  color: #00c3a1;
}
.login hr {
  color: #cacaca;
  width: 100%;
  margin: 20px auto;
}

.popup-password form {
  margin: 0 auto;
  max-width: 400px;
}

/*Footer*/
footer {
  background: #00c3a1;
  padding: 15px;
  /* > section:first-child a{
      color: white;
      text-transform: uppercase;
      font-weight: 100;
      font-size: 0.8rem;
      font-size: small;
        white-space: nowrap;
      &:hover{
        color: $grey-text;
      }
      &:before{
        content:"";
        border-radius: 50%;
        background: $grey-text;
        width: 3px;
        height: 3px;
        display: inline-block;
        margin: 0 10px;
        position:relative;
        bottom: 3px;
      }
    } */
}
footer .ac-container {
  text-align: center;
  color: white;
  padding: 20px 0 0;
}
footer .ac-container > label {
  color: white;
  text-transform: uppercase;
  font-weight: 100;
  font-size: small;
}
footer .ac-container > a {
  color: white;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 0.8rem;
  font-size: small;
  white-space: nowrap;
}
footer .ac-container > a:hover {
  color: #373737;
}
footer .ac-container > a:before {
  content: "";
  border-radius: 50%;
  background: #373737;
  width: 3px;
  height: 3px;
  display: inline-block;
  margin: 0 10px;
  position: relative;
  bottom: 3px;
}
footer form {
  max-width: 380px;
  margin: 0 auto;
  padding: 10px;
}
footer form > input {
  width: 100%;
  min-height: 40px;
  border: 0;
  padding: 10px;
  color: #373737;
  margin-top: 10px;
}
footer form > textarea {
  min-height: 126px;
  width: 100%;
  border: 0;
  padding: 10px;
  color: #373737;
  margin-top: 10px;
}
footer form button {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  color: #fff;
  padding: 12px 60px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
footer form button:hover {
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
footer form .check-animation-footer {
  font-weight: 100;
  font-size: 0.8em;
}
footer form .check-animation-footer a {
  color: white;
}
footer .end {
  text-align: center;
  padding-top: 20px;
}
footer .end span {
  color: #009f83;
  align-self: flex-end;
  font-size: 0.7em;
}
footer .end .rrss {
  align-self: flex-end;
}
footer .end .rrss a {
  font-size: 3em;
  color: #06201B;
}
footer .end .rrss a:hover {
  color: #009f83;
}
footer .end .rrss a i {
  transition: all 0.5s linear;
}
footer .logo-footer img {
  -webkit-filter: brightness(0.25);
  filter: brightness(0.25);
  max-width: 150px;
}

/* Popup Crear Cliente */
.crear-cliente h2 {
  font-size: 1.6em;
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 1em;
  position: relative;
  color: #00c3a1;
}

/*Ranking*/
.table-ranking {
  margin: 20px auto;
  font-size: 1.3em;
}
.table-ranking thead tr th {
  padding: 15px;
}
.table-ranking tr {
  padding: 10px;
}
.table-ranking tr > * {
  vertical-align: middle;
  padding: 0 15px;
}
.table-ranking tbody tr:nth-child(odd) {
  background: #d2d2d2;
}
.table-ranking .data-ranking {
  text-align: center;
}
.table-ranking .number-ranking {
  border-right: 2px solid #e5e5e5;
  padding: 5px;
  color: #00c3a1;
}

.table-ranking tr:nth-child(even) .number-ranking {
  border-right: 2px solid #d2d2d2;
}
.table-ranking .user-balloon {
  height: 65px;
  width: 65px;
  position: relative;
  margin: auto;
  padding: 5px 10px 0;
}
.table-ranking .user-balloon img {
  width: 57px;
  height: 58px;
  /*position: absolute;*/
  border-radius: 100%;
  top: 4px;
  left: 4px;
  z-index: 1;
}
.table-ranking .user-balloon .name-somelines {
  text-align: left;
}
.table-ranking .user-balloon .name-somelines span {
  display: block;
  padding-bottom: 2px;
}
.table-ranking .user-balloon .name-somelines span:last-child {
  padding-bottom: 0;
}
.table-ranking .user-balloon .data-ranking {
  font-weight: bold;
}
.table-ranking .user-balloon .name-title {
  font-size: 1.3em;
}
.table-ranking .user-balloon .number-ranking {
  background: #00c3a1;
  color: white;
}

/**** FORM ****/
/*Input*/
.box-input {
  display: inline-flex;
  align-items: center;
}
.box-input .text {
  font-size: 1.2em;
  padding: 0 10px;
  white-space: nowrap;
}
.box-input input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #cacaca;
  font-size: 1.2em;
  padding: 3px;
}

/* Selectbox reservas */
.select-customer .select-wrapper {
  width: 100%;
}
.select-customer .text {
  display: inline-flex;
  align-self: flex-start;
  padding-top: 5px !important;
}
.select-customer .selectbox-search ~ .select-btn {
  border: 1px solid #cacaca;
  min-height: 30px;
}
.select-customer .selectbox-search ~ .select-btn .label {
  font-weight: 300;
  text-transform: initial;
  color: #333;
  max-width: 100%;
}
.select-customer .selectbox-search ~ .select-btn .caret {
  display: initial;
}
.select-customer .selectbox-search ~ .select-btn i.mdi.mdi-chevron-down.icon-arrow-down.caret:before {
  content: "";
  top: 19px;
  border-top: 8px solid #00c3a1;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: relative;
  left: 16px;
}
.select-customer .selectbox-search ~ .select-btn i.mdi.mdi-chevron-down.icon-arrow-down.caret:after {
  content: "";
  top: 16px;
  position: relative;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.select-customer .selectbox-search ~ .select-list {
  position: initial;
}
.select-customer .selectbox-search ~ .select-list .search {
  padding-left: 0;
}
.select-customer .selectbox-search ~ .select-list > li:not(:first-child) {
  display: inherit;
}

/*selectize plugin*/
body .box-input .selectize-control {
  width: 100%;
}
body .box-input .selectize-control .selectize-input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #cacaca;
  color: black;
  font-size: 1em;
  padding: 3px;
}
body .box-input .selectize-control .selectize-input > input {
  z-index: 10;
  height: auto;
}
body .box-input .selectize-control .selectize-input.items.has-options > input[placeholder="Customer"] {
  font-size: 16px;
}
body .box-input .selectize-control.single .selectize-input:after {
  visibility: hidden;
}

.selectize-control.single .selectize-input:after {
  visibility: hidden;
}

.split-layout .bg-pista .group-input input {
  border-bottom: 1px solid white;
  color: white;
}
.split-layout .bg-pista .group-input ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
}
.split-layout .bg-pista .group-input ::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}
.split-layout .bg-pista .group-input :-ms-input-placeholder {
  /* IE 10+ */
  color: white;
}
.split-layout .bg-pista .group-input :-moz-placeholder {
  /* Firefox 18- */
  color: white;
}
.split-layout .bg-pista .group-input > span {
  color: white;
}

.group-input {
  position: relative;
  margin: 40px 0;
  /* active state */
}
.group-input input {
  font-size: 18px;
  padding: 10px 0px 5px 0px;
  display: block;
  max-width: 435px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #8d8d8d;
  background: transparent;
}
.group-input input:focus {
  outline: none;
}
.group-input label {
  color: #00c3a1;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: -10px;
  font-size: 12px;
  text-transform: uppercase;
}
.group-input .bar {
  position: absolute;
  display: block;
  max-width: 435px;
  width: 100%;
  padding: 0;
  /* margin:-40px 0; */
}
.group-input .bar:before, .group-input .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  background: #00c3a1;
  transition: 0.5s ease all;
  -moz-transition: 0.5s ease all;
  -webkit-transition: 0.5s ease all;
}
.group-input .bar:before {
  left: 50%;
}
.group-input .bar:after {
  right: 50%;
}
.group-input input:focus ~ .bar:before, .group-input input:focus ~ .bar:after {
  width: 50%;
}

.group-input > span {
  font-size: 18px;
  padding: 10px 0px 5px 0px;
  display: block;
  max-width: 435px;
  width: 100%;
  border: none;
  background: transparent;
}

/* Ubicacion */
.group-input.ubicacion {
  /* &:after{*/
  /*     content: '\e905';*/
  /*     font-family: 'iconfont';*/
  /*     position: absolute;*/
  /*     right: 0;*/
  /*     top: 8px;*/
  /*     color: #00c3a1;*/
  /*     font-size: 20px;*/
  /*     border: 2px solid;*/
  /*     border-radius: 5px;*/
  /*     font-weight: bold;*/
  /*     padding: 2px;*/
  /* }*/
}
.group-input.ubicacion ~ iframe {
  margin-bottom: 20px;
}
.group-input.ubicacion .icon-lugar {
  position: absolute;
  bottom: 0;
  color: #00c3a1;
  font-size: 20px;
  border: 2px solid;
  border-radius: 5px;
  font-weight: bold;
  padding: 2px;
  margin-left: 5px;
}

/* Calendar JqueryUI Multidatespicker */
body a.ui-state-default.ui-state-active {
  background: #00c3a1;
}

body .ui-widget {
  text-transform: uppercase;
  text-align: center;
  background: white;
}

body table.ui-datepicker-calendar {
  border-collapse: collapse;
}

body .ui-widget.ui-widget-content {
  border: 0;
  padding: 0;
  font-family: "klavika", serif;
  z-index: 999;
}

body .ui-datepicker .ui-datepicker-header {
  border-radius: 0;
  border: 0;
  background: #e7e7e7;
  font-weight: 100;
  width: 100%;
}

body .ui-datepicker th {
  background: #cacaca;
  border: 1px solid black;
  font-weight: 100;
}

body .ui-datepicker-calendar td {
  padding: 0;
  border: 1px solid #8d8d8d;
}

body .ui-state-default, body .ui-widget-content .ui-state-default, body .ui-widget-header .ui-state-default, body .ui-button, html body .ui-button.ui-state-disabled:hover, html body .ui-button.ui-state-disabled:active {
  border: 0;
  text-align: center;
  padding: 10px;
  background: white;
}

body .ui-widget-content .ui-state-default.ui-state-hover {
  background: #00c3a1;
  color: black;
}

body table.ui-datepicker-calendar {
  margin: 0;
}

body .ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
  background: #00c3a1 none;
  color: black;
}

body .ui-state-highlight, body .ui-widget-content .ui-state-highlight, body .ui-widget-header .ui-state-highlight {
  border-color: #8d8d8d;
}

body .ui-datepicker .ui-datepicker-prev span.ui-icon.ui-icon-circle-triangle-w {
  background: url("../images/arrow-left.png") no-repeat;
}

body .ui-datepicker .ui-datepicker-next span.ui-icon.ui-icon-circle-triangle-e {
  background: url("../images/arrow-right.png") no-repeat;
  margin-left: 0px;
}

/* NUEVO DATEPICKER */
body .ui-datepicker ~ .datepicker {
  padding: 15px;
  font-weight: 100;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.25);
}
body .ui-datepicker ~ .datepicker .dow {
  color: #00c3a1;
  padding: 10px 7px;
  border-bottom: 2px solid #cacaca;
}
body .ui-datepicker ~ .datepicker .datepicker-switch {
  font-weight: bold;
  text-transform: uppercase;
}
body .ui-datepicker ~ .datepicker th {
  font-weight: bold;
}
body .ui-datepicker ~ .datepicker td {
  padding: 7px;
  border-radius: 0;
}
body .ui-datepicker ~ .datepicker td.day {
  font-weight: bold;
}
body .ui-datepicker ~ .datepicker td.active {
  background-color: #00c3a1;
  font-weight: bold;
  border-radius: 0;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled] {
  background-color: #00c3a1 !important;
}

/* DATEPICKER EN CALENDAR */
body #mdp-calendar .datepicker {
  padding: 15px;
  font-weight: 100;
  position: initial;
  background: transparent;
  box-shadow: none;
}
body #mdp-calendar .datepicker .dow {
  color: #00c3a1;
  padding: 10px 7px;
  border-bottom: 2px solid #cacaca;
}
body #mdp-calendar .datepicker .datepicker-switch {
  font-weight: bold;
  text-transform: uppercase;
}
body #mdp-calendar .datepicker th {
  font-weight: bold;
}
body #mdp-calendar .datepicker td {
  padding: 7px;
  border-radius: 0;
}
body #mdp-calendar .datepicker td.day {
  font-weight: bold;
}
body #mdp-calendar .datepicker td.active {
  background-color: #00c3a1;
  font-weight: bold;
  border-radius: 0;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled] {
  background-color: #00c3a1 !important;
}

/* SELECTS */
.select-alone {
  background: white;
  border: 1px solid #cacaca;
  display: inline-block;
  padding-right: 10px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.select-alone .text {
  font-size: 1.1em;
  padding: 10px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

/* Select jugadores */
/* Theme color */
/* --------------------------------------------*/
/*  Selectbox*/
/* --------------------------------------------*/
.selectbox-search option p {
  padding: 0;
  font-size: 1.4em;
  margin-bottom: 5px;
}
.selectbox-search option span {
  font-size: 0.8em;
}
.selectbox-search .option img {
  width: 55px;
  height: 55px;
}

.select-wrapper {
  position: relative;
  /*border: 1px solid black;*/
  /* --------------------------------------------*/
  /*  Select Button - Current Selected*/
  /* --------------------------------------------*/
}
.select-wrapper select {
  display: none;
}
.select-wrapper .select-btn {
  display: flex;
  background: white;
  text-decoration: none;
  text-align: left;
  padding: 0;
  color: #333;
  width: 100%;
  min-height: 42px;
  height: 100%;
  border: 2px solid #00c3a1;
  border-radius: 5px;
  cursor: pointer;
}
.select-wrapper .select-btn .label {
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-grow: 1;
  display: block;
  overflow: hidden;
  margin-right: 45px;
  padding: 0 .75rem;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.2em;
  color: #00c3a1;
  font-weight: bold;
  overflow: hidden;
  max-width: 190px;
}
.select-wrapper .select-btn .label p {
  white-space: nowrap;
  display: block;
  text-transform: uppercase;
  font-size: 1em;
  color: #00c3a1;
  font-weight: bold;
  margin-left: 0;
  /*soluci├│n bug safari*/
}
.select-wrapper .select-btn .caret {
  position: absolute;
  font-size: 1.25rem;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0 .75rem;
  display: flex;
  align-items: center;
  color: #00c3a1;
}
.select-wrapper .select-btn img {
  width: 25px;
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 50%;
}
.select-wrapper .select-btn img ~ img {
  margin-left: 5px;
}
.select-wrapper .select-btn .icon {
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 50%;
  padding: 5px;
}
.select-wrapper .select-btn .icon ~ .icon {
  margin-left: 5px;
}

/* --------------------------------------------*/
/*  Selectlist - Option list*/
/* --------------------------------------------*/
.select-list {
  display: none;
  list-style: none;
  background: white;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  z-index: 99;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-width: 0 1px 1px;
  max-height: 200px;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
}
.select-list li.search {
  height: 40px;
  display: flex;
  align-items: center;
  background: #00c3a1;
  margin: 0;
}
.select-list li.search .icon {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  padding: 0 .75rem;
  color: white;
}
.select-list li.search .icon.icon-search:before {
  color: white;
}
.select-list li.search .clear {
  display: none;
  align-items: center;
  height: 100%;
  padding: 10px;
  font-size: 1.25rem;
  cursor: pointer;
  color: white;
}
.select-list li.search input {
  height: 100%;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 0;
  flex-grow: 1;
  background: transparent;
  color: white;
  font-size: 18px;
}
.select-list li.search input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
}
.select-list li.search input::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}
.select-list li.search input:-ms-input-placeholder {
  /* IE 10+ */
  color: white;
}
.select-list li.search input:-moz-placeholder {
  /* Firefox 18- */
  color: white;
}
.select-list li.no-result {
  display: none;
  height: 50px;
  line-height: 50px;
  padding: 0 0.75rem !important;
  text-align: center;
}
.select-list li.option {
  display: inherit;
  /* solucion alineado combo con avatar*/
  padding: 0.7em 0.5em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  position: relative;
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex; */
  align-items: center;
  font-size: 1em;
  font-weight: 100;
  text-align: left;
  color: #8d8d8d;
  border-top: 2px solid #ccc;
  margin: 0;
  min-height: 60px;
}
.select-list li.option[value="0"] {
  min-height: auto;
}
.select-list li.option img {
  width: 45px;
  margin-right: 10px;
  margin-left: 0px;
  vertical-align: middle;
  border-radius: 50%;
  float: left;
  position: relative;
  top: -6px;
}
.select-list li.option > p {
  padding: 0;
  font-size: 1.2em;
  margin-bottom: 5px;
  white-space: nowrap;
  margin-top: -5px;
  display: flex;
}
.select-list li.option .icon {
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 50%;
  padding: 5px;
}
.select-list li.option:hover {
  background: rgba(0, 0, 0, 0.05);
}
.select-list li.option[selected] {
  background: rgba(0, 0, 0, 0.1);
}
.select-list li.option[disabled] {
  opacity: .25;
}
.select-list li.option[placeholder] {
  display: none !important;
}
.select-list li.option .check {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding-right: .75rem;
}
.select-list li.group span {
  cursor: default;
  padding: .75rem;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.select-list li.group span ~ li {
  padding-left: 2rem !important;
}
.select-list li.group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.select-list li.group ul li {
  padding-left: 1.5rem;
}

/* Selectized */
select[name="customer"] ~ .selectize-control .player-detail {
  height: auto !important;
}
select[name="customer"] ~ .selectize-control .player-detail .user-name {
  padding: 0;
  margin: 0;
  height: auto;
}

body .selectize-control .selectize-input {
  display: flex;
  /* background: white; */
  /* text-decoration: none; */
  text-align: left;
  /* padding: 0; */
  color: #333;
  width: 100%;
  /*  max-height: 42px; */
  height: 100%;
  border: 2px solid #00c3a1;
  border-radius: 5px;
  cursor: pointer;
}
body .selectize-control .selectize-input input {
  font-size: 1.2em;
  width: 100% !important;
}
body .selectize-control .selectize-input .player-detail {
  padding: 0;
  height: 40px;
}
body .selectize-control .selectize-input .user-name {
  padding-top: 0;
  font-size: 16px;
  -ms-grid-row-align: center;
  align-self: center;
  /* solucion integracion*/
  height: 73px;
  /* solucion integracion*/
}
body .selectize-control .selectize-input .user-name > span:first-child {
  display: none;
}
body .selectize-control .selectize-input .user-name p {
  margin-top: 0;
  padding: 0;
}
body .selectize-control .selectize-input .user-balloon {
  height: 35px;
  width: 35px;
}
body .selectize-control .selectize-input .user-balloon img {
  width: 35px;
  height: auto;
  top: 0;
  left: 0;
}
body .selectize-control .selectize-highlight {
  font-size: 1.4em;
  color: #333333;
  font-weight: 100;
}
body .selectize-control .selectize-highlight .highlight {
  color: #00c3a1;
  background: transparent;
  display: inline;
}

.copy-url {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
  width: 100%;
}

/* MULTISELECT */
/* jquery UI */
body .ui-multiselect span.ui-icon {
  float: right;
  top: 11px;
  border-top: 8px solid #00c3a1;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  background-image: none;
}
body .ui-multiselect {
  border: 1px solid #cccccc;
  width: 100%;
  padding: 5px;
  text-transform: initial;
  font-size: 1.2em;
  text-align: left;
}

/* fin jquery UI */
.msel-noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.msel-multiselect {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #cacaca;
  transition: 0.2s;
  outline: none;
  text-align: left;
  position: relative;
}
.msel-multiselect:hover {
  border: 1px solid #00c3a1;
}
.msel-multiselect.active {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 1px solid transparent;
}
.msel-multiselect > .title {
  cursor: pointer;
  padding: 8px;
  display: inline-flex;
}
.msel-multiselect > .title > .expand-icon, .msel-multiselect > .title > .close-icon {
  position: absolute;
  right: 10px;
  border-radius: 50%;
  padding: 0 4px;
  font-weight: 700;
  transition: 0.2s;
  display: none;
  color: #00c3a1;
}
.msel-multiselect.msel-selection > .title > .expand-icon {
  display: none;
}
.msel-multiselect.msel-selection > .title > .close-icon {
  display: block;
}
.msel-multiselect > .title > .expand-icon {
  display: block;
}
.msel-multiselect > .title > .close-icon:hover {
  color: #8d8d8d;
}
.msel-multiselect > .container {
  max-height: 200px;
  overflow: auto;
  margin-top: 1px;
  transition: 0.2s;
  position: absolute;
  z-index: 99;
  background: #fff;
  border: 1px solid transparent;
  /*border-top: 1px solid rgba(0, 0, 0, 0.1);*/
}
.msel-multiselect.active > .container {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top: 0;
}
.msel-multiselect:hover > .container {
  border-top-color: rgba(0, 0, 0, 0.3);
}
.msel-multiselect.active:hover > .container {
  border-color: rgba(0, 0, 0, 0.3);
}
.msel-multiselect.active > .container > option {
  display: block;
}
.msel-multiselect > .container > option {
  display: none;
  padding: 5px;
  cursor: pointer;
  transition: 0.2s;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.msel-multiselect > .container > option.selected {
  background: #7aafe9;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #fff;
}
.msel-multiselect > .container > option:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #000;
}

/* END MULTISELECT */
/* DATEPICKER */
.tab-content .ui-datepicker-inline {
  margin: 0 auto;
}

/*____*/
.datepicker {
  z-index: 9999;
  position: absolute;
  background: white;
  box-shadow: 1px 6px 6px rgba(0, 0, 0, 0.5);
}
.datepicker .active.day {
  background: #00c3a1;
  color: white;
}
.datepicker .day:hover {
  color: #00c3a1;
}

/* END DATEPICKER */
/* PISANDO JQUERY UI */
body .ui-state-hover, body .ui-widget-content .ui-state-hover, body .ui-widget-header .ui-state-hover, body .ui-state-focus, body .ui-widget-content .ui-state-focus, body .ui-widget-header .ui-state-focus, body .ui-button:hover, body .ui-button:focus {
  border: 0;
  background: #00c3a1;
  color: white;
}

body .ui-multiselect-header {
  border: 0;
  background: #00c3a1;
  color: white;
}

/**** RESPONSIVE ****/
/* mobile portrait*/
@media screen and (max-width: 780px) {
  /* IMAGES*/
  .img-desktop {
    display: none;
  }

  /* PARRILLA */
  .fc th.fc-resource-cell:before {
    display: none;
  }

  .fc-scroller.fc-time-grid-container {
    height: 100%;
  }

  /* SPLIT LAYOUT */
  .split-layout section {
    margin-right: 0;
  }

  .group-input.ubicacion ~ iframe {
    width: 100%;
  }

  /* HOME*/
  .home main h2 {
    font-size: 2em;
  }

  .home main p {
    margin: 1em;
  }

  .home .footer-float {
    flex-direction: column;
    margin-top: 0;
  }
  .home .footer-float .mockup-desktop {
    width: 100%;
  }
  .home .footer-float article:first-child {
    display: none;
  }

  /* HEADER*/
  .inside-menu section {
    justify-content: center;
  }
  .inside-menu section button {
    margin-top: 20px;
  }

  /* POPUPS*/
  .cd-popup-container {
    width: 95%;
  }

  /* TABLES*/
  .table-data .table-rows li {
    flex-direction: column;
    padding: 10px;
  }

  .table-data .table-rows li > .icon-validation {
    border-top: 1px solid #cacaca;
    width: 100%;
    text-align: center;
    padding: 10px 0 0;
  }

  .table-data .name-table-box li:first-child #tipoPista:before, .table-data .name-table-box li:first-child #dias:before, .table-data .name-table-box li:first-child #desde:before, .table-data .name-table-box li:first-child #hasta:before, .table-data .name-table-box li:first-child #precio:before, .table-data .name-table-box li:first-child #precioSocio:before {
    content: "";
  }

  .box-table .table-rows .text span:first-child {
    padding-left: 0;
    font-size: 1em;
  }

  .box-table .table-rows .text .pista {
    font-size: 0.8em;
  }

  li.text.row.flex .col-6.flex-end {
    flex-direction: column;
  }
  li.text.row.flex .col-6.flex-end .exclusive {
    padding: 10px 0;
  }

  .max-width-info {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .wrapper-2, .wrapper-3 {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  .table-data .table-rows .check-on .button-group.flex-justify-center label p {
    padding: 6px 10px;
  }
}

/*# sourceMappingURL=style.css.map */
