@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    /* Sets main colors */
    --primary-white: #ffffff;
    --primary-blue: #00a9b4;
    --dark-blue: #2b3544;
    --cream: #e8e1d8;
    --light-grey: #d5d7da;
    --light-dark-blue: #93919c;
    --medium-dark-blue: #4b4e5e;
    --medium-dark-blue-two: #6d6c7a;
    --dark-grey: #1e1e1e;
    /* Set font weights */
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semi-bold: 600;
    --bold: 700;
    --extra-bold: 800;
    --black: 900;
}

/*======== Main Parent Containers =========*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif !important;
}

body {
    background-color: var(--light-grey) !important;
    font-family: 'Inter', sans-serif;
}

.left-column {
    background-color: var(--light-grey); /* Apply background color */
    border-radius: 14px;
    padding: 2rem !important;
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    margin-bottom: 1rem;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 500px;
}

.right-column {
    background-color: var(--light-grey); /* Apply background color */
}

.right-column {
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    padding: 0rem !important;
    border-radius: 14px;
    z-index: 90;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    margin-bottom: 1rem;
}

/*======== iFrame Styles =========*/
#myIframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    z-index: 0;
}

#launchContainer {
    width: 100vw !important;
}

/*======== BootStrap Reset Styles =========*/
.custom-row {
    display: flex;
    gap: 15px;
}

/* Sets all border radius' */
.accordion-item:first-of-type {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

.accordion-item:not(:first-of-type) {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

.accordion-item:not(:first-of-type) > .accordion-header
.accordion-button.collapsed {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
}

.accordion-button {
    padding-bottom: 0rem !important;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
    z-index: 0;
}

/* Removes outline after clicking any button/checkbox/accordion */
btn:focus,
a:focus {
    outline: none !important;
}


.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    opacity: 0.5;
}

/*======== Disabled Button States =========*/
.display-none {
    display: none;
}

.display-show {
    display: block;
}

.swatch-disabled {
    opacity: 0.5 !important;
}

.btn-check:disabled + .btn,
.btn-check[disabled] + .btn {
    opacity: 1 !important;
}

.strikethrough {
    text-decoration: line-through;
}

/* Disable state (optional) */
.engine-selection-input:disabled + .engine-selection-label {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Disable state (optional) */
.black:disabled + #black-label {
    opacity: 0.6;
    cursor: not-allowed;
}

/*======== Scroll Bar Removal =========*/
.right-column {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

.right-column::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.tab-content {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

.tab-content::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

/*======== Sticky Header =========*/
.sticky-header {
    background-color: var(--light-grey) !important;
}

.sticky-header .nav-link {
    color: var(--dark-blue) !important;
    font-weight: var(--regular);
    font-family: 'Inter', sans-serif;
}

.sticky-header .nav-link:hover {
    border: none !important;
    font-family: 'Inter', sans-serif;
}

.sticky-header .nav-link.active {
    color: var(--dark-blue) !important;
    background-color: var(--light-grey) !important;
    border-bottom: solid 1px var(--dark-blue) !important;
    border-radius: 0px !important;
    font-family: 'Inter', sans-serif;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #dee2e6;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
}

/*======== Main Navigation =========*/
.navbar {
    background-color: var(--dark-blue);
    position: sticky !important;
    top: 0 !important;
    width: 100%;
    height: 100px;
    /* Makes sure navbar is on top of all elements */
    z-index: 1000;
}

.nav-tabs {
    border: none !important;
    padding-bottom: 1rem;
}

.nav-tabs .tab-link {
    border: none !important;
    font-family: 'Inter', sans-serif;
}

.navbar-collapse {
    background-color: var(--dark-blue);
}

.navbar-brand svg {
    width: 80%;
}

.navbar .navbar-nav .nav-link {
    text-decoration: none;
    color: var(--primary-white);
    transition: color 0.5s ease;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

.navbar-toggler {
    color: rgba(255, 255, 255, 0) !important;
    border: none !important;
}

.navbar-toggler-icon {
    color: var(--primary-white) !important;
    border-color: transparent !important;
    border: none !important;
}

.navbar .container {
    background-color: var(--dark-blue);
}

/*======== Dropdown Menu =========*/
.dropdown-menu {
    background-color: var(--dark-blue) !important;
    --bs-btn-box-shadow: none !important;
}

.dropdown-toggle {
    transition: color 0.3s ease-in-out;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
    color: var(--primary-blue) !important;
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.dropdown-menu li a {
    color: var(--primary-white) !important;
    background-color: var(--dark-blue) !important;
}

.dropdown-menu li a:hover {
    color: var(--primary-blue) !important;
}

.dropdown-toggle {
    color: var(--primary-white) !important;
}

/*======== Checkboxes =========*/
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    border-color: transparent !important;
    color: var(--primary-blue);
}

.package-checkbox:checked[type="checkbox"] {
    background-image: url(/assets/icons/checked.svg) !important;
    background-color: transparent !important;
    border: none;
}

.package-checkbox {
    margin-left: 1rem !important;
}

.form-check-input:checked[type="checkbox"] {
    background-image: url(/assets/icons/checked.svg) !important;
    background-color: transparent !important;
    border: none;
}


.form-check-input[type="checkbox"] {
    width: 25px;
    height: 25px;
    border-radius: 5px !important;
    cursor: pointer !important;
    border: solid 2px var(--dark-blue) !important;
    margin-top: 1.2rem;
    margin-left: 0.1rem;
}

.form-check-input:checked,
.form-check-input:focus,
.form-check-input:active {
    outline: none !important;
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important;
    -webkit-box-shadow: none !important;
}

/* Styles checkbox label and price */
.form-check-label {
    font-size: 15px;
    width: 80%;
}

/* Indented Additional Options */
.windshieldDriverMirror, #heatedDriverHelmChair, #heatedPassengerHelmChair, .jlSubwooferUpgrade {
    margin-left: 2rem;
}

.heatedCooledDriverHelmChair {
    margin-left: 2rem;
}

.heatedCooledPassengerHelmChair {
    margin-left: 2rem;
}

/*======== Accordion and Tab Content =========*/
.tab-content {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 15rem;
    height: 80vh;
    overflow-y: scroll;
}

.accordion-item {
    margin-top: 25px; /* Add 40px top margin between accordions */
    border-radius: 10px; /* Add rounded corners */
    overflow: hidden; /* Ensure proper rounded edges for child elements */
    padding: 0.5rem;
}

.accordion-item:first-child {
    margin-top: 0;
}

.accordion-container {
    margin-top: 250px; /* Adjust this value to match the height of the sticky header */
    padding-top: 10px; /* Optional for extra spacing */
}

/* Accordion Top Buttons */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E") !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E") !important;
}
.accordion-button:not(.collapsed){
    color: var(--dark-blue) !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, 0.125);
}

/* Accordion Font Styling */
.model-name {
    font-size: 38px;
    z-index: 1;
    position: absolute;
    left: 30px;
    top: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.price {
    color: var(--medium-dark-blue-two);
    font-weight: var(--light);
}

.boat-img {
    padding: 1rem !important;
}

.nav-link {
    z-index: -1;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--dark-blue);
    font-weight: var(--semi-bold);
}

/*======== Accordion Content Styles =========*/
.accordion-body {
    padding-top: 0 !important;
    padding-left: 1.2rem !important;
}

.accordion-body h3 {
    font-size: 18px;
}

.accordion-body p {
    font-size: 12px;
}

.accordion-button {
    font-size: 20px !important;
    font-weight: var(--semi-bold);
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Adds padding to the bottom of the accordion buttons */
.exterior-button {
    padding-bottom: 15px !important;
}

.interior-button {
    padding-bottom: 15px !important;
}

.engines-button {
    padding-bottom: 15px !important;
}

.features-button {
    padding-bottom: 15px !important;
}

/*======== Button Groups =========*/
.swatches {
    display: flex !important;
    flex-wrap: wrap !important; /* Allow swatches to wrap onto the next line */
    gap: 10px !important; /* Add some space between swatches */
    padding: 2px !important;
    overflow: hidden !important; /* Prevent overflow */
}

.tooltip-btn {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    margin-left: 2.5rem;
    margin-top: -1rem;
}

/* Midnight Eclips Package Swatches */
.midnight-eclipse-swatches {
    margin-bottom: 1rem;
    display: flex;
}


/* Style each color swatch */
.swatch {
    width: 75px;
    height: 60px;
}

/*========= Main Packages (RS25L and Midnight Eclipse Edition) =========*/
.package-thumbnail {
    max-width: 72px;
    height: 60px;
    margin-right: 7px;
    border-radius: 2px;
}

/* Background Imagery for Swatches - Midnight Eclipse Edition Packages */
#blackCoatGelInterior-label {
    background-color: #383838 !important;
}

#coolTouchTopoInterior-label {
    background-image: url("/assets/images/rs25L/coolTouchTopoInterior.jpg");
}

#greyFlooring-label {
    background-image: url("/assets/images/rs25L/gray-flooring.jpg");
}

#midnightEclipseUpholstery-label {
    background-image: url("/assets/images/Swatch-Interior_Upholstery-Midnight_Eclipse.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.midnight-eclipse-swatches .swatch {
    width: 120px;
}

/*========= Upholstery and Flooring Packs =========*/
.package-btn {
    height: 90px;
    background-size: 100%;
    background-repeat: no-repeat;
    color: var(--black) !important;
    font-size: 12px;
    background-origin: content-box;
}

.package-label {
    margin-top: 1.2rem !important;
}

.swatch-color {
    max-width: 75px;
    height: 60px;
    border-radius: 5px;
    margin-bottom: 35px;
}

.swatch-name {
    font-size: 14px;
    line-height: 15px;
    margin-top: 5px;
}

.swatch-label {
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 2px var(--dark-blue);
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

/* Sizing for the Upholstery Flooring Packs */
.package-swatch {
    width: 224px;
    border: solid 1px var(--light-dark-blue);
    border-radius: 8px;
}


/* Background Imagery for Interior Swatches - Upholstery and Flooring Packs */
#novaDune-label {
    background-image: url("/assets/images/upholstery-flooring-packs/nova-dune.png");
    font-size: 12px;
    background-origin: content-box;
}

#emberSlate-label {
    background-image: url("/assets/images/upholstery-flooring-packs/ember-slate.png");
    font-size: 12px;
    background-origin: content-box;
}

#lunaMist-label {
    background-image: url("/assets/images/upholstery-flooring-packs/luna-mist.png");
    font-size: 12px;
    background-origin: content-box;
}

#midnightEclipse-label {
    background-image: url("/assets/images/upholstery-flooring-packs/midnight-eclipse-edition.png");
    font-size: 12px;
    background-origin: content-box;
}

.package-swatch label {
    display: block !important;
    text-align: left !important;
    padding-left: 10px;
    position: relative !important;
    padding-top: 8px;
    padding-bottom: 15px;
    background-color: transparent !important;
}

.flooring-packs-label {
    position: relative !important;
    top: 55px;
}


/*========= Exterior and Interior Swatches =========*/

/* Default State for All Swatches & Packages */
.swatch {
    border: 1px solid var(--light-dark-blue) !important; /* Default thin black border */
    box-shadow: 0 0 0 2px var(--primary-white); /* Outer black border */
    border-radius: 5px;
    background-color: transparent !important;
    transition: all 0.3s ease-in-out;
    max-width: 100%;
}

.package-swatch {
    border: 0px solid var(--light-dark-blue) !important; /* Default thin black border */
}

/* Background Linear Gradients for Exterior Metallic Swatches */
#duskRed-label {
    background-image: url(/assets/images/Swatch-Dusk_Red-Metallic.png);
    background-size: cover;
}

#cosmoBlack-label {
    background-image: url(/assets/images/Swatch-Cosmo_Black-Metallic.png);
    background-size: cover;
}

#cosmoBlackmidnight-label {
    background-image: url(/assets/images/Swatch-Cosmo_Black-Metallic.png);
    background-size: cover;
}

#orbitalBlue-label {
    background-image: url(/assets/images/Swatch-Orbital_Blue-Metallic.png);
    background-size: cover;
}

/*========= Exterior and Interior Swatches Buttons Hover States =========*/

/* Selected State for Package Swatches: Thick Border (No White Outline) */
.package-swatch input[type="radio"]:checked + label {
    outline: 2px solid var(--dark-blue) !important; /* Inner white border */
}

/* Selected State for Other Swatches (with White Inner Border & Black Outer Border) */
.btn-check:checked + .swatch {
    border: 2px solid white !important; /* Inner white border */
    box-shadow: 0 0 0 2px var(--dark-blue); /* Outer black border */
}

/* Exterior Swatches (Solid & Metallic) - Same Selection Effect */
.exterior-swatches .btn-check:checked + .swatch {
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--dark-blue); /* Outer dark blue border */
}

/* Hover Effect for Buttons */
.btn-check + .btn:hover {
    border: 2px solid white !important; /* Inner white border */
    box-shadow: 0 0 0 2px var(--light-dark-blue); /* Outer black border */
}

.btn-outline-primary {
    border: 1px solid white !important; /* Inner white border */
    box-shadow: 0 0 0 0.8px var(--light-dark-blue); /* Outer black border */
}

/* Hover Effects for SVGs */
.card-footer img {
    width: 18px;
    transition: filter 0.3s ease-in-out; /* Smooth transition */
}

.card-footer img:hover {
    filter: brightness(0) saturate(100%) invert(54%) sepia(73%) saturate(347%) hue-rotate(147deg) brightness(95%) contrast(94%);
}



/* Horizontal line styling */
.feature-divider {
    margin-top: 30px;
}

/* Included features Checkbox styling */
.featured-item {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

/*======== Engine Tab =========*/
.engine-selection {
    margin-top: 10px;
}

.engine-selection-label {
    font-size: 15px;
}

/* Hide the default radio button */
.engine-selection-input {
    display: none;
}

/* Style for the label */
.engine-selection-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
}

/* Default radio (unchecked state) */
.radio-unselected {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Selected radio (checked state) */
.radio-selected {
    display: none;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* When the radio button is checked, show the selected SVG and hide the unselected one */
.engine-selection-input:checked + .engine-selection-label .radio-unselected {
    display: none;
}

.engine-selection-input:checked + .engine-selection-label .radio-selected {
    display: inline-block;
}

/*======== Features and Additional Options =========*/
.additional-option {
    font-size: 12px;
    margin-top: 2px;
}

.additional-option-input {
    width: 20px !important;
    height: 20px !important;
    margin-top: 0px !important;
    margin-right: 10px;
}

/*======== Total Price Container Styles for Desktop, Tablet, and Mobile =========*/
.total-price-container-desktop {
    background-color: var(--dark-blue) !important;
    color: white;
    text-align: center;
    z-index: 99;
    position: sticky;
    margin-top: 30px;
    bottom: 0;
    width: 100%;
}

.prices-container {
    font-family: "Rubik", sans-serif;
    padding-left: 1rem;
}

.total-price {
    padding-bottom: 0rem;
    margin-bottom: 0rem;
    margin-top: 0.5rem;
    text-align: left;
}

.msrp-price {
    margin-bottom: 0.5rem;
    font-size: 11px;
    text-align: left;
}

.total-price-container-mobile {
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
    flex-direction: column;
    position: fixed;
    z-index: 998;
    width: 100%;
    bottom: 0;
}

/*======== Footer Styles =========*/
/*.footer {
    padding-top: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #161b22;
    color: var(--primary-white);
    text-align: center;
    font-size: 11px;
    z-index: 1000;
}*/

.footer a {
    text-decoration: none;
    color: var(--priamry-white);
}

.footer a:hover {
    text-decoration: underline;
}

/*======== Pop-Up Modal =========*/
.modal-body {
    padding: 0px !important;
}

.modal-title {
    color: var(--dark-blue);
}

.modal-body-copy {
    /* background-color: var(--light-grey) !important; */
    color: var(--dark-blue);
}

.modal-body .modal-body-copy h2 {
    font-size: 20px !important;
}

.modal-body .modal-body-copy p {
    font-size: 13px !important;
}

.model-content {
    padding: 0px !important;
}

.modal-body a {
    color: var(--primary-blue);
    font-size: 14px;
    text-align: center;
}

/*======== Log in, Password, Create Account Pages Styling =========*/

/* Main Button Styles for Forms */
.btn-teal {
    border-radius: 4px !important;
    border-color: transparent !important;
    background-color: var(--primary-blue) !important;
    color: var(--primary-white) !important;
}

.primary-link a {
    color: var(--primary-blue) !important;
}

.editProfile-form .btn-outline {
    margin-left: 1rem;
}

.btn-teal {
    background-color: var(--primary-blue) !important;
    border-radius: 3px !important;
    padding: 0.6rem !important;
}

.btn-teal:hover {
    background-color: #008e97 !important;
}

.btn-outline {
    border: solid 2px var(--dark-blue) !important;
    border-radius: 5px !important;
    color: var(--dark-blue) !important;
    background-color: transparent !important;
    padding: 0.6rem !important;
}

.btn-outline:hover {
    background-color: var(--light-grey) !important;
}

/* Log in */
.login-form {
    margin: 0 auto;
}

.login-form h2 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    margin-bottom: 2rem;
}

.login-form img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Forgot Password */
.forgotPassword-form {
    margin: 0 auto;
}

.forgotPassword-form h2 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    margin-bottom: 2rem;
}

.forgotPassword-form img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Create Account */
.createAccount-form {
    margin: 0 auto;
}

.createAccount-form h2 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    margin-bottom: 2rem;
}

.createAccount-form img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.createAccount-checkbox {
    padding-left: 0rem;
    margin-left: 1rem;
}

.createAccount-form .form-check {
    padding-left: 0.5rem !important;
    padding-top: 0.6rem;
}

.createAccount-form .form-check-label {
    padding-left: 0.5rem !important;
    padding-top: 0.5rem;
}

#createAccountForm {
    max-width: 700px;
    padding: 15px;
    margin: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Edit Profile */
.editProfile-form {
    margin: 0 auto;
    width: 100%;
}

.editProfile-form h2 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    margin-bottom: 2rem;
}

.editProfile-form img {
    margin-top: auto;
    margin-bottom: auto;
    display: block;
}

#editProfileForm label {
    font-size: 12px;
}

#editProfileForm input {
    font-size: 12px;
}

#editProfileForm .btn {
    font-size: 13px;
}

#editProfileForm {
    width: 100%;
    max-width: 1000px;
    padding: 15px;
    margin: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-white);
    border-radius: 12px;
    text-align: left;
}

/* Saved Boats */
#savedBoats-container {
    border: 1px solid var(--light-dark-blue);
    border-radius: 12px;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 5rem;
    background-color: var(--primary-white);
    margin-bottom: 5rem;
}

.model-card-wrapper {
    padding-bottom: 2rem;
}

.model-image-container {
    position: relative;
}

.filter-wrapper {
    /* border-bottom: solid 1px var(--light-dark-blue); */
    padding-bottom: 1rem;
}

.saved-model-card {
    border-radius: 12px !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: solid 1px var(--dark-blue);
}

.saved-model-card .model-img {
    padding-top: 4rem !important;
}

.delete-model {
    background-color: transparent !important;
    border: transparent !important;
    padding-top: 0.2rem !important;
}

.delete-model img {
    color: var(--primary-blue) !important;
    width: 22px;
}

.delete-model img:hover {
    filter: brightness(0) saturate(100%) invert(54%) sepia(73%) saturate(347%) hue-rotate(147deg) brightness(95%) contrast(94%);
}

.btn-dark-blue {
    background-color: var(--dark-blue) !important;
    border-radius: 3px !important;
    padding: 0.6rem !important;
}

.btn-dark-blue:hover {
    background-color: var(--dark-grey) !important;
    border-radius: 3px !important;
    padding: 0.6rem !important;
}

.card-footer {
    height: 50px;
    padding-right: 0.5rem !important;
    font-size: 14px;
}

.pagination .page-item li {
    background-color: transparent !important;
}

.pagination .page-item a {
    color: var(--dark-blue);
}

.saved-boats-footer {
    position: absolute;
    padding-top: 1rem;
    width: 100%;
    background: #161b22;
    color: var(--primary-white);
    text-align: center;
    font-size: 11px;
    z-index: 1000;
}

.saved-boats-footer a {
    text-decoration: none;
    color: var(--priamry-white);
}

.saved-boats-footer a:hover {
    text-decoration: underline;
}

/*======== Screens 768px and up =========*/
    @media (min-width: 768px) {
        /* Main Parent Containers - 786px */
        body {
            background-color: var(--primary-white) !important;
        }

        .row {
            flex-wrap: nowrap !important;
        }

        .left-column {
            height: auto !important;
        }

        .model-name {
            font-size: 45px;
            z-index: 1;
            position: absolute;
            left: 30px;
            top: 20px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        /* Package Swatches - 786px */
        .package-swatch {
            width: 250px;
        }

        .package-thumbnail {
            max-width: 100px;
            height: 90px;
        }

        #cosmoBlackmidnight-label {
            width: 55px;
        }

        #cosmoBlackmidnight-label {
            width: 55px;
            height: 50px;
        }

        #blackCoatGelInterior-label {
            width: 55px;
            height: 50px;
        }

        #greyFlooring-label {
            width: 55px;
            height: 50px;
        }

        .midnight-eclipse-swatches {
            margin-bottom: 0 !important;
        }

        .midnight-eclipse-swatches .swatch {
            width: 90px !important;
            height: 60px !important;
        }

        /* Fonts - 786px */
        .accordion-body p {
            font-size: 13px;
        }

        .additional-option {
            font-size: 14px;
        }

        .engine-selection-label {
            font-size: 14px;
        }

        .feature-divider {
            margin-top: 0;
        }

        /* Revel Forms */
        .revel-form {
            width: 500px;
        }
    }
    /*======== Screens 1024px and up =========*/
    @media (min-width: 1024px) {
        /* Accordion - 1024px */
        .accordion {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }

        .accordion-body p {
            font-size: 14px;
        }

        .accordion-item {
            padding: 0.8rem;
        }

        /*Tab Content - 1024px*/
        .tab-content {
            height: 80vh;
        }

        /* Reset Bootstrap - 1024px*/
        .custom-row {
            height: 80vh;
        }

        /* Packages - 1024px */
        .package-checkbox {
            width: 22px !important;
            height: 22px !important;
            margin-top: 0.36em !important;
            margin-left: 1.2rem !important;
        }

        /* Font Sizing - 1024px */
        .tabTitle {
            font-size: 26px;
        }

        .package-title {
            font-size: 20px;
        }

        .model-name {
            font-size: 52px;
            z-index: 1;
            position: absolute;
            left: 30px;
            top: 20px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .form-check-label .package-title {
            font-size: 16px;
        }

        .swatch-name {
            font-size: 14px;
        }

        .midnight-eclipse-swatches .swatch {
            width: 120px !important;
            height: 80px !important;
        }

        /* Checkboxes - 1024px */
        .form-check-input {
            width: 22px !important;
            height: 22px !important;
            margin-top: 0.45em !important;
        }

        .additional-option {
            font-size: 14px;
            margin-top: 8px;
        }

        /* Swatches - 1024px */
        .swatch-color {
            max-width: 110px;
            height: 90px;
        }

        .swatch {
            width: 110px;
            height: 90px;
        }

        .package-thumbnail {
            max-width: 80px;
            height: 90px;
        }

        /* Midnight Eclipse Edition Swatches - 1024px */
        #cosmoBlackmidnight-label {
            width: 80px;
            height: 68px;
        }

        #blackCoatGelInterior-label {
            width: 80px;
            height: 68px;
        }

        #greyFlooring-label {
            width: 80px;
            height: 68px;
        }

        .flooring-packs-label {
            font-size: 14px;
        }

        .swatches {
            gap: 16px !important;
        }

        .feature-divider {
            margin-top: 1.2rem;
        }

        /* Saved Boats Page - 1024px */
        #savedBoats-container {
            padding-bottom: 1rem;
        }
    }
    /*======== Screens 1200px and up =========*/
    @media (min-width: 1200px) {
        /* Upholstery and Flooring Packs - 1200px */
        #novaDune-label {
            width: 320px;
            height: 110px;
        }

        #lunaMist-label {
            width: 320px;
            height: 110px;
        }

        #emberSlate-label {
            width: 320px;
            height: 110px;
        }

        #midnightEclipse-label {
            width: 320px;
            height: 110px;
        }

        .flooring-packs-label {
            top: 75px;
        }

        /* Font Sizing - 1200px */
        .form-check-label .package-title {
            font-size: 18px;
        }

        .package-checkbox {
            width: 22px !important;
            height: 22px !important;
            margin-top: 0.5em !important;
        }

        .accordion-body h3 {
            font-size: 20px;
        }

        /* Swatches - 1200px */
        .package-thumbnail {
            max-width: 110px;
            height: 90px;
        }

        /* Midnight Eclips Edition Swatches - 1200px */
        #cosmoBlackmidnight-label {
            width: 110px;
            height: 85px;
        }

        #blackCoatGelInterior-label {
            width: 110px;
            height: 85px;
        }

        #greyFlooring-label {
            width: 110px;
            height: 85px;
        }

        .midnight-eclipse-swatches {
            margin-bottom: 0rem;
        }

        .midnight-eclipse-swatches .swatch {
            width: 180px !important;
            height: 90px !important;
        }
    }