/* ----------------------------------------------------
	General Styling
------------------------------------------------------- */

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: "lato", Arial, sans-serif;
    font-weight: 100;
    color: #1A1919;
}

#main {
    margin-top: 100px;
}

a {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    text-decoration: none;
    /*color: #ffffff;*/
    cursor: pointer;
}

a:hover, a:focus {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'bebas-neue', sans-serif;
    font-weight: 100;
    color: #1A1919;
}

h1.primary, h2.primary, h3.primary, h4.primary, h5.primary, h6.primary {
    background-color: #00BC70;
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    margin: 0px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1.secondary, h2.secondary, h3.secondary, h4.secondary, h5.secondary, h6.secondary {
    background-color: #D8454E;
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1.tertiary, h2.tertiary, h3.tertiary, h4.tertiary, h5.tertiary, h6.tertiary {
    font-family: lato;
    font-weight: 400;
}

h1.green, h2.green, h3.green, h4.green, h5.green, h6.green {
    color: #00BC70;
}

h1.red, h2.red, h3.red, h4.red, h5.red, h6.red {
    color: #D8454E;
}

h1.blue, h2.blue, h3.blue, h4.blue, h5.blue, h6.blue {
    color: #00A7E1;
}

/*--- Force images inside frame ---*/
img {
  max-width: 100%;
  /*display: block;*/
}

p {
    font-family: "lato", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 100;
    color: #1A1919;
}

i {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    color: #1A1919;
}

a i:hover {
    color: #00BC70 !important;
}

section {
    /*margin-top: 40px;*/
}

.scrollable-menu {
    height: auto;
    max-height: 300px;
    overflow-x: hidden;
}

.tooltip {
    font-family: lato, Arial;
}

.tooltip-inner {
    background-color: #00A7E1;
    color: #fff;;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #00A7E1 !important;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #00A7E1 !important;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #00A7E1 !important;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #00A7E1 !important;
}

.tooltip.show {
    opacity: 1 !important;
}

.hr__green {
    border: 2px solid #00BC70;
}

/* ------- Buttons ------- */

.btn {
    font-family: "lato", Arial, sans-serif;
    text-transform: uppercase;
    border-radius: 0;
}

.btn-small {
    font-size: 0.7rem;
    padding: .1rem .25rem;
}

.btn-green {
    background-color: #00BC70;
    border-color: #00BC70;
    color: #fff!important;
}

.btn-green i, btn-red i {
    color: #fff;
}

.btn-green:hover {
    background-color: #5cb85c;
    border-color: #5cb85c;
    color: #ffffff;
}

.btn-red {
    color: #fff;
    background-color: #D8454E;
    border-color: #D8454E;
}

.btn-red:hover {
    background-color: #df6a71;
    border-color: #df6a71;
}

.btn-neutral {
    background-color: transparent;
    color: #1A1919;
    border-color: #1A1919;
    border-radius: 0;
}

.btn-neutral:hover {
    background-color: #00BC70;
    color: #fff !important;
    border-color: #00BC70;
}

.btn.btn-neutral.active {
    background-color: #00BC70;
    color: #fff;
    border-color: #00BC70;
}

.btn.btn-neutral.active i, .btn.btn-neutral:hover i {
    color: #fff;
}

.btn-bold {
    background-color: #00A7E1;
    border-color: #00A7E1;
    color: #fff;
    border-radius: 0;
}

.btn-bold:hover {
    background-color: #09517C;
    border-color: #09517C;
}

.btn-filter {
    padding: 0;
    background-color: transparent;
    border: none;
    color: #fff;
    text-transform: none;
    margin: 0;
}

.btn-dropdown {
    background-color: #fff;
    color: #1A1919;
    border-color: #e5e5e5;
}

.btn-dropdown:hover {
    background-color: #D8454E;
    color: #fff;
    border-color: #D8454E;
}

.btn-soft {
    background-color: transparent;
    color: #6D6E6D;
    border-color: #e5e5e5;
    border-radius: 5px;
}

.btn-soft:hover {
    background-color: #e5e5e5;
    color: #6D6E6D;
    /*border-color: #e5e5e5;*/
}

.btn.btn-soft.active {
    background-color: #e5e5e5;
    color: #6D6E6D;
    /*border-color: #e5e5e5;*/
}

.btn-blue {
    background-color: #09517C;
    border-color: #09517C;
    color: #fff !important;
}

.btn-blue i {
    color: #fff;
}

.btn-blue-light {
    background-color: #00A7E1;
    border-color: #00A7E1;
    color: #fff !important;
}

/* -------------------- */

.img-title {
    line-height: 1.1;
}

.img-title {
    display: inline;
    background: #fff;
    line-height: 1.3;
    box-shadow: 10px 0 0 #fff, -10px 0 0 #fff;
}

.bg-dark {
    background-color: #f2f2f2;
}

.no-padding {
    padding: 0;
}

.padding-top {
    padding-top: 70px;
}

.text-center {
    text-align: center;
}

.link-decorate h4:hover {
    text-decoration: underline;
}

.sm-hide {
    display: none;
}

@media (min-width: 992px) {
    .sm-hide {
        display: inline;
    }
}

.form-control {
    border-radius: 0;
}

.form-control::-moz-placeholder {
    color: #999;
    font-size: 0.8rem;
}

.form-control:-ms-input-placeholder {
    color: #999;
    font-size: 0.8rem;
}

.form-control::-webkit-input-placeholder {
    color: #999;
    font-size: 0.8rem;
}

.dropdown-menu {
    max-height: 300px;
    overflow: scroll;
}

.bg-gray {
    background-color: #e5e5e5;
}

.invalid {
    border-color: #D8454E !important;
}

/* ----------------------------------------------------
	Home: Navbar
------------------------------------------------------- */

#mainNav {
    background-color: #fff;
}

#mainNav .navbar-nav .nav-item .nav-link {
    font-size: 0.9rem;
    padding: 0.75em 0;
    color: #1A1919;
    font-family: 'bebas-neue', Arial, sans-serif;
}

#mainNav .dropdown-item {
    font-family: 'bebas-neue', Arial, sans-serif;
}

#mainNav .dropdown-menu {
    border: none;
    overflow: hidden;
}

@media (min-width: 992px) {
    #mainNav {
        border: none;
        background-color: transparent;
        padding: .2rem 4rem;
    }

    /*#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link {*/
    /*color: #00BC70;*/
    /*}*/
    /*#mainNav .navbar-nav .nav-item .nav-link {*/
    /*color: #00BC70;*/
    /*}*/
    #mainNav .navbar-nav .nav-item .nav-link {
        color: #fff;
        padding: 1.1em 1em !important;
    }

    #mainNav.navbar-shrink {
        padding-top: 0;
        padding-bottom: 0;
        background-color: #fff;
        border-bottom: 1px solid #e5e5e5;
    }

    #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link {
        color: #1A1919;
    }

    .nav-item {
        text-align: center;
    }

    #mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover {
        color: #00BC70 !important;
    }

    #mainNav .dropdown-menu {
        background-color: rgba(0,0,20,0.7);
    }

    #mainNav .dropdown-item {
        color: #fff;
    }

    #mainNav .dropdown-item:hover {
        color: #00BC70 !important;
        background-color: transparent !important;
    }
}

@media (min-width: 1080px) {
    #mainNav .navbar-nav .nav-item .nav-link {
        font-size: 1.1rem;
    }

    #mainNav .dropdown-item {
        font-size: 1.1rem !important;
    }
}

/* ----------------------------------------------------
	Home: Header
------------------------------------------------------- */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: -moz-linear-gradient(top, rgba(26, 25, 25, 1) 0%, rgba(153, 153, 153, 0.2) 20%);
    background: -webkit-linear-gradient(top, rgba(26, 25, 25, 1) 0%, rgba(153, 153, 153, 0.2) 20%);
    background: -o-linear-gradient(top, rgba(26, 25, 25, 1) 0%, rgba(153, 153, 153, 0.2) 20%);
    background: -ms-linear-gradient(top, rgba(26, 25, 25, 1) 0%, rgba(153, 153, 153, 0.2) 20%);
    background: linear-gradient(to bottom, rgba(26, 25, 25, 1) 0%, rgba(153, 153, 153, 0.2) 20%);
}

header {
    position: relative;
    width: 100%;
    min-height: auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-position: center;
    background-image: url('/images/new/Stillness_SPD246558.jpg');
    text-align: center;
    color: white;
    min-height: 50%;
}

header .header-content {
    z-index: 20;
    position: absolute;
    text-align: center;
    padding: 0 10px;
    width: 100%;
    top: 40%;
}

header h1, header h2, header h3, header h4, header h5, header h6, header p {
    color: #ffffff;
}

header .header-content .input-group {
    padding-bottom: 10px;
    border-radius: 0;
}

.form-control:focus {
    border-color: #00BC70;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(92, 184, 92, 0.6);
}

.header-search-form {
    text-align: left;
    background-color: rgba(0, 188, 112, 0.85);
    padding: 16px 10px;
}

.header-search-form h3 {
    font-family: "lato", Arial, sans-serif;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.filter-option {
    /*font-size: 1.2rem;*/
    color: #fff;
    display: inline-block;
    padding: 0 5px;
}

.filter-option i {
    color: #fff;
    padding: 0 2px;
}

.header-bottom {
    background-color: #e5e5e5;
}

.header-bottom p {
    font-size: 1rem;
}

/* .header-bottom img {
    width: 100px;
} */

header .nav-tabs {
    border-bottom: none;
}

header .nav-tabs .nav-item {
    margin-bottom: 0px !important;
}

header .nav-tabs .nav-link.active, header .nav-tabs .nav-link.active:hover {
    background-color: rgba(0, 188, 112, 0.85);
    border: 1px solid transparent;
    color: #fff;
}

header .nav-tabs .nav-link {
    background-color: rgba(26, 25, 25, 0.6);
    color: #fff;
}

header .nav-tabs .nav-link:hover {
    border-color: transparent;
    background-color: rgba(26, 25, 25, 0.75);
}

header .btn {
    text-transform: none;
}

@media (min-width: 992px) {
    header {
        min-height: 70%;
    }

    header .header-content {
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        padding: 0 50px;
        top: 55%;
    }

    header .header-content .header-content-inner {
        margin-left: auto;
        margin-right: auto;
    }

    .header-search-form {
        padding: 26px 20px;
    }

    .header-search-form h3 {
        font-size: 1.9rem;
    }

    .header-bottom p {
        font-size: 1.3rem;
    }

    /* .header-bottom img {
        width: 200px;
    } */
}

/* ----------------------------------------------------
	Home - Body
------------------------------------------------------- */

.tile {
    position: relative;
    /*padding: 20px;*/
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.tile-inner {
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-position: center;
}

@media (min-width: 1024px) {
    .tile:hover {
        -moz-transform: scale(1.05);
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

.tile-header h3 {
    background-color: #00BC70;
    padding: 5px 20px 5px 20px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block
}

.tile-header-blue h3 {
    background-color: #00A7E1;
}

.tile-body {
    padding: 20px;
}

.tile-body h1 {
    color: #fff;
    font-size: 4rem;
}

.tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    -webkit-box-shadow: inset 0px -125px 52px -12px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0px -125px 52px -12px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0px -125px 52px -12px rgba(0, 0, 0, 0.75);
}

.default-tile .tile-inner {
    min-height: 350px;
}

.home-sponsor-tile .tile-inner {
    padding: 75px;
    background-color: #dc4732;
}

.home-sponsor-tile p {
    font-size: 0.9rem;
    color: #fff;
}

@media (min-width: 1024px) {
    .home-sponsor-tile .tile-inner {
        padding: 100px;
    }

    .home-sponsor-tile p {
        font-size: 1.5rem;
    }
}

.home-campaign-tile {
    min-height: 350px;
}

.home-campaign-tile .tile-inner {
    background-image: url('../images/new/renovation.jpeg');
}

.home-campaign-tile h2 {
    color: #fff;
}

.home-carousel-tile {
    border: 1px solid #e5e5e5;
}

.home-carousel-tile h2 {
    color: #1A1919;
    text-transform: uppercase;
}

.home-carousel-tile-detail {
    padding-bottom: 20px;
}

.home-paper-tile .tile-inner {
    border: 1px solid #e5e5e5;
    min-height: 350px;
    background-color: #fff;
}

.home-paper-tile .tile-inner {
    background-image: url('../images/new/pa-paper-blue.jpg');
}

.home-news-tile {
    margin-bottom: 30px;
}

.card-header {
    width: 100%;
    min-height: 200px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-position: center;
    border-radius: 0;
}

.card-body {
    padding-bottom: 0;
}

.card-footer {
    background-color: #fff;
    border-top: none;
}

.news-card {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    margin-bottom: 20px;
    border-radius: 0;
}

@media (min-width: 1024px) {
    .news-card:hover {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.news-card h6 {
    color: #9e9e9e;
}

.news-card p {
    font-size: 0.8rem;
}

@media (min-width: 992px) {
    .home-news-tile {
        margin: 0;
    }
}

/*.news-story img {
    width: 80%;
}*/

/* ----------------------------------------------------
	Footer
------------------------------------------------------- */

#footer h3 {
    text-transform: uppercase;
}

#footer .footer-top {
    text-align: center;
    padding: 30px 0;
    background-color: #e5e5e5;
}

#footer .footer-bottom {
    padding: 10px 0;
    background-color: #cecece;
}

#footer .footer-social {
    text-align: center;
    padding: 10px 0 20px 0;
}

#footer .at-icon-wrapper {
    background-color: transparent !important;
}

.addthis_toolbox a {
    margin: 0 30px 0 0 !important;
    text-align: center;
}

.at300b:hover svg {
    fill: #00BC70 !important;
}

#footer .footer-divider {
    position: absolute;
    border-left: 2px solid #cecece;
    margin: 0;
    width: auto;
    left: 50%;
    top: 0;
    bottom: 0;
    height: 100%;
}

#footer .list-group {
    border: 0;
}

#footer .list-group-item {
    padding: 5px 0;
    background-color: transparent;
    border: 0;
}

#footer .list-group-item a {
    color: #1A1919;
}

#footer .list-group-item a:hover {
    color: #00BC70;
}

#footer .footer-bottom a {
    color: #1A1919;
}

#footer .footer-bottom a:hover {
    color: #00BC70;
}

#footer .footer-navigate {
    margin-top: 20px;
}

@media (min-width: 768px) {
    #footer .footer-top {
        text-align: left;
    }

    #footer .footer-navigate {
        margin-top: 0;
    }

    #footer .footer-social {
        text-align: left;
    }
}

/* ----------------------------------------------------
	Main Content
------------------------------------------------------- */

.page-header {
    position: relative;
    width: 100%;
    height: 35vh;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-position: center;
    text-align: center;
    min-height: 30vh;
    margin-top: 40px;
}

.content {
    position: relative;
    margin-top: -60px;
}

/*.container-fluid .content {*/
/*margin-top: -50px;*/
/*}*/

.content-header {
    color: transparent;
    text-align: center;
}

.content-header h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 2rem;
}

.content-body {
    background-color: #fff;
}

.container .content-body {
    padding: 10px 0;
}

.content-page-content h1, .content-page-content h2, .content-page-content h3, .content-page-content h4, .content-page-content h5, .content-page-content h6, .rny-heading {
    background-color: #00BC70;
    color: #fff !important;
    display: inline-block;
    padding: 5px 10px;
    margin: 20px 0 10px 0;
    text-transform: uppercase;
}

.rny-heading-blue {
    background-color: #00A7E1;
}

#rny-heading-no-bg {
    background-color: #fff; 
    color: #1A1919;
}

.rny-resource-heading {
    background-color: #00BC70;
    color: #fff !important;
    display: inline-block;
    padding: 5px 10px;
    margin: 20px 0 10px 0;
    text-transform: uppercase;
}

#rny-heading-no-bg {
    background-color: #fff;
    color: #000;
    display: inline-block;
    padding: 5px 10px;
    margin: 20px 0 10px 0;
    text-transform: uppercase;
}

.content-page-content h1.tertiary, .content-page-content h2.tertiary, .content-page-content h3.tertiary, .content-page-content h4.tertiary, .content-page-content h5.tertiary, .content-page-content h6.tertiary {
    background-color: transparent;
    color: #1A1919 !important;
    padding: 0;
    margin: 0 0 10px 0;
    text-transform: none;;
}

.content-page-content h1 a, .content-page-content h2 a, .content-page-content h3 a, .content-page-content h4 a, .content-page-content h5 a, .content-page-content h6 a {
    color: #fff !important;
}

@media (min-width: 992px) {
    .page-header {
        height: 65vh;
        margin-top: 0;
    }

    .content {
        margin-top: -200px;
    }

    /*.container-fluid .content {*/
    /*margin-top: -200px;*/
    /*}*/
    .content-header {
        padding: 30px;
    }

    .content-header h1 {
        font-size: 4rem;
    }

    .container .content-body {
        padding: 30px 50px;
    }
}

/* ----------------------------------------------------
	Related Docs
------------------------------------------------------- */

.related-docs {
    padding-top: 30px;
}

.related-docs h4 {
    display: block;
    background-color: #D8454E;
    color: #fff;
    padding: 5px;
    margin: 0;
}

.related-docs-links {
    border: 1px solid #9e9e9e;
    border-top: none;
    padding: 10px;
}

.related-docs-links ul {
    list-style-type: none;
}

.related-docs li:before {
    font-family: 'Font Awesome 5 Free';
    margin: 0 5px 0 -23px;
}

.related-docs-links li.pdf:before {
    content: '\f1c1';
}

.related-docs-links li.doc:before {
    content: '\f1c2';
}

.related-docs-links li.xls:before {
    content: '\f1c3';
}

.related-docs-links li.ppt:before {
    content: '\f1c4';
}

.related-docs-links li.htm:before {
    content: '\f0ac';
}

/* ----------------------------------------------------
	Council/Business Page
------------------------------------------------------- */

.listing-map {
    padding-top: 72px;
}

.listing-map iframe {
    height: 200px;
}

@media (min-width: 768px) {
    .listing-map iframe {
        height: 450px;
    }
}

.listing-info, .listing-services {
    padding: 30px 0;
}

.listing-info h2, .listing-services h3 {
    text-transform: uppercase;
}

.listing-info a {
    text-decoration: none;
    /* color: #1A1919; */
}

.listing-info i {
    color: #00BC70;
}

.listing-info .cta-buttons i {
    color: #1A1919;
}

.listing-info small, .listing-info i {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

.listing-info a:hover small, .listing-info a:hover i {
    color: #00BC70;
}

.listing-services {
    background-color: #fff;
}

.listing-services i {
    padding-left: 10px;
    color: #00BC70;
}

.listing-link {
    /*padding: 10px 0;*/
    color: #1A1919;
    font-weight: 600;
}

.listing-link:hover {
    color: #00BC70;
}

.listing-services-council .nav-pills .nav-link {
    color: #1A1919;
    background-color: transparent;
}

.listing-services .nav-pills .nav-link.active {
    font-weight: 700;
}

.listing-facility {
    height: 100%;
}

.listing-passiton-option {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    padding-bottom: 20px;
}

@media (min-width: 1024px) {
    .listing-passiton-option:hover {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@media (min-width: 768px) {
    .listing-passiton-option {
        padding: 0;
    }
}

.listing-passiton-option .listing-link {
    text-align: center;
    background-color: #fff;
    color: #1A1919;
    font-weight: 600;
}

.listing-passiton i {
    padding-left: 10px;
    color: #D8454E;
}

.listing-enquire-title {
    height: 100%;
    min-height: 200px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-position: center;
    background-image: url('../images/new/getinvolved.jpeg');
}

.listing-enquire-form {
    border: 2px solid #e5e5e5;
    padding: 10px;
}

.listing-events-body i {
    color: #00BC70;
}

.listing-services .btn-neutral {
    font-size: 0.9rem;
}

/* ----------------------------------------------------
	Business Search
------------------------------------------------------- */
.business-search-wrapper {
    border: 1px solid #e5e5e5;
    border-top: none;
    height: 500px;
    overflow: scroll;
}

@media (min-width: 768px) {
    .business-search-wrapper {
        height: 616px;
    }
}

.business-search-list {
    border-right: 1px solid #e5e5e5;
    height: 100%;
    overflow: hidden;
}

.business-search-filters {
    padding: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.business-search-results {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.business-search-location {
    border-bottom: 1px solid #e5e5e5;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.business-search-location.selected {
    background-color: #e5e5e5;
}

.business-search-location:hover {
    background-color: #e5e5e5;
}

.business-search-location-inner {
    padding: 10px;
}

.business-search-location h4 {
    font-family: 'lato', Arial;
    font-weight: 400;
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.business-search-location h5 {
    font-family: 'lato', Arial;
    font-weight: 400;
    font-size: 0.9rem;
    margin: 0 0 3px 0;
}

.business-search-location p {
    font-size: 0.8rem;
    margin: 0;
}

.business-search-map, .business-search-map #map_frame, .business-search-map #map_canvas {
    height: 100%;
    width: 100%;
    margin: 0;
}

.business-search-location i {
    font-size: 0.8rem;
    color: #00BC70;
}

.location-pickup {
    padding: 20px 30px 30px 30px;
}

.location-meta, .location-meta i {
    color: #9e9e9e;
    font-size: 0.8rem;
}

.business-search-tabs a {
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .business-search-tabs a {
        font-size: 1.2rem;
    }
}

.search-toggle i, .search-toggle p {
    font-size: 1.5rem;
}

#map-toggle:hover, #list-toggle:hover {
    cursor: pointer;
}

#map-toggle.selected, #list-toggle.selected {
    background-color: #e5e5e5;
}

#map-toggle.selected i, #map-toggle.selected p, #list-toggle.selected i, #list-toggle.selected p {
    color: #00BC70;
}

.material-search .header-search-form {
    background-color: #e5e5e5;
    margin: 20px 0 20px 0;
}

#search-list {
    height: 100%;
}

/* ----------------------------------------------------
	Info Portal
------------------------------------------------------- */

.info-tile {
    height: 100%;
    min-height: 200px;
}

.info-factsheets-tile .tile-inner {
    background-image: url('../images/new/office-paper.jpg');
    min-height: 200px;
}

.info-promotion-tile .tile-inner {
    background-image: url('../images/new/promotion.jpg');
    min-height: 200px;
}

.info-research-tile .tile-inner {
    background-image: url('../images/new/research.jpg');
    min-height: 200px;
}

.info-tips-tile .tile-inner {
    background-image: url('../images/new/tips.jpg');
    min-height: 200px;
}

.info-kids-tile .tile-inner {
    background-image: url('../images/new/kids.jpg');
    min-height: 200px;
}

.info-resource-tile .tile-inner {
    background-image: url('../images/new/workplace.jpg');
    min-height: 200px;
}

/* ----------------------------------------------------
	About
------------------------------------------------------- */

.sponsor-inner {
    border: 1px solid #e5e5e5;
    -webkit-transition: all 0.5s 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.5s 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.5s 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (min-width: 1024px) {
    .sponsor-inner:hover {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.sponsor-img {
    /*padding: 20px 10px 10px 10px;*/
}

@media (min-width: 768px) {
    .sponsor-img {
        height: 170px;
    }
}

.sponsor-content h1.tertiary, .sponsor-content h2.tertiary,
.sponsor-content h3.tertiary, .sponsor-content h4.tertiary,
.sponsor-content h5.tertiary, .sponsor-content h6.tertiary {
    background-color: transparent;
    color: #1A1919;
    display: block;
    padding: 0;
    margin: 0px 0 10px 0;
    text-transform: none;
    letter-spacing: inherit;
}

/* ----------------------------------------------------
	News
------------------------------------------------------- */

.news-main-img {
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-position: center;
    min-height: 250px;
    position: relative;
}

.news-main-img p, .news-main-img i {
    color: #ffffff;
    font-size: 0.8rem;
}

.news-body {
    position: absolute;
    padding: 20px 20px 5px 20px;
    bottom: 10px;
}

.news-heading {
    position: absolute;
    top: 0;
    left: 0;
}

#searchSpinner {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -moz-transform: translateY(45%);
    -webkit-transform: translateY(45%);
    transform: translateY(45%);
}

.spinner {
    width: 70px;
}

.spinner > div {
    width: 18px;
    height: 18px;
    background-color: #00BC70;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/* ----------------------------------------------------
	Kerbside
------------------------------------------------------- */

.kerbside-accepted i, .fa-check {
    color: #00BC70;
}

.kerbside-not-accepted i, .fa-times {
    color: #D8454E;
}

/* ----------------------------------------------------
	Recycled Product Guide
------------------------------------------------------- */

#recycled-product-details p {
    margin: 0;
}

#recycled-products-carousel-indicators {
    position: relative;
    bottom: 0;
    margin-top: 15px;
}

#recycled-products-carousel-indicators li {
    background-color: #e5e5e5;
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

#recycled-products-carousel-indicators li.active {
    background-color: #6D6E6D;
}

/* ----------------------------------------------------
	NRW Home: Header
------------------------------------------------------- */

/*header.nrw-header {*/
    /*min-height: 100vh;*/
    /*background-image: url('/images/new/nrw/header.jpg');*/
/*}*/

/*header.nrw-header .overlay {*/
    /*background: -moz-linear-gradient(top, rgba(19, 19, 19, 0.7) 10%, rgba(19, 19, 19, 0.7) 70%);*/
    /*background: -webkit-linear-gradient(top, rgba(19, 19, 19, 0.7) 10%, rgba(19, 19, 19, 0.7) 70%);*/
    /*background: -o-linear-gradient(top, rgba(19, 19, 19, 0.7) 10%, rgba(19, 19, 19, 0.7) 70%);*/
    /*background: -ms-linear-gradient(top, rgba(19, 19, 19, 0.7) 10%, rgba(19, 19, 19, 0.7) 70%);*/
    /*background: linear-gradient(to bottom, rgba(19, 19, 19, 0.7) 10%, rgba(19, 19, 19, 0.7) 70%);*/
/*}*/

/*header.nrw-header .header-content {*/
    /*transform: none;*/
    /*top: 25%;*/
/*}*/



.nrw-header .overlay {
    z-index: 10;
    pointer-events: none;
    /*background: -moz-linear-gradient(top, rgba(19, 19, 19, 0.7) 10%, rgba(19, 19, 19, 0.7) 70%);
    background: -webkit-linear-gradient(top, rgba(19, 19, 19, 0.7) 10%, rgba(19, 19, 19, 0.7) 70%);
    background: -o-linear-gradient(top, rgba(19, 19, 19, 0.7) 10%, rgba(19, 19, 19, 0.7) 70%);
    background: -ms-linear-gradient(top, rgba(19, 19, 19, 0.7) 10%, rgba(19, 19, 19, 0.7) 70%);
    background: linear-gradient(to bottom, rgba(19, 19, 19, 0.7) 10%, rgba(19, 19, 19, 0.7) 70%);*/
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.5004202364539565) 0%, rgba(0,0,0,0.25112051656600143) 15%, rgba(0,0,0,0) 100%);
}

.nrw-header .carousel-item {
    height: 500px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.animation-delay {
    animation-delay: 1s;
}

.nrw-header h1, .nrw-header h2, .nrw-header h3, .nrw-header h4 {
    color: #fff;
    /*font-size: 1rem;*/
}

@media (max-width: 1200px) {
    h6.tertiary {
        font-size: 0.6rem;
    }
}

.nrw-header p.arrow-down {
    font-size: 65pt;
}

.nrw-header p.arrow-down i {
    color: #fff;
}

@media (min-width: 768px) {
    .nrw-header .carousel-item {
        height: 600px;
    }
}

/* .nrw-header-bottom img {
    width: 100%;
} */

/*.nrw-header .display-2 {
    font-weight: 700;
    font-size: 3rem;
}

.nrw-header .display-4 {
    font-size: 2rem;
}*/

@media (min-width: 768px) {
    /*.nrw-header .display-2 {
        font-weight: 700;
        font-size: 5rem;
    }

    .nrw-header .display-4 {
        font-size: 3.5rem;
    }*/

    .nrw-header .carousel-caption-center {
        top: 35%;
        right: 25%;
        bottom: 0;
        left: 25%;
    }
}

#nrw-body section {
    margin: 0;
    padding: 50px 0;
}

.section-dark {
    background-color: #00BC70;
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6, .section-dark p {
    color: #fff;
}

#nrw-about .about-item {
    width: 30%;
    margin: auto;
}

#nrw-body .default-tile .tile-inner {
    min-height: 250px;
}

.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: #002539;
    border-radius: 0;
}

.btn-white:hover {
    background-color: #002539;
    border-color: #002539;
    color: #fff;
}

.title-us {
    height: 4px;
    width: 20%;
    margin: 0 auto 20px auto;
    border-radius: 2px;
    background-color: #fff;
}

.title-us-dark {
    background-color: #00BC70;
}

.tile-full-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #2b2d32;
    opacity: 0.5;
}

.bib-circle {
    width: 170px;
    height: 170px;
    background-color: #00A7E1;
    margin: auto;
    padding-top: 40px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.bib-circle h4 {
    color: #fff;
    padding: 0;
    margin: 0;
    display: block;
    background-color: transparent;
}

@media (min-width: 1024px) {
    .bib-circle:hover {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

#nrw-form {
    min-height: 250px;
    position: relative;
}

.nrw-form {
    background-color: #00A7E1;
    padding: 20px;
}

.nrw-form h1 {
    color: #fff;
    font-size: 40pt;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

.nrw-form p {
    color: #fff;
}

.nrw-form label {
    color: #fff;
}

.nrw-form .spinner > div {
    background-color: #fff;
}

#nrw-form-resources .form-check-label, 
#nrw-form-resources p {
    font-size: 0.9rem;    
}

#nrw-form-resources .form-check {
    display:inline-block;    
}

.form-wrapper {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 20px;
}

.event-form .filter-option {
    font-size: 1rem;
    color: #1A1919;
    text-transform: none;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}

.event-item.tile:hover {
    box-shadow: 0 4px 15px 0 rgba(40,44,53,.06), 0 2px 2px 0 rgba(40,44,53,.08);
}

.events-list {
    position: relative;
}

@media (min-width: 768px) {
  .v-center-outer {
      position: relative;
      height: 100%;
  }

  .v-center-inner {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
  }
}

@media (max-width: 768px) {
    .battery-safety {
        content:url(/images/masters/image-37318-battery-safety-vertical.png);
    }
}
  

