:root {
    --base-color: hsl(54, 100%, 90%);
    --base-light: hsl(from var(--base-color) h s calc(l + 6));
    --base-lighter: hsl(from var(--base-color) h s calc(l + 9));
    --base-dark: hsl(from var(--base-color) h s calc(l - 10));
    --base-darker: hsl(from var(--base-color) h s calc(l - 20));
    --base-even-darker: hsl(from var(--base-color) h s calc(l - 42));
    --base-darkest: hsl(from var(--base-color) h s calc(l - 60));
    --that-gray: hsl(0, 0%, 40%);
    --lighter-gray: hsl(from var(--that-gray) h s calc(l + 50));
    --darker-gray: hsl(from var(--that-gray) h s calc(l - 20));
    --that-blue: hsl(234, 100%, 65%);
    --dark-blue: hsl(from var(--that-blue) h s calc(l - 10));
}

body {
    color: var(--that-gray);
    min-height: 99vh;
    font-family: "Roboto Flex", sans-serif;
    position: relative;
    background: none;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("/images/brooke-lark-kXQ3J7_2fpc-unsplash_rkzkzu.avif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

h1 {
    justify-self: center;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.2rem;
}

h4 {
    font-size: 1rem;
}

.divider {
    display: flex;
    height: 2.4rem;
    justify-content: space-evenly;
}

.divider>svg {
    transform: scale(.6, .6) rotate(45deg);
}

img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: contain;
}

.siteBtn {
    background-color: var(--base-darker);
    border: thin solid var(--base-even-darker);
}

.siteBtn:hover {
    background-color: var(--base-even-darker);
    border: thin solid var(--base-even-darker);
    color: #000;
}

.btn-secondary,
.btn-secondary:hover {
    color: #333;
    text-shadow: none;
}

.card {
    background-color: var(--base-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-header,
.card-footer {
    background-color: var(--base-color);
    border-bottom: none;
    border-top: none;
}

.card-body {
    width: 100% !important;
}

.outerContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--base-dark);
    padding: 1rem;
    border-radius: .4rem;
    border: 2px solid var(--base-even-darker);
    margin-left: auto;
    margin-right: auto;
}

.innerContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: .4rem;
    background: var(--base-color);
    padding: 1rem;
    border: 2px solid var(--base-even-darker);
}

.innerMostContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--base-light);
    padding: 1rem;
    border-radius: .4rem;
    border: 1px solid var(--base-even-darker);
}

.likesContainer {
    display: flex;
    align-items: center;
    justify-content: start;
}

/* for displaying the category tags on the show and index pages */
.category {
    display: inline-block;
    padding: .15rem .4rem;
    font-size: .65rem;
    border-radius: .5rem;
    background-color: var(--base-dark);
    color: var(--base-darkest);
    border: thin solid var(--base-even-darker);
    user-select: none;
    font-weight: 600;
    margin-right: .25rem;
    margin-bottom: .25rem;
}

.categorySpacer {
    height: 20.992px;
}

.modal-content {
    border: .25rem solid var(--base-even-darker)
}

.modal-header,
.modal-footer {
    background-color: var(--base-dark);
}

.modal-body {
    background-color: var(--base-color);
}

/* ***************************** */
/* Navbar */
/* ***************************** */
#navigationDiv {
    background-color: var(--base-color);
    padding: .5rem;
    margin: .5rem;
    border-radius: .4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

#navigationDiv>* {
    flex-shrink: 1;
}

#navHiddenDiv {
    width: 6rem;
}

#filtersDropdown {
    margin-right: .4rem;
}

.bi-sliders {
    font-size: 1.2rem;
    color: var(--that-gray);
}

.filtersContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--base-dark);
    padding: 1rem;
    border-radius: .4rem;
    border: 1px solid #bbb;
}

.filtersContainer .innerContainer {
    align-items: start;
}

.filtersHeader {
    background-color: var(--base-dark);
    border-radius: .4rem;
    padding: .4rem;
    margin-bottom: .5rem;
}

.filtersHeader h2 {
    color: var(--that-gray);
    margin-bottom: 0;
    font-size: 2.4rem;
}

.filtersContainer h3 {
    font-size: 1.2rem;
    color: var(--that-gray);
    font-weight: 600;
}

.specialPageHeadingContainer {
    background-color: var(--base-dark);
    border: 3px solid var(--base-even-darker);
    border-radius: .4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.specialPageHeadingContainer h2 {
    margin-top: .4rem;
}

#familyFavorites {
    color: var(--that-blue);
    text-decoration: none;
}

#familyFavorites:hover {
    text-decoration: underline;
}

.familyFavorites {
    color: var(--that-blue);
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.filtersContainer .familyFavorites {
    font-size: 2.4rem;
}

.isFamilyFavorite {
    position: absolute;
    width: 45%;
    left: 0;
    top: 0;
    overflow: hidden;
    pointer-events: none;
    transform: rotate(-44deg);
}

/* for the Family Favorites overlay */
.isFamilyFavorite path {
    fill: transparent;
}

.isFamilyFavorite text {
    fill: var(--that-blue);
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 4rem;
    stroke: var(--base-color);
    stroke-width: 8;
    paint-order: stroke;
}

.recipe-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.recipe-image-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
}

.filtersContainer .filterOr {
    font-family: "Emilys Candy", serif;
    font-size: 2.4rem;
    font-weight: 400;
}

.filtersContainer h4 {
    color: var(--that-gray);
    text-decoration: underline;
    font-size: 1.1rem;
}

.searchDiv {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
}

#search {
    display: flex;
    align-items: center;
    padding: 0.4rem;
    background-color: var(--base-lighter);
    border: 2px solid var(--base-even-darker);
    border-radius: 2rem;
    width: 25rem;
    position: relative;
    height: 3rem;
}

#search input {
    flex: 1;
    padding-left: 0.4rem;
    border: none;
    outline: none;
    background: transparent;
}

#search input:focus {
    outline: none;
}

#searchBtn {
    background-color: var(--base-even-darker);
    color: var(--base-color);
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#searchBtn:hover {
    background-color: var(--base-darker);
    color: #fff;
}

.searchDiv .dropdown-menu {
    padding: 0;
    border: none;
    width: 28rem;
}

.resultsHeadingContainer {
    flex: 0 0 100%;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.resultsHeadingContainer .outerContainer {
    background-color: var(--base-darker);
    border-color: var(--that-gray);
    width: 100%;
}

.resultsHeadingContainer h2 {
    margin-bottom: 0;
    font-size: 2rem;
}

#recipesContainer {
    display: flex;
    padding-bottom: 2rem;
    flex-flow: row wrap;
    justify-content: center;
}

.rightSideNav {
    display: flex;
    flex-direction: row;
    padding-right: .4rem;
    align-items: center;
    height: 3rem;
}

.rightSideNav * {
    line-height: 1;
}

.nav-link {
    padding: .5rem 0 .5rem 0;
    font-weight: 700;
    color: var(--that-gray);
    margin-left: 1rem;
    margin-bottom: 0;
    border-bottom: .25rem solid transparent;
}

.nav-link:hover {
    color: var(--darker-gray);
    border-bottom-color: var(--darker-gray);
}

.rightSideNav .divider {
    padding-left: .4rem;
    padding-right: .4rem;
}

.rightSideNav .dropdown-header {
    font-size: 1.2rem;
    font-weight: 600;
    cursor: default;
}

.rightSideNav .dropdown-item:hover {
    background-color: var(--base-darker);
    cursor: pointer;
}

.rightSideNav .dropdown-item i {
    font-style: normal;
}

.rightSideNav .dropdown-item:hover i {
    color: #000;
}

.rightSideNav .dropdown-item:hover svg {
    background-color: var(--base-darker);
}

.rightSideNav .fa-heart,
.fa-circle-user {
    font-size: 2rem;
}

.rightSideNav .fa-arrow-right-from-bracket {
    font-size: 1rem;
}

.btnAddNewRecipe {
    background-color: var(--that-blue);
    color: var(--base-color);
    line-height: 1.6rem;
}

.btnAddNewRecipe:hover {
    background-color: var(--dark-blue);
    color: var(--base-color);
}

.input-group-text {
    background-color: #fff;
    padding-right: 0;
}

.navbar-title-container {
    text-align: center;
}

.navbar-title {
    font-family: "Emilys Candy", serif;
    text-shadow: 3px 3px 4px var(--base-lighter),
        -3px -3px 4px var(--base-lighter),
        -3px 3px 4px var(--base-lighter),
        3px -3px 4px var(--base-lighter);
    color: var(--darker-gray);
    font-size: clamp(3rem, 5vw, 4rem);
}

#JolenesRecipes {
    display: inline-block;
}

/* ***************************** */
/* Home page */
/* ***************************** */
#homeSection {
    display: flex;
    min-height: 80vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#homeSection .innerContainer {
    background-color: var(--base-color);
    border: .2rem solid var(--base-even-darker);
    padding: 1.5rem;
}

#homeSection h2 {
    margin-bottom: 1rem;
    font-size: 3.6rem;
    color: var(--that-blue);
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

#homeSection .forTheJ {
    font-family: "Nothing You Could Do", cursive;
    font-weight: 600;
    font-style: normal;
    display: inline-block;
    transform: translateX(.4rem);
}

/* this is to keep it from wrapping after the J */
.no-wrap {
    white-space: nowrap;
}

#homeSection .innerMostContainer {
    background-color: var(--base-light);
    margin-bottom: 1.4rem;
}

.homeBtn {
    background-color: var(--base-darker);
    border: 1px solid var(--base-even-darker);
    font-weight: 600;
}

.homeBtn:hover {
    background-color: var(--base-even-darker);
    border: 1px solid var(--base-even-darker);
    color: #000;
}

.homeBtn:focus {
    background-color: var(--base-even-darker);
    border: 1px solid var(--base-even-darker);
    color: #000;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.15);
}

.homeBtn:active {
    border: none;

}

.dropdown i {
    color: var(--that-gray);
}

.dropdown-menu {
    background-color: var(--base-dark);
}

.dropdown-item {
    color: var(--that-gray);
    --bs-dropdown-link-active-color: var(--that-gray);
}

.dropdown-item:hover {
    background-color: var(--base-dark);
}

/* **************************************************************** */
/* Login, Logout, Authentication and Registration pages */
/* **************************************************************** */
#loginSection .innerContainer,
#registerSection .innerContainer {
    border: .25rem solid var(--base-even-darker);
}

#loginSection>.row>.col-12,
#registerSection>.row>.col-12,
#forgotPasswordSection>.row>.col-12,
#resetPasswordSection>.row>.col-12 {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

#settingsSection>.row>.col-12 {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.welcomeBack {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    color: var(--that-blue);
}

.welcomeBackEmoji {
    font-size: 2rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

.thanks {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--that-blue);
}

.thanksEmoji {
    font-size: 2rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

.registerLabels {
    text-decoration: underline;
}

#loginSection .siteBtn:focus,
#registerSection .siteBtn:focus {
    background-color: var(--base-even-darker);
    border: 1px solid var(--base-even-darker);
    color: #000;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.15);
}

/* ***************************** */
/* Index page */
/* ***************************** */
#indexSection .card {
    background-color: var(--base-color);
    border-color: var(--base-color);
    padding: 1.25rem;
    border-radius: .4rem;
}

#indexSection .card:hover {
    transform: scale(1.06, 1.06);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#indexSection .card-header {
    background-color: var(--base-darker);
    margin: .4rem 0;
    border-radius: .25rem;
    border: 1px solid var(--base-even-darker);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--that-gray);
}

#indexSection .card-footer,
.common-side-dish-cards .card-footer {
    flex: 1;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    padding: 0;
    margin: .4rem 0;
    align-content: flex-start;
}

#indexSection .login-tooltip {
    --bs-tooltip-bg: var(--that-blue);
}

#indexSection .like-tooltip-wrapper,
.common-side-dish-cards .like-tooltip-wrapper {
    position: absolute;
    z-index: 2;
    top: 1px;
    right: 2px;
}

#indexSection .like-tooltip-wrapper:has(button:disabled) {
    cursor: default;
}

#indexSection .like-btn,
.common-side-dish-cards .like-btn {
    border: none;
    background: transparent;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    color: var(--that-gray);
}

#indexSection .like-btn:disabled {
    cursor: default;
}

#indexSection .like-btn:hover {
    color: hsl(350, 70%, 60%);
}

#indexSection .familyFavorites {
    font-size: 3rem;
}

#indexSection #recipesContainer>.col {
    flex: 0 0 322px;
}

/* ***************************** */
/* Show page */
/* ***************************** */
#showSection .card {
    background-color: var(--base-color);
    border-color: var(--base-color);
    padding: 1.25rem;
}

#showSection .common-side-dish-cards .card {
    transform: scale(.9);
}

#showSection #commonSideDishesSection .category {
    font-size: .75rem;
}

#showSection #commonSideDishesSection .card {
    border: 2px solid var(--base-darker);
}

#showSection #commonSideDishesSection .card:hover {
    transform: scale(1.04, 1.04);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#showSection #commonSideDishesSection .isFamilyFavorite {
    position: absolute;
    width: 45%;
    left: 16px;
    top: 8px;
    overflow: hidden;
    pointer-events: none;
    transform: rotate(-44deg);
}

#showSection .card-header {
    background-color: var(--base-darker);
    margin: .4rem 0;
    border-radius: .25rem;
    border: 1px solid var(--base-even-darker);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#showSection .card-footer {
    background-color: var(--base-color);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 1rem;
}

#showSection #commonSideDishesSection .card-footer {
    margin: .4rem 0;
    align-items: start;
}

#showSection .category {
    font-size: .875rem;
}

#showSection .numberOfServingsContainer {
    background-color: var(--base-light);
    padding: 1rem;
    border: thin solid var(--base-even-darker);
}

#servingsSelect {
    width: 5rem;
    margin-bottom: .4rem;
}

#showSection .innerContainer {
    background-color: var(--base-light);
    display: flex;
    align-items: start;
}

#showSection .notes-text {
    white-space: pre-line;
}

#showSection>.row>.col-12 {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.shareContainer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    position: relative;
    user-select: none;
    color: var(--that-gray);
    transition: transform 0.1s ease, color 0.2s ease;
}

.shareContainer:hover {
    color: black;
}

.shareContainer:active {
    transform: scale(0.95);
}

/* Tooltip bubble */
.shareBubble {
    position: absolute;
    left: 50%;
    top: -38px;
    transform: translateX(-50%) translateY(8px);
    background: var(--that-gray);
    color: var(--base-lighter);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-radius: .4rem;
}

.shareBubble::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--that-gray) transparent transparent transparent;
}

.shareBubble.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Success state */
.shareBubble.success {
    background: var(--that-blue);
}

.shareBubble.success::after {
    border-color: var(--that-blue) transparent transparent transparent;
}

.likesContainer {
    color: var(--that-gray);
}

#showSection .like-btn {
    border: none;
    background: transparent;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    color: var(--that-gray);
    margin-bottom: 2px;
}

#showSection .like-btn:disabled {
    cursor: default;
}

#showSection .like-tooltip-wrapper {
    display: inline-block;
}

/* for the Like buttons when they're logged out, so they look disabled but still handle click events */
.not-logged-in {
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: auto;
}

#showSection .like-tooltip-wrapper:has(button:disabled) {
    cursor: default;
}

#showSection .like-btn:hover {
    color: hsl(350, 70%, 60%);
}

.fa-heart.fa-solid {
    color: hsl(350, 70%, 60%);
}

/* for a bit of spacing between the steps of instructions for readability */
ol li {
    margin-bottom: 1rem;
}

/* Animation keyframes */
@keyframes heart-toggle {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(var(--scale, 1.4));
    }

    /* pop bigger or smaller depending on --scale */
    60% {
        transform: scale(0.9);
    }

    /* small bounce back */
    100% {
        transform: scale(1);
    }
}

.heart-toggle {
    animation: heart-toggle 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.ingredientHeading {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    background-color: var(--base-darker);
    border: .25rem solid var(--base-even-darker);
    border-radius: .4rem;
}

.ingredientHeading h2 {
    font-size: 2rem;
    margin-top: .5rem;

}

/* ***************************** */
/* Add and Edit Recipe pages */
/* ***************************** */
#addRecipeSection .innerContainer {
    align-items: start;
}

#addRecipeSection>.row>.outerContainer,
#editRecipeSection>.row>.outerContainer {
    width: calc(100% - 2rem);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

#ingredientInputs h4,
#seasoningInput h4,
#instructionsInput h4 {
    font-size: larger;
}

.optionalIngredientDetails {
    background-color: var(--base-lighter);
    border: 1px solid var(--base-even-darker);
    padding-left: .4rem;
    padding-bottom: 1rem;
    padding-right: .4rem;
    margin-top: .1rem;
    border-radius: .4rem;
}

#ingredientInputs h3 {
    width: fit-content;
    background-color: transparent;
}

#ingredientInputs .innerMostContainer>div:first-child {
    background-color: var(--base-dark);
    padding-top: .5rem;
    padding-bottom: .5rem;
}

/* For the Category buttons */
/* Hide checkbox */
.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.btnCategory {
    display: inline-block;
    padding: .4rem .6rem;
    font-size: .8rem;
    font-weight: 600;
    border-radius: .25rem;
    cursor: pointer;
    background-color: var(--base-dark);
    color: var(--base-darkest);
    border: thin solid var(--base-darkest);
    user-select: none;
    transition:
        background-color .15s ease,
        color .15s ease,
        border-radius 400ms ease;
}

.btnCategory:hover {
    background-color: var(--base-darkest);
    color: var(--base-color);
    font-weight: 600;
    border-radius: .75rem;
    border: thin solid var(--base-darkest);
}

/* Checked state (should match hover) */
.btn-check:checked+.btnCategory {
    background-color: var(--base-darkest);
    color: var(--base-color);
    font-weight: 600;
    border-radius: .75rem;
    border: thin solid var(--base-darkest);
}

.otherInnerContainerJustForSeasonings {
    background-color: var(--base-color);
    padding: 1rem;
    border: 2px solid var(--base-even-darker);
    border-radius: .4rem;
}

.otherInnerContainerJustForSeasonings>.innerMostContainer {
    display: inline-block;
}

.otherInnerContainerJustForSeasonings .innerMostContainer>div:first-child {
    background-color: var(--base-dark);
    padding-top: .5rem;
    padding-bottom: .5rem;
}

#clearFormLink,
#clearFilterLink {
    color: var(--that-gray);
    height: fit-content;
    width: fit-content;
}

#clearFormLink:hover,
#clearFilterLink:hover {
    color: #ff0000;
}

.ingredient-slide {
    overflow: hidden;
    height: 0;
    transition: height 400ms ease;
}

.was-validated #ingredientName:valid,
.was-validated #instructions:valid {
    border-color: #ced4da !important;
    background-image: none !important;
    box-shadow: none !important;
}

.btnCloseInputs {
    line-height: 1;
    padding: .25rem;
}

.btnRemoveLi {
    line-height: 1;
    padding: 3px 2px 2px 2px;
    margin-left: 1.5rem;
    border: none;
    font-size: .6rem;
}

#commonSideDishesSection {
    display: none;
}

#commonSideDishesSection.show {
    display: block;
}

.selected-category {
    background-color: var(--base-darkest);
    color: var(--base-color);
    font-weight: 600;
    border-radius: .75rem;
    border: thin solid var(--base-darkest);
}

/* ***************************** */
/* Settings page */
/* ***************************** */
#settingsSection section {
    width: 100%;
}

@media (max-width: 576px) {
    #homeSection .innerContainer {
        transform: translateY(-2rem);
    }

    #navigationDiv {
        padding: .4rem;
        margin: .4rem;
    }

    #navHiddenDiv {
        display: none;
    }

    .nav-link {
        padding: .25rem 0;
        font-size: .8rem;
        margin-left: .5rem;
    }

    #search {
        width: 15.6rem;
    }

    #searchInput {
        width: 12.5rem;
    }

    #searchInput::placeholder {
        font-size: .8rem;
    }

    .rightSideNav {
        margin-left: auto !important;
    }

    .rightSideNav .fa-heart,
    .fa-circle-user {
        font-size: 1.6rem;
    }

    #showPageSmall {
        font-size: .75rem;
    }

    .searchDiv .dropdown-menu {
        width: 98vw;
        max-width: 98vw;
    }

    .filtersContainer .familyFavorites {
        font-size: 2.2rem;
    }
}