:root {
    --blue-color: #00C2FF;
    --brand: #00C2FF;
    --primary: #000;
    --secondary: #999;
    --tertiary: #eaeaea;
    --quaternary: #1b1b1b;
    --success: #007D41;
    --warning: #7D5A00;
    --error: #7D0000;
}

html {
    background: #fff;
}

body {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-weight: 400;
    background-color: #fff;
    color: #000;
}

a {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: var(--brand);
}

a:hover,
a:active,
a:visited {
    color: var(--brand);
    text-decoration: none;
}

a.solapa {
    color:inherit;
}
a.solapa:hover,
a.solapa:active,
a.solapa:visited {
    color:inherit;
    text-decoration: none;
}
section {
    margin-top: 20px;
}

#noticias {
    margin-top: 0px;
}

h1,
h2,
h3,
h4 {
    font-style: normal;
}

.text-white {
    color: #fff;
}

.text-dark {
    color: #000;
}

.bg-dark {
    background-color: #000 !important;
}

.header-polo {
    padding-top: 0;
    padding-bottom: 4rem!important;
    background: #000;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 8.94%, rgba(0, 0, 0, 0.24) 100%), url("../images/header.jpg");
    background-size: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 100% 75%, 100% 100%, 98% 95%, 0 95%);
}

.header-polo-home {
    padding-top: 0;
    padding-bottom: 1rem!important;
    background: #000;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 100% 75%, 100% 100%, 98% 95%, 0 95%);
}

#header-small {
    height: 130px;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFF;
    border-bottom: #000 1px solid;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none; /* para que no interfiera cuando está oculto */
}

.header-small-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.header-polo-noticias {
    padding-top: 0;
    padding-bottom: 4rem!important;
    background: #000;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 8.94%, rgba(0, 0, 0, 0.24) 100%), url("../images/header-jugadores.jpg");
    background-size: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 100% 75%, 100% 100%, 98% 95%, 0 95%);
}

.header-polo-jugadores {
    padding-top: 0;
    padding-bottom: 4rem!important;
    background: #000;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 8.94%, rgba(0, 0, 0, 0.24) 100%), url("../images/header-jugadores.jpg");
    background-size: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 100% 75%, 100% 100%, 98% 95%, 0 95%);
}

@media (max-width: 768px) {
    .header-polo {
        padding-top: 0!important;
        padding-bottom: 4rem!important;
        background: #000;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 8.94%, rgba(0, 0, 0, 0.24) 100%), url("../images/header-jugadores.jpg");
        background-size: cover;
    }
    .header-polo-noticias {
        padding-top: 0!important;
        padding-bottom: 4rem!important;
        background: #000;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 8.94%, rgba(0, 0, 0, 0.24) 100%), url("../images/header-jugadores.jpg");
        background-size: cover;
    }
    .header-polo-jugadores {
        padding-top: 0!important;
        padding-bottom: 4rem!important;
        background: #000;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 8.94%, rgba(0, 0, 0, 0.24) 100%), url("../images/header-jugadores.jpg");
        background-size: cover;
    }
}

.display1 {
    font-size: 72px;
    line-height: 96px;
}

.display2 {
    font-size: 64px;
    line-height: 72px;
}

.display3 {
    font-size: 48px;
    line-height: 64px;
}

.display4 {
    font-size: 32px;
    line-height: 48px;
}

.featured2 {
    font-size: 24px;
    line-height: 32px;
}

.title {
    font-size: 18px;
    line-height: 32px;
}

.subtitle {
    font-size: 16px;
    line-height: 24px;
}

p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.header-title {
    font-size: 72px;
    line-height: 86px;
}

@media (max-width: 768px) {
    .header-title {
        font-size: 50px;
        line-height: 60px;
    }
}

.header-subtitle {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.74);
}


/*Grid**/

.wrapper {
    min-height: calc(100% - 390px);
}

.d-block {
    display: block;
}

.w-25 {
    width: 25%;
}

.mw-100 {
    max-width: 100%;
}


/*.mt-3 {
    margin-top: 3.125rem!important;
}*/

.m-auto {
    display: block;
    margin: 2rem auto;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.d-flex {
    display: flex;
}

.is-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

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

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    padding: 1rem;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.icon {
    width: 100%;
    max-width: 500px;
}

@media (max-width: 576px) {
    .w-25 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .col,
    .col-auto {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Forms*/

label {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
}

button,
input,
select,
textarea {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #eaeaea;
    opacity: 1;
}

.form-control {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    border-color: #d1d1d1;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input[type='radio'] {
    -webkit-appearance: none;
    width: 13px;
    height: 13px;
    border: 1px solid #cbcbcb;
    border-radius: 50%;
    outline: none;
}

input[type='radio']:hover {
    border: 1px solid #d1d1d1;
}

input[type='radio']:before {
    content: '';
    display: block;
    width: 65%;
    height: 65%;
    margin: 20% auto;
    border-radius: 50%;
}

input[type='radio']:checked:before {
    background: #00C2FF;
}

.form-check-input {
    position: relative;
    margin-top: 0;
    margin-left: -1rem;
    margin-right: 0.2rem;
}

.form_card {
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-text {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: normal;
}

.text-muted {
    color: #999!important;
}

.custom-control-input:focus~.custom-control-label::before {
    border-color: #CBCBCB !important;
    box-shadow: none !important;
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: #CBCBCB !important;
    background-color: #00C2FF !important;
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #CBCBCB !important;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    background-color: #d6f5dd !important;
    border-color: #d6f5dd !important;
}

.profile {
    border-radius: 50%!important;
}

.profile-club {
    border-radius: 50%!important;
    box-shadow: 0px 4px 24px rgb(0 0 0 / 40%);
}

.profile-referee {
    border-radius: 50%!important;
    height: 32px;
}

.profile-player {
    border-radius: 50%!important;
    height: 70px;
}


/* Agregar jugador*/

.form-group-jugador {
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.form-group-jugador label {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: #999;
}

.form-group-jugador .form-control {
    font-family: 'Lato', san serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    border: 1px solid #eaeaea;
    border-left: 0!important;
    border-radius: 4px;
    height: auto;
}

.form-group-jugador .input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    padding-right: 10px !important;
    padding-left: 10px !important;
    padding-top: 4px;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-right: 0!important;
    border-radius: 4px;
}

.card-header {
    padding: 10px;
    margin-bottom: 0;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}

.close-jugador .bi {
    color: red;
}

.card-body {
    padding: 10px;
}

.btn {
    font-family: Bebas Neue;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 32px;
    border-radius: 0%;
}

.btn-primary {
    color: #fff;
    background-color: #00C2FF;
    border-color: #00C2FF;
}

.btn-primary:hover {
    background-color: #0099C9;
    border-color: #0099C9;
}

.btn-secondary {
    color: #999;
    background-color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    color: #999;
    background-color: #EAEAEA;
    border-color: #EAEAEA;
}

.btn-secondary:focus {
    color: #999;
    background-color: #fff;
    border-color: #fff;
    box-shadow: none;
}

.alert {
    border-radius: 1px;
    color: #fff;
}

.alert-complex {
    border-radius: 1px;
    padding: 10px;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: normal;
}

.alert-complex .bi {
    margin-right: 5px;
}

.alert-success {
    background-color: #007D41;
    border-color: #007D41;
}

.alert-warning {
    background-color: #7D5A00;
    border-color: #7D5A00;
}

.alert-info {
    background-color: #EAEAEA;
    border-color: #EAEAEA;
}

.alert-dark {
    background-color: #000;
    border-color: #000;
}

.alert-danger {
    background-color: #7D0000;
    border-color: #7D0000;
}

ul {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: normal;
}

.ul-white {
    list-style: none;
}

.ul-white li::before {
    content: "\2022";
    color: #fff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.ul-dark {
    list-style: none;
}

.ul-dark li::before {
    content: "\2022";
    color: #000;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


/*Tooltip*/

.tooltip-container {
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.tooltip {
    opacity: 0;
    z-index: 99;
    color: #000;
    width: 400px;
    display: block;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #EAEAEA;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    position: absolute;
    left: 30px;
    bottom: -90px;
}

.tooltip:before,
.tooltip:after {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #EAEAEA;
    left: -8px;
    top: 10px;
}

.tooltip-container:hover .tooltip,
a:hover .tooltip {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


/* Menu */
.header-solid {
    background-color: #FFF;
}
.navbar-polo {
    height: 112px;
    padding: 0;
    /*background-color: #000;*/
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: invert(1);
}

.navbar-polo .dropdown-menu {
    right: 2px;
    left: auto;
}

@media (max-width: 768px) {
    .navbar-polo {
        background-color: #fff;
        justify-content: space-around;
    }
    .navbar-polo .navbar-collapse {
        width: 300px;
        max-width: 500px;
        background: #fff;
        /*background: linear-gradient( 90deg, #000000 10%, rgb(0 0 0 / 48%) 100%);*/
        position: absolute;
        top: 112px;
        left: 10px;
        z-index: 1;
        padding: 0 10px;
    }
}

.navbar-polo .navbar-brand {
    margin-right: 30px;
}

.navbar-polo ul {
    font-family: 'Bebas Neue', cursive;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 18px;
    line-height: 22px;
}

.navbar-polo a {
    color: white;
    font-weight: normal;
    font-style: normal;
    margin: 0 4px;
}
.header-solid .navbar-polo a {
    color: #000;
}
.header-solid .navbar-polo .navbar-brand img{
    filter: invert(1);
}
a.dropdown-item {
    color: var(--brand);
    font-weight: normal;
    font-style: normal;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--brand);
    background-color: transparent;
}

.navbar-polo a:hover {
    color: #00C2FF;
}

.navbar-polo .active a {
    color: #00C2FF;
}

.bell-menu {
    font-size: 20px;
    margin-right: 15px;
}

.person-menu {
    font-size: 20px;
}


/* Search bar*/

.searchbar {
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-group-search {
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.form-group-search .form-control {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    border: 0;
    height: auto;
}

.form-group-search .input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    padding-right: 10px;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 0;
    border-radius: 0;
}

.form-group-socios {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.form-group-socios .form-control {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    border: 0;
    border-left: 1px solid #eaeaea;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    height: auto;
}

.form-group-socios .input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 10px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #eaeaea;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 0;
    border-right: 1px solid #eaeaea;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    border-radius: 4px;
}

.space {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 1px;
    width: 100%;
}

@media (max-width: 767px) {
    .space {
        padding-top: 15px;
        padding-bottom: 15px;
        min-height: 1px;
        width: 100%;
    }
}

.accesos-rapidos {
    margin: 0;
}

.list-accesos-rapidos {
    margin-left: 0;
    font-family: 'Bebas Neue', cursive;
    padding-inline-start: 0;
    color: var(--secondary);
}

.list-accesos-rapidos li {
    display: inline;
    margin-right: 20px;
}

a.link-dark {
    color: var(--primary);
}


.font-bebas {
    font-family: 'Bebas Neue', cursive;
}

/* Slider Clubes*/

.titulo-slider {
    font-size: 32px;
    line-height: 38px;
}

.titulo-slider:before {
    display: block;
    float: right;
    margin-top: 19px;
    border-top: 1px solid var(--tertiary);
    width: 80%;
    content: "";
}

.linea-90:before {
    display: block;
    float: right;
    margin-top: 19px;
    border-top: 1px solid var(--tertiary);
    width: 90%;
    content: "";
}

.linea-80:before {
    display: block;
    float: right;
    margin-top: 19px;
    border-top: 1px solid var(--tertiary);
    width: 75%;
    content: "";
}

@media (max-width: 576px) {
    .titulo-slider:before {
        display: none;
    }
    .linea-90:before {
        display: none;
    }
    .linea-80:before {
        display: none;
    }
}

@media (max-width: 768px) {
    .titulo-slider:before {
        display: none;
    }
    .linea-90:before {
        width: 80%;
    }
    .linea-80:before {
        width: 60%;
    }
}

.noticias .titulo-slider:before {
    width: 90%;
}

.titulo-item-slider {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    color: #000;
    font-size: 24px;
    line-height: 29px;
}

.clubes-arrows,
.noticias-arrows {
    font-size: 30px;
    margin: 0px;
    line-height: 1px;
    padding: 0;
}

.jugadores-arrows {
    font-size: 30px;
    margin: 0px;
    padding: 0;
}

.slick-arrow {
    cursor: pointer;
}

.slick-arrow:hover {
    cursor: pointer;
    color: #00C2FF;
}

.listado-clubes {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-weight: 400;
    color: #000;
    margin-top: 30px;
}

.item-club-header {
    display: flex;
    justify-content: center;
}

.item-club-destacado .club-pic {
    width: 132px;
    height: 132px;
}

.item-club-datos {
    display: block;
    text-align: center;
}

.nombre-club {
    font-size: 24px;
    line-height: 29px;
    padding-top: 17px;
}

.fundacion-club {
    font-size: 20px;
    line-height: 24px;
    color: var(--secondary);
    padding-top: 8px;
}

.provincia-club {
    font-size: 16px;
    line-height: 19px;
    padding-top: 24px;
}

.adherentes-club {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 18px;
    padding-top: 8px;
}

.item-player {
    background-color: var(--tertiary);
    padding: 20px 30px;
}

.btn-handicap {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    background-color: var(--secondary);
    padding: .5rem;
}

.nacimiento-player {
    font-family: 'Lato';
    font-size: 16px;
    line-height: 20px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'dripicons-v2';
    font-size: 24px;
    line-height: 1;
    opacity: 1;
    color: red;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
}


/* Torneos*/

.torneos {
    margin-top: 50px;
}

.item-torneo {
    display: flex;
}

.border-right {
    border-right: 1px solid var(--tertiary)!important;
}

.item-torneo-header {
    display: flex;
    justify-content: center;
}

.item-torneo .torneo-pic {
    width: 93px;
    height: 107px;
    text-align: center;
}

.torneo-pic img {
    display: block;
    margin: auto;
}

.item-torneo-fecha {
    margin-top: 5px;
    display: block;
    text-align: center;
}

.fecha-torneo {
    font-size: 20px;
    line-height: 24px;
}

.item-torneo-datos {
    padding-left: 15px;
}

.nombre-torneo {
    font-size: 24px;
    line-height: 29px;
}

.handicap-torneo {
    font-size: 20px;
    line-height: 24px;
    color: #999;
    text-align: left;
    padding-top: 15px;
}

.handicap-torneo .nivel {
    padding: 4px;
    padding-bottom: 2px;
    border-radius: 3px;
}

.handicap-torneo .alto {
    background-color: #D3155F;
    color: #fff;
}

.handicap-torneo .goles-alto {
    padding: 4px;
    color: #D3155F
}

.handicap-torneo .medio {
    background-color: #844AFC;
    color: #fff;
}

.handicap-torneo .goles-medio {
    padding: 4px;
    color: #844AFC
}

.handicap-torneo .bajo {
    background-color: #04E299;
    color: #fff;
}

.handicap-torneo .goles-bajo {
    padding: 4px;
    color: #04E299
}

.link-handicap,
.link-handicap:active,
.link-handicap:visited,
.link-handicap:hover {
    font-family: 'Bebas Neue', cursive;
    color: #000;
    text-decoration: none;
}

.categoria-torneo {
    font-size: 20px;
    line-height: 24px;
    color: var(--secondary);
    text-align: left;
    padding-top: 15px;
}

.separador-torneos {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.separador-torneos hr {
    background-color: #eaeaea;
}

.row-patrocinadores {
    align-items: center;
}

@media (max-width: 768px) {
    .goles-bajo,
    .goles-medio,
    .goles-alto {
        display: block;
    }
}


/* Footer*/

.footer {
    margin-top: 50px;
    border-top: 1px solid #eaeaea;
}

.footer .row {
    padding-top: 20px;
}

.footer-title {
    font-size: 24px;
    line-height: 32px;
}

.footer-header-empty {
    width: 70%;
    background-color: #c4c4c4;
}

.footer-list {
    font-family: 'Lato', sans-serif;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    padding-top: 30px;
}

.footer-list li {
    padding-bottom: 10px;
}

.footer-list li a {
    color: #000;
    text-decoration: none;
}

.footer-list li a:hover {
    color: #00C2FF;
    text-decoration: none;
}

.modal-dialog {
    max-width: 800px;
    margin: 1.75rem auto;
}

@media (max-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}


/* Modal Search */

.modal-header {
    border-bottom: 0;
}

.modal-body {
    padding-top: 0;
}

.modal-title {
    color: #000;
    font-size: 32px;
    line-height: 48px;
}


/*.modal-search row,*/


/*.form-group {*/


/*    margin-bottom: 0;*/


/*}*/

.modal-search label {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-weight: 400;
    color: #000;
    font-size: 24px;
    line-height: 32px;
}

.modal-search input {
    font-family: 'Lato', sans serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.modal-search .btn {
    padding: 4px 5px 0 5px;
}

.modal-footer {
    display: block;
    border-top: 0;
}

.modal-footer .btn {
    padding: 4px 5px 0 5px;
}

.modal-footer .btn {
    padding: 4px 5px 0 5px;
}

#results {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}

#results .row {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
}

.sin-requisitos {
    background-color: #EAEAEA;
}

.con-requisitos:hover {
    background-color: #000;
    color: #fff;
}

.jugador_seleccionado {
    background-color: #000;
    color: #fff;
}

.destacados-jugador {
    padding: 0;
}
@media (min-width: 768px) {
    .destacados-jugador {
        position: absolute;
        top: -165px;
    }
}

@media (max-width: 576px) {
    .destacados-jugador .col-12 {
        margin-bottom: 15px;
    }
}


/* FAQs*/

#faq {
    margin-top: 40px;
}

.faq {
    margin-top: 30px;
}

#faq .display3 {
    margin-bottom: 40px;
}

.wrapper-faq {
    cursor: pointer;
    position: relative;
}


/*Box*/

.login-box,
.box,
.ft-alert .box,
.window .box {
    background: #fbfbfb;
    max-width: 400px;
    width: 100%;
    /*border-top: 5px solid #c3012e;
border-image-slice: 1;
border-image-source: linear-gradient( 90deg, rgba(195, 0, 46, 1) 0%, rgba(247, 222, 69, 1) 100%);*/
    padding: 1rem;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.70);
}

.window .box {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.ft-alert .box {
    color: #222;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.wrapper-faq .title {
    margin-bottom: 15px;
}

.wrapper-faq .title:after {
    content: '⌄';
    content: "\2303";
    position: absolute;
    right: 0;
    padding: 0 1rem;
    font-weight: bold;
}

.wrapper-faq.expanded .title:after {
    content: '\2304';
    font-weight: bold;
}

.slider-home-content {
    margin: 80px 0;
}

.slider-home-content-noticias {
    margin-top: 10px;
    margin-bottom: 80px;
}


/* asociación*/

.overlap-header {
    position: relative;
    /*top: -170px;*/
}

.overlap-search {
    position: relative;
    top: -39px;
}

.icon-asoc {
    margin-right: 20px;
}

.col-asoc {
    cursor: pointer;
}

.color-brand {
    color: var(--brand)!important;
}

.color-white {
    color: white!important;
}

.bgcolor-black {
    background-color: var(--primary)!important;
}

.color-gris {
    color: var(--secondary);
}

.title2 {
    font-size: 24px;
    line-height: 28px;
}

.content-asoc {
    border-bottom: 1px solid var(--secondary);
    margin: 30px 0;
}

.detail-asoc {
    margin: 30px 0;
    padding-bottom: 15px;
}

.cargo {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 18px;
}

.bebas {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    /*font-size: inherit;*/
}

.video-rse {
    width: 100%;
    margin: 20px 0;
    border-radius: 5px;
    overflow: hidden;
}


/* torneo */

.header-torneo {
    position: absolute;
    top: 0;
}

/* polo university */

#instructors-container .card span {
    color: #EC008C;
}

.semi-circle {
    height: 68px;
    width: 34px;
    border-radius: 51px 0 0 51px;
    background-color: #EC008C;
    transform: rotate(-55deg);
    position: relative;
    margin-left: 8px;
    margin-top: 8px;
}

.avatar-container {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 4px;
    left: 4px;
    transform: rotate(55deg);
}

.avatar-container img {
    height: 100%;
    object-fit: cover;
}

#schools-container {
    margin-top: 3rem;
    margin-bottom: 5rem;
}

#schools-container .card span {
    color: #007D41;
}

#schools-container .semi-circle {
    background-color: #007D41;
}

/* noticia */

.title-noticia {
    margin-top: 20px;
}

a.tit-noticia {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-size: 24px;
    line-height: 32px;
    color: var(--primary);
}

.subtitle-noticia {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 24px;
    ;
}

.destacado-noticia .btn {
    font-size: 18px;
    line-height: 32px;
    padding: 0rem .75rem;
}

@media (max-width: 767px) {
    .destacado-noticia .btn {
        display: none;
    }
}

.destacado-noticia [class*='col-'] {
    padding: 0;
}

.header-noticia {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--tertiary);
}

.header-noticia .col {
    padding: 0;
}

.link-destacado {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    color: #000;
    font-size: 20px;
    line-height: 24px;
}

.link-leermas {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-size: 18px;
    line-height: 32px;
}

.link-24 {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-size: 24px;
    line-height: 32px;
}

.link-18 {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-size: 18px;
    line-height: 32px;
}

.link-16 {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
}

.link-ver-archivo {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    color: #171a1c!important;
}

.tabla-datos {
    border-top: 1px solid var(--tertiary);
    border-bottom: 1px solid var(--tertiary);
}

.tabla-datos td,
.table th {
    padding: .25rem 0;
}

.tabla-datos2 {
    border-top: 1px solid var(--tertiary);
}

.tabla-datos2 td,
.table th {
    padding: .25rem 0;
}

@media (max-width: 576px) {
    .tabla-datos thead th:not(:first-child) {
        display: none;
    }
    .tabla-datos table,
    .tabla-datos thead,
    .tabla-datos tbody,
    .tabla-datos tr,
    .tabla-datos td,
    .tabla-datos th {
        display: block;
    }
    .tabla-datos td[data-th]:before {
        content: attr(data-th);
        display: block;
        font-family: 'Lato', sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-style: normal;
        font-weight: normal;
    }
    .tabla-datos2 thead th:not(:first-child) {
        display: none;
    }
    .tabla-datos2 table,
    .tabla-datos2 thead,
    .tabla-datos2 tbody,
    .tabla-datos2 tr,
    .tabla-datos2 td,
    .tabla-datos2 th {
        display: block;
    }
    .tabla-datos2 td[data-th]:before {
        content: attr(data-th);
        display: block;
        font-family: 'Lato', sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-style: normal;
        font-weight: normal;
    }
}

.titl-tbl-home {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-style: normal;
    font-weight: normal;
}

.text-error {
    color: var(--error);
}

.text-success {
    color: var(--success);
}

.btn-categoria {
    font-family: 'Lato';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    border-radius: 30px;
    color: #000;
    background-color: var(--tertiary);
    padding: .175rem .75rem;
}

.btn-categoria:hover {
    color: #fff;
    background-color: var(--brand);
}

.link-redes {
    color: var(--secondary);
    margin-right: 10px;
}


/*.bloque-noticias {
    border-top: 1px solid var(--tertiary);
}*/

.listado-noticias {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-weight: 400;
    color: #000;
    margin-top: 30px;
}

.listado-jugadores {
    font-family: 'Bebas Neue', cursive;
    font-style: normal;
    font-weight: 400;
    color: #000;
    margin-top: 10px;
    padding-left: 0!important;
}

.item-jugador {
    background-color: var(--quaternary);
    padding: 1rem 1.4rem;
}

.btn-handicap-jugador {
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    background-color: #0e0e0e;
    text-align: center;
}

.col-handicap {
    padding: 0!important;
}

.nombre-jugador {
    font-size: 22px;
    line-height: 24px;
    padding-top: 5px;
    color: #fff;
}

.nacimiento-jugador {
    font-family: 'Lato';
    font-size: 14px;
    line-height: 20px;
}

.listado-jugadores .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
}

.listado-jugadores .slick-dots li button:before {
    font-family: 'slick';
    font-size: 46px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .50;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.listado-jugadores .slick-dots {
    position: absolute;
    bottom: -50px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.searchbar-jugadores {
    margin-top: 0!important;
}

.overlap-search-jugadores {
    position: relative;
    top: -31px;
}

.link-cuenta {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    color: var(--secondary);
    padding-bottom: 30px;
    font-size: 30px;
    line-height: 48px;
}

.link-cuenta:visited {
    color: var(--secondary);
}

.user-navbar {
    padding: 0!important;
}

.nav {
    padding: 0!important;
}

.nav li a {
    position: relative;
    padding-bottom: 5px;
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    color: var(--secondary);
    padding-left: 0!important;
    margin-left: 0;
    margin-right: 30px;
}

.nav a.active {
    color: var(--primary)!important;
}

.nav li a:hover:after,
.nav li a.active:after {
    background: var(--brand);
    width: 100%;
    left: 0;
}

.nav li a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 3px;
    left: 50%;
    position: absolute;
    background: var(--brand);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

#navbarCuenta {
    border-bottom: 1px solid var(--tertiary);
}

@media (max-width: 576px) {
    .nav li a:after {
        display: none;
    }
    .nav li a:hover:after,
    .nav li a.active:after {
        background: none;
    }
    #navbarCuenta {
        background: #000;
        z-index: 100;
    }
    #navbarCuenta .nav {
        display: block;
        padding-left: 10px!important;
    }
    .nav a.active {
        color: var(--brand)!important;
    }
}

.news_img{
    display: block;
    max-width: 768px;
    margin: auto;
}

.cuerpo_news p{
    font-family: 'Lato', sans-serif !important;
    font-size: 16px !important;
    line-height: 24px !important;
    text-align: justify;
}

.whatsapp {
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF!important;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
  }

  .whatsapp-icon {
    margin-top:13px;
  }
