/* @import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap'); */

/* Outermost Wrapper */
body .wp-site-blocks > .wp-block-group.boat-picker-2025 {
    overflow: visible;
    z-index: 99;
}
.boat-picker-2025 {
    /* background: rgba(0,0,0,0.1); */
    overflow: visible;
    z-index: 99;
}
/* Inner Wrapper Block */
.boat-picker-2025 > .wp-block-group.alignwide {
    /* background: rgba(0,0,0,0.1); */
    padding: 0;
    margin: 0;
    overflow: visible;
}
/* Boat Picker */
.boat-picker-2025 .boat-picker {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 20px;
    overflow: visible;
    padding: 14px 20px 14px 0;
}
/* Boat Picker Each Type */
.boat-picker-2025 .boat-picker .this_type {
    /* background: rgba(0,0,0,0.1); */
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    column-gap: 16px;
    grid-template-rows: auto 1fr;
    align-items: center;
    align-content: center;
    position: relative;
    overflow: visible;
}

.boat-picker-2025 .boat-picker .this_type > h2 {
    grid-column: 1 / span 1;
    font-family: 'Play', sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 100;
    margin: 0;
    padding: 8px 0 8px 50px;
    display: inline-block;
    align-self: center;
}
.boat-picker-2025 .boat-picker .this_type > h2::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #d1b873;
    margin-right: 14px;
    font-size: 2px;
    position: absolute;
    left: 0px;
    top: calc(50% - 1px);
}
.boat-picker-2025 .boat-picker .this_type > h3 {
    grid-column: 2 / span 1;
    font-family: 'Play', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 4px 22px 4px 0;
    display: inline-block;
    cursor: pointer;
    position: relative;
}
.boat-picker-2025 .boat-picker .this_type > h3::after {
    font-family: "dashicons";
    content: "\f347";
    font-size: 14px;
    color: red;
    font-weight: 100;
    display: inline-block;
    transform-origin: center;
    transition: transform .3s ease;
    position: absolute;
    right: 0;
    width: 14px;
    height: 26px;
    align-content: center;
    justify-content: center;
    pointer-events: none;
    /* background: rgba(0,0,0,0.1); */
}
.boat-picker-2025 .boat-picker .this_type.active > h3::after { 
    transform: rotate(180deg);
}
/* Main Picker Element, i.e. the selected Boat of this Length */
.boat-picker-2025 .boat-picker .this_type > h3 > a {
    font-family: "Play", sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    word-break:keep-all;
}
.boat-picker-2025 .boat-picker .this_type h2::after {
    /* font-family: 'Play', sans-serif;
    content: " BOATS";
    font-weight: 100;
    font-size: 14px; */
    display: none;
}
.boat-picker-2025 .boat-picker .this_type a {
    color: black;
}
.boat-picker-2025 .boat-picker .this_type a.current {
    color: red;
}
.boat-picker-2025 .boat-picker .this_type .length_list {
   /*  position: relative; */
    grid-column: 2 / span 12;
    display: inline-block;
    grid-template-columns: 1fr;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: right;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .01s ease;
    position: absolute;
    width: auto;
    min-width: 440px;
    max-width: 50vw;
    top: auto;
    bottom: 0;
    left: -20px;
    
    
}
.boat-picker-2025 .boat-picker .this_type.active .length_list {
    transform: scaleY(1);
    transition: transform .3s;
    overflow: visible;
    /* box-shadow: 0 0 10px rgba(0,0,0,1); */
}
.boat-picker-2025 .boat-picker .this_type .length_list ul {
    position: absolute;
    grid-column: 1 / span 2;
    display: grid;
    grid-template-columns: 1fr;
    list-style-type: none;
    margin: 0;
    padding: 18px 18px 18px 18px;
    text-align: right;
    background-color: rgba(255,255,255,0.94);
    backdrop-filter: blur(20px);
    transition: all .3s ease;  
    height: auto;
    overflow: hidden;
    /* width: calc(100% - 36px); */
    width: auto;
    border-radius: 8px;
    box-shadow: 0 0 16px 0 rgba(0,0,0,0.1);
}
.boat-picker-2025 .boat-picker .this_type  .length_list ul > li {
    display: inline-block;
    margin: 0;
    padding: 3px 8px;
}
.boat-picker-2025 .boat-picker .this_type  .length_list ul > li:hover {
    background: rgba(120,120,120,0.05);
}
.boat-picker-2025 .boat-picker .this_type  .length_list ul > li > a {
    text-decoration: none;
    display: grid;
    /* grid-template-columns: minmax(120px, 35%) 1fr; */
    grid-template-columns: 1fr;
    justify-items: flex-start;
    justify-content: flex-start;
    font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
    column-gap: 14px;
}
.boat-picker-2025 .boat-picker .this_type  .length_list ul > li > a:hover {
    color: #d2232a;
}
.boat-picker-2025 .boat-picker .this_type  .length_list ul > li > a > span:first-child {
    font-weight: 600;
    /* text-align: right; */
    text-align: left;
    /* justify-self: flex-end; */
    justify-self: flex-start;
}
.boat-picker-2025 .boat-picker .this_type  .length_list ul > li > a > span:last-child {
    /* font-weight: 600; */
    text-align: left;
    justify-self: flex-start;
    color: black !important;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.9rem;
    display: none;
}

.sticky-wrapper-boat-picker.is-sticky-boat-picker > .boat-picker { 
    background-color: rgba(255, 255, 255, 0.94);
    width: 100vw !important;
    left: 0;
    padding-left: 40px;
    margin-top: -5px;
}