/*
Theme Name: kennl
Theme URI:
Author: kennl
Author URI:
Description:
Version: 1.1
Requires at least:
Tested up to:
Requires PHP:
License: MIT License
License URI:
Text Domain: bootscore
Tags:
*/

body, html {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.4em;
    margin: 0;
    padding: 0;
    height: 100%;
    background: #8AC2DC;
}

a {
    text-decoration: none;
}
a:link, a:visited {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: inherit;
    text-decoration: underline;
}


/* forward backward navigation */


.post-navigation-cards {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.nav-links-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-card {
    display: flex;
    flex-direction: column;
    width: 20%;
    text-decoration: none;
    color: inherit;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.nav-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.nav-card-title {
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
}

/* ------- */

form input.form-control {
    height: 40px;
    margin: 15px 0 0 0;
    border-radius: 0;
    color: #C74527;
    font-size: 1.5em;
}

form input.form-control::placeholder {
    color: #C74527;
}

form select.form-control {
    height: 40px;
    margin: 15px 0 0 0;
    border-color: #8AC2DC;
    border-radius: 0;
    color: #8AC2DC;
    font-size: 1.5em;
}

form button.btn {
    padding: 4px 15px 4px 15px;
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    font-size: 1.7em;
    background: #DF7326;
}

form button.btn:hover {
    background: #8AC2DC;
}
/* START Bootstrap */
button.navbar-toggler {
    border: none;
    color: #C74527;
}
/* END Bootstrap */

.page {
    display: flex;
    flex-wrap: wrap;
}

/* START header */
header.panel {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;
}

header.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    color: #FFF;

    @media only screen and (min-width: 1200px) {
        width: 1200px;
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

header.panel .content-top {
    display: flex;
    flex-direction: row;
}

header.panel .content-bottom {
    display: flex;
    flex-direction: row;
}

header.panel .content-left {
    display: flex;
    height: 90px;
}

header.panel .logo {
    padding: 24px 21px 0px 21px;
    background-color: #FFF;
}

header.panel .content-right {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    height: 90px;
}

header.panel .main-nav {
    display: flex;
    height: 90px;

    @media only screen and (min-width: 1200px) {
        height: 50px;
    }
}

header.panel .directory {
    font-size: 2em;
    background-color: #F2AF1C;
    padding: 0 60px 0 20px;
    align-items: center;
}

header.panel .main-nav .directory {
    display: none;

    @media only screen and (min-width: 1200px) {
        display: flex;
    }
}

header.panel .menus {
    font-size: 1.2em;
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: right;
    padding: 0 10px 0 0;
    color: #FFF;
    background-color: #F5F5F5;

    @media only screen and (min-width: 1200px) {
        padding: 0 30px 0 0;
        background-color: #DF7326;
    }
}

header.panel .menus.mobile {
    font-size: 1.2em;
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: left;
    padding: 10px 20px;
    color: #FFF;
    background-color: #DF7326;

    @media only screen and (min-width: 1200px) {
        display: none;
    }
}

header.panel .menus li {
    padding: 0;
    list-style: none;
}

header.panel .menus li:last-child {
    .break {
        display: none;
    }
}

header.panel .menus.mobile li {
    padding: 4px 0;
}

header.panel .strapline {
    font-size: 1.5em;
    height: 40px;
    display: none;
    align-items: center;
    background-color: #E7E6E4;

    @media only screen and (min-width: 1200px) {
        display: flex;
    }
}

header.panel .strapline .text {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px 0 20px;
    background-color: #8AC2DC;
}

header.panel .content-bottom {
    width: 100%;
    height: 50px;

    @media only screen and (min-width: 1200px) {
        display: none;
    }
}

header.panel .content-bottom .directory {
    width: 100%;
    display: flex;
    align-items: center;
}
/* END header */

/* START hero */
.hero.panel {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;

    @media only screen and (min-width: 1200px) {
        background-size: 133px 222px;
        background-image: url("./assets/img/dog.png");
        background-repeat: no-repeat;
        background-position: calc(50% - 662px) 280px;
    }

    @media only screen and (min-width: 1400px) {
        background-position: calc(50% - 762px) 280px;
    }
}

.hero.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    color: #FFF;
    background: linear-gradient(90deg, #D8D8D8, #E4E4E4);

    @media only screen and (min-width: 1200px) {
        width: 1200px;
        height: 560px;
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

.hero.panel .content .logo {
    margin-top: auto;
    padding: 10px 20px 10px 20px;

    @media only screen and (min-width: 1200px) {
        padding: 20px 40px 20px 40px;
    }
}

.hero.panel .content .logo img {
    width: 100%;
}

.hero.panel .content .float-search {
    display: none;
    top: 0px;
    left: 170px;
    position: absolute;
    width: 510px;

    @media only screen and (min-width: 1200px) {
        display: block;
    }
}

.hero.panel .content .float-search .search.widget .search-row {
    flex-direction: row;
}

.hero.panel .content .float-search .search.widget form .search-text-field {
    margin-right: 30px;
}

.hero.panel .content .float-search .search.widget form .search-category-field input {
    width: 100%;
}

.hero.panel .content .float-search .search.widget form .btn {
    margin: 15px 0 0 15px;
}
/* END hero */

/* START search */
.search.panel {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;
}

.search.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    color: #FFF;

    @media only screen and (min-width: 1200px) {
        display: none;
    }
}

.search.widget {
    color: #FFF;
    background-color: #C74527;
    width: 100%;
}

.search.widget .widget-content {
    padding: 20px;
}

.search.widget .title {
    font-size: 3em;
    line-height: 1em;
}

.search.widget .arrow {
    position: absolute;
    margin-top: 15px;
    margin-left: -14px;
}

.search.widget .search-row {
    display: flex;
    flex-direction: column;
}

.search.widget form {
    padding-top: 5px;
}

.search.widget form .search-text-field input {
    width: 100%;
}

.search.widget form .search-category-field input {
    width: 75%;
}

.search.widget form .btn {
    margin: 15px 0 0 0;
}
/* END search */

/* START categories */
.categories.panel {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;
}

.categories.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0px 10px 0;
    background: #FFF;
    color: #FFF;

    @media only screen and (min-width: 1200px) {
        width: 1200px;
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

.categories.panel .title {
    padding: 0 0 0 20px;
    font-size: 2.3em;
    line-height: 1em;
    color: #256EB4;

    @media only screen and (min-width: 1200px) {
        padding: 0 0 0 30px;
        font-size: 3em;
    }
}

.categories.panel .items {
    display: none;
    margin: 0 auto;
    width: 170px;
    align-items: center;
    padding: 20px 0 0 0;

    @media only screen and (min-width: 768px) {
        display: block;
        width: 520px;
    }

    @media only screen and (min-width: 992px) {
        width: 700px;
    }

    @media only screen and (min-width: 1200px) {

		display: grid;
        grid-template-columns: repeat(8, 1fr);
        width: 100%;
        max-width: 1400px; /* or 1400px if you prefer */
        gap: 20px;

    .categories.panel .item {
        width: 100%;
        display: block;
    }
    }

    @media only screen and (min-width: 1400px) {
        width: 1384px;
    }
}

.categories.panel .items.mobile {
    display: block;
    padding: 10px 20px;
    width: 100%;

    @media only screen and (min-width: 768px) {
        display: none;
    }
}

.categories.panel .item {
    position: relative;
    vertical-align: top;
    color: #DF7326;
    font-size: 1.3em;
}

.categories.panel .item a:after {
    content: "";
    position: absolute;
    left: 10px; /* adjust as needed */
    bottom: 10px; /* adjust as needed */
    width: 64px;
    height: 64px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.categories.panel .item.category-dog-parks a:after {
    background-image: url("./assets/img/categories/icon_pet-dog-parks.png");
}

.categories.panel .item.category-pet-adoption a:after {
    background-image: url("./assets/img/categories/icon_pet-adoption.png");
}

.categories.panel .item.category-pet-behaviourists a:after {
    background-image: url("./assets/img/categories/icon_pet-behaviourists.png");
}

.categories.panel .item.category-pet-boarding a:after {
    background-image: url("./assets/img/categories/icon_pet-boarding.png");
}

.categories.panel .item.category-pet-breeders a:after {
    background-image: url("./assets/img/categories/icon_pet-breeders.png");
}

.categories.panel .item.category-pet-clubs a:after {
    background-image: url("./assets/img/categories/icon_pet-clubs.png");
}

.categories.panel .item.category-pet-day-care a:after {
    background-image: url("./assets/img/categories/icon_pet-daycare.png");
}

.categories.panel .item.category-pet-enclosures a:after {
    background-image: url("./assets/img/categories/icon_pet-enclosures.png");
}

.categories.panel .item.category-pet-food a:after {
    background-image: url("./assets/img/categories/icon_pet-food.png");
}

.categories.panel .item.category-pet-friendly-accommodation a:after {
    background-image: url("./assets/img/categories/icon_pet-friendly-accommodation.png");
}

.categories.panel .item.category-pet-friendly-cafes a:after {
    background-image: url("./assets/img/categories/icon_pet-friendly-cafes.png");
}

.categories.panel .item.category-pet-grooming a:after {
    background-image: url("./assets/img/categories/icon_pet-grooming.png");
}

.categories.panel .item.category-pet-insurance a:after {
    background-image: url("./assets/img/categories/icon_pet-insurance.png");
}

.categories.panel .item.category-pet-memorial a:after {
    background-image: url("./assets/img/categories/icon_pet-memorial.png");
}

.categories.panel .item.category-pet-pharmacy a:after {
    background-image: url("./assets/img/categories/icon_pet-pharmacy.png");
}

.categories.panel .item.category-pet-photography a:after {
    background-image: url("./assets/img/categories/icon_pet-photography.png");
}

.categories.panel .item.category-pet-rehabilitation a:after {
    background-image: url("./assets/img/categories/icon_pet-rehabilitation.png");
}

.categories.panel .item.category-pet-shops a:after {
    background-image: url("./assets/img/categories/icon_pet-shops.png");
}

.categories.panel .item.category-pet-sitting a:after {
    background-image: url("./assets/img/categories/icon_pet-sitting.png");
}

.categories.panel .item.category-pet-supplies a:after {
    background-image: url("./assets/img/categories/icon_pet-supplies.png");
}

.categories.panel .item.category-pet-training a:after {
    background-image: url("./assets/img/categories/icon_pet-training.png");
}

.categories.panel .item.category-pet-transport a:after {
    background-image: url("./assets/img/categories/icon_pet-transport.png");
}

.categories.panel .item.category-pet-walking a:after {
    background-image: url("./assets/img/categories/icon_pet-walking.png");
}

.categories.panel .item.category-veterinarian-surgeons a:after {
    background-image: url("./assets/img/categories/icon_veterinarian-surgeons.png");
}






.categories.panel .item a:hover {
    text-decoration: underline;
}

.categories.panel .item .line {
    margin: 0 8px;
    border-top: 1px #8AC2DC solid;
}

.categories.panel .item .item-content {
    border-left: 1px #8AC2DC solid;
    margin: 10px 0;
    padding: 0px 8px;
    min-height: 120px;
}

.categories.panel .item .number {
    font-size: 1.2em;
    line-height: 1.1em;
}

.categories.panel .item .text {
    /*padding: 8px 0 40px 0;*/
    text-transform: lowercase;
}
/* END categories */


/* START highlights */
.highlights.panel {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;

    @media only screen and (min-width: 1200px) {
        background-size: 122px 205px;
        background-image: url("./assets/img/cat.png");
        background-repeat: no-repeat;
        background-position: calc(50% + 658px) 60px;
    }

    @media only screen and (min-width: 1400px) {
        background-position: calc(50% + 758px) 60px;
    }
}

.highlights.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0px;
    background: #FFF;
    color: #FFF;

    @media only screen and (min-width: 1200px) {
        width: 1200px;
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

.highlights.panel .title {
    padding: 0 0 0 20px;
    font-size: 2.3em;
    line-height: 1em;
    color: #F4B11B;

    @media only screen and (min-width: 1200px) {
        padding: 0 0 0 30px;
        font-size: 3em;
    }
}

.highlights.panel .title.primary {
    color: #256EB4;
}

.highlights.panel .items {
	display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    /*margin: 0 auto;
    width: 278px;
    align-items: center;
    padding: 20px 0 0 0;
	vertical-align: top;*/

    @media only screen and (min-width: 768px) {
        width: 556px;
    }

    @media only screen and (min-width: 992px) {
        width: 836px;
    }

    @media only screen and (min-width: 1200px) {
        width: 1116px;
    }

    @media only screen and (min-width: 1400px) {
        width: 1394px;
    }
}

.highlights.panel .item {
    margin: 10px 4px;

    @media only screen and (min-width: 768px) {
        display: inline-block;
    }
}

.highlights.panel .item .photo {
    position: relative;
    border: 1px #C74527 solid;
    width: 268px;
    height: 268px;
    overflow: hidden;
}

.highlights.panel .item .photo img {
    position: absolute;
    padding: 8px;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.highlights.panel .item .detail {
    padding: 8px;
}

.highlights.panel .item .text {
    width: 200px;
    font-size: 1.2em;
    line-height: 1.2em;
    color: #DF7326;
}

.highlights.panel .item .distance {
    padding: 10px 0 0 0;
    font-size: 1.4em;
    line-height: 1.2em;
    color: #256EB4;
}

.highlights.panel .item .category {
    padding: 10px 0 0 0;
    font-size: 1.2em;
    color: #414042;
}

.highlights.panel .item .icons ul {
    margin: 0;
    padding: 10px 0 0 0;
}

.highlights.panel .item .icons li {
    display: inline-block;
    list-style: none;
    margin: 0 10px 0 0;
    padding: 0;
}
.highlights.panel .paging {
    padding: 10px 0 0 0;
    font-size: 2.3em;
    line-height: 1em;
    color: #256EB4;
    text-align: center;
}
/* END highlights */

/* START category */
.category.panel {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;
}

.category.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 0;
    background: #DF7326;
    color: #FFF;

    @media only screen and (min-width: 992px) {
        flex-direction: row;
    }

    @media only screen and (min-width: 1200px) {
        width: 1200px;
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

.category.panel .content:before {
    display: none;
    content: " ";
    position: absolute;
    left: -132px;
    bottom: -180px;
    width: 133px;
    height: 222px;
    background-size: 100%;
    background-image: url("./assets/img/dog.png");
    background-repeat: no-repeat;
    background-position: 0 0;

    @media only screen and (min-width: 1200px) {
        display: none;
    }
}

.category.panel .content .text {
    margin-top: auto;
    padding: 20px;

    @media only screen and (min-width: 992px) {
        width: 50%;
    }

    @media only screen and (min-width: 1200px) {
        padding: 0 20px 20px 30px;
    }
}

.category.panel .content .text .title {
    font-size: 2.3em;
    line-height: 1em;
    padding: 0 0 10px 0;
    text-transform: lowercase;

    @media only screen and (min-width: 1200px) {
        font-size: 5em;
        padding: 0 0 30px 0;
    }
}

.category.panel .content .image {
    display: none;
    position: relative;

    @media only screen and (min-width: 1200px) {
        display: block;
        width: 25%;
    }
}

.category.panel .content .image:after {
    content: " ";
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 155px;
    height: 78px;
    background-size: 100%;
    background-image: url("./assets/img/shape-yellow.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}

.category.panel .content .image img {
    width: 100%;
}

.category.panel .content .search {
    display: flex;

    @media only screen and (min-width: 992px) {
        width: 50%;
    }

    @media only screen and (min-width: 1200px) {
        width: 25%;
    }
}

.category.panel .content .search .widget-content {
    margin-top: auto;
    width: 100%;
}

.category.panel .content .search.mobile {
    @media only screen and (min-width: 992px) {
        display: none;
    }
}

.category.panel .content .search.desktop {
    display: none;

    @media only screen and (min-width: 992px) {
        display: block;
    }
}
/* END category */

/* START category-detail */
.category-detail.panel {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;
}

.category-detail.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 20px 20px 100px 20px;
    background: #FFF;
    color: #333333;
    background-image: url("./assets/img/shape-orange.png");
    background-repeat: no-repeat;
    background-size: 150px 58px;
    background-position: 20px 100%;

    @media only screen and (min-width: 1200px) {
        padding: 30px 30px 180px 30px;
        width: 1200px;
        background-size: 316px 158px;
        background-position: calc(100% - 100px) 100%;
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

.category-detail.panel .content .title {
    margin: 0 0 10px 0;
    font-size: 2em;
    line-height: 1em;

    @media only screen and (min-width: 1200px) {
        font-size: 3em;
    }
}

.category-detail.panel .content .subtitle {
    font-size: 1.5em;
    line-height: 1em;
    color: #414042;
}

.category-detail.panel .content h1 {
    margin: 10px 0;
    padding: 0;
    font-size: 1.5em;
    font-weight: normal;
}

.category-detail.panel .content .content-details {
    display: flex;
    flex-direction: column;

    @media only screen and (min-width: 1200px) {
        flex-direction: row;
    }
}

.category-detail.panel .content .content-details .details {
    @media only screen and (min-width: 1200px) {
        width: 75%;
        margin: 0 20px 0 0;
    }
}

.category-detail.panel .content .content-details .details hr {
    margin: 30px 0 0 0;
    border: #C74527 1px solid;

    @media only screen and (min-width: 768px) {
        margin: 30px 20px 0 0;
    }
}

.category-detail.panel .content .content-details .photo-gallery {
    display: flex;
    width: 100%;
    margin: 30px 0 0 0;

    @media only screen and (min-width: 768px) {
        margin: 30px 0 0 -10px;
    }
}

.category-detail.panel .content .content-details .photo-gallery-hero {
    width: 100%;

    @media only screen and (min-width: 768px) {
        width: 100%;
    }
}

.category-detail.panel .content .content-details .photo-gallery-hero .photo {
    width: 100%;
    padding: 0;

    @media only screen and (min-width: 768px) {
        padding: 10px;
    }
}

.category-detail.panel .content .content-details .photo-gallery-hero .photo img {
    width: 100%;
}

.category-detail.panel .content .content-details .photo-gallery-general {
    display: none;

    @media only screen and (min-width: 768px) {
        display: flex;
        flex-wrap: wrap;
        width: 50%;
    }
}

.category-detail.panel .content .content-details .photo-gallery-general .photo {
    width: 50%;
    padding: 10px;
}

.category-detail.panel .content .content-details .photo-gallery-general .photo img {
    width: 100%;
}

.category-detail.panel .content .content-details .contact {
    color: #414042;

    @media only screen and (min-width: 1200px) {
        width: 25%;
    }
}

.category-detail.panel .content .content-details .contact .title {
    font-size: 1.5em;
    margin: 10px 0 4px 0;
    padding: 0;
}

.category-detail.panel .content .content-details .contact hr {
    margin: 30px 0 0 0;
    border: #F4B11B 1px solid;
}

.category-detail.panel .content .content-details .contact .map {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.category-detail.panel .content .content-details .contact .map img {
    width: 100%;

    @media only screen and (min-width: 768px) {
        width: 50%;
    }

    @media only screen and (min-width: 1200px) {
        width: 100%;
    }
}

.category-detail.panel .content .content-details .content-text {
    margin: 0 10px 0 0;
    padding: 30px 0 0 0;

    @media only screen and (min-width: 1200px) {
        columns: 2;
        column-gap: 20px;
    }
}

.category-detail.panel .content .content-details .contact .location {
    margin: 20px 0 0 0;
}

.category-detail.panel .content .content-details .contact .hours {
    margin: 20px 0 0 0;
}
/* END category-detail */

/* START detail */
.detail.panel {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;
}

.detail.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 0;
    background: #DF7326;
    color: #FFF;

    @media only screen and (min-width: 992px) {
        flex-direction: row;
    }

    @media only screen and (min-width: 1200px) {
        width: 1200px;
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

.detail.panel .content .text {
    margin-top: auto;
    padding: 20px;

    @media only screen and (min-width: 992px) {
        width: 50%;
    }

    @media only screen and (min-width: 1200px) {
        width: 75%;
        padding: 20px 20px 20px 30px;
    }
}

.detail.panel .content .text .title {
    font-size: 2.3em;
    line-height: 1em;
    padding: 0 0 10px 0;
    text-transform: lowercase;

    @media only screen and (min-width: 1200px) {
        font-size: 3.2em;
        padding: 0 0 10px 0;
    }
}

.detail.panel .content .search {
    display: flex;

    @media only screen and (min-width: 992px) {
        width: 50%;
    }

    @media only screen and (min-width: 1200px) {
        width: 25%;
    }
}

.detail.panel .content .search .widget-content {
    margin-top: auto;
    width: 100%;
}

.detail.panel .content .search.mobile {
    @media only screen and (min-width: 992px) {
        display: none;
    }
}

.detail.panel .content .search.desktop {
    display: none;

    @media only screen and (min-width: 992px) {
        display: block;
    }
}
/* END detail */

/* START register-business */
.register-business.panel {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;
}

.register-business.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 20px 20px 100px 20px;
    background: #FFF;
    color: #000000;
    background-image: url("./assets/img/shape-orange.png");
    background-repeat: no-repeat;
    background-size: 150px 58px;
    background-position: 20px 100%;

    @media only screen and (min-width: 1200px) {
        padding: 30px 30px 180px 30px;
        width: 1200px;
        background-size: 316px 158px;
        background-position: calc(100% - 100px) 100%;
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

.register-business.panel .content .title {
    margin: 0 0 10px 0;
    font-size: 2em;
    line-height: 1em;
    color: #C74527;

    @media only screen and (min-width: 1200px) {
        font-size: 3em;
    }
}

.register-business.panel .content h1 {
    margin: 0 0 10px 0;
    font-size: 2em;
    line-height: 1em;
    color: #C74527;

    @media only screen and (min-width: 1200px) {
        font-size: 3em;
    }
}

.register-business.panel .content h2 {
    margin: 10px 0;
    padding: 0;
    font-size: 1.5em;
    font-weight: normal;
    color: #C74527;
}

.register-business.panel .content .content-details {
    display: flex;
    flex-direction: column;

    @media only screen and (min-width: 1200px) {
        flex-direction: row;
    }
}

.register-business.panel .content .content-details .details {
    @media only screen and (min-width: 1200px) {
        width: 75%;
        margin: 0 20px 0 0;
    }
}

.register-business.panel .content form {
    padding: 20px 0;
}

.register-business.panel .content .field {
    padding: 10px 0;
}

.register-business.panel .content form button.btn {
    font-size: 1.2em;
}

.register-business.panel .content form input, .register-business.panel .content form textarea, .register-business.panel .content form input, .register-business.panel .content form select {
    margin: 0;
    width: 100%;
	border: 1px dotted #DF7326;
}

.register-business.panel .content form label {
    display: block;
    padding: 4px 0 0 0;
    text-transform: normal;
}

.register-business.panel .content form input[type="file"] {
    margin: 20px 0;
    border: none;
}

.register-business.panel .content form input[type="file"]::file-selector-button {
    padding: 8px 15px;
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    font-size: 1.2em;
    background: #DF7326;
    color: white;
    cursor: pointer;
}

.register-business.panel .content form input[type="file"]::file-selector-button:hover {
    background: #8AC2DC;
}

.register-business.panel .content form button[type="submit"] {
    margin: 40px 0 0 0;
}

.register-business.panel .content form .hours {
    display: flex;

    .day {
        width: 20%;
    }

    .open {
        width: 40%;
    }

    .close {
        width: 40%;
    }

    label {
        margin: 0;
    }
}
/* END register-business */

/* START brand-advert */
.brand-advert.panel {
    width: 100%;
    display: flex;
    justify-content: center;
    background-size: cover;
    background-position: 50% 0;
    background-repeat: no-repeat;

    @media only screen and (min-width: 1200px) {
        margin: 20px 0;
    }
}

.brand-advert.panel .content {
    width: 100%;
    height: 250px;
    position: relative;

    @media only screen and (min-width: 1200px) {
        width: 1200px;
        height: 500px;
        background-image: url("./assets/img/shape-blue.png");
        background-repeat: no-repeat;
        background-position: 100% calc(100% + 1px);
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

.brand-advert.panel .content .text {
    color: #FFF;
    line-height: 1.2em;
    position: absolute;
    bottom: 40%;
    left: 20px;
	font-size: 4em; /* desktop size */
}

@media only screen and (max-width: 768px) {
    .brand-advert.panel .content .text {
        font-size: 1.5em;  /* smaller on mobile */
        line-height: 1.3em;
        margin: 0 10px 15px 10px; /* some spacing */
    }

    @media only screen and (min-width: 1200px) {
        left: 0;
    }
}
/* END brand-advert */

/* START external-advert */
.external-advert.panel {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;
}

.external-advert.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 10px 0;
    background: #FFF;
    color: #FFF;

    @media only screen and (min-width: 1200px) {
        width: 1200px;
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

.external-advert.panel .items {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0;

    @media only screen and (min-width: 768px) {
        flex-direction: row;
        padding: 20px 0 0 0;
    }
}

.external-advert.panel .item {
    display: none;
    vertical-align: top;
    padding: 10px 20px;

    @media only screen and (min-width: 768px) {
        display: block;
    }
}

.external-advert.panel .item:first-child {
    display: block;
}

.external-advert.panel .item img {
    width: 100%;
}
/* END external-advert */

/* START tips */
.tips.panel {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;
}

.tips.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
	align-items: center;
    padding: 10px 0;
    background: #FFF;
    color: #FFF;

    @media only screen and (min-width: 768px) {
        padding: 20px 0;
    }

    @media only screen and (min-width: 1200px) {
        width: 1200px;
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

.tips.panel .title {
    padding: 0 0 0 20px;
    font-size: 2.3em;
    line-height: 1em;
    color: #8AC2DC;
	text-align: left;
	align-self: flex-start;

    @media only screen and (min-width: 1200px) {
        padding: 0 0 0 30px;
        font-size: 3em;
    }
}

.tips.panel .items {
	display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    /* margin: 0 auto;
    width: 268px;
    align-items: center;
    padding: 20px 0 0 0; */

    @media only screen and (min-width: 768px) {
        width: 540px;
    }

    @media only screen and (min-width: 992px) {
        width: 812px;
    }

    @media only screen and (min-width: 1200px) {
        width: 1084px;
    }

    @media only screen and (min-width: 1400px) {
        width: 1354px;
    }
}

.tips.panel .item {
    width: 268px;
    padding: 10px 20px;

    @media only screen and (min-width: 768px) {
        display: inline-block;
    }
}

.tips.panel .item .photo {
    padding: 10px 0;
    width: 228px;
}

.tips.panel .item .tip-title {
    color: #256EB4;
    font-size: 1.7em;
    line-height: 1.2em;
}

.tips.panel .item .posted {
    padding: 4px 0;
    border-top: solid #F4B11B 1px;
    border-bottom: solid #F4B11B 1px;
    color: #8AC2DC;
}

.tips.panel .item .text {
    padding: 10px 0;
    color: #000;
}

.tips.panel .item .more {
    color: #C74527;
}
/* END tips */


/* START social */
.social.panel {
    width: 100%;
    display: flex;
    background: #8AC2DC;

    @media only screen and (min-width: 1200px) {
        display: none;
    }
}

.social.panel .content {
    padding: 20px 0 20px 0;
}

.social.panel .content ul {
    margin: 0;
}

.social.panel .content li {
    display: inline-block;
    list-style: none;
    margin: 0 10px 0 0;
}

.social.panel .content li img {
    width: 36px;
}
/* END social */

/* START footer */
footer.panel {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #FFF;

    @media only screen and (min-width: 1200px) {
        margin-top: 20px;
    }
}

footer.panel .content {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    background: #256EB4;
    padding: 40px 20px 60px 20px;

    @media only screen and (min-width: 768px) {
        padding: 40px 10px 80px 10px;
    }

    @media only screen and (min-width: 1200px) {
        padding: 40px 30px 80px 30px;
        width: 1200px;
        backgound-size: 158px 79px;
        background-image: url("./assets/img/shape-yellow.png");
        background-repeat: no-repeat;
        background-position: 290px calc(100% + 1px);
    }

    @media only screen and (min-width: 1400px) {
        width: 1400px;
    }
}

footer.panel .content .logo {
    padding: 0;

    @media only screen and (min-width: 768px) {
        padding: 0 10px 0 10px;
    }
}

footer.panel .content .logo img {
    width: 293px;
}

footer.panel .content .title {
    margin: 20px 0 0 0;
    padding: 0 0 4px 0;
    font-size: 1.5em;
}

footer.panel .content .content-container {
    display: flex;
}

footer.panel .content .column {
    @media only screen and (min-width: 768px) {
        margin: 10px;
    }
}

footer.panel .content .links-container {
    display: flex;
    width: 100%;

    @media only screen and (min-width: 1200px) {
        width: 60%;
    }
}

footer.panel .content .contact {
    width: 100%;

    @media only screen and (min-width: 768px) {
        width: 50%;
    }

    @media only screen and (min-width: 1200px) {
        width: 25%;
    }
}

footer.panel .content .links {
    display: none;

    @media only screen and (min-width: 768px) {
        display: block;
        width: 50%;
    }

    @media only screen and (min-width: 1200px) {
        width: 25%;
    }
}

footer.panel .content .categories {
    display: none;

    @media only screen and (min-width: 1200px) {
        display: block;
        width: 50%;
    }
}

footer.panel .content .category-list {
    columns: 2;
}

footer.panel .content .social {
    display: none;
    padding: 30px 0 0 0;

    @media only screen and (min-width: 1200px) {
        display: block;
    }
}

footer.panel .content .social li {
    display: inline-block;
    list-style: none;
    margin: 0 5px 0 0;
}

footer.panel .content .social li img {
    width: 24px;
}

footer.panel .content .newsletter {
    display: none;

    @media only screen and (min-width: 1200px) {
        display: block;
        width: 40%;
    }
}

footer.panel .content .newsletter .title {
    padding: 24px 0 20px 0;
    font-size: 3em;
    color: #F2AF1C;
}

footer.panel .content .newsletter .newsletter-button .btn {
    margin: 15px 0 0 0;
    background: #C74527;
}

footer.panel .content .newsletter .newsletter-button .btn:hover {
    background: #8AC2DC;
}

footer.panel .content ul {
    margin: 0;
    padding: 0;
}

footer.panel .content li {
    margin: 0;
    padding: 0;
    list-style: none;
}
/* END footer */
/* START spacer */
.panel-spacer {
    width: 100%;
    height: 20px;
}
/* END spacer */