.zipSearch .zipCode-wrapper {
    background: #005cba;
    border-radius: 18px;
    padding: 10px 5px;
    text-align: center;
    margin-top: 60px;
}

.zipSearch .zipCode-wrapper h4 {
    text-align: center;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 10px;
}

.zipSearch .zipCode-wrapper .search-wrapper {
    position: relative;
    text-align: center;
}

.zipSearch .zipCode-wrapper .search-wrapper .searchBar {
    width: 100%;
    max-width: 85%;
    border-radius: 18px;
    border: 0;
    padding-inline: 10px;
    padding-right: 30px;
    min-height: 32px;
    text-align: center;
    font-weight: 700;
    font-family: 'museo-sans-700';
    font-size: 24px;
}

.zipSearch .zipCode-wrapper .search-wrapper .searchBar:focus-visible {
    outline: 0;
    border: 0;
}

.zipSearch .zipCode-wrapper .search-wrapper img {
    width: 18px;
    height: 18px;
    position: absolute;
    right: 11%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.zipSearch .zipCode-wrapper .searchBtn {
    background: #00aa71;
    border: 0;
    color: #fff;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: inline-block;
    margin-block: 20px;
    padding: 4px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
}
.zipSearch .choices-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zipSearch .choices-box .box-heading {
    font-size: 36px;
    text-transform: capitalize;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'museo-sans-700';
}

.zipSearch .choices-box .open-box {
    width: 100%;
    max-width: 230px;
    background: #00aa71;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 145px;
    border-radius: 14px;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

.zipSearch  .quoteBtn {
    background: #0780e2;
    border: 0;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    padding: 4px 10px;
    font-weight: 700;
}

.zipSearch {
    position: relative;
    min-height: 100vh;
}

.zipSearch:before {
    content: "";
    background: url('/wp-content/themes/defaultTheme/zipcodes/assets/images/map.png');
    background-repeat: no-repeat;
    background-position: center 0%;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
}

#zipcode-status,#quote-now {
    display: none;
}

.zipSearch .choices-box p {
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.zipSearch .quoteBtn br {
    display: none;
}

.zipSearch .zipcode-error p {
    text-align: center;
    padding: 0;
    font-size: 20px;
    margin-top: 50px;
}

.zipSearch #loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
}

.zipSearch #loader img {
    width: 100px;
    height: 100px;
}

.zipSearch #loader.show {
    display: flex;
}

.zipSearch .zipCode-wrapper p {
    padding: 0;
    line-height: normal;
}

.zipSearch .county-map-image img {
    width: 100%;
    object-fit: contain;
}

.zipSearch .status-btn {
    text-align: center;
    margin-bottom: 15px;
}

.zipSearch .status-btn a {
    background: #00aa71;
    border: 0;
    color: #000;
    max-width: none;
    margin: 0 auto;
    display: inline-block;
    padding: 2px 25px;
    font-size: 30px;
    font-weight: 900;
    cursor: pointer;
    border-radius: 30px;
    text-align: center;
    font-family: 'museo-sans-700';
    text-transform: uppercase;
}

.county-name h2{
    text-align: center;
    margin-bottom: 15px;
}

.remove-map::before {
    background: none;
}

#verbiage-msg {
    display: none;
}

#verbiage-msg p {
    color: #005cba;
}

.status-btn.popen-color a{
    background-color: #f99c00;
}

.status-btn.pclosed-color a{
    background-color: #ef4b54;
}


@media (max-width:991px){
    .zipSearch .choices-box .open-box {
        max-width: 150px;
        min-height: 120px;
        font-size: 20px;
    }
    
    .zipSearch .choices-box .box-heading {
        font-size: 26px;
    }

    .zipSearch .zipCode-wrapper .search-wrapper {
        margin-top: 20px;
    }

    .zipSearch .zipCode-wrapper .searchBtn {
        max-width: 160px;
        font-size: 18px;
    }
    .zipSearch:before {
        background-size: cover;
    }
    .zipSearch{
        min-height: auto;
    }
}