﻿body {
    font-family: "Fira Sans", sans-serif;
}
.results-container, .results-container * {
    font-family: 'Fira Sans', sans-serif !important;
}

.intro1Row {
    background-image: url('../../media/welcome_image.png');
}
.introContainer {
    position:unset ;
}
.introLabelContainer {
    position: absolute;
    left: 5%;
    top: 10%;
}
.introBtnContainer {
    position: absolute;
    left: 5%;
    bottom: 20%;
}
.zipSearchRow {
    background-color: #008555;
}

#btnActivateCategories {
    background: #d64227;
}

.button-primary-outline {
    background: #d64227;
    border-color: #d64227;
}

.helpCol {
    background-color: #f0f0e6;
}

.categoriesRow {
    background-color: #f0f0e6;
}

.resultsCatimgContainer {
    color: #008555;
}

.catimg {
    color: #008555;
}
.flexContainer {
    grid-template-columns: repeat(7, 1fr);
}

.modal-content {
    background-color: #f0f0e6;
}

.btn-default {
    background: #d64227;
    color: white;
}

    .btn-default:focus {
        background: #d64227;
        color: white;
    }

.button-primary {
    background: #d64227;
}

    .button-primary:hover {
        background: #d64227;
        border: 2px solid #d64227;
    }

.sticky-container {
    background: #008555;
}

.sticky-icon {
    background: #008555;
}

.modal-body-terms::-webkit-scrollbar {
    width: 10px;
}

.modal-body-terms::-webkit-scrollbar-track {
    background: #f0f0e6; /* Background color */
    border-radius: 10px;
}

.searchResultsRow {
    background: #f0f0e6;
}

.modal-body-terms::-webkit-scrollbar-thumb {
    background: gray; /* Orange thumb */
    border-radius: 10px;
}


@media (max-width: 576px) {
    .intro1Row {
        background-image: url('../../media/welcomeimagemobile.png');
        height: 35vh;
    }


    .introLabelContainer {
        position: absolute;
        left: 5%;
        top: 4%;
    }

    .introBtnContainer {
        bottom: 10%;
    }
       
}

#feedbackContainer {
    position: relative;
    overflow: visible;
}

.feedback-popup {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    opacity: 1;
    transition: all 0.25s ease;
}

    .feedback-popup.hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%) translateY(10px);
    }

.feedback-popup-content {
    position: relative;
    width: 300px;
    background: white;
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.22), 0 3px 10px rgba(0,0,0,0.12);
    text-align: center;
}

.feedback-popup-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.feedback-popup-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.feedback-popup-arrow {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid white;
}

.feedback-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .feedback-popup-close:hover {
        color: #111;
        transform: scale(1.1);
    }

.feedback-wrapper {
    position: relative;
    overflow: visible;
}

@media (max-width: 576px) {
    .feedback-popup {
        left: 100%;
        transform: translateX(-40%);
    }

    .feedback-popup-content {
        width: 200px;
    }

    .feedback-popup-arrow {
        left: 20%;
    }
}