/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.tilt-lines {
    position: relative;
    overflow: visible;
}

#double-line-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;            /* 20px + 20px */
    z-index: 5;
    pointer-events: none;
}

#double-line-overlay svg {
    display: block;
    width: 100%;
    height: 100%;
    transform: skewY(-2.8deg);   /* your tuned value */
    transform-origin: bottom left;
}


/* Tablet */
@media (max-width: 1024px) {
    #double-line-overlay svg {
        transform: skewY(-3.6deg);
    }
}

/* Mobile */
@media (max-width: 767px) {
    #double-line-overlay svg {
        transform: skewY(-5.5deg);
    }
}

/* Smaller Mobile */
@media (max-width: 500px) {
    #double-line-overlay svg {
        transform: skewY(-7deg);
    }
}

/* Smaller Mobile */
@media (max-width: 400px) {
    #double-line-overlay svg {
        transform: skewY(-9deg);
    }
}

/* Style the Reading Time output */
.span-reading-time.rt-reading-time {
    font-family: "Verdana", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* category badges  */
.lca-cat-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.lca-cat-badge {
    padding: 6px 12px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
}

.lca-cat-badge:hover {
    opacity: 0.85;
    transform: scale(1.05);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .lca-cat-badge {
        padding: 4px 8px;
        font-size: 12px;
    }
}

/* ================================
   Brick Menu - Full CSS
   ================================ */

/* Container holding all rows */
.lca-brick-menu {
    display: flex;
    flex-direction: column;
    gap: 10px; /* space between rows */
    width: 100%;
    padding: 10px 0;
}

/* Each row of bricks */
.lca-brick-row {
    display: flex;
    gap: 20px; /* space between items in a row */
}

/* Individual bricks (clickable <a>) */
.lca-brick-item {
    flex: 1; /* stretch to fill row equally */
    display: block; /* important for <a> */
    position: relative; /* helps render shadow */
    background: #ffffff;
    padding: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important; /* shadow always visible */
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    color: #000; /* default text color */
    text-decoration: none; /* remove underline */
    border: 1px solid #000; /* optional border */
    overflow: visible; /* ensures shadow is not clipped */
}

/* Hover effect */
.lca-brick-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12); /* bigger shadow on hover */
    background-color: #274a97; /* hover background */
    color: #fff; /* hover text */
}

/* Titles */
.lca-brick-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: inherit; /* inherits hover color */
}

/* Descriptions */
.lca-brick-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    color: inherit; /* inherits hover color */
}

/* Responsive adjustments */
@media (max-width: 900px) {
}

@media (max-width: 767px) {
    .lca-brick-row {
        flex-direction: column; /* stack bricks vertically on mobile */
        gap: 15px;
    }
    .lca-brick-item {
        padding: 15px;
    }
    .lca-brick-item h5 { font-size: 1.1rem; }
    .lca-brick-item p { font-size: 0.85rem; }
}


/* download manager */
/* Change button colors */
.wpdm-download-link a {
    background-color: #ff6600 !important;
    color: #ffffff !important;
    border-radius: 4px;
}

/* Change font */
.wpdm-download-link a, .wpdm-title {
    font-family: 'Arial', sans-serif !important;
    font-size: 16px !important;
}


/* Main form container */
.um {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Form fields */
.um .um-form input,
.um .um-form textarea,
.um .um-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* Focus effect */
.um .um-form input:focus,
.um .um-form textarea:focus,
.um .um-form select:focus {
    border-color: #274a97;
    box-shadow: 0 0 0 3px rgba(106,90,205,0.15);
    outline: none;
}

/* Labels */
.um .um-form label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

/* Submit button */
#um-submit-btn {
    background: #274a97;
    border-radius: 30px;
    padding: 14px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#um-submit-btn:hover {
    background: #c3d6ff;
    transform: translateY(-2px);
    color:#274a97;
}

/* ===== FRONT END ADMIN FORMS  ===== */
/* ===== Main Form Container ===== */
form.frontend-form {
    max-width: 800px;
    margin: 20px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* ===== Field Spacing ===== */
.frontend-form .acf-field {
    margin-bottom: 28px;
}

/* ===== Labels ===== */
.frontend-form .acf-label label,
.frontend-form .acf-field .acf-label {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 20px 0 20px 0 !important;
    display: block !important;
}

/* Required star */
.frontend-form .acf-required {
    color: #d63638;
    font-weight: 700;
}

/* ===== Text Inputs & Textareas ===== */
.frontend-form input[type="text"],
.frontend-form input[type="email"],
.frontend-form input[type="url"],
.frontend-form input[type="number"],
.frontend-form textarea,
.frontend-form select,
.frontend-form input[type="color"] {
    width: 100%;
    padding: 14px 16px !important;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background: #f9fafb;
    font-size: 15px;
    transition: all 0.2s ease;
}

/* Focus Effect */
.frontend-form input:focus,
.frontend-form textarea:focus,
.frontend-form select:focus {
    outline: none;
    border-color: #1e73be;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(30,115,190,0.15);
}

.select2-container--default .select2-selection--single {
    height: 50px !important;
    padding: 0 15px !important;
    display: flex !important;
    align-items: center !important;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f9fafb !important;
    color: #333; /* optional: text color */
}

.select2-container--default .select2-selection__rendered {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
}
.acf-input-wrap.acf-url {
    display: flex;
    align-items: center; /* vertically centers everything */
    gap: 8px; /* optional spacing between icon and input */
}

.acf-input-wrap.acf-url i.acf-icon {
    font-size: 16px; /* adjust if needed */
    line-height: 2;
}


/* ===== WYSIWYG Editor Box ===== */
.frontend-form .acf-editor-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* ===== Checkbox List (Categories) ===== */
.frontend-form .acf-checkbox-list li {
    margin-bottom: 8px;
}

.frontend-form .acf-checkbox-list input[type="checkbox"] {
    margin-right: 6px;
}

/* ===== Radio Buttons ===== */
.frontend-form .acf-radio-list li {
    margin-bottom: 8px;
}

/* ===== Upload Box ===== */
.frontend-form .acf-image-uploader {
    border: 2px dashed #dcdcdc;
    padding: 20px;
    border-radius: 8px;
    background: #fafafa;
}
.frontend-form .acf-actions {
    text-align: left;
    margin-bottom: 20px;
}

/* ===== Button ===== */
.acf-button.button.button-primary {
    padding: 12px 14px 12px 14px;
    background: #ffcc00;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
}

.acf-button.button.button-primary:hover {
    transform: translateY(-2px);
    padding: 10px;
}


/* ===== Submit Button ===== */
.frontend-form .fea-submit-button {
    width: 100%;
    padding: 14px;
    background: #274a97;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top:20px;
}

.frontend-form .fea-submit-button:hover {
    background:#c3d6ff;
    color: #000;
    padding: 10px;
    transform: translateY(-2px);
}
.acf-field p.description {
    color: #0143cd !important;
    font-size: 14px;
    font-style: italic;
    margin:10px !important;
}


/* Single Post Heading Sizes */
.single-post h2 {
    font-size: 24px;
    line-height: 1.3;
}

.single-post h3 {
    font-size: 22px;
    line-height: 1.3;
}

.single-post h4 {
    font-size: 20px;
    line-height: 1.4;
}

.single-post h5 {
    font-size: 18px;
    line-height: 1.4;
}

.single-post h6 {
    font-size: 16px;
    line-height: 1.4;
}


/* MailPoet mobile layout fix */
@media (max-width: 1024px) {

  .mailpoet_form .mailpoet_paragraph {
    width: 100% !important;
  }

  .mailpoet_form input,
  .mailpoet_form select,
  .mailpoet_form button {
    width: 100% !important;
  }

  .mailpoet_form .mailpoet_submit {
    margin-top: 10px;
  }

}

/********************
* this is the css for the category columns on the forms pages
* which shows the current categories in a lists 
 **********************/

.fa-terms-wrapper {
    margin: 30px 0;
}

.fa-terms-title {
    margin-bottom: 20px;
    font-size: 22px !important;
    font-weight: 600;
}

.fa-terms-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 15px;
}

.fa-term-item {
    background: #f7f7f7;
    padding: 5px 10px 5px 10px;
    border-radius: 8px;
    transition: 0.2s ease;
}

.fa-term-item:hover {
    background: #e9e9e9;
    transform: translateY(-2px);
}
.fa-arrow-down {
    color: #333;
    font-size: 20px;
    margin-left: 5px;
}
/* 1500px+ → 3 columns */
@media (min-width: 1500px) {
    .fa-terms-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 1000px – 1499px → 2 columns */
@media (min-width: 1000px) and (max-width: 1499px) {
    .fa-terms-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px – 999px → 3 columns */
@media (min-width: 768px) and (max-width: 999px) {
    .fa-terms-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 501px – 767px → 2 columns + smaller font */
@media (min-width: 501px) and (max-width: 767px) {
    .fa-terms-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .fa-term-item {
        font-size: 14px;
        padding: 10px;
    }

    .fa-terms-title {
        font-size: 18px;
    }
}

/* 0 – 500px → 1 column + smaller font */
@media (max-width: 500px) {
    .fa-terms-list {
        grid-template-columns: 1fr;
    }

    .fa-term-item {
        font-size: 14px;
        padding: 10px;
    }

    .fa-terms-title {
        font-size: 18px;
    }
}
/* Hide by default on larger screens */
#jump-title {
    display: none;
}

/* Show on 1099px and below */
@media (max-width: 1099px) {
    #jump-title {
        display: block;
    }
}

/*rankings pages*/
.framecontainer iframe {
	width: 100%;
	min-height: 650px;
}


/* responsive contact form 7 styles */
#responsive-form {
  max-width:100% /*-- change this to get your desired form width --*/;
  margin:0 auto;
  width:100%;
}
#responsive-form .inner {
    padding: 20px;
}
.form-row{
  width: 100%;
  clear: both;
  display: table;
}
.column-half, .column-full, .column-third {
  float: left;
  position: relative;
  padding: 0.65rem;
  width:100%;
  -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
  font-size: 14px;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.wpcf7cf_group {
  display: block;
}
.wpcf7-list-item {
  display: inline-block;
  margin: 0 1em 0 0;
}
#responsive-form h3 {
  margin: 15px 0 15px 0;
  color: #000;
  background-color: #ffcc00;
  padding: 12px;
  font-size:22px;
}
#responsive-form p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
}
#responsive-form ul {
  margin-left: 0;
}
#responsive-form li {
  margin-bottom: 15px;
}
#responsive-form small {
  font-size: 90%;
  font-style: italic;
  font-weight: 600;
  color: #898686;
}
.wpcf7-acceptance .wpcf7-list-item {
  background-color: #d3d3d3;
  padding: 10px;
}
/**---------------- Media query ----------------**/
@media only screen and (min-width: 48em) { 
  .column-half{
    width: 50%;
  }
  .column-third {
    width: 33.3%;
  }
}
/* custom checkbox styling for contact form 7 checkbox */

.mem-check span.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.wpcf7 .training-subs-monthly-section .wpcf7-list-item,
.wpcf7 .training-subs-yearly-section .wpcf7-list-item,
.wpcf7 .mem-check .wpcf7-list-item,
.wpcf7 .competitions .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}
.wpcf7 .competitions .wpcf7-list-item {
  display: inline-block;
  width: 45%;
  max-width: 45%;
  margin-bottom: 10px;
}
.wpcf7-checkbox label,
.wpcf7-checkbox.training-subs-monthly-section label,
.wpcf7-checkbox.training-subs-yearly-section label,
.wpcf7-checkbox.mem-check label,
.wpcf7-checkbox.training-subs label,
.wpcf7-checkbox.other-clubs label,
.wpcf7-checkbox.competitions label {
  position: relative;
  cursor: pointer;
}
.wpcf7-checkbox input[type=checkbox],
.wpcf7-acceptance input[type=checkbox],
.wpcf7-checkbox.training-subs-monthly-section input[type=checkbox],
.wpcf7-checkbox.training-subs-yearly-section input[type=checkbox],
.wpcf7-checkbox.mem-check input[type=checkbox],
.wpcf7-checkbox.training-subs input[type=checkbox],
.wpcf7-checkbox.other-clubs input[type=checkbox],
.wpcf7-checkbox.competitions input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}
#agreement p, #gdpr p {
    font-weight: 400;
}
#responsive-form p.lighter {
    font-weight: 400;
}
.wpcf7-checkbox input[type=checkbox] + span:before,
.wpcf7-acceptance input[type=checkbox] + span:before,
.wpcf7-checkbox.mem-check input[type=checkbox] + span:before,
.wpcf7-checkbox.training-subs input[type=checkbox] + span:before,
.wpcf7-checkbox.training-subs-monthly-section input[type=checkbox] + span:before,
.wpcf7-checkbox.training-subs-yearly-section input[type=checkbox] + span:before,
.wpcf7-checkbox.other-clubs input[type=checkbox] + span:before,
.wpcf7-checkbox.competitions input[type=checkbox] + span:before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 0;
  height: 20px;
  width: 20px;
  top: 0px;
  left: 0px;
  border: 1px solid #000;
}
.wpcf7-checkbox input[type=checkbox] + span:after,
.wpcf7-acceptance input[type=checkbox] + span:after,
.wpcf7-checkbox.mem-check input[type=checkbox] + span:after,
.wpcf7-checkbox.training-subs input[type=checkbox] + span:after,
.wpcf7-checkbox.training-subs-monthly-section input[type=checkbox] + span:after,
.wpcf7-checkbox.training-subs-yearly-section input[type=checkbox] + span:after,
.wpcf7-checkbox.other-clubs input[type=checkbox] + span:after,
.wpcf7-checkbox.competitions input[type=checkbox] + span:after {
  display: block;
  position: absolute;
  content: "\2713";
  height: 20px;
  width: 20px;
  top: 0;
  left: 0;
  visibility: hidden;
  font-size: 18px;
  text-align: center;
  line-height: 20px;
  color: #fff;
}
.wpcf7-checkbox input[type=checkbox]:checked + span:before,
.wpcf7-acceptance input[type=checkbox]:checked + span:before,
.wpcf7-checkbox.mem-check input[type=checkbox]:checked + span:before,
.wpcf7-checkbox.training-subs input[type=checkbox]:checked + span:before,
.wpcf7-checkbox.training-subs-monthly-section input[type=checkbox]:checked + span:before,
.wpcf7-checkbox.training-subs-yearly-section input[type=checkbox]:checked + span:before,
.wpcf7-checkbox.other-clubs input[type=checkbox]:checked + span:before,
.wpcf7-checkbox.competitions input[type=checkbox]:checked + span:before {
  background: #fdcf01;
}
.wpcf7-checkbox input[type=checkbox]:checked + span:after,
.wpcf7-acceptance input[type=checkbox]:checked + span:after,
.wpcf7-checkbox.mem-check input[type=checkbox]:checked + span:after,
.wpcf7-checkbox.training-subs input[type=checkbox]:checked + span:after,
.wpcf7-checkbox.training-subs-monthly-section input[type=checkbox]:checked + span:after,
.wpcf7-checkbox.training-subs-yearly-section input[type=checkbox]:checked + span:after,
.wpcf7-checkbox.other-clubs input[type=checkbox]:checked + span:after,
.wpcf7-checkbox.competitions input[type=checkbox]:checked + span:after {
  visibility: visible;
}
.wpcf7-acceptance input[type=checkbox] + span:before, 
.wpcf7-acceptance input[type=checkbox] + span:after {
  margin-left:10px;
}
.wpcf7-acceptance input[type=checkbox] + span:before{
  background-color: #fff;
}
.wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item-label,
.mem-check .wpcf7-list-item-label,
.training-subs .wpcf7-list-item-label,
.training-subs-monthly-section .wpcf7-list-item-label,
.training-subs-yearly-section .wpcf7-list-item-label,
.other-clubs .wpcf7-list-item-label,
.competitions .wpcf7-list-item-label  {
  margin-left: 30px;
  display: inline-flex;
  padding-top: 3px;
  font-weight: 400;
}

.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="url"], 
.wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea, .wpcf7-date, 
.wpcf7-select, .wpcf7-tel {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box
}
.wpcf7-select {
  padding: 10px 8px 10px 8px;
}
.wpcf7 textarea, .wpcf7-date, 
.wpcf7-select, .wpcf7-tel {
  color: #666666;
  background-color: #fafafa;
  border-color: #cccccc;
  padding: 10px;
}
.wpcf7 input[type="text"]:focus, .wpcf7 input[type="email"]:focus, .wpcf7 input[type="url"]:focus, 
.wpcf7 input[type="email"]:focus, .wpcf7 input[type="tel"]:focus, .wpcf7 textarea:focus, .wpcf7-date:focus, 
.wpcf7-select:focus, .wpcf7-tel:focus {
  background: #fdcf01;
}
.wpcf7-submit, input[type="submit"]{
  float: right;
  background: #fdcf01;
  color: #000;
  text-transform: uppercase;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
}
.wpcf7-submit:hover, input[type="submit"]:hover {
  background: #274a97;
  color: #fff;
}
span.wpcf7-not-valid-tip{
  text-shadow: none;
  font-size: 12px;
  color: #fff;
  background: #ff0000;
  padding: 5px;
}
div.wpcf7-validation-errors { 
  text-shadow: none;
  border: transparent;
  background: #fdcf01;
  padding: 5px;
  color: #9C6533;
  text-align: center;
  margin: 0;
  font-size: 12px;
}
div.wpcf7-mail-sent-ok{
  text-align: center;
  text-shadow: none;
  padding: 5px;
  font-size: 12px;
  background: #59a80f;
  border-color: #59a80f;
  color: #fff;
  margin: 0;
}

/* some changes for the pop up contact form */
#responsive-form.contact-pop p {
 font-size: 13px;
 font-weight: 500;
}
.contact-pop .column-half, .contact-pop .column-full, .contact-pop .column-third {
  padding: 0.40rem;
  font-size: 13px;
}
.contact-pop .wpcf7 input[type="text"], .contact-pop .wpcf7 input[type="email"], .contact-pop .wpcf7 input[type="url"], 
.contact-pop .wpcf7 input[type="email"], .contact-pop .wpcf7 input[type="tel"], .contact-pop .wpcf7 textarea, .contact-pop .wpcf7-date, 
.contact-pop .wpcf7-select, .contact-pop .wpcf7-tel {
  padding: 5px;
}
.contact-pop .wpcf7-select {
  padding: 10px 5px 10px 5px;
}

/*.acceptance-photos {
    background: #f8f9fb;
    border: 2px solid #d9e2ec;
    border-radius: 10px;
    padding: 18px;
    margin: 20px 0;
}*/

.acceptance-photos .wpcf7-list-item {
    display: block;
    margin: 12px 0;
    padding: 12px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #f8f9fb;
    transition: all 0.2s ease;
}

.acceptance-photos .wpcf7-list-item:hover {
    border-color: #0073aa;
    background: #f0f8ff;
}

.acceptance-photos input[type="radio"] {
    transform: scale(1.3);
    margin-right: 10px;
}

.acceptance-photos .wpcf7-list-item-label {
    font-weight: 500;
    line-height: 1.5;
}