/* Common */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
::before,
::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

:root {
  scroll-behavior: unset;
}

body {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #111111;
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

iframe {
  border: 0;
  width: 100%;
  display: block;
}

a {
  font-size: 14px;
  line-height: 27px;
  font-weight: 400;
  color: #111111;
  text-decoration: none;
  display: block;
  transition: all 0.4s;
}

a:hover {
  color: #285455;
  outline: 0;
  text-decoration: none;
  transition: all 0.4s;
}

p a {
  display: inline;
  text-decoration: underline;
}

button,
button:hover {
  transition: all 0.4s;
}

svg:not(:root) {
  overflow: hidden;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

/* End Common */

/* Typography */
h1,
.heading-one {
  font-size: 26px;
  line-height: 32px;
}

h2,
.heading-two {
  font-size: 22px;
  line-height: 30px;
}

h3,
.heading-three {
  font-size: 20px;
  line-height: 26px;
}

h4,
.heading-four {
  font-size: 18px;
  line-height: 24px;
}

h5,
.heading-five {
  font-size: 16px;
  line-height: 24px;
}

h6,
.heading-six {
  font-size: 14px;
  line-height: 21px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111111;
}

h1,
h2,
h3,
h4,
h5,
h6,
address,
p,
pre,
blockquote,
dl,
dd,
menu,
table,
caption,
hr {
  margin: 0 0 16px 0;
}

p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #111111;
}

p:last-child {
  margin-bottom: 0;
}

svg {
  display: inline-block;
}

:focus-visible {
  outline: none !important;
}

img {
  max-width: 100%;
  display: block;
  margin: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.container,
.container-fluid {
  padding: 0;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.text-xxl {
  font-size: 24px;
  line-height: 36px;
}

.text-xl {
  font-size: 20px;
  line-height: 30px;
}

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

.text-sm {
  font-size: 14px;
  line-height: 24px;
}

.text-xs {
  font-size: 12px;
  line-height: 18px;
}

.text-aqua {
  color: #7fd5ca;
}

.text-green {
  color: #285455;
}

.text-black-2 {
  color: #111111;
}

.text-gray {
  color: #525b5b;
}

.bg-green {
  background-color: #285455;
}

.bg-white {
  background-color: #ffffff;
}

.border-radius-4 {
  border-radius: 4px;
}

/* End Typography */

/* Form Field */
input,
button,
select,
textarea {
  background: transparent;
  border: 1px solid #d0d5dd;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  color: #000000;
}

input:focus,
input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: #285455;
}

input,
select,
textarea {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  box-shadow: none;
  -webkit-box-shadow: none;
  padding: 8px 16px;
  border-radius: 4px;
  color: #111111;
  font-weight: 400;
}

input::placeholder,
textarea::placeholder {
  color: #828282;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #828282;
  opacity: 1;
}

textarea {
  resize: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("assets/images/icon-down-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 24px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  padding: 7px 50px 7px 16px;
  border: 1px solid #d0d5dd;
  color: #828282;
  text-transform: capitalize;
}

input[type="radio"] {
  width: 16px;
  height: 16px;
  padding: 0;
  cursor: pointer;
}

input[type="radio"]:focus {
  outline: 0;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: #285455;
  border-color: #285455;
}

.form-group {
  margin-bottom: 16px;
}

label {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin: 0 0 6px;
  color: #111111;
  display: block;
}

.form-group label .required,
.form-group .error-text,
.login-form .login-username label span,
.login-form .login-password label span {
  color: #dc3232;
}

.form-group .error-text {
  font-size: 14px;
  line-height: 24px;
}

/* Common Button */
.solid-btn,
.border-btn,
.white-border-btn {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 9px 27px;
  border-radius: 4px;
  text-transform: capitalize;
  transition: all 0.4s;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: #285455;
  color: #ffffff;
}

.solid-btn:hover,
.solid-btn:focus {
  background: #7fd5ca;
  color: #fff;
  border-color: transparent;
  transition: all 0.4s;
}

.border-btn {
  border: 1px solid #285455;
  background: #ffffff;
  color: #285455;
}

.border-btn:hover {
  border: 1px solid #285455;
  background: #285455;
  color: #ffffff;
  transition: all 0.4s;
}

.white-border-btn {
  border: 1px solid #ffffff;
  background: transparent;
}

.white-border-btn:hover {
  border: 1px solid #7fd5ca;
  background: #7fd5ca;
  transition: all 0.4s;
}

/* End Common Button */

/* Spacing Style */

.py-50 {
  padding: 50px 0;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-24 {
  margin-top: 24px;
}
.mb-24 {
  margin-bottom: 24px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-8 {
  margin-bottom: 8px;
}

.m-b-2 {
  margin-bottom: 2px;
}

/* End Spacing Style */
/* Common list Start */
.common-list li,
.privacy-policy-container ul li,
.terms-condition-container ul li,
.leagel-notice-container ul li,
.blog-detail ul li {
  padding-left: 24px;
  position: relative;
}

.common-list li::before,
.privacy-policy-container ul li::before,
.terms-condition-container ul li::before,
.leagel-notice-container ul li::before,
.blog-detail ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 6px;
  background: #7fd5ca;
  border-radius: 100%;
  width: 6px;
  height: 6px;
}

.common-list li:not(:last-child),
.privacy-policy-container ul li,
.terms-condition-container ul li,
.leagel-notice-container ul li,
.blog-detail ul li {
  margin-bottom: 16px;
}

.common-list li ul,
.privacy-policy-container ul li ul,
.terms-condition-container ul li ul,
.leagel-notice-container ul li ul,
.blog-detail ul li ul {
  margin-top: 8px;
}

.common-list:last-child {
  margin-bottom: 0;
}

.why-choose-list li:not(:last-child) {
  margin-bottom: 16px;
}

.common-list-numeric,
.privacy-policy-container ol,
.terms-condition-container ol,
.leagel-notice-container ol,
.blog-detail ol {
  counter-reset: item;
  margin-left: 0;
}

.common-list-numeric > li:before,
.privacy-policy-container ol > li:before,
.terms-condition-container ol > li:before,
.leagel-notice-container ol > li:before,
.blog-detail ol > li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}

.common-list-numeric > li,
.privacy-policy-container ol > li,
.terms-condition-container ol > li,
.leagel-notice-container ol > li,
.blog-detail ol > li {
  margin-bottom: 16px;
}

.common-list-numeric li:last-child {
  margin-bottom: 0;
}

.common-list-numeric .common-list,
.privacy-policy-container ol li ul,
.terms-condition-container ol li ul,
.leagel-notice-container ol li ul,
.blog-detail ol li ul {
  margin-top: 12px;
}

/* Common list End */
/* Icons */
i {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}

.icon-location {
  mask-image: url(./assets/images/icon-location.svg);
  -webkit-mask-image: url(./assets/images/icon-location.svg);
  width: 24px;
  height: 24px;
  mask-size: 24px;
  -webkit-mask-size: 24px;
  background: #285455;
}

.icon-call {
  mask-image: url(./assets/images/icon-call.svg);
  -webkit-mask-image: url(./assets/images/icon-call.svg);
  width: 24px;
  height: 24px;
  mask-size: 20px;
  -webkit-mask-size: 20px;
  background: #285455;
}

.icon-envlop {
  mask-image: url(./assets/images/icon-mail.svg);
  -webkit-mask-image: url(./assets/images/icon-mail.svg);
  width: 24px;
  height: 24px;
  mask-size: 20px;
  -webkit-mask-size: 20px;
  background: #285455;
}

.icon-down-arrow {
  mask-image: url(./assets/images/icon-down-arrow.svg);
  -webkit-mask-image: url(./assets/images/icon-down-arrow.svg);
  width: 24px;
  height: 24px;
  background: #52525b;
}

.icon-up-arrow {
  mask-image: url(./assets/images/icon-up-arrow.svg);
  -webkit-mask-image: url(./assets/images/icon-up-arrow.svg);
  width: 14px;
  height: 14px;
  background: #111111;
  transition: all 0.4s;
}

.icon-date {
  mask-image: url(./assets/images/icon-date.svg);
  -webkit-mask-image: url(./assets/images/icon-date.svg);
  width: 14px;
  height: 14px;
  background: #285455;
}

.icon-quote {
  mask-image: url(./assets/images/icon-quote.svg);
  -webkit-mask-image: url(./assets/images/icon-quote.svg);
  width: 20px;
  height: 20px;
  background: #7fd5ca;
}

.icon-headphone {
  mask-image: url(./assets/images/icon-headphone.svg);
  -webkit-mask-image: url(./assets/images/icon-headphone.svg);
  width: 40px;
  height: 40px;
  background: #ffffff;
}
.icon-user {
  mask-image: url(./assets/images/icon-user.svg);
  -webkit-mask-image: url(./assets/images/icon-user.svg);
  width: 20px;
  height: 20px;
  background: #285455;
}

/* Icons End */

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 99;
  left: 0;
  transition: all 0.1s linear 0s;
}

.site-header .container {
  position: relative;
  /*   padding: 8px 0; */
}
.site-branding a {
  max-width: max-content;
  height: 87px;
}
.site-branding a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .site-header .site-branding {
  position: relative;
}
.site-header .site-branding::before {
  content: "";
  position: absolute;
  top: -21px;
  left: -120px;
  background-image: url("./assets/images/header-left-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 80px;
  height: 87px;
} */
.site-header.smaller {
  box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
}

.admin-bar .site-header {
  margin-top: 32px;
}

.main-navigation .menu-toggle {
  display: none;
}

.main-navigation .site-nav li a {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #111111;
  display: block;
}

.main-navigation .site-nav li.current-menu-item a,
.main-navigation .site-nav li a:hover {
  color: #285455;
  transition: all 0.4s;
}

.main-navigation .site-nav li.current-menu-item a {
  font-weight: 600;
}

.header-bottom-navigation .header-bottom-nav li a {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #285455;
  display: block;
}

.header-bottom-navigation .header-bottom-nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header-bottom-menu {
  padding: 13px 0;
  border-top: 1px solid #bfe0e0;
  width: 100%;
  background: #fff;
}

.header-bottom-navigation {
  margin: 0 auto;
  padding: 0 80px;
}

.header-middle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 66px;
}

.header-middle a {
  font-size: 16px;
  line-height: 71px;
  font-weight: 600;
  color: #7fd5ca;
  padding: 0 14px;
  position: relative;
  height: 100%;
  display: inline-block;
}

.header-middle a::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  width: 100%;
  background-color: #7fd5ca;
  border-radius: 3px;
}
.page-template-club-listing .header-middle a::before,
.page-template-events .header-middle a::before,
.page-template-things-to-do .header-middle a::before,
.single-court .header-middle a::before {
  display: none;
}

.page-template-club-listing .header-middle a,
.page-template-events .header-middle a,
.page-template-things-to-do .header-middle a,
.single-court .header-middle a {
  color: #285455;
}

.header-city {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #111111;
}

.header-city-dropdown {
  position: relative;
}

.header-city-dropdown .header-city {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 32px 0 31px;
}

.header-city-dropdown .city-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transition: 0.3s;
  display: block;
  background: #ffffff;
  z-index: 9;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 16px;
  margin: 0 auto;
  width: 160px;
}

.city-dropdown-menu li:not(:last-child) {
  margin-bottom: 8px;
}

.city-dropdown-menu li a {
  font-size: 12px;
  line-height: 18px;
}

.city-block {
  border: 1px solid #cdcdcd;
  margin-bottom: 30px;
  padding: 8px 16px;
  border-radius: 8px;
}

.city-block h2 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  margin-bottom: 10px;
}

.city-block h2 {
  font-size: 18px;
  line-height: 26px;
}

.city-block ul {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 8px;
}

.city-block .city-inner-block:last-child ul {
  border-bottom: 0;
  margin-bottom: 0;
}

.city-block ul li {
  padding-bottom: 14px;
}

.city-block .city-inner-block:last-child ul li {
  padding-bottom: 6px;
}

.city-block .form-check {
  display: flex;
  padding-left: 0;
  align-items: center;
  gap: 8px;
}

.city-block input[type="radio"] {
  margin: 0;
  display: none;
}

.city-block .form-check-label {
  cursor: pointer;
  margin: 0;
  position: relative;
  padding-left: 24px;
}

.city-block .form-check-label::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
}

.city-block .form-check-label::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #285455;
  opacity: 0;
  visibility: hidden;
}

.city-block input[type="radio"]:checked + label::before {
  border-color: #285455;
}

.city-block input[type="radio"]:checked + label::after {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  display: none;
}
.header-right-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding-right: 80px;
}
/* Language */
.wpml-ls-legacy-dropdown {
  width: auto;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
  position: relative;
  width: 50px;
  border: 0;
  border-radius: 4px;
  padding: 5px;
  text-align: right;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle span {
  vertical-align: middle;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #316861;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
  content: "";
  vertical-align: middle;
  display: inline-block;
  border: 0;
  border-top: 0;
  position: absolute;
  left: 2px;
  top: 4px;
  background-image: url(./assets/images/icon-globe.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
}

.wpml-ls-legacy-dropdown .wpml-ls-flag {
  border-radius: 50%;
  height: 18px;
  width: 18px;
  object-fit: cover;
}

.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a,
.wpml-ls-legacy-dropdown a:focus,
.wpml-ls-legacy-dropdown a:hover {
  color: #fff;
  background: #285455;
}
.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a span {
  color: #fff;
}
.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a::after {
  filter: brightness(100);
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  top: 101%;
  border-top: 0;
  border-radius: 4px;
  border: 1px solid #dfeded;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu a {
  border: 0;
}
.otgs-development-site-front-end {
  display: none;
}
/* Language End */
/* Header End */

/* Modal */
.modal-title {
  margin-bottom: 16px;
}

.btn-close {
  padding: 0;
  margin: 0;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 16px;
  right: 16px;
  background: url(./assets/images/icon-close.svg) no-repeat center;
  background-size: 16px;
  border-radius: 0;
  opacity: 1;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}

.modal-body {
  padding: 30px;
  position: relative;
}

.modal-btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.modal-btn-wrapper button {
  width: 50%;
}

/* Modal End */

/* Banner */
.site-content {
  margin-top: 87px;
}

.page-template-club-listing .site-content,
.page-template-events .site-content,
.page-template-things-to-do .site-content,
.single-court .site-content {
  margin-top: 135px;
}

.banner {
  overflow: hidden;
}

.banner-left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 819px;
  min-height: 819px;
}

.banner-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 415px;
  min-height: 415px;
}

.banner-bottom-image {
  padding: 24px 24px 38px 24px;
  background: #7fd5ca;
  height: 100%;
}

.banner-bottom-image h1,
.banner-bottom-image p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #285455;
  margin-bottom: 12px;
  font-style: italic;
}

.banner-bottom-image h2 {
  /*line-height: 27px;*/
  font-weight: 400;
  margin-bottom: 0;
}

.banner-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.banner-btn-wrapper .banner-contact:hover {
  background: #ffffff;
  color: #285455;
  transition: all 0.4s;
}

.banner-btn-wrapper .header-city {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #111111;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background-color: #fff;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-btn-wrapper .header-city .icon-down-arrow {
  background: #818181;
}
.banner-right-wrapper {
  height: 100%;
}
.banner-bottom-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-height: 404px;
}

.banner-bottom-wrapper::after {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  mask-image: url(./assets/images/icon-padel-large.svg);
  -webkit-mask-image: url(./assets/images/icon-padel-large.svg);
  background-size: cover;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
  width: 290px;
  height: 360px;
  background: #285455;
}
.banner-bottom-content {
  max-height: 280px;
  overflow-y: auto;
  max-width: 530px;
  padding-right: 8px;
}
/* Scrollbar Track */
.banner-bottom-content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.banner-bottom-content::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 0;
}

/* Scrollbar Thumb */
.banner-bottom-content::-webkit-scrollbar-thumb {
  background: #285455;
  border-radius: 0;
}
/* Banner End */

/* Footer */
.site-footer {
  padding-top: 30px;
  overflow: hidden;
}

.footer-title {
  margin-bottom: 12px;
}

.social-media-list li a {
  display: flex;
  align-items: center;
}

.social-media-list li a:hover i {
  transition: all 0.4s;
  transform: rotate(45deg);
}

.tnp-subscription .tnp-field-email label {
  display: none;
}

.tnp-subscription .tnp-field-email {
  position: relative;
}

body .site-footer .tnp-subscription input[type="text"],
body .site-footer .tnp-subscription input[type="email"],
body .site-footer .tnp-subscription input[type="submit"],
body .site-footer .tnp-subscription select,
body .site-footer .tnp-subscription textarea,
body .site-footer .tnp-profile input[type="text"],
body .site-footer .tnp-profile input[type="email"],
body .site-footer .tnp-profile input[type="submit"],
body .site-footer .tnp-profile select,
body .site-footer .tnp-profile textarea {
  width: 100%;
  padding: 10px 16px;
  display: block;
  color: #111111;
  border: 1px solid #d0d5dd;
  background-color: #ffffff;
  background-image: none;
  text-shadow: none;
  font-size: 16px;
  line-height: 22px !important;
  margin: 0;
  line-height: normal;
  box-sizing: border-box;
  transition: all 0.4s;
}

body .site-footer .tnp-subscription input[type="submit"] {
  width: auto;
  background-color: #285455;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
}

body .site-footer .tnp-subscription input[type="submit"]:hover {
  background-color: #fff;
  color: #285455;
  border-color: #285455;
  transition: all 0.4s;
}

body .site-footer .tnp-subscription input[type="text"]:focus,
body .site-footer .tnp-subscription input[type="email"]:focus,
body .site-footer .tnp-subscription input[type="submit"]:focus,
body .site-footer .tnp-subscription select:focus,
body .site-footer .tnp-subscription textarea:focus,
body .site-footer .tnp-profile input[type="text"]:focus,
body .site-footer .tnp-profile input[type="email"]:focus,
body .site-footer .tnp-profile input[type="submit"]:focus,
body .site-footer .tnp-profile select:focus,
body .site-footer .tnp-profile textarea:focus {
  border-color: #285455 !important;
}

.tnp-subscription form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tnp-subscription div.tnp-field {
  margin-bottom: 0;
}

.copyright-row {
  margin-top: 30px;
  padding: 12px 0;
  border-top: 1px solid #cdcdcd;
}

.copyright-right p {
  text-align: right;
}

.copyright-row p a {
  display: inline-block;
}

div.tnp-subscription {
  margin: 0;
  max-width: 100%;
}

/* Footer End */

/* Club Listing */

.club-listing {
  background: #dfeded;
  padding-bottom: 30px;
  min-height: calc(100vh - 500px);
}
.event-listing {
  min-height: calc(100vh - 350px);
}
.things-to-do-listing {
  min-height: calc(100vh - 500px);
}
.breadcrumb {
  white-space: nowrap;
}
.club-listing .breadcrumbs {
  padding-top: 20px;
  padding-bottom: 30px;
}

.club-sidebar {
  position: sticky;
  top: 150px;
}

.club-title {
  background: linear-gradient(
    90.02deg,
    #7fd5ca -11.77%,
    rgba(201, 237, 233, 0.8) 55.03%,
    #dfeded 110.88%
  );
  padding: 8px 16px;
}
.court-list-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.court-list-image {
  max-width: 198px;
  max-height: 132px;
  flex-shrink: 0;
}

.court-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.court-list-wrapper .court-list-content {
  max-width: 519px;
}

.court-list-content h2 {
  margin-bottom: 4px;
  color: #285455;
  font-weight: 400;
}

.court-list-content h2 .heading-two {
  color: #285455;
  display: inline-block;
}

.court-list-content h2 .heading-two:hover {
  color: #111111;
}

.court-list-content p {
  margin-bottom: 8px;
}

.text-btn {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #285455;
  font-style: italic;
  text-decoration: underline;
  transition: all 0.4s;
}

.ajax-pagination {
  margin-top: 30px;
}

.ajax-pagination ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  list-style: none;
}

.ajax-pagination li {
  display: inline-block;
}

.ajax-pagination li a,
.ajax-pagination li span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #828282;
  font-size: 16px;
  line-height: 24px;
  color: #a7a9aa;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ajax-pagination li span.current {
  background-color: #7fd5ca;
  /* Active background (like page 1) */
  color: #111111;
  border: none;
}

.ajax-pagination li a:hover {
  background-color: #7fd5ca;
  border-color: #7fd5ca;
  color: #111111;
}

/* Arrow styles */
.ajax-pagination li .prev.disabled,
.ajax-pagination li .next.disabled {
  background-color: #f3f6f6;
  color: #fff;
  border: none;
  position: relative;
  cursor: not-allowed;
}

.ajax-pagination li .prev,
.ajax-pagination li .next {
  background-color: #285455;
  color: #fff;
  font-size: 0;
}

.ajax-pagination li .prev::before {
  content: "";
  mask-image: url(./assets/images/icon-arrow-left-white.svg);
  -webkit-mask-image: url(./assets/images/icon-arrow-left-white.svg);
  width: 20px;
  height: 20px;
  mask-size: 20px;
  -webkit-mask-size: 20px;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-repeat: no-repeat;
  background: #fff;
}

.ajax-pagination li .next::before {
  content: "";
  mask-image: url(./assets/images/icon-arrow-right-white.svg);
  -webkit-mask-image: url(./assets/images/icon-arrow-right-white.svg);
  width: 20px;
  height: 20px;
  mask-size: 20px;
  -webkit-mask-size: 20px;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-repeat: no-repeat;
  background: #fff;
}

.ajax-pagination li .prev.disabled::before,
.ajax-pagination li .next.disabled::before {
  background: #525b5b;
}

.ajax-pagination li.disabled a {
  opacity: 0.4;
  pointer-events: none;
}
div#court-map {
  z-index: 1;
}
/* Club Listing End */

/* Club Detail */
.club-detail {
  min-height: calc(100vh - 290px);
}
.p-16 {
  padding: 16px;
}

.pt-8 {
  padding-top: 8px;
}

.border-bottom-gray-200 {
  border-bottom: 1px solid rgb(205 205 205 / 20%);
}

.border-top-gray-200 {
  border-top: 1px solid rgb(205 205 205 / 20%);
}

.club-sidebar-content p,
.club-sidebar-content ul li {
  color: #fff;
}

.content-list > ul {
  margin-left: 8px;
}

.content-list > ul li,
.add-products li ul li {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  position: relative;
  margin-bottom: 8px;
  padding-left: 16px;
}

.content-list > ul li:last-child,
.add-products li ul li:last-child {
  margin-bottom: 0;
}

.content-list > ul li::before,
.add-products li ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #fff;
}

.club-sidebar-inner-content:not(:last-child) {
  padding-bottom: 20px;
}

.amenities-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenities-nav li {
  padding: 6px 8px;
  border-radius: 4px;
  background-color: #ffffff;
  flex-shrink: 0;
}

.amenities-nav li span {
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #285455;
}

.owner-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.owner-image {
  max-width: 100px;
  max-height: 67px;
  flex-shrink: 0;
}

.owner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}
.owner-address h4 {
  margin-bottom: 2px;
}
.owner-address h2:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(205 205 205 / 20%);
}

.picture-list,
.add-products,
.gallery {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.picture-list li,
.gallery a {
  max-width: 174px;
  max-height: 115px;
}

.picture-list li img,
.gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}
.picturesModal .modal-body {
  padding: 0;
  position: relative;
}
.picturesModal .modal-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(40 84 85 / 10%);
}
.picturesModal img.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.picturesModal .btn-close {
  background-color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-size: 14px;
  box-shadow: 0px 15px 20px rgb(3 3 3 / 5%);
}
.picturesModal .btn-close:hover {
  background-color: #7fd5ca;
  opacity: 1;
  transition: 0.4s;
}

.add-products > li {
  max-width: 174px;
  max-height: 307px;
  color: #fff;
  aspect-ratio: 3 / 5;
}

.add-products > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(17 17 17 / 70%);
}

/* .add-products li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 5;
} */

.add-products li ul {
  margin: 0;
}

.add-products li ul li {
  margin-bottom: 2px;
}

.picture-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  right: 0;
  height: 100%;
}

.picture-content p {
  color: #fff;
  border-bottom: 1px solid rgb(243 246 246 / 20%);
  margin-bottom: 4px;
  padding-bottom: 4px;
}

.picture-content p:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.picture-content-bottom {
  position: absolute;
  bottom: 10px;
}

.picture-content-bottom a {
  text-decoration: underline;
  font-style: italic;
  transition: all 0.4s;
}

.picture-content-bottom a:hover {
  text-decoration: none;
  transition: all 0.4s;
}

.coaches-inner-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  /*   aspect-ratio: 16 / 10; */
}

.coaches-image {
  flex-shrink: 0;
  max-width: 222px;
  max-height: 307px;
}

.coaches-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.coach-type {
  padding: 2px 6px;
}

.events-row {
  margin-left: -8px;
  margin-right: -8px;
}

.events-row > div {
  padding-left: 8px;
  padding-right: 8px;
}

.events-image {
  max-width: 222px;
  max-height: 135px;
  margin-bottom: 4px;
}

.events-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 3;
}

.events-date,
.date-block {
  display: flex;
  align-items: center;
}

.events-date {
  gap: 8px;
  margin-bottom: 6px;
}

.date-block {
  gap: 4px;
}

.testimonial-content {
  background-color: #fff;
  padding: 20px 16px;
}

.testimonial-content p {
  margin-bottom: 12px;
}

.contact-bottom {
  padding: 26px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-bottom-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-bottom-left i {
  flex-shrink: 0;
}
/* Club Detail End */

/* Event Listing */
.event-listing-main .events-image {
  max-width: 100%;
  max-height: 100%;
}

/* Breadcrumb */
.breadcrumb-container {
  background-color: #dce9e9;
  /* background-color:#28545524;  */
}

.breadcrumb-container .breadcrumb {
  margin-bottom: 6px;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 26px;
  position: relative;
}
.breadcrumb-item + .breadcrumb-item::before {
  padding: 0;
  content: "";
  background-image: url("assets/images/icon-down-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
  float: none;
  transform: rotate(-90deg);
  z-index: 2;
  position: absolute;
  left: 2px;
  top: 4px;
  float: none;
}

.breadcrumb-item a,
.breadcrumb-item.active,
.breadcrumb-item span.current {
  font-size: 14px;
  line-height: 28px;
}

.breadcrumb-container .page-title {
  margin-bottom: 0;
  text-transform: capitalize;
}

/* About us main  */
.about-us-row:nth-child(even) .about-us-col-left {
  order: 2;
}

.about-us-col-right .about-us-img {
  display: none;
}

/* About us main  */

/* Contact Us Page */
.contact-list a,
.contact-list p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.map-container,
.map-container p,
.map-container p iframe {
  height: 100%;
  min-height: 500px;
}

.contact-form-submit p {
  position: relative;
  display: inline-block;
}

.contact-info .wpcf7 {
  padding: 24px;
  background-color: #f2fbfac2;
  border-radius: 6px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #dc3232;
}

.wpcf7-spinner {
  opacity: 1;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #285455;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-form-submit .wpcf7-spinner {
  border-radius: 4px;
}

.wpcf7-spinner::before {
  content: "Loading...";
  animation: none;
  color: #ffffff;
  background-color: transparent;
  position: static;
  width: auto;
  height: auto;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
input#wp-submit:disabled {
  cursor: not-allowed;
}
.get-in-touch-section .row .row {
  margin-left: -12px;
  margin-right: -12px;
}
.get-in-touch-section .image-container {
  margin-bottom: 24px;
}
.get-in-touch-section .image-container img {
  width: 100%;
  max-width: 350px;
}
.wpcf7-not-valid-tip {
  font-size: 12px;
}
.login-submit input#wp-submit:disabled,
.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
  background: #a7a9aa;
}
.login-submit input#wp-submit:disabled:hover,
.wpcf7 .wpcf7-submit:disabled:hover {
  background: #a7a9aa;
  color: #fff;
  border-color: #a7a9aa;
  transition: all 0.4s;
}
.contact-form-submit {
  text-align: right;
}
/* Contact Us Page End*/

/* Faq Page start */
.faq-container .accordion-item {
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  margin-bottom: 24px;
  overflow: hidden;
}

.faq-container .accordion-item:last-of-type {
  margin-bottom: 0;
}

.faq-container .accordion-item:last-of-type .accordion-button.collapsed,
.faq-container .accordion-item:first-of-type .accordion-button {
  border-radius: 4px 4px 0 0;
}

.faq-container .accordion-header {
  border-radius: 4px 4px 0 0;
}

.faq-container .accordion-button:not(.collapsed) {
  background-color: #285455;
  color: #fff;
  box-shadow: none;
}

.faq-container .accordion-button::after {
  background-image: url("assets/images/icon-down-arrow.svg");
  filter: none;
}

.faq-container .accordion-button:not(.collapsed)::after {
  filter: brightness(100);
  transition: all 0.2s ease;
}

.faq-container .accordion-button:focus {
  box-shadow: none;
}

/* Faq Page start End*/

/* 404 Page */
.page-not-found-section,
.thankyou-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: calc(100vh - 300px);
}

.page-not-found-section .error {
  font-size: 150px;
  line-height: 150px;
  color: #7fd5ca;
  text-shadow: 1px 1px 1px #285455, 2px 2px 1px #285455, 3px 3px 1px #285455,
    4px 4px 1px #285455, 5px 5px 1px #285455, 6px 6px 1px #285455,
    7px 7px 1px #285455, 8px 8px 1px #285455, 25px 25px 8px rgba(0, 0, 0, 0.2);
}

/* 404 Page End*/

/* Thankyou page */
.thankyou-section {
  background-color: #dce9e9;
}
.thank-you-block {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin: auto;
}

.checkmark {
  border: 1px solid #285455;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkmark img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.thank-you-block .btn-group {
  gap: 12px;
}

/* Thankyou page End*/

/* Blog Listing */
.blog-listing-container .blog-row {
  margin-bottom: -24px;
}

.blog-col {
  margin-bottom: 24px;
}

.blog-link-container {
  position: relative;
  border: 1px solid #cdcdcd;
  padding: 16px;
  border-radius: 4px;
  height: 100%;
  transition: all 300ms ease;
}

.blog-link-container .blog-image-container {
  height: 250px;
  width: 100%;
  display: block;
  overflow: hidden;
  margin-bottom: 12px;
}

.blog-link-container .blog-image-container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.blog-link-container .blog-date {
  display: inline-block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #828282;
  margin-bottom: 4px;
}

.blog-link-container .blog-title {
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.blog-link-container .blog-info-container p {
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.blog-link-container .read-more-link {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

.blog-link-container:hover {
  border-color: #285455;
  scale: 0.98;
}

/* Blog Listing End */

/* Blog Detail */
.blog-featured-image img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  border-radius: 4px;
}

.blog-detail .blog-date {
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  margin-bottom: 16px;
}

.recent-post {
  position: sticky;
  top: 130px;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
}

.recent-post .widget_block {
  padding: 12px 18px;
  border-bottom: 1px solid #d4d4d4;
}

.recent-post .widget_block .wp-block-heading {
  margin-bottom: 0;
}

.recent-post .recent-posts-widget-with-thumbnails {
  padding: 20px 18px;
}

.rpwwt-widget ul li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d4d4d4;
}

.rpwwt-widget ul li:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: transparent;
}

.recent-post li a {
  font-size: 16px;
  line-height: 24px;
}

.recent-post .rpwwt-post-date {
  margin-bottom: 0;
  font-size: 12px;
}

#rpwwt-recent-posts-widget-with-thumbnails-2 img {
  margin: 0 14px 0 0;
  border-radius: 4px;
}

/* Blog Detail End */

/* Authentication */
.authentication {
  padding: 30px 0;
}
.auth-box {
  background-color: #dfeded;
  padding: 30px;
}
.registration-form .form-group {
  padding: 0;
}
.auth-box input {
  padding: 9px 16px;
  background-color: #fff;
}
.submit-btn {
  text-align: right;
}
.auth-box .submit-btn p {
  position: relative;
  display: inline-block;
}
.login-submit input[type="submit"],
.submit-btn .wpcf7-submit {
  background-color: #285455;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  width: auto;
  border: 1px solid transparent;
  transition: all 0.4s;
}
.login-submit input[type="submit"]:hover,
.submit-btn .wpcf7-submit:hover {
  background-color: #fff;
  color: #285455;
  border-color: #285455;
  transition: all 0.4s;
}
.login-remember label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  cursor: pointer;
}
.login-remember label input {
  width: 20px;
  height: 20px;
  border: 1px solid #a7a9aa;
}
.login-remember {
  margin-bottom: 30px;
}
.login-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.login-submit {
  margin-bottom: 0;
}
.submit-btn.text-left {
  text-align: left;
}
/* Authentication End */

/* Ratings */
.sidebar-rating .glsr-summary {
  gap: 8px;
}
.sidebar-rating .glsr-summary-rating .glsr-tag-value {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #ffffff;
}
.sidebar-rating .glsr-summary .glsr-star {
  width: 16px;
  height: 16px;
}
/* Ratings End */

/* Reviews */
body .glsr-default form.glsr-form {
  row-gap: 16px;
}
body .glsr-default form.glsr-form label.glsr-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 6px;
  padding: 0;
  color: #111111;
}
body .glsr-stars,
body form.glsr-form .glsr-star-rating--stars {
  gap: 4px;
}
body form.glsr-form .glsr-star-rating--stars[class*=" s"] > span,
body .glsr-star {
  background-image: url(./assets/images/star-empty.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain !important;
}
body form.glsr-form .glsr-star-rating--stars[class*=" s"] > span.gl-active,
body
  form.glsr-form
  .glsr-star-rating--stars[class*=" s"]
  > span.gl-active.gl-selected,
body .glsr-star-full {
  background-image: url(./assets/images/star-fill.svg);
}
body .glsr-default form.glsr-form input.glsr-input:focus,
body .glsr-default form.glsr-form select.glsr-select:focus,
body .glsr-default form.glsr-form textarea.glsr-textarea:focus {
  background-color: transparent;
  box-shadow: none;
  box-shadow: none;
  box-shadow: none;
  outline: none;
}
body .site_reviews .glsr-default {
  background-color: #fff;
  padding: 16px;
}
body .glsr-reviews,
body .glsr-default .glsr-review,
body .glsr-reviews-wrap {
  gap: 0;
}
body .glsr-default .glsr-reviews .glsr-review {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #cdcdcd;
}
body .glsr-default .glsr-reviews .glsr-review:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
body .glsr-default .glsr-review-title h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 8px;
}
body .glsr-default .glsr-review-author {
  align-items: center;
  display: inline-flex;
  gap: 0.5em;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #111111;
  text-transform: capitalize;
}
body .glsr-default .glsr-review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
	flex-wrap:wrap;
}
.review-pipe {
  display: inline-block;
  background-color: #cdcdcd;
  width: 1px;
  height: 18px;
}
/* Reviews End */
body .picture-content-top p:first-of-type span,
body .picture-content-top p:first-of-type span strong,
body .picture-content-top p:first-of-type span strong span {
  color: #7fd5ca !important;
}

.forgot-password-wrapper {
  min-height: calc(100vh - 490px);
}

.gallery a {
  display: block;
  height: 100%;
  width: 100%;
}

.city-dropdown-menu {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.city-dropdown-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Remove empty space when no events exist */
body.no-events .site-header {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

body.no-events .header-bottom-menu {
    display: none !important;
}

body.no-events .site-content {
    margin-top :87px;
}
.event-title select {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #111111;
    border: 1px solid #111111;
    padding: 5px 30px 5px 10px;
    background-size: 20px;
}
.event-city-filter {
    display: flex;
    align-items: center;
    gap: 8px;
}
.event-city-filter p {
	flex-shrink: 0;
    margin: 0;
}
.password-field p { margin: 0;position: relative;}
.password-field p::nth-child(2) {
	position: relative;
}
.password-field { position: relative;}
.password-field p span span {
	display: none;
}
.password-field p .cf7-eye.fa-eye-slash,
.password-field p .cf7-eye.fa-eye{
	position: absolute;
    top: 14px;
    right: 14px;
}
.forgot-password-wrapper .auth-box .row {
	margin: 0;
}
.forgot-password-wrapper .auth-box .row div {
	padding: 0;
}