.mapbox-map-container #range-tag-and-help-btn {
    width: 100% !important;
}

.mapbox-map-container #range-tag-and-help-btn img.activate-design-help-btn {
    position: absolute;
    left: 95%;
    top: 25%;
}

.mapbox-map-container .mapboxgl-ctrl-logo {
    display: block !important;
}

#wrapper {
    position: relative;
    top: 200px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.loading {
    display: none;
    font-style: italic !important;
    margin-left: 20px;
}

.loading img {
    margin-right: 10px;
}

.icon {
    width: 30px;
    align-self: center;
    margin-left: .5em;
    cursor: pointer;
}


.icon:hover {
    transform: scale(1.3);
    transition: transform 100ms linear;
}


/* Name of Plant Being Rendered */
#top-row-main {
    width: 100%;
    margin-top: 35px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
    bottom: 13px;
    margin-left: 5px;
}


#selected-plant {
    display: inline-flex;
    position: relative;
    align-items: center;
    left: 5px;
    width: 75%;
}

/* #selected-plant h2{
    width: 50%;
} */


#selected-plant img {
    width: 40px;
}

#desktop-common {
    font-size: 1.5rem;
}

.desktop-view-names {
    display: flex;
    align-items: center;
    max-width: 75%;
    white-space: nowrap;
    overflow: hidden;
}

.mobile-view-names {
    display: none;
}

#desktop-common {
    flex-shrink: 0;
    margin-right: 0.25em;
}

#desktop-scientific {
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

#scientific-name, #desktop-scientific {
    font-weight: 400;
    margin-left: 1em;
    font-size: 1.1rem;
    position: relative;
    /* top: 11px; */
    color: #828282;

}

.top-row-main-name {
    width: 100%;
    display: flex;
    align-items: center;
}

#add-plant-icon-mobile {
    display: none;
}

.desktop-add-to {
    margin-right: 3px;
    display: inline;
}

.mobile-add-to {
    display: none;
}


.add-plant-btn {
    font-size: .8rem !important;
    min-height: 25px !important;
    z-index: 5;
    color: #A2CCFA;
    background-color: #edf5fe;
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
    align-self: center;
    border-radius: 5px;
    position: relative;
    left: 10px;
    top: 1px;
    width: 140px;
    box-sizing: border-box;
    /* padding: 3px 5px; */
}

.add-plant-btn.added-plant {
    background-color: rgba(139, 0, 0, .8);
    color: white
}


#add-plant-btn-mbl {
    display: none;
}

.add-plant-btn:hover {
    cursor: pointer;
}

.add-plant-btn:active {
    box-shadow: none;
    top: 3px;
    left: 12px;
}

/*.top-row-only-name{*/
/*    max-width: 300px;*/
/*    white-space: nowrap;*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*}*/

#toggle-category {
    display: inline-flex;
    justify-content: space-between;
    margin-right: 30px;
    visibility: hidden;
    box-sizing: border-box;
}


#toggle-category h3 {
    text-decoration: underline;
    color: #A2CCFA;
    visibility: visible !important;
}

.return-results-sp {
    height: 18px;
    width: 18px;
}

.return-results-sp-cntr {

    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--easyscape-blue-main);
}

.return-and-count-ctnr {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-right: 40px;
}


.traverse-location {
    display: inline;
    text-decoration: none;
    color: var(--easyscape-light-grey);
    /*background-color: #A2CCFA;*/
    border-radius: 5px;
    padding: 5px 10px;
    font-size: .8rem;
    position: relative;
    white-space: nowrap;
    width: fit-content;
    /* top: 2px; */
    margin-right: 10px;
}

#traverse-location-mobile {
    display: none;
}

.traverse-location:hover {
    color: var(--easyscape-blue-main)
}

.traverse-location:hover {
    cursor: pointer;
    font-weight: 600;
    transition: font-weight 150ms ease-in;
}

.paginate-species {
    width: 46px !important;
    height: 46px !important;
    margin-left: 0 !important;
}


#traverse-backward {
    transform: rotate(180deg);
}

#traverse-backward:hover {
    transform: rotate(180deg) scale(1.3);
    transition: transform 100ms linear;
}


/* Plant image, plant thumbnails, and map grid area */

#plant-and-map-container {
    display: grid;
    grid-template-areas: "image map"
                         "preview map";
    grid-template-rows: auto 1fr;
    /* grid-template-rows: auto minmax(50px, 300px); */
    grid-template-columns: minmax(50px, 705px) 1fr;
    position: relative;
    bottom: 3.5em;
    column-gap: 10px;
    row-gap: 0px;
    margin: 0 auto;
    justify-content: center;
    /*overflow: hidden;*/
    margin-right: 10px;
}


/* Showcase Image */


#main-plant-image {
    grid-area: image;
    aspect-ratio: 4/3;
    display: flex;
    justify-content: center;
    width: auto;
    margin-bottom: 5px;
    /* margin-right: 5px; */
    position: relative;
    /* border-radius: 2px; */
    /*overflow: hidden;*/
    background-color: rgba(232, 232, 232, .8);
    border: #56606b 1.5px solid;
}

/* Check if aspect-ratio property is not supported */
@supports not (aspect-ratio: 4/3) {
    #main-plant-image::before {
        float: left;
        padding-top: 75%;
        content: "";
    }

    #main-plant-image::after {
        display: block;
        content: "";
        clear: both;
    }
}

#main-plant-image img {
    /* border-radius: 5px; */
    object-fit: contain;
    max-width: 100%;
    height: auto;
    /*overflow: hidden;*/

}


#plant-copyright {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    z-index: 30;
    font-size: 11px;
    background-color: rgba(0, 0, 0, .5);
    /* width: 97.5%; */
    width: 100%;
    height: 18px;
    padding-top: 0;
    flex-wrap: nowrap;

    font-size: .80rem;
    height: 20px;
    /*overflow-x: hidden;*/
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#plant-copyright p {
    padding: 0 20px;
    color: #e9e0c9;
    position: relative;
    bottom: 10px;

    bottom: 12px;
    color: #ffffff;
    /*font-weight: bold;*/
}

#copyright:hover, #image-by:hover {
    text-decoration: underline;
    cursor: pointer;
}


#extended-copyright-info {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 50;
    min-width: 200px;
    width: auto;
    /*transform: translate(-50%, -40%);*/
    transform: translate(-50%, 10%);
    left: 50%;
    border-radius: 5px;
    border: 2px solid #a2ccfa;
    padding: 15px 10px;

}

/*.extended-copyright-block{*/
/*    margin-bottom: 5px;*/
/*}*/
#extended-copyright-info .copyright-extended {
    font-size: .7rem;
    color: black !important;
}

#extended-copyright-info .copyright-extended-title {
    font-weight: 700;
}

.copyright-hide {
    display: none;
}

#scroll-showcase #scroll-showcase-forward, #scroll-showcase #scroll-showcase-backward {
    position: absolute;
    z-index: 2;
    width: 100px;
    bottom: 15em;
    width: 50px;
}

#scroll-showcase #scroll-showcase-forward {
    right: 1px;
}

#scroll-showcase #scroll-showcase-backward {
    left: 1px;
}

#scroll-showcase-backward {
    transform: rotate(180deg);
}


#scroll-showcase-forward:hover, #scroll-showcase-backward:hover {
    transform: scale(1.3);
    transition: transform 100ms linear;

}


/* Thumbnail Image Previews */

#preview {
    grid-area: preview;
    position: relative;
    max-height: 90px;

}

/* #preview-images{
    white-space: nowrap;
    width: 93%;
    max-height: 90px;
    margin: auto;
    overflow: hidden;
    border-radius: 5px;

} */
#preview-images {
    white-space: nowrap;
    width: 100%;
    max-height: 90px;
    margin: auto;
    overflow: hidden;

}

#preview-images .plant-photo {
    max-height: 90px;
    height: 86px;
    max-width: 120px;
    box-sizing: border-box;
}

#preview-images .plant-photo {
    width: 90px;
    max-width: 91.15px;
    max-height: 70px;
}

/* preview-images .plant-photos{
    border: 2px solid white;
    box-sizing: border-box;
} */

#preview #scroll-backward {
    position: absolute;
    left: 6px;
    transform: rotate(180deg);
}

#preview #scroll-forward {
    position: absolute;
    right: 6px;
    /* top: 1px; */
    width: 20px;

    /*object-fit: contain;*/

}

#preview #scroll-forward, #preview #scroll-backward {
    background-color: rgba(232, 232, 232, .7);
    padding: 3px;
    height: 18px;
    width: 18px;
    top: 20px;
    border-radius: 5px;
    border: #A2CCFA 1px solid;
    box-shadow: rgba(0, 0, 0, 0.85) 0px 5px 15px;

}

#preview #scroll-forward:hover {
    transform: scale(1.2) !important;
    transition: transform 100ms ease-in !important;
}

#preview #scroll-backward:hover {
    transform: scale(1.2) rotate(180deg) !important;
    transition: transform 100ms ease-in !important;
}

/* MAP FROM MAPBOX */


/*#map {*/
/*    grid-area: map;*/
/*    !* max-height: 610px; *!*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    */
/*}*/
.mapbox-map-container {
    grid-area: map;
    position: relative;
    height: 100%; /* Ensure it stretches */
    width: 100%;
    min-width: 400px;
}

#map {
    height: 100%;
    width: 100%;
}


/*.mapboxgl-ctrl-attrib {*/
/*    display: none;*/
/*}*/

#custom_attribution {
    margin-bottom: 5px;
}

#plant_map_editor #custom_attribution {
    margin-bottom: 0px;
}


.mapboxgl-canvas {
    max-height: 602.5px !important;
}

.mapboxgl-ctrl-attrib-inner {
    padding-bottom: 5px !important;
}

#range-tag-and-help-btn {
    top: 0;
    position: absolute;
    z-index: 5;
    left: 0;
    padding: 5px 5px 0 8px;
    display: flex;
    align-items: center;
}

.activate-design-help-btn {
    height: 17px;
    width: 17px;
    cursor: pointer;
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.7));
)
}

#estimated-range-tag {
    margin: 0;
    padding-right: 10px;
    text-shadow: -1px -1px 3px #fdfdfd, 1px 1px 3px #fdfdfd;
    font-size: 1.05rem;
}


/* Plant info */

#admin-only-edit-block {
    /*position: absolute;*/
    display: flex;
    /*top: -5px;*/
    /*left: 100px;*/
    font-size: 1rem;
}

#admin-only-edit, #admin-only-edit-photos, #admin-only-edit-map, #admin-only-edit-icon {
    z-index: 10;
    font-size: 1rem;
    border-radius: 5px;
    padding: 3px;
    background-color: #A2CCFA;
    margin-right: 18px;
}

.admin-only-edit:hover {
    cursor: pointer;
    text-decoration: underline;
}


#plant-info {
    width: 98%;
    margin: auto;
    position: relative;
    bottom: 3em;
    margin-top: -10px;
}

.info-block {
    padding-bottom: 20px;
}

.info-header {
    margin-bottom: 10px;
    margin-top: 20px;
    padding-bottom: 0;
    font-size: 1.05rem;
}


.info-header #location-addr {
    color: rgb(150, 150, 150)
}


.climate-card {
    border-radius: 8px;
    width: 100%;
    font-size: 16px
}

.summary-mobile {
    display: none;
}

.climate-card-content {
    width: 100%;
    padding: 1em;
    background-color: var(--easyscape-light-blue);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.no-location .climate-card-content {
    display: flex;
    flex-wrap: nowrap;
    box-shadow: none !important;
    background-color: white !important;
}

.enter-location-ctr {
    background-color: var(--easyscape-light-blue);
    border-radius: 15px;
    width: 400px;
    padding: .7em;
    position: relative;
}

.enter-location-ctr label {
    font-size: .85em;
    margin-bottom: 1em;
    font-weight: 400;
}

.enter-location-ctr img {
    height: 25px;
    width: auto;
    right: 0;
    position: absolute;
    z-index: 921;
    border: 1px solid grey;
    border-radius: 50%;
    top: 2px;
    cursor: pointer
}

.enter-location-ctr img:hover {
    border: 1px solid var(--easyscape-blue-main);
}

#geocoder {
    position: relative;
}

.no-location table {
    max-width: 300px;
}

.climate-card h2 {
    color: #0077cc;
    margin-top: 0;
    font-size: 1.25rem;
}

.climate-card h2 span {
    font-weight: normal;
    color: #444;
    font-size: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    padding-bottom: 1em;
}
thead, tr, td, th {
    vertical-align: top !important;         /* align content to top */
    text-align: left !important;            /* align content to the start (left in LTR, right in RTL) */
}


.climate-card th,
.climate-card td {
    font-size: .9em; /* now relative to .climate-card */
}


.climate-header {
    display: flex;
    align-items: center;
    gap: 0.4em;
    margin-top: 5px;
}

.climate-header #location-addr {
    font-size: .8em;
    margin-top: 2px;
}

/*td span {*/
/*    font-size: 1rem;*/
/*}*/

th {
    font-weight: bold;
    color: #444;
}

td {
    vertical-align: top;
    white-space: nowrap;
}

.note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
}


.mapboxgl-ctrl-geocoder--icon-close, .mapboxgl-ctrl-geocoder--icon-loading {
    display: none !important;
}


.mapboxgl-ctrl-geocoder {
    margin-top: .4em
}

.mapboxgl-ctrl-geocoder, .mapboxgl-ctrl-geocoder, .mapboxgl-ctrl-geocoder--input {
    z-index: 90;
    max-width: unset;
    border-radius: 20px !important;
    height: 30px !important;
    background-color: var(--easyscape-light-blue) !important;
    width: 100%;

    outline: none !important;
    box-shadow: none !important;
}

.mapboxgl-ctrl-geocoder--input {
    padding-left: 10px;
    border: 1px solid rgb(180, 180, 180) !important;
}


.mapboxgl-ctrl-geocoder--input {
    width: 100%;
}

.mapboxgl-ctrl-geocoder--icon-search {
    display: none;
}

/*.mapboxgl-ctrl-geocoder--input {*/
/*    border: 2px solid var(--search-border) !important;*/
/*}*/

.mapboxgl-ctrl-geocoder--input:focus {
    border: 2px solid var(--easyscape-blue-main) !important;
}


#summary {
    position: relative;
}

#summary p {
    line-height: 1.6;
}

#summary #info-attribution {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-text {
    font-size: .8rem;
}

#summary-attribution-license {
    font-size: .85rem;
    margin-left: 20px;
    color: #828282;
    cursor: pointer;
}

#summary-attribution-license:hover {
    font-weight: 700;
}

#plant-description ul {
    width: 100%;
}

#growth-requirements ul {
    width: 100%;
}


#plant-info p, #plant-info .info-listing li {
    font-size: .80rem;
}

#plant-info p, #plant-info ul {
    margin-top: 0;
    margin-bottom: 0;
}

#other-names p {
    margin-bottom: 10px;
}

.bold {
    font-weight: 700;
}

.less-bold {
    font-weight: 600;
}


#plant-description-list li:not(:last-child)::after {
    content: "\2022";
    color: #A2CCFA;
    font-size: 30px;
    position: relative;
    vertical-align: middle;
    font-weight: bold;
    display: inline-block;
    padding-left: 8px;
    padding-right: 5px;
}

#growth-requirements-list li:not(:last-child)::after {
    content: "\2022";
    color: #A2CCFA;
    font-size: 30px;
    position: relative;
    vertical-align: middle;
    font-weight: bold;
    display: inline-block;
    padding-left: 8px;
    padding-right: 5px;

}

#plant-info .info-listing li {
    height: 19px;
    display: inline-flex;
    align-items: center;
    position: relative;
}

#plant-info .info-listing li span {
    margin-right: 5px;
}

/*#plant-description-list li:last-child::after {*/
/*    content: "\2022";*/
/*    color: #A2CCFA;*/
/*    opacity: 0;*/
/*    font-size: 30px;*/
/*    position: relative;*/
/*    top: 5px;*/
/*    font-weight: bold;*/
/*    display: inline-block;*/
/*    padding-left: 5px;*/
/*    padding-right: 5px;*/
/*}*/

#plant-description-list.info-listing li {
    /*display: inline;*/
    white-space: nowrap;
}


#plant-description-list {
    position: relative;
    right: 39px;
    line-height: .65;

}


#growth-requirements-list {
    position: relative;
    right: 39px;
}

#growth-requirements-list.info-listing li {
    /*display: inline;*/
    white-space: nowrap;

}

#common-uses {
    position: relative;
}

.info-header {
    color: #A2CCFA;
}

.bottom-border {
    border-bottom: 2px solid #A2CCFA;
}

.edible-caution-flag {
    color: #a2ccfa;
    font-weight: 700;
    cursor: help;
    /*position: relative;*/
}

.edible-caution-disclaimer {
    transform: translateX(-50%);
    left: 50%;
    top: 50px;
}


.activate-design-help-btn {
    right: -5px;
    top: -20px;
    display: block;
    height: 17px;
    width: 17px;
    cursor: pointer;
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.7));
)
}


.main-focus-help-window a {
    text-decoration: underline;
}

.main-focus-help-window a:hover {
    color: #a2ccfa;
    text-decoration-color: #a2ccfa;
}

.main-focus-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    backdrop-filter: blur(4px); /* Apply blur effect */
    z-index: 999; /* Ensure it's above other content */
    display: none; /* Initially hidden */
}


/* MEDIA QUERIES */


@media only screen and (max-width: 1420px) {

    #scroll-showcase #scroll-showcase-forward, #scroll-showcase #scroll-showcase-backward {
        bottom: 13em;
    }

    #map {
        grid-area: map;

    }

    #toggle-category {
        margin-right: 15px;
    }

    .mapbox-map-container #range-tag-and-help-btn img.activate-design-help-btn {
        left: 90%;
    }

}


@media only screen and (max-width: 1295px) {


    #selected-plant {
        left: 5px;
    }

    /*#toggle-category {*/
    /*    right: 1em;*/
    /*}*/
    #scroll-showcase #scroll-showcase-forward, #scroll-showcase #scroll-showcase-backward {
        bottom: 12em;
    }


}


@media only screen and (max-width: 1044px) {
    #desktop-common {
        font-size: 1.3rem;
    }


    #scroll-showcase #scroll-showcase-forward, #scroll-showcase #scroll-showcase-backward {
        bottom: 10em;
    }

    #traverse-location {
        display: none;
    }

    .desktop-add-to {
        display: none;
    }

    .mobile-add-to {
        display: inline;
        font-weight: 700;
        margin-right: 5px;
    }

    .add-plant-btn {
        width: 85px !important;
    }


}

@media only screen and (max-width: 960px) {
    #selected-plant {
        width: 70%;

    }

}

@media only screen and (max-width: 938px) {
    .edible-caution-disclaimer {
        /*transform: translateX(-50%);*/
        /*left: 50%;*/
        float: right;
    }
}


@media only screen and (max-width: 900px) {

    #scroll-showcase #scroll-showcase-forward, #scroll-showcase #scroll-showcase-backward {
        bottom: 9em;
    }

    .summary-mobile {
        display: block;
    }

    .summary-pc {
        display: none;
    }


}

@media only screen and (max-width: 852px) {


    #scroll-showcase #scroll-showcase-forward, #scroll-showcase #scroll-showcase-backward {
        bottom: 8em;
    }
}

@media only screen and (max-width: 825px) {

    #selected-plant #scientific-name {
        font-size: 1rem;
    }

    #common-name {
        font-size: 1.2rem;
        position: relative;

        /* top: 5px; */
    }

    #selected-plant {
        position: relative;
        /* margin-bottom: -20px; */
    }

    #selected-plant img {
        position: relative;
        top: 6px;
    }

    #top-row-main {
        height: auto;
        margin-bottom: 50px;
        position: relative;
        top: 0px;
    }


    /*#toggle-category {*/
    /*    right: 10px;*/
    /*}*/
}

@media only screen and (max-width: 800px) {
    #scroll-showcase #scroll-showcase-forward, #scroll-showcase #scroll-showcase-backward {
        bottom: 7em;
    }


    /* #header button{
        
        top: 35px;
        background-color: #A2CCFA;
        color: #56606b;
        border-radius: 2px;
        border: none;
        padding: 4px 6px;
        cursor: pointer;
    } */
    #scientific-name {

        max-width: 220px;

    }

    #common-name {
        max-width: 230px;
    }
}


@media only screen and (max-width: 742px) {
    #selected-plant h2 {
        font-size: 1.2rem;
    }

}


@media only screen and (max-width: 700px) {

    #plant-and-map-container {

        display: grid;
        grid-template-areas: "image"
                         "preview"
                         "map";
        grid-template-rows: auto 75px 1fr;
        grid-template-columns: 100%;
        position: relative;
        bottom: 3.5em;
        column-gap: 10px;
        row-gap: 0px;
        margin: auto;
        justify-content: center;
        /*overflow: hidden;*/

    }

    #mapbox-copyright {
        bottom: 0;
        line-height: 1.2;
    }

    #scroll-showcase-backward {
        top: 11em;
    }

    #scroll-showcase-forward {
        top: 11em;
    }

    #map {
        min-height: 300px;
    }


    @keyframes dropDown {

        0% {
            opacity: 0
        }
        100% {
            opacity: 1
        }

    }
    .desktop-view-names {
        display: none;
    }

    .mobile-view-names {
        display: inline-block;
    }

    .top-row-main-name {
        display: inline-block;
    }


    #top-row-main {
        display: grid;
        grid-template-areas: 'common toggle'
                         'scientific count';
        grid-template-rows: 40px 20px;
        align-items: center;
        grid-template-columns: 1fr 270px;
        height: min-content;
        width: 100%;
        margin-bottom: 60px;

    }

    #common-name, #scientific-name {
        margin: 0;
        align-self: center;
    }


    /* #selected-plant{
        display: initial;
        position: relative;
        margin-top: 10px;
        height: auto;
        width: 100%;

        top: -10px

    } */
    #common-name {
        grid-area: common;
        /*display: inline-flex;*/
        /*align-items: center;*/
        /* flex-wrap: nowrap; */
        min-width: 100%;
        position: relative;

    }

    #traverse-location-desktop {
        display: none;
    }

    #traverse-location-mobile {
        margin: 0;
        display: inline-block;
        grid-area: count;
        font-size: .75rem;
        text-align: right !important;
        width: auto !important;
        /*right: -10px;*/
        /*transform: translateY(34px);*/
    }

    #scientific-name {
        grid-area: scientific;
        min-width: 90%;
    }


    #toggle-category {
        align-self: center;
        position: relative;
        align-items: center;
        grid-area: toggle;
        display: inline-flex;
        justify-content: space-between;
        top: 0;
        bottom: 0;
        margin: 0;
        right: 0
    }

    #toggle-category #traverse-forward {
        margin-left: -10px !important;
    }


    #add-plant-btn-dsk {
        display: none;
    }

    .add-plant-btn {
        left: auto;
        min-height: 25px !important;
    }


    #add-plant-btn-mbl {
        /*grid-area: add-btn;*/
        display: flex;
        align-self: center;
        justify-content: center;
        width: 85px !important;
        min-width: 85px !important;
        height: 28px !important;
        transform: translateY(-1px);
        margin-right: 10px

    }

    .return-and-count-ctnr {
        margin: 0
    }

    #common-name {
        max-width: 90% !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #scientific-name {
        max-width: 90% !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    /*#toggle-category {*/
    /*    position: absolute;*/
    /*    right: 25px;*/
    /*    left: auto;*/
    /*    align-items: center;*/
    /*}*/
    #toggle-category img {
        margin: 0
    }

    #selected-plant #common-name {
        font-size: 1.5rem;
    }

    #selected-plant #scientific-name {
        position: relative;
        margin-left: 0em;

        left: 1px;
    }

    #common-name {
        position: relative;
        top: 0px;
        /* top: 2em; */
    }


    #selected-plant #scientific-name {
        font-size: 1.1rem;
    }


    #preview-images {
        width: 100%;
        overflow-y: hidden;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        max-height: 90px;
    }

    #preview-images img {
        max-height: 90px;
    }

    #preview-images::-webkit-scrollbar {
        display: none;
    }


    #add-plant-icon {
        display: none;
    }

    #add-plant-icon-mobile {
        display: inline-block;
        width: 38px;
        height: auto;
        padding-right: 10px;
    }


    #toggle-category h3 {
        display: none;
    }


    /* #toggle-category img{
        position: relative;
        bottom: 1em;
    } */
    #scientific-name {
        color: #828282;
    }

    .scroll {
        display: none;
    }

    .parenthesis-toggle {
        display: none;
    }


    #plant-copyright p {
        padding: 0 0 0 5px;
    }

    .nursery-btn-ctr {
        margin: 8px 0 10px;
    }


}

@media only screen and (max-width: 664px) {
    #selected-plant h2 {
        font-size: 1.3rem;
    }

}

@media only screen and (max-width: 657px) {
    .climate-card-content{
        padding: 1em 3px
    }
table{
    font-size: 12px;
}
.note{
    font-size: 12px !important;
}


}


@media only screen and (max-width: 560px) {

    #selected-plant h2 {
        font-size: 1.3rem;
    }

    #scroll-showcase-backward, #scroll-showcase-forward {
        top: 10em;
    }

    #photo-by-tag {
        display: none;
    }


}


@media only screen and (max-width: 510px) {


    #scroll-showcase-backward, #scroll-showcase-forward {
        top: 9em;
    }

    #common-name {
        font-size: 1.2rem;
    }

    #scientific-name {
        font-size: .8rem;
    }

    #top-row-main {
        grid-template-rows: 30px 20px;
        grid-template-columns: 1fr 200px;
    }

    /*#traverse-location{*/
    /*    transform: translateY(26px);*/
    /*}*/
    .paginate-species {
        height: 30px !important;
        width: 30px !important;
    }

    #add-plant-btn-mbl {
        font-size: .7rem !important;
        min-width: 0 !important;
        width: 70px !important
    }

    .return-results-sp-cntr {
        height: 10px;
        width: 10px
    }

    .return-results-sp {
        height: 13px;
        width: 13px;
    }

    #add-plant-btn-mbl {
        height: 10px !important;
    }

    .add-plant-btn {
        min-height: 20px !important;
    }


}

@media only screen and (max-width: 460px) {

    /* #selected-plant{
    padding-top: 4px;
}


#toggle-category{
    position: relative;
    bottom: 60px;
} */
    #scroll-showcase-backward, #scroll-showcase-forward {
        top: 8em;
    }

    /* #top-row-main{
        
        margin-top: 40px;
    } */
    #common-name {

        margin: 0;

    }

    #top-row-main {


    }

    #common-name {
        font-size: 1.1rem;
    }

    #scientific-name {
        font-size: .8rem;
    }

    #top-row-main {
        grid-template-rows: 30px 20px;
    }

    /*#plant-info li{*/
    /*    font-size: 13px !important;*/
    /*}*/


}


@media only screen and (max-width: 427px) {


    /* #selected-plant{
        padding-bottom: 5px;
        padding-top: 11px;
        bottom: 4.5em;
    } */
    /* #scientific-name{
        font-size: 1.1rem; 
    } */
    /* #common-name{
        position: relative;
        top: 38px;
    } */
    /* #selected-plant{
        line-height: 2
        
    } */
    /*#toggle-category .icon {*/
    /*    width: 25px;*/
    /*}*/
    /* #toggle-category #add-plant-icon-mobile{
        width: 30px;
        top: -4px;
    } */
    /* #toggle-category{
        bottom: 3.8em;
    } */
    #scroll-showcase-backward, #scroll-showcase-forward {
        top: 7em;
    }

    #extended-copyright-info .copyright-extended {
        font-size: .6rem;

    }

    #extended-copyright-info .copyright-extended-title {
        font-size: .6rem;
    }

    .edible-caution-disclaimer {
        width: 250px;
    }


}

@media only screen and (max-width: 399px) {

    /* #selected-plant{
        width: 65%;
        padding-bottom: 10px;
        padding-top: 5px;
    } */
    #selected-plant h2 {
        font-size: .9rem;
    }

    /*#top-row-main {*/
    /*    grid-template-columns: 65% 35%;*/
    /*}*/
    #common-name {
        font-size: 1rem;
    }

    #scientific-name {
        font-size: .8rem;
    }


}


@media only screen and (max-width: 367px) {

    #scroll-showcase-backward, #scroll-showcase-forward {
        top: 6em;
    }

    #common-name {
        font-size: .85rem;
    }


    /* #scientific-name{
        position: relative;
        top: 10px;
    }

    #toggle-category{
        
        bottom: 3.6em;
    } */


}

@media only screen and (max-width: 350px) {

    /* #selected-plant{
        width: 63%;
    } */
    /*#top-row-main {*/
    /*    grid-template-columns: 60% 40%;*/
    /*}*/

}

@media only screen and (max-width: 331px) {


}


@media only screen and (max-width: 316px) {

    #scroll-showcase-backward, #scroll-showcase-forward {
        top: 5em;
    }

}

@media only screen and (max-width: 291px) {
    /* #selected-plant{
        width: 60%;
    } */

}

@media only screen and (max-width: 280px) {

    #scroll-showcase-backward, #scroll-showcase-forward {
        top: 4em;
    }


    #scroll-showcase #scroll-showcase-forward {
        bottom: 15em;
        width: 40px;
    }

    #scroll-showcase #scroll-showcase-backward {
        bottom: 15em;
        width: 40px;
    }


    /* #selected-plant{
        margin-bottom: -30px;
    } */


}

