.elementor-kit-6{--e-global-color-primary:#0C1922;--e-global-color-secondary:#000000;--e-global-color-text:#FFFFFF;--e-global-color-accent:#00CDE6;--e-global-color-61683bc:#EFF0F1;--e-global-color-6168db6:#FFFFFF;--e-global-color-0bb3489:#FF4B5A;--e-global-color-de7564e:#747474;--e-global-color-75b9bae:#142837;--e-global-color-7e126f7:#0F212F;--e-global-color-b117ea4:#DBDBDB;--e-global-color-f8ec02a:#FFC300;--e-global-color-ac203a2:#A0FF32;--e-global-color-512fe4e:#F9A835;--e-global-color-a839e30:#B2F4FC;--e-global-color-43a276e:#366C95;--e-global-color-0d83c08:#0C1922;--e-global-color-4a7ea60:#8C1EE6;--e-global-color-4332734:#8C1EE6;--e-global-typography-primary-font-family:"URC Sans";--e-global-typography-primary-font-weight:400;--e-global-typography-text-font-family:"Red Hat Display";--e-global-typography-text-font-weight:500;--e-global-typography-accent-font-family:"URC Sans";background-color:var( --e-global-color-61683bc );font-family:"Red Hat Display", Sans-serif;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 h1{color:#8C1EE6;font-family:"URC Sans", Sans-serif;font-weight:400;}.elementor-kit-6 h2{color:#8C1EE6;}.elementor-kit-6 h3{color:#8C1EE6;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1252px;}.e-con{--container-max-width:1252px;--container-default-padding-top:10px;--container-default-padding-right:10px;--container-default-padding-bottom:10px;--container-default-padding-left:10px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-kit-6{--e-global-typography-text-font-size:18px;--e-global-typography-text-line-height:25px;}.elementor-kit-6 h1{font-size:60px;line-height:69px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:540px){.elementor-kit-6 h1{font-size:28px;line-height:36px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Hide the dropdown search bar */
.select2-search--dropdown {
    display: none !important;
}

/* General styles for the selected option in the dropdown */
.select2-container--default .select2-selection--single {
    background: none;
    border: none;
    border-radius: 0;
    height: auto;
    padding: 5px 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    width: 100%; /* Ensures ellipsis works */
}

/* Style the rendered selected option */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: end;
    line-height: 1.4em;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    font-family: 'URC SANS';
    font-weight: 400;
    font-size: 22px;
    /*line-height: 22px;*/
    display: block;
    width: 100%; /* Ensures ellipsis works */
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
    padding-bottom: 0; /* No extra space below text */
}

/* Dropdown customization */
.select2-dropdown .select2-dropdown--below {
    width: unset;
}

.select2-container--open .select2-dropdown--below {
    border: 0.5px solid #00CDE6;
    border-radius: 0;
    
}

/* Highlighted option in dropdown */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--e-global-color-accent);
    color: white;
}

/* Dropdown list styling */
.select2-container--default .select2-results&gt;.select2-results__options {
    background-color: white;
    min-width: fit-content;
    max-height: 480px;
    overflow-y: auto;
    text-align: center;
    font-size: 14px;
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-text-font-family);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 18.52px;
}
/* Selected option styles */
.select2-container--default .select2-results__option--selected {
    /*background-color: transparent;*/
    /*border-bottom: 0.5px solid var(--e-global-color-accent);*/
    border-bottom: 0.5px;
    border-color: #00CDE6;
}

/* Custom underline animation for select box */
.select2-container--default .select2-selection--single .select2-selection__rendered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00CDE6; /* Underline color */
    transform: scaleX(0); /* Initially hidden */
    transform-origin: bottom left;
    transition: transform 0.3s ease-out;
}

/* Change arrow direction on open */
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #00CDE6 transparent;
    border-width: 0 4px 7px 4px;
}

/* Reveal underline on hover or focus, but only when not hovering */
.select2-container--default .select2-selection--single:not(.hover):hover .select2-selection__rendered::after,
.select2-container--default .select2-selection--single:focus .select2-selection__rendered::after {
    transform: scaleX(1); /* Reveal underline */
}

/* Arrow styling with jump animation */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 4px;
    border-color: #00CDE6 transparent transparent transparent;
    border-width: 7px 4px 0 4px;
    transition: transform 0.3s ease-out; /* Add smooth transition for jump */
}

/* Jump animation for arrow on hover or focus, but only when not hovering */
.select2-container--default .select2-selection--single:not(.hover):hover .select2-selection__arrow b,
.select2-container--default .select2-selection--single:focus .select2-selection__arrow b {
    animation: jump 0.5s ease-in-out infinite alternate;
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px); /* Adjust the height of the jump */
    }
}

/* Dropdown scrollbar customization */
.select2-results__options::-webkit-scrollbar {
    width: 6px;
}

.select2-results__options::-webkit-scrollbar-track {
    background-color: #DBDBDB;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background-color: #142837;
}

.select2-results__option--selectable {
    border-bottom: 0.5px solid var(--e-global-color-accent);
    padding: 0.75em;
    min-height: 48px;
    align-content: center;
}



.menu-item.fixture {
  position: relative;
}

.menu-item.fixture:hover::after {
  content: "This is your message";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  z-index: 100;
  opacity: 1;
  visibility: visible;
}

.menu-item.fixture::after {
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.article-item h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-family: 'Red Hat Display' !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 1.74rem;
}
.article-item {
    border-radius: 10px 0px 10px 0px!important;
}

button#load-more{
    font-family: "URC Sans", Sans-serif;
    font-size: 20px;
    color: var(--e-global-color-75b9bae);
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 2px;
    background-color:rgb(0 205 239 / 0.08);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-accent);
    border-radius: 8px 0px 8px 0px;
    padding: 14px 22px 14px 22px;
}
button#load-more:hover{
    color: #366c95;
   
}
@media (max-width: 767px) {

    .select2-container--open .select2-dropdown--below {
    margin-left: 10px;
    border: 0.5px solid #00CDE6;
    border-radius: 0;
    margin-top: -15px !important;
    }
.select2-container--default .select2-results&gt;.select2-results__options {
    background-color: white;
    min-width: 190px;
    max-height: 480px;
    overflow-y: auto;
    text-align: center;
    font-size: 14px;
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-text-font-family);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 18.52px;
}

    .select2-container--open .select2-dropdown {
    left: -20px!important;
}
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: -60px;
    width: -webkit-fill-available;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.4em;
    letter-spacing: 0.1em;
    color: #142837 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    
    left: 42%;
    width: 0;
}

.select2-container--open .select2-dropdown--below {
      margin-left: 10px;
    border: 0.5px solid #00CDE6;
    border-radius: 0;
         /*margin-top: -30px ;*/
         /*  margin-top: -30px !important;*/
}

/*.select2-container--default .select2-selection--single {*/
/*    background: none;*/
/*    border: none;*/
/*    border-radius: 0;*/
/*    height:55px;*/
/*    padding: 5px 10px;*/
/*    text-overflow: ellipsis;*/
/*    overflow: hidden;*/
/*    white-space: nowrap;*/
/*    box-sizing: border-box;*/
/*    position: relative;*/
/*    display: inline-block;*/
/*    width: 100%;*/
/*}*/


.select2-container .select2-selection--single .select2-selection__rendered{
        text-align: center;
        padding-left: 8px;
    padding-right: 8px;
}

   
span.select2-dropdown.select2-dropdown--below {
    min-width: auto !important;
    top: 2px;
    width: max-content !important;
}
.select2-container--default .select2-selection--single {
    height: 30px!important;
    width: 100%;
    padding: 5px 10px;
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'URC Sans';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://events.unitedrugby.com/wp-content/uploads/2024/08/URC-Sans.woff2') format('woff2');
}
/* End Custom Fonts CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Red Hat Display';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://events.unitedrugby.com/wp-content/uploads/2024/08/RedHatDisplay-Regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Red Hat Display';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://events.unitedrugby.com/wp-content/uploads/2024/08/RedHatDisplay-Medium.woff2') format('woff2');
}
@font-face {
	font-family: 'Red Hat Display';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://events.unitedrugby.com/wp-content/uploads/2024/08/RedHatDisplay-Bold.woff2') format('woff2');
}
/* End Custom Fonts CSS */