body {
    padding: 0 !important;
    min-height: 100%;
    height: 100%;
    color: #212529;
    font-family: Roboto, sans-serif;
}

a {
    color: #003476;
    text-decoration-line: underline;
}

a:hover {
    color: #046EC5;
}

input::placeholder {
    font-size: 16px;
    font-family: Roboto, sans-serif !important;
    font-weight: 400;
    color: #9C9C9C !important;
    opacity: 1 !important;
}

.navbar-container {
    margin-bottom: 5px;
}

.navbar {
    padding: .5rem 0;
}

.nav-btn-login {
    padding: 12px 50px;
    border-radius: 5px;
    height: auto;
    font-size: 18px;
    background-color: #3E70C4;
    white-space: nowrap;
}

.nav-btn-login .z-icon-user::before {
    content: url(../image/navbar-user.svg);
    position: relative;
    bottom: -3px;
}

.page-wrap {
    width: 100% !important;
    margin: 0 auto;
    overflow-x: hidden;
    padding: 0 15px !important;
}

@media (min-width: 768px) {
    .page-wrap {
        width: 85% !important;
        margin: 0 auto;
        overflow-x: hidden;
    }
}

@media (min-width: 1000px) {
    .page-wrap {
        width: 88% !important;
        margin: 0 auto;
        overflow-x: hidden;
    }
}

@media (min-width: 1450px) {
    .page-wrap {
        width: 83% !important;
        margin: 0 auto;
        overflow-x: hidden;
    }
}

@media (min-width: 1600px) {
    .page-wrap {
        width: 72% !important;
        margin: 0 auto;
        overflow-x: hidden;
    }
}

.page-wrap-no-overflow {
    overflow-x: unset !important;
}

/* || BREAD CRUMB STYLES */
.bread-crumb {
    width: 100%;
    min-height: 50px;
    max-height: 50px;
    background: #eeeeee;
    display: flex;
}

.bread-crumb-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: calc(94px);
    z-index: 1018;
}

.bread-crumb > div {
    display: flex;
}

.bread-crumb-content {
    margin: auto 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bread-crumb-content > a {
    text-decoration: none;
    color: #046EC5 !important;
}

.bread-crumb-item {
    font-weight: 600;
}

.bread-crumb-separator {
    font-size: 17px;
    font-weight: 600;
    font-family: Roboto, sans-serif;
    color: #003476 !important;
    margin-right: 6px;
    margin-left: 6px;
}

/* || HERO SECTION STYLES */

.hero-img-container {
    background-image: url(../image/hero-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.hero-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 33px 15px;
    gap: 36px;
    background: #00347678;
}

.hero-btn-container > button {
    padding: 12px 45px;
    font-size: 21px;
}

.hero-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 15px;
}

.hero-title-container > span {
    color: white;
    font-weight: bold;
    font-size: 42px;
    text-shadow: 0 3px 6px #00000029;
}

/* || FILTER STYLES */

.hero-filter-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
}

.hero-filter-container {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
    flex-grow: 1;
}

.hero-filter {
    flex: 1;
    min-width: 127px;
}

.hero-filter-lg {
    flex: 2;
    min-width: 215px;
}

.hero-filter-label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #5A5A5A;
    padding-bottom: 14px;
}

.hero-filter-icon::before {
    height: 20px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    bottom: -4px;
}

.hero-filter-icon-location::before {
    content: url(../image/pet-filter-location.svg);
}

.hero-filter-icon-kind::before {
    content: url(../image/pet-filter-kind.svg);
}

.hero-filter-icon-race::before {
    content: url(../image/pet-filter-race.svg);
}

.hero-filter-icon-gender::before {
    content: url(../image/pet-filter-gender.svg);
}

.hero-btn-search {
    padding: 12px 55px;
    height: auto;
    background-color: #3E70C4;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
}

/* || RECENT LOSSES SECTION STYLES */

.recent-losses-container {
    margin-top: 78px;
    margin-bottom: 140px;
}

.recent-losses-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 53px 0;
}

.recent-losses-title-container > .z-label {
    font-weight: 600;
    font-size: 26px;
}

.emzs-carousel-container {
    display: flex;
    align-items: center;
}

.emzs-carousel {
    white-space: normal !important;
}

.emzs-carousel-control {
    width: auto;
    opacity: 1;
    background: transparent;
    border: none;
}

.emzs-carousel-control[disabled] {
    opacity: 0.5;
    cursor: default;
}

.emzs-carousel-control-prev::before {
    content: url(../image/carousel-chevron-left.svg);
    width: 23px;
    height: 38px;
    display: block;
    -webkit-transition: .2s all;
    margin-right: 15px;
}

.emzs-carousel-control-next::before {
    content: url(../image/carousel-chevron-right.svg);
    width: 23px;
    height: 38px;
    display: block;
    -webkit-transition: .2s all;
    margin-left: 15px;
}

.emzs-carousel-control-prev:hover::before,
.emzs-carousel-control-next:hover::before {
    filter: brightness(80%);
}

/* || ANIMAL CARD STYLES */

.animal-card-top {
    background-color: #003476;
    height: 5px;
    display: block;
}

.animal-card {
    border-radius: 0;
    border: none;
    box-shadow: 0 2px 6px #0000002e;
    margin: 0 4px 10px 4px;
    cursor: pointer;
    -webkit-transition: .2s all;
}

.animal-card-no-shadow {
    box-shadow: none;
    margin: 0;
    max-width: 280px;
}

.animal-card:hover {
    filter: brightness(99%);
    box-shadow: 0 4px 12px #00000036;
}

.animal-card-no-hover-shadow:hover {
    filter: brightness(97%);
    box-shadow: 0 2px 6px #0000002e;
}

.img-fade-in {
    animation: fadeIn ease 1200ms;
    -webkit-animation: fadeIn ease 1200ms;
    -moz-animation: fadeIn ease 1200ms;
    -o-animation: fadeIn ease 1200ms;
    -ms-animation: fadeIn ease 1200ms;
}
@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

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

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

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

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

.animal-card-img {
    display: block;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    border-right: 1px solid #CACACA;
    border-left: 1px solid #CACACA;
}

.animal-card-title-container {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 23px;
}

.animal-card-no-shadow .animal-card-title-container {
    margin-bottom: 5px;
}

.animal-card-title {
    color: #5A5A5A;
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-title-icon::before {
    height: 24px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    bottom: -4px;
}

.card-title-name::before {
    content: url(../image/pet-name-tag.svg);
}

.card-title-loc::before {
    content: url(../image/pet-location-pin.svg);
}

.card-body {
    padding: 15px;
    border-right: 1px solid #CACACA;
    border-left: 1px solid #CACACA;
    border-bottom: 1px solid #CACACA;
}

.animal-card-foot-text {
    color: #929292;
    font-size: 11px;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.animal-badge-container {
    position: absolute;
    width: 0;
    height: 0;
}

.animal-badge {
    position: relative;
    width: fit-content;
    bottom: -13px;
    right: -13px;
    font-size: 11px;
    padding: 6px 15px 7px 15px;
    border-radius: 27px;
}

.animal-badge-lost {
    background-color: #FF9100;
    color: white;
}

.animal-badge-new {
    background-color: #1688EA;
    color: white;
}

/* || SEARCH PAGE STYLES */

.search-navbar-container {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.search-filter-top-container {
    position: -webkit-sticky;
    position: sticky;
    top: calc(94px + 50px);
    z-index: 1019;
    background: white;
    padding-top: 38px;
    min-height: 256px;
}

.search-filter-title {
    display: block;
    margin-bottom: 33px;

    font-size: 36px;
    font-weight: bold;
}

.search-filter-container {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.search-components-container {
    display: flex;
    gap: 15px;
}

.search-components-container > .z-combobox {
    max-width: 177px;
}

.search-filter-container .z-combobox-input,
.search-filter-container .z-combobox-button {
    border: 1px solid #9B9B9B;
}

.search-filter-container .z-combobox-button {
    border-left: none;
}

.search-filter-container .z-combobox-input::placeholder {
    color: #5D5B5B !important;
}

.view-mode-group {
    width: fit-content;
    margin-left: auto;
    padding: 6px;
    border-radius: 7px;
    background: #E8E8E8;
}

.view-mode-group > .btn {
    padding: 11px 56px 11px 0;
    color: #4F4F4F;
    font-weight: bold;
    background-color: transparent;
    border-color: transparent;
    border-radius: 5px;
}

.view-mode-group > .btn.active {
    background-color: white;
}

.view-mode-group.btn-group > *,
.view-mode-group.z-inputgroup > * {
    border-radius: 5px !important;
}

.search-race-field {
    max-width: 247px;
}

.icon-filter-map::before {
    content: url(../image/filter-map.svg);
    position: relative;
    top: 3px;
    margin-right: 15px;
    margin-left: 23px;
}

.icon-filter-grid::before {
    content: url(../image/filter-grid.svg);
    position: relative;
    top: 1px;
    margin-right: 15px;
    margin-left: 23px;
}

.search-separator {
    background: #707070;
    height: 1px;
    width: 100%;
    margin-top: 10px
}

.search-main-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    gap: 50px;
}

.search-results-container {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.search-map-container {
    display: flex;
    flex: 1;
    height: calc(100vh - 94px - 50px - 256px);
    position: sticky;
    top: calc(50px + 94px + 256px);
}

.search-results-title-container {
    margin-top: 34px;
    margin-bottom: 26px;
}

.search-results-label {
    font-size: 28px;
    font-weight: bold;
    margin-right: 3px;
}

.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px 20px;
}

.search-paging-container {
    margin-bottom: 8px;
}

.search-paging {
    background: transparent;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    width: fit-content;
}

.search-paging .z-paging-input {
    border-top: none;
    border-bottom: none;
    border-right: none;
    border-left: none;
    border-radius: 0;

    height: 19px;
    margin-top: 9px;

    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1688EA;
}

.search-paging .z-paging-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.search-paging .z-paging-button:hover {
    background-color: transparent;
    color: #046EC5;
}

.search-paging .z-paging-button[disabled]:hover {
    background-color: transparent;
    color: rgba(0,0,0,0.34);
}

.search-paging .z-paging-button:focus {
    outline: none;
}

.search-map-container > .z-gmaps {
    width: 100%;
    flex-grow: 1;
}

.gm-style .gm-style-iw-c {
    padding: 0;
    border-radius: 0;
}

.gm-style-iw-d {
    overflow: hidden !important;
}

@media (max-width: 1194px) {
    .search-filter-container {
        gap: 33px;
    }

    .view-mode-group {
        margin-left: 0;
    }

    .search-race-field {
        max-width: initial;
    }

    .search-main-container {
        display: block;
    }

    .search-map-container {
        min-height: 300px;
        height: 300px;
        position: initial;
    }
}

@media (max-width: 468px) {
    .view-mode-group {
        width: 100%;
    }
}

@media (max-width: 386px) {
    .view-mode-group {
        overflow: hidden;
    }

    .view-mode-group > .btn {
        padding: 11px 56px;
    }

    .icon-filter-map::before,
    .icon-filter-grid::before {
        margin-left: 15px;
    }
}

/* || DETAILS PAGE STYLES */
.details-not-found-container {
    margin-top: 100px;
    text-align: center;
}

.details-not-found-container > span {
    width: 100%;
    display: block;
}

.not-found-code {
    font-size: 80px;
    font-weight: bold;
}

.not-found-title {
    font-size: 28px;
    font-weight: 600;
}

.details-top-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
    gap: 52px;
}

.details-img-container {
    border: 1px solid #CBCBCB;
    border-radius: 10px;
    padding: 24px;
    height: fit-content;
}

.details-img {
    display: block;
    height: 344px;
    width: 344px;
    border-radius: 8px;
    object-fit: cover;
}

.details-icons-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 24px;
}

.details-icon {
    max-height: 52px;
}

.not-found-cat-icon {
    content: url(../image/icons8-black-cat-50.png);
}

.details-icon-dog {
    content: url(../image/pet-detail-dog.svg);
}

.details-icon-cat {
    content: url(../image/pet-detail-cat.svg);
}

.details-icon-male {
    content: url(../image/pet-detail-male.svg);
}

.details-icon-female {
    content: url(../image/pet-detail-female.svg);
}

.details-icon-vaccinated {
    content: url(../image/pet-detail-vaccinated.svg);
}

.details-icon-unvaccinated {
    content: url(../image/pet-detail-unvaccinated.svg);
}

.details-icon-not-stray {
    content: url(../image/pet-detail-not-stray.svg);
}

.details-icon-stray {
    content: url(../image/pet-detail-stray.svg);
}

.details-form-container {
    flex: 1;
    padding-top: 24px;
}

.details-form-container .z-textbox {
    height: 55px;
    text-transform: none !important;
    padding: 0 12px;
}

.details-map-container {
    margin-top: 72px;
}

@media (max-width: 958px) {
    .details-top-container {
        flex-direction: column;
    }

    .details-img-container {
        width: 100%;
    }

    .details-img {
        width: 100%;
    }
}

/* || COMPONENT STYLES */

/* Tabbox */
.main-tabs.z-tabbox {
    border: none;
    background: transparent;
    padding: 0 4px 6px 4px;
}

.main-tabs .z-tabs {
    background: transparent;
}

.main-tabs .z-tabs-content {
    border-bottom: 10px solid #003476;
}

.main-tabs .z-tab {
    font-family: Roboto, sans-serif;
    flex-grow: 0;
    padding: 12px 70px 8px 70px;
    border-bottom: none;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.main-tabs .z-tab-selected {
    background: #003476;
}

.main-tabs .z-tab-selected .z-tab-text {
    color: #FFFFFF;
}

.main-tabs .z-tab-text {
    font-size: 14px;
    font-weight: bold;
}

.main-tabs .z-tabbox-icon {
    padding: 20px 8px;
}

.main-tabs .z-tabpanels {
    background: white;
    box-shadow: 0 2px 4px #00000038;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.main-tabs .z-tabpanel {
    padding: 15px 25px;
}

.z-textbox {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    text-transform: none !important;
}

.z-bandbox-input {
    height: 45px;
    border-radius: 4px;
    border: none;
    color: black;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding-left: 14px;
}

.z-bandbox-input {
    font-family: Roboto, sans-serif;
    font-weight: 400;
}

.z-bandbox-button {
    height: 39px;
    border-radius: 4px;
    border: none;
    margin: 3px;
    color: white;
    background: #003476;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.z-bandbox-input:focus {
    border: none;
}

.z-bandbox-input:focus + .z-bandbox-button {
    border: none;
}

.z-bandbox-button:hover,
.z-bandbox-button:active,
.z-bandbox-button:visited,
.z-bandbox-button:focus {
    background-color: #01245b !important;
    border: none;
    color: white;
}

.z-bandbox-icon {
    padding-top: 2px;
}

.z-label,
.z-radio-content,
.z-checkbox-content,
.z-loading {
    font-family: Roboto, sans-serif !important;
}

.z-textbox,
.z-decimalbox,
.z-intbox,
.z-longbox,
.z-doublebox {
    font-family: Roboto, sans-serif !important;
    color: #212529;
    height: 40px;
}

.z-textbox:focus,
.z-decimalbox:focus,
.z-intbox:focus,
.z-longbox:focus,
.z-doublebox:focus,
.z-combobox-input:focus {
    border-color: #046EC5;
}

.z-combobox {
    width: 100%;
    height: 40px;
}

.z-combobox-input {
    border-radius: 5px;
    height: 40px !important;
    font-family: Roboto, sans-serif !important;
    color: #212529;
    font-weight: 400;
}

.z-combobox-button {
    height: 40px !important;
    border-radius: 0 5px 5px 0;
    color: #8a8a8a;
}

.z-combobox-icon {
    padding-top: 2px;
}

.z-icon-caret-down::before {
    content: "\f107";
    color: #B0B0B0;
}

.z-combobox-popup {
    border-radius: 5px;
}

.btn {
    font-family: Roboto, sans-serif !important;
}

.z-combobox-button:hover {
    border-color: #A8A8A8;
    background: white;
}

.z-combobox-input:focus + .z-combobox-button {
    border-left: 1px solid #046EC5;
}
.z-combobox-open .z-combobox-button,
.z-bandbox-open .z-bandbox-button,
.z-datebox-open .z-datebox-button {
    border-color: #046EC5;
}

.z-combobox-popup, .z-bandbox-popup, .z-datebox-popup, .z-timebox-popup {
    color: #212529;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid #046EC5;
}

.z-combobox-open .z-combobox-button, .z-datebox-open .z-datebox-button {
    border-color: #046EC5;
}

.btn.focus,
.btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn-primary.focus,
.btn-primary:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn-outline-light.focus,
.btn-outline-light:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.search-combobox.z-combobox {
    width: 100%;
    height: 45px;
    border: none;
    max-width: calc(863px - 49px);
}

.search-combobox.z-combobox .z-combobox-input {
    background-color: #EEEEEE;
    padding-left: 14px;
    height: 45px !important;

    border-top: 1px solid #9E9E9E;
    border-right: none;
    border-bottom: 1px solid #9E9E9E;
    border-left: 1px solid #9E9E9E;

    border-radius: 4px 0 0 4px;
}

.search-combobox.z-combobox .z-combobox-input:hover,
.search-combobox.z-combobox .z-combobox-input:active,
.search-combobox.z-combobox .z-combobox-input:visited,
.search-combobox.z-combobox .z-combobox-input:focus {
    background-color: #EEEEEE;
}

.search-combobox.z-combobox .z-combobox-button {
    background: none;
    color: #046EC5;
    border: none !important;
}

.search-combobox.z-combobox .z-combobox-button:hover,
.search-combobox.z-combobox .z-combobox-button:active,
.search-combobox.z-combobox .z-combobox-button:visited,
.search-combobox.z-combobox .z-combobox-button:focus {
    background: none !important;
    color: #2258a7 !important;
    border: none !important;
}

.search-combobox.z-combobox .z-icon-caret-down::before {
    content: "\f002" !important;
    color: #2258a7 !important;
}

.search-combobox.z-combobox .z-combobox-input::placeholder {
    font-weight: 400;
    color: #616161 !important;
}

.search-btn,
.search-btn:hover,
.search-btn:active,
.search-btn:visited,
.search-btn:focus {
    background-color: #EEEEEE;
    box-shadow: none !important;
    color: #046EC5;
    font-size: 22px;
    height: 45px;
    padding-right: 14px;

    border-top: 1px solid #9E9E9E;
    border-right: 1px solid #9E9E9E;
    border-bottom: 1px solid #9E9E9E;
    border-left: none;

    border-radius: 0 4px 4px 0;
    outline: none;
}


.search-bandbox.z-bandbox {
    width: 100%;
    height: 45px;
    border: none;
    max-width: 863px;
}

.search-bandbox.z-bandbox .z-bandbox-input {
    background-color: #EEEEEE;
    border: 1px solid #9E9E9E;
}

.search-bandbox.z-bandbox .z-bandbox-button {
    background: none;
    color: #046EC5;
}

.search-bandbox.z-bandbox .z-bandbox-button:hover,
.search-bandbox.z-bandbox .z-bandbox-button:active,
.search-bandbox.z-bandbox .z-bandbox-button:visited,
.search-bandbox.z-bandbox .z-bandbox-button:focus {
    background: none !important;
    color: #2258a7 !important;
    border: none !important;
}

.search-bandbox.z-bandbox .z-bandbox-input::placeholder {
    font-weight: 400;
    color: #616161 !important;
}