/*
	Theme Name: Hello Elementor child
    template: hello-elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: A plain-vanilla & lightweight theme for Elementor page builder
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.3
	Stable tag: 3.4.3
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* GLOBAL */

.elementor-location-header {
  margin-bottom: -35px !important;
}
.sub-arrow svg {
  fill: #05dbb2;
}
.footerlink a {
  color: #15493f !important;
}
.footerlink a:hover {
  color: rgba(21, 73, 63, 0.5) !important;
}
.title_accueil {
  font-size: 110px !important;
  color: #05dbb2 !important;
}

label,
.jet-form-builder__label {
  padding-left: 30px;
  margin-bottom: -10px;
  z-index: 3;
  position: relative;
}
input {
  height: 50px;
  outline: none;
}
.color_span {
  color: #05dbb2;
}
input[type='date'],
select {
  padding: 13.5px 30px !important;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
select {
  background-image: url('https://le-corner.com/wp-content/uploads/2025/06/icon_select-le-corner.png');
  background-repeat: no-repeat;
  background-position: right 30px center;
  background-size: 20px 20px;
}
input[type='date']::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
input[type='date'][name='date_anniversaire'],
input[type='date'][name='date_d_anniversaire'],
input[type='date'][name='date_naissance'],
input[type='date'][name='form_fields[date]'] {
  background-image: url('https://le-corner.com/wp-content/uploads/2025/06/icon_calendar-le-corner.png');
  background-repeat: no-repeat;
  background-position: right 30px center;
  background-size: 20px 20px;
  height: 50px;
}
input[type='checkbox'] {
  height: unset !important;
  margin-right: 5px !important;
}
a.elementor-lost-password {
  width: 100%;
  text-align: center;
}

/** CHECKBOX **/

/* From Uiverse.io by Galahhad */
/* checkbox settings 👇 */

label.label_checkbox {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 15px;
}
input[type='checkbox'] {
  --primary-color: #05dbb2;
  --secondary-color: #fff;
  --primary-hover-color: #05dbb2;
  /* checkbox */
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  /* checkmark */
  --checkmark-size: 1.2;
}

input[type='checkbox'],
input[type='checkbox'] *,
input[type='checkbox'] *::before,
input[type='checkbox'] *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type='checkbox'] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: var(--checkbox-border-radius) !important;
  background: var(--secondary-color) !important;
  border: var(--checkbox-border-width) var(--checkbox-border-style)
    var(--checkbox-border-color) !important;
  -webkit-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  transition: all 0.3s !important;
  cursor: pointer !important;
  position: relative !important;
}

input[type='checkbox']::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5)
    var(--primary-color) !important;
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color) !important;
  border-radius: inherit !important;
  opacity: 0 !important;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46) !important;
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46) !important;
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46) !important;
}

input[type='checkbox']::before {
  top: 40% !important;
  left: 50% !important;
  content: '' !important;
  position: absolute !important;
  width: 4px !important;
  height: 7px !important;
  border-right: 2px solid var(--secondary-color) !important;
  border-bottom: 2px solid var(--secondary-color) !important;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0) !important;
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0) !important;
  transform: translate(-50%, -50%) rotate(45deg) scale(0) !important;
  opacity: 0 !important;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),
    opacity 0.1s !important;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s !important;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s !important;
}
input[type='checkbox']:hover {
  border-color: var(--primary-color) !important;
}
input[type='checkbox']:checked {
  background: var(--primary-color) !important;
  border-color: transparent !important;
}
input[type='checkbox']:checked::before {
  opacity: 1 !important;
  -webkit-transform: translate(-50%, -50%) rotate(45deg)
    scale(var(--checkmark-size)) !important;
  -ms-transform: translate(-50%, -50%) rotate(45deg)
    scale(var(--checkmark-size)) !important;
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size)) !important;
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s !important;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s !important;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s !important;
}
input[type='checkbox']:active:not(:checked)::after {
  -webkit-transition: none !important;
  -o-transition: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  transition: none !important;
  opacity: 1 !important;
}

/** BOUTONS **/
.elementor-remember-me,
p.jet-register__row {
  margin-bottom: 20px;
}
.elementor-remember-me label,
.login-remember label {
  font-family: 'obviously-narrow', Sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: lowercase !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
}
input[type='date'] {
  appearance: none;
  -webkit-appearance: none;
}

/* ============== Button Layout ============== */

.elementor-button,
button {
  border: 2px solid #15493f;
  text-decoration: none !important;
  position: relative;
  z-index: 1;
  border-radius: 10px !important;
}
.dark .elementor-button {
  border: 2px solid white;
  text-decoration: none;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

/* ============= Pseudo Elements ============= */

button:before,
button:after,
.elementor-button:before,
.elementor-button:after {
  content: '' !important;
  background: white !important;
  position: absolute !important;
  z-index: -1 !important;
  transition: transform 0.3s ease-in-out !important;
}

.dark .elementor-button:before,
.dark .elementor-button:after {
  content: '' !important;
  background: #15493f !important;
  position: absolute !important;
  z-index: -1 !important;
  transition: transform 0.3s ease-in-out !important;
}

.gris .elementor-button:before,
.gris .elementor-button:after,
.gris:before,
.gris:after {
  content: '' !important;
  background: #f6f6f6 !important;
  position: absolute !important;
  z-index: -1 !important;
  transition: transform 0.3s ease-in-out !important;
}

.elementor-button:before,
button:before,
.dark .elementor-button:before {
  top: 12px !important;
  left: -2px !important;
  width: 2px !important;
  height: 20px !important;
  transform-origin: 0 0 !important;
  z-index: 99 !important;
}
.elementor-button:after,
button:after,
.dark .elementor-button:after {
  right: -2px !important;
  bottom: 12px !important;
  width: 2px !important;
  height: 20px !important;
  transform-origin: 100% 100% !important;
}
.elementor-button:hover:before,
.elementor-button:hover:after,
button:hover:before,
button:hover:after,
.dark .elementor-button:hover:before,
.dark .elementor-button:hover:after {
  transform: scale(0);
}

/* ============= SELECT ============= */
select {
  height: 50px !important;
  outline: none !important;
}

/*** TABLEAU DE BORD ***/

.elementor-element-c8034da .jet-listing.jet-listing-dynamic-image {
  object-fit: cover;
  width: 90px;
  height: 90px;
  border-radius: 99px;
  z-index: 5;
  transform: translateY(-50%);
  box-shadow: 0 0 5px rgba(21, 73, 63, 0.2);
  border: 2px solid white;
}

/*** FORM CONNEXION ET INSCRIPTION | MOT DE PASSE PERDU ***/

.elementor-field-type-checkbox {
  justify-content: center;
}
.elementor-field-type-checkbox label {
  padding-left: 0 !important;
}
.jet-reset__field-wrapper,
.login-username,
.login-password__wrapper {
  margin-bottom: 20px !important;
}
.password-visibility__icon--show,
.password-visibility__icon--hide {
  fill: #15493f;
  margin-right: 20px;
}
.jet-register__row.jet-privacy-policy,
.login-remember label {
  justify-content: center !important;
  margin-bottom: 20px !important;
  align-items: flex-start !important;
}
.jet-register__row.jet-privacy-policy label {
  padding-left: 5px !important;
}
.elementor-element.elementor-element-0fd60c5 .jet-register__input {
  margin: unset !important;
}

/* FORM MODIF COMPTE */

.jet-form-builder-file-upload__content {
  display: none !important;
}
.field-type-media-field .jet-form-builder__label {
  color: #05dbb2;
}
.jet-form-builder-file-upload__fields .jet-form-builder-file-upload__input {
  width: 100% !important;
}
.wp-container-core-columns-is-layout-28f84493 {
  position: relative !important;
}
.jet-form-builder__field-wrap.jet-form-builder-file-upload {
  z-index: 10;
  opacity: 0;
}
.elementor-element-31d25cf .jet-listing.jet-listing-dynamic-image {
  object-fit: cover;
  width: 60px;
  height: 60px;
  border-radius: 99px;
  position: absolute;
  right: 30px;
  z-index: 5;
}
img.jet-listing-dynamic-image__img.attachment-full.size-full {
  object-fit: cover;
  border-radius: 99px;
  height: 100%;
}
.elementor-element-31d25cf .field-type-date-field {
  margin-bottom: 20px !important;
}

/* BUTTON REPEATER "ADD PLAYERS" */
.jet-form-builder-repeater__new {
  min-width: 240px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.jet-form-builder-repeater__new span {
  color: #15493f;
  background: #fff;
  padding: 11px;
  clip-path: circle();
  font-family: 'Montserrat', Sans-serif;
  line-height: 0;
}
.jet-form-builder-repeater__new::after {
  content: '' !important;
  background-image: url(https://le-corner.com/wp-content/uploads/2025/06/icon_ajout-le-corner.png) !important;
  width: 20px !important;
  height: 20px !important;
  right: 30px !important;
  border-radius: 99px !important;
  bottom: 50% !important;
  transform: translate(0, 50%) !important;
}
.jet-form-builder-repeater__new:hover::after {
  transform: translate(0, 50%) !important;
}
.jet-form-builder-repeater__new::before {
  content: unset;
}
button.jet-form-builder-repeater__remove {
  transform: translate(0, 38%) !important;
  height: 50px;
}
:where(.wp-block-columns) {
  margin-bottom: 0 !important;
}

/* APPOINTEMENT CARD MY ACCOUNT */
.appointment-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 20px;
  border-bottom: 1px solid #e6e6e6;
}

.block-appointment-detail {
  display: flex;
  width: 60%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.appointment-detail {
  width: 20%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.appointment-detail.date {
  width: 25%;
}
.appointment-detail.time {
  width: 15%;
}
.appointment-detail.terrain {
  width: 20%;
}

.block-players {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 20%;
}

.text-appointement {
  font-family: 'obviously-narrow';
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 900 !important;
  color: #15493f;
  white-space: nowrap;
}

#reservation-contents p {
  font-family: 'Aloevera Display', Sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: none;
}

/* TITLE CARD TEAMS LEAGUE */
.mon-equipe {
  font-family: 'Nicon Black', Sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
}

/* APOINTEMENT CALENDAR */
.jet-apb-calendar {
  gap: 15px !important;
}
.jet-apb-calendar-content {
  width: 100% !important;
}
.jet-apb-calendar-wrapper {
  background: white;
  border-radius: 10px;
  padding: 20px;
}
.jet-apb-calendar-week {
  background: #15493f;
  border-radius: 10px;
  color: white;
}
.jet-apb-calendar .jet-apb-calendar-week span {
  font-size: 12px !important;
  padding: 7px 0px !important;
}
.jet-apb-calendar-date-body,
.jet-apb-slot {
  font-size: 14px !important;
  color: white !important;
}
.jet-apb-calendar-header {
  background: #f6f6f6;
  border-radius: 10px;
  margin-bottom: 10px;
}
.jet-apb-calendar-week {
  margin-bottom: 10px;
}
.jet-apb-calendar-header svg {
  width: 16px;
}
.jet-apb-calendar-sidebar {
  padding: unset !important;
}
.jet-apb-calendar-slots-container .jet-apb-calendar-slots--active {
  color: white;
}
.jet-apb-calendar-slots.jet-apb-calendar-slots--active.jet-apb-calendar-type-slot {
  margin-bottom: 10px !important;
}
.jet-apb-slot {
  padding: 5px !important;
  margin: 2px !important;
}
.jet-apb-calendar-slots-container .jet-apb-slot--selected {
  background: white;
  border-radius: 4px;
  color: #15493f !important;
}
.jet-apb-calendar-appointments-list {
  background: #f6f6f6;
  border-radius: 10px;
}
.jet-apb-calendar-appointments-list-wrapper .jet-form-builder__label-text {
  display: none !important;
}
.jet-apb-appointments-item {
  margin-bottom: unset !important;
}
.jet-apb-calendar-btn::before,
.jet-apb-calendar-btn::after {
  content: unset !important;
}
.jet-apb-calendar-date {
  height: 40px;
  width: 40px !important;
}
.jet-apb-calendar-type-slot {
  background: #15493f;
  border-radius: 10px;
}
.jet-apb-calendar-date-body {
  width: 60px !important;
  height: 30px;
  line-height: 2;
  background: #f6f6f6;
  border-radius: 4px !important;
  color: #15493f !important;
}
.jet-apb-calendar-slots__close {
  font-size: 20px !important;
  top: 0px !important;
  right: 10px !important;
  color: white;
}

/* APOINTEMENT CARD ADMINSTRATEUR */

.div-button-apointement-detail {
  width: 20%;
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.div-button-apointement-detail a {
  background-color: var(--e-global-color-secondary);
  border-radius: 10px 10px 10px 10px;
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: var(--e-global-typography-accent-font-size);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  color: #fff;
  padding: 12px 24px;
  text-align: center;
  transition: 0.4s;
}
.div-button-apointement-detail:hover a {
  color: #fff;
  background-color: rgba(21, 73, 63, 0.7);
}

/* ADMIN APOINTEMENT */

.search_input {
  font-size: 16px !important;
}

.appointment-provider img {
  border-radius: unset !important;
}

button.filter-btn {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--e-global-color-secondary);
  font-family: 'obviously-narrow', Sans-serif;
  color: rgba(21, 73, 63, 0.5);
  background-color: transparent;
  font-size: 20px;
  border: none;
}

button.filter-btn:hover {
  color: #15493f;
  background-color: transparent;
}

button.filter-btn.active {
  color: #15493f;
  background-color: transparent;
}

button.filter-btn::after,
button.filter-btn::before,
.switch-btn::after,
.switch-btn::before {
  display: none !important;
}

div#reservation-switcher {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.switch-btn {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--e-global-color-secondary);
  font-family: 'Nicon Black', Sans-serif;
  color: rgba(21, 73, 63, 0.5);
  font-size: 20px !important;
}

.switch-btn:hover {
  color: #15493f;
  background-color: transparent;
}

.switch-btn.active {
  color: #15493f;
  background-color: transparent;
}

.separator-swicth {
  width: 2px;
  height: 35px;
  background-color: #15493f;
}

/* PAGINATION */

.elementor-pagination {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.page-numbers {
  width: 35px;
  height: 35px;
  background: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.page-numbers.current {
  background: #15493f;
}

/* TIMELINE */

.jet-hor-timeline-item__card-inner {
  padding: 20px 20px 0 20px !important;
}
.jet-hor-timeline-track,
.jet-hor-timeline-item {
  padding-bottom: unset !important;
}
.jet-hor-timeline-item__point-content::after {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  border: 2px solid #15493f;
  border-radius: 99px;
}
.jet-hor-timeline-item__point-content::before {
  content: '';
  position: absolute;
  border: 7px solid #f6f6f6;
  border-radius: 99px;
  width: 44px;
  height: 44px;
}

/* CAROUSSEL */

.swiper-slide-active,
.swiper-slide-duplicate-active,
.swiper-slide {
  transition: 0.6s;
}
.swiper-slide-next {
  transform: scale(1.3) !important;
  z-index: 10;
  transition: 0.6s;
}
.swiper {
  overflow: unset !important;

  overflow-y: visible !important;
}
.swiper-slide-prev,
.swiper-slide-duplicate-prev,
.swiper-slide-duplicate-active,
.swiper-slide-duplicate-next {
  opacity: 0;
  transition: 0.6s;
}
.elementor-element-73bdc9d .jet-listing-dynamic-repeater__items {
  align-items: center;
  gap: 10px;
}

.swiper-slide-duplicate-prev {
  z-index: 10;
}
.swiper-slide-duplicate-next {
  visibility: hidden;
}

/* TOP 5 JOUEURS */

.elementor-element-595e36f .elementor-shortcode,
.elementor-element-0f30dba .elementor-shortcode {
  display: flex;
  justify-content: center;
}
.bloc_top5 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 75%;
  margin-top: 30px;
}
.bloc_classement {
  background: white;
  border-radius: 20px;
  height: 120px;
  position: relative;
  width: 20%;
}
.bloc_classement.rank_1 {
  background: #05dbb2;
  color: white !important;
}
.bloc_classement img,
.bloc_classement .img_remplacement {
  position: absolute;
  top: -23px;
  right: 20px;
}
.bloc_classement.rank_1 img,
.bloc_classement.rank_1 .img_remplacement {
  position: absolute;
  top: unset;
  bottom: -23px;
  right: 50%;
  transform: translateX(50%);
}
.rank_top5 {
  position: absolute;
  font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
  font-size: 42px;
  font-weight: 700;
  top: -25px;
  color: #05dbb2;
  left: 30px;
}
.bloc_classement.rank_1 .rank_top5 {
  top: -25px;
  color: white;
  left: 50%;
  transform: translateX(-50%);
}
.name_top5 {
  margin-top: 40px;
  font-family: 'obviously-narrow', Sans-serif;
  font-weight: 700;
}
.name_top5,
.count_top5 {
  text-align: center;
}
.count_top5 {
  font-family: 'aloevera Display', Sans-serif;
  font-weight: 300;
  font-size: 12px;
}
.bloc_classement.rank_2 {
  margin-top: 20px;
}
.bloc_classement.rank_3 {
  margin-top: 40px;
}
.bloc_classement.rank_4 {
  margin-top: 60px;
}
.bloc_classement.rank_5 {
  margin-top: 80px;
}

/*** TWITCH ***/

.elementor-element-b1627dc,
.elementor-element-24cadaa {
  width: 50%;
}
.elementor iframe {
  border-radius: 30px !important;
}

/*** DETAILS RESERVATION ***/

.bloc_detail-reservations {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.bloc_detail-reservation {
  width: 20%;
  border-radius: 20px;
  border: 1px solid #e6e6e6;
  padding: 20px;
  position: relative;
  margin-top: 40px;
}
.avatar_detail-reservation {
  position: absolute;
  top: -23px;
  right: 20px;
}
.bloc_detail-reservations .name_top5 {
  margin-top: 20px;
}
.title_detail-reservation {
  font-size: 42px;
  font-family: 'Nicon Black', Sans-serif;
  text-align: center;
  text-transform: uppercase;
  margin-top: -5px;
}
.infos_detail-reservation {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.infos_detail-reservation div {
  font-size: 24px;
  font-family: 'Nicon Black', Sans-serif;
  text-transform: uppercase;
  color: #15493f;
}
.bloc_detail-reservation.multiple-10 {
  border: 1px solid #05dbb2;
  background: #05dbb2;
}

/*** CLASSEMENT ***/

.classement-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.classement-table {
  width: 90%;
}
.classement-row {
  display: flex;
  flex-direction: row;
}
.classement-cell {
  width: 18.34%;
}
.classement-cell.cell-pts {
  width: 10%;
}
.classement-cell.cell-equipe {
  width: 40%;
}
.classement-row.classement-header {
  margin-bottom: 10px;
}
.classement-cell.cell-equipe img {
  width: 65px;
  object-fit: contain;
  height: auto;
  display: block;
}
.classement-cell.cell-equipe {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
.classement-row.classement-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.classement-row {
  display: flex;
  align-items: center;
  height: 60px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.classement-cell.cell-mj,
.classement-cell.cell-g,
.classement-cell.cell-pts,
.classement-cell.cell-p {
  font-family: 'obviously-narrow';
  font-size: 18px;
}
.classement-header .classement-cell.cell-mj,
.classement-header .classement-cell.cell-equipe,
.classement-header .classement-cell.cell-g,
.classement-header .classement-cell.cell-pts,
.classement-header .classement-cell.cell-p {
  font-family: 'Aloevera Display', Sans-serif !important;
  font-weight: 700;
  font-size: 16px;
}
.classement-title {
  font-family: 'Nicon Black', Sans-serif;
  font-size: 42px;
  margin-top: -25px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.nom-equipe {
  font-family: 'Aloevera Display', Sans-serif !important;
  font-weight: 400;
  font-size: 12px;
}
.classement-row.classement-header {
  height: 40px;
}
.classement-separation {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.classement-separation span {
  border-bottom: 1px solid #e6e6e6;
  width: 80%;
  transform: translateX(-3%);
}
.classement-rank {
  font-family: 'Aloevera Display', Sans-serif !important;
  color: #15493f;
  margin-right: 10px;
}
.appointment-provider__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.appointment-provider__content
  .jet-form-builder__field-wrap.radio-wrap.checkradio-wrap {
  width: 50%;
}
.field-type-appointment-provider .jet-form-builder__label {
  margin-bottom: 5px !important;
}
.appointment-provider__content
  .jet-form-builder__field-template--checked
  .elementor-element-4d451dd::before {
  opacity: 0.9 !important;
}
.jet-form-builder__calculated-field {
  width: 100%;
  background: white;
  height: 50px;
  border-radius: 10px;
  padding-left: 50px;
  align-items: center;
}
.elementor-element-57ef17f .wp-block-search__inside-wrapper button {
  display: none;
}
.search-dropdown div:hover {
  background: #15493f;
  color: white;
}
.jet-form-builder-repeater__row-fields .select-field {
  display: none !important;
}

@media screen and (max-width: 768px) {
  /** APPOINTMENT CALENDAR **/

  .jet-apb-calendar-wrapper {
    padding: 10px;
    width: 100% !important;
  }
  .jet-apb-calendar .jet-apb-calendar-week span {
    font-size: 10px !important;
  }
  .jet-apb-calendar-date-body {
    font-size: 12px !important;
  }
  .jet-apb-calendar .jet-apb-calendar-content {
    width: 100% !important;
    min-width: 320px !important;
  }
  .jet-apb-calendar-date-body {
    width: 40px !important;
  }
  .jet-form-builder-repeater__new {
    width: 100% !important;
  }
  .label_checkbox {
    padding-left: unset !important;
    font-size: 13px;
  }
  /** DASHBOARD **/

  button.filter-btn {
    font-size: 16px;
  }
  #reservation-filters {
    display: flex;
    justify-content: center;
  }

  button.switch-btn {
    padding: 5px !important;
  }
  .block-appointment-detail img {
    width: 24px !important;
    height: 24px !important;
  }
  .text-appointement {
    font-size: 15px;
  }
  .div-button-apointement-detail {
    width: 100%;
  }
  .div-button-apointement-detail a {
    font-size: 13px;
    padding: 9px 18px;
  }
  .appointment-block {
    flex-wrap: wrap;
    padding: 30px 0;
  }
  .appointment-status-icon {
    display: none;
  }
  .appointment-detail.date {
    width: 40%;
  }
  .appointment-detail.time {
    width: 25%;
  }
  .appointment-detail.terrain {
    width: 35%;
  }
  .block-players {
    position: absolute;
    bottom: 30px;
    justify-content: flex-start;
    left: 5px;
    width: 50%;
  }
  .block-players img,
  .block-players div {
    width: 36px !important;
    height: 36px !important;
  }
  .appointment-block {
    position: relative;
  }
  .elementor-element-785b2b5 .block-players {
    position: absolute;
    bottom: 65px;
    justify-content: flex-end;
    right: 5px;
    left: unset;
    width: 50%;
  }
  .elementor-element-785b2b5 .appointment-block {
    flex-wrap: wrap;
    padding: 30px 0 65px;
  }
  .elementor-icon-wrapper {
    display: flex;
  }

  /*** MODIFIER INFORMATIONS ***/

  .elementor-element-31d25cf .jet-listing.jet-listing-dynamic-image {
    width: 46px;
    height: 46px;
  }

  /*** INSCRIPTION ***/

  .elementor-element-35a82df
    .wp-block-columns.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex,
  .elementor-element-31d25cf
    .wp-block-columns.is-layout-flex.wp-container-core-columns-is-layout-a58066f2.wp-block-columns-is-layout-flex {
    gap: 0px !important;
  }

  /*** PARTENARIAT ***/

  .elementor-element-2e06bca .elementor-loop-container.elementor-grid {
    gap: 10px;
  }

  /*** TOP 5 ***/

  .bloc_top5 {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 35px;
  }
  .bloc_classement {
    width: 75%;
  }
  .bloc_classement.rank_1 {
    background: #05dbb2;
    color: white !important;
    order: 1;
  }
  .bloc_classement img,
  .bloc_classement .img_remplacement {
    position: absolute;
    top: -23px;
    right: 20px;
  }
  .bloc_classement.rank_1 img,
  .bloc_classement.rank_1 .img_remplacement {
    position: absolute;
    top: unset;
    bottom: -23px;
    right: 50%;
    transform: translateX(50%);
  }
  .rank_top5 {
    position: absolute;
    font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: 42px;
    font-weight: 700;
    top: -25px;
    color: #05dbb2;
    left: 30px;
  }
  .bloc_classement.rank_1 .rank_top5 {
    top: -25px;
    color: white;
    left: 50%;
    transform: translateX(-50%);
  }
  .name_top5 {
    margin-top: 40px;
    font-family: 'obviously-narrow', Sans-serif;
    font-weight: 700;
  }
  .name_top5,
  .count_top5 {
    text-align: center;
  }
  .count_top5 {
    font-family: 'aloevera Display', Sans-serif;
    font-weight: 300;
    font-size: 12px;
  }
  .bloc_classement.rank_2 {
    margin-top: unset;
    order: 2;
  }
  .bloc_classement.rank_3 {
    margin-top: unset;
    order: 3;
  }
  .bloc_classement.rank_4 {
    margin-top: unset;
    order: 4;
  }
  .bloc_classement.rank_5 {
    margin-top: unset;
    order: 5;
  }

  /*** TWITCH ***/

  .elementor-element-b1627dc {
    width: 90%;
  }

  /*** CLASSEMENT LIGUE ***/

  .classement-table {
    width: 100%;
  }
  .classement-cell {
    width: 11.25%;
  }
  .classement-cell.cell-equipe {
    width: 55%;
  }
  .classement-cell.cell-equipe .classement-rank {
    display: none;
  }
  .classement-cell.cell-equipe img {
    width: 55px;
  }

  /*** MENU ***/

  .jet-mobile-menu__toggle-icon,
  .jet-mobile-menu--location-wp-nav,
  .jet-mobile-menu__instance,
  .jet-mobile-menu__toggle {
    height: 0px !important;
    width: 0px !important;
  }
  .jet-mobile-menu__toggle {
    min-height: unset !important;
  }
  .jet-mobile-menu .jet-dropdown-arrow {
    height: unset !important;
  }
  .jet-mobile-menu__container-inner::after {
    content: '';
    position: absolute;
    background-image: url(https://le-corner.com/wp-content/uploads/2025/05/logo_le-corner.svg);
    background-size: 150px;
    width: 150px;
    height: 60px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    background-repeat: no-repeat;
  }
  .elementor-element.elementor-element-d7cadd5 img {
    object-fit: cover;
  }

  /*** ACCUEIL ***/

  .title_accueil {
    font-size: 40px !important;
  }
}
