/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgb(200, 200, 200);
    border-radius: 7px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(240, 240, 240);
    border-radius: 7px;
}

::-webkit-scrollbar-corner {
    background: white;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

@supports (-webkit-user-drag: none) {

    .banner-image,
    .google-logo,
    .review-header img,
    .product-item a,
    .company-name {
        -webkit-user-drag: none;
    }
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    background: rgb(250, 250, 250);
}

button {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.title {
    -webkit-user-select: none;
    user-select: none;
    margin-bottom: 10px;
}

label {
    -webkit-user-select: none;
    user-select: none;
}

a {
    color: LinkText;
}

.content-container {
    margin: 52px 10% 0 10%;
    padding: 0 0 10px 0;
    width: 80%;
    background: white;
    box-shadow: 0px 0px 3px rgb(200, 200, 200);
    z-index: 1;
    position: relative;
}

.header {
    width: calc(100% - 30px);
    padding: 15px;
    display: flex;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    text-shadow: 0px 0px 3px black;
    box-shadow: 0px 0px 3px rgb(100, 100, 100);
    -webkit-user-select: none;
    user-select: none;
    z-index: 2;
    position: fixed;
    top: 0;
    font-size: 14px;
}

.home-logo {
    height: 30px;
    position: fixed;
    top: 10px;
    left: 10px;
    filter: drop-shadow(0px 0px 1px rgb(200, 200, 200));
}

.company-name {
    text-decoration: none;
    color: white;
    transition: 0.5s ease;
    margin-left: 30px;
}

.header button {
    margin-right: 20px;
    padding: 0;
    float: right;
    border: none;
    text-shadow: 0px 0px 3px black;
    background: none;
    cursor: pointer;
    transition: 0.5s ease;
}

.header button:first-of-type {
    margin-left: auto;
}

.header button:last-child {
    margin-right: 0;
}

.header-phone {
    color: white;
    text-decoration: none;
    font-size: inherit;
    margin-right: 20px;
}

.header-email {
    color: white;
    text-decoration: none;
    font-size: inherit;
}

.banner {
    margin: 0px 10px 0 10px;
    padding-top: 10px;
    align-items: center;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
}

.banner-image {
    width: 100%;
    border: 0;
    border-radius: 7px;
    box-shadow: 0px 0px 3px rgb(200, 200, 200);
    text-shadow: 0px 0px 3px rgb(200, 200, 200);
}

.services {
    margin: 20px 10px 0 10px;
}

.services .title {
    width: 100%;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    font-size: 18px;
}

.service-container {
    display: flex;
    flex-direction: row;
    background: rgb(250, 250, 250);
    border-radius: 7px;
    border: 0;
    box-shadow: 0px 0px 3px rgb(200, 200, 200);
    padding: 20px 10px 10px 10px;
}

.service-icon {
    color: rgb(0, 123, 206);
    font-size: 100px;
    width: 100%;
    text-align: center;
    text-shadow: 0px 0px 3px rgb(100, 100, 100);
    cursor: pointer;
    transition: 0.5s ease;
}

.service {
    width: calc(100% / 5);
    display: flex;
    flex-direction: column;
}

.service .title {
    width: 100%;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0;
}

.service .description {
    padding: 5px 10px 5px 10px;
    background: white;
    border-radius: 7px;
    box-shadow: inset 0px 0px 3px rgb(200, 200, 200);
    margin: 10px 5px 0 5px;
    display: none;
}

.service:first-child .description {
    margin-left: 0;
}

.service:last-child .description {
    margin-right: 0;
}

.service .description .service-link {
    text-align: center;
    width: 100%;
}

.stats {
    margin: 20px 10px 0 10px;
}

.stats .title {
    width: 100%;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    font-size: 18px;
}

.stat-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    gap: 10px;
}

.stat-container .stat {
    background: rgb(250, 250, 250);
    border-radius: 7px;
    box-shadow: 0px 0px 3px rgb(200, 200, 200);
    padding: 10px 20px 10px 20px;
    width: calc(25% - 20px);
    text-align: center;
}

.chart-wrapper {
    height: 250px;
}

.detection-title {
    font-size: 18px;
}

.contact {
    margin: 20px 10px 0 10px;
}

.contact .title {
    width: 100%;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    font-size: 18px;
}

.contact-container {
    display: flex;
}

.find {
    width: 50%;
}

.find iframe {
    border-radius: 7px;
    box-shadow: 0px 0px 3px black;
}

.lead {
    width: calc(50% - 15px);
}

.lead form {
    margin-left: 5px;
    background: rgb(250, 250, 250);
    border-radius: 7px;
    box-shadow: 0px 0px 3px rgb(200, 200, 200);
    padding: 5px 10px 10px 10px;
    width: calc(100% - 10px);
}

.lead form .title,
#overlay-container form .title {
    font-size: 18px;
}

.lead-row {
    display: flex;
    width: 100%;
}

.lead-row div {
    width: 50%;
}

.lead-row div:first-child {
    margin-right: 10px;
}

.lead-input {
    border-radius: 5px;
    border: 0;
    box-shadow: inset 0px 0px 2px rgb(175, 175, 175);
    outline: none;
    width: calc(100% - 20px);
    height: 30px;
    font-size: 14px;
    padding: 0 10px 0 10px;
    transition: 0.5s ease;
}

.lead-referred-container {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-bottom: 30px;
}

.lead-select {
    border-radius: 5px;
    border: 0;
    box-shadow: inset 0px 0px 2px rgb(175, 175, 175);
    outline: none;
    height: 30px;
    font-size: 14px;
    padding: 0 10px 0 10px;
    width: auto;
    flex-shrink: 0;
    transition: 0.5s ease;
}

.lead-input-other {
    border-radius: 5px;
    border: 0;
    box-shadow: inset 0px 0px 2px rgb(175, 175, 175);
    outline: none;
    height: 30px;
    font-size: 14px;
    padding: 0 10px 0 10px;
    flex: 1;
    min-width: 0;
    transition: 0.5s ease;
}

.lead form textarea,
#overlay-container form textarea {
    width: calc(100% - 20px);
    height: 195px;
    resize: none;
    font-size: 14px;
    padding: 5px 10px 5px 10px;
    border-radius: 7px;
    border: 0;
    box-shadow: inset 0px 0px 2px rgb(175, 175, 175);
    outline: none;
    transition: 0.5s ease;
}

.lead form button,
#overlay-container form button {
    border-radius: 7px;
    border: 0;
    padding: 5px 15px 5px 15px;
    margin-top: 10px;
    box-shadow: 0px 0px 3px rgb(100, 100, 100);
    transition: 0.5s ease;
}

.reviews {
    margin: 20px 10px 0px 10px;
}

.reviews .title {
    width: 100%;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    font-size: 18px;
    margin-bottom: 5px;
}

#reviews-overall {
    background: rgb(250, 250, 250);
    border-radius: 7px;
    box-shadow: 0px 0px 3px rgb(175, 175, 175);
    padding: 5px 10px 5px 10px;
    display: flex;
}

.google-logo {
    height: 30px;
    margin-top: 5px;
    -webkit-user-select: none;
    user-select: none;
}

#reviews-overall .overall-text {
    color: black !important;
    text-shadow: none !important;
    display: inline;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    top: -5px;
}

#review-google-button {
    border-radius: 7px;
    border: 0;
    margin-left: auto;
    padding: 0 15px 0 15px;
    text-shadow: 0px 0px 3px black;
    box-shadow: 0px 0px 3px rgb(100, 100, 100);
    height: 50px;
    margin-top: auto;
    margin-bottom: auto;
    transition: 0.5s ease;
}

#reviews-container {
    display: flex;
    margin-top: 10px;
    overflow-x: auto;
    padding: 2px 2px 10px 2px;
    overflow-y: hidden;
}

.reviews .review {
    background: rgb(250, 250, 250);
    border-radius: 7px;
    box-shadow: 0px 0px 3px rgb(175, 175, 175);
    margin: 0 5px 0 5px;
    padding: 5px 10px 0px 10px;
    width: 200px;
    min-width: 200px;
}

.reviews .review:first-of-type {
    margin-left: 0;
}

.reviews .review:last-of-type {
    margin-right: 0;
}

.review-header {
    display: flex;
}

.review-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    -webkit-user-select: none;
    user-select: none;
}

.reviewer-name-and-rating {
    display: flex;
    flex-direction: column;
    -webkit-user-select: none;
    user-select: none;
}

.reviewer-name-and-rating div:first-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 150px;
}

.review-stars {
    -webkit-user-select: none;
    user-select: none;
}

.stars-outer {
    display: inline-block;
    position: relative;
    top: -5px;
    color: #ccc;
    text-shadow: 0px 0px 1px black;
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: gold;
    width: 0;
    text-shadow: 0px 0px 1px black;
}

.stars-outer::before,
.stars-inner::before {
    content: '★★★★★';
    font-family: Arial, sans-serif;
}

.review-comment {
    height: 275px;
    overflow-y: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.review-read-more {
    margin: 10px 0 10px 0;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: 0.5s ease;
}

.review-expanded {
    max-width: 600px;
    background: rgb(250, 250, 250);
    border-radius: 7px;
    box-shadow: 0px 0px 3px rgb(175, 175, 175);
    padding: 20px;
}

.footer {
    display: flex;
    padding: 20px 0px 20px 0px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    text-shadow: 0px 0px 3px black;
    box-shadow: 0px 0px 3px rgb(100, 100, 100);
    z-index: 2;
    position: relative;
}

.store-hours,
.contact-information,
.store-address {
    margin: 0 auto 0 auto;
}

.hours-container {
    display: flex;
}

.hours-times {
    text-align: right;
    padding-left: 20px;
}

.contact-information {
    display: flex;
}

.map-frame {
    width: calc(100% - 5px);
    height: 519px;
    border: 0;
}

.contact-information a {
    text-decoration: none;
    color: white;
    transition: 0.5s ease;
}

.contact-method {
    -webkit-user-select: none;
    user-select: none;
}

.contact-data {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    text-align: right;
}

.overlay-title {
    font-size: 18px;
    -webkit-user-select: none;
    user-select: none;
}

#overlay-container .contact-information a {
    text-decoration: underline;
    color: LinkText;
}

.store-address {
    text-decoration: none;
    color: white;
    transition: 0.5s ease;
}

.theme {
    background: rgb(0, 123, 206);
    color: white
}

.dragon-drop {
    z-index: 9999;
    position: absolute;
    cursor: move;
}

#overlay-container,
#message-container {
    position: fixed;
    background: rgba(175, 175, 175, 0.5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    top: 0px;
    left: 0px;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
}

.overlay-item {
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 7px;
    border: 0;
    box-shadow: 0px 0px 3px rgb(100, 100, 100);
}

#overlay-container form {
    margin: 0;
}

.overlay-service {
    width: 600px;
}

.hide-on-small-1 {
    display: inline;
}

.show-on-small-1 {
    display: none;
}

.hide-on-small-2 {
    display: inline;
}

.show-on-small-2 {
    display: none;
}

.affiliate {
    margin: 20px 10px 0 10px;
}

.affiliate .title {
    width: 100%;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    font-size: 18px;
}

#products-container {
    display: flex;
    margin-top: 10px;
    overflow-x: auto;
    padding: 2px 2px 10px 2px;
}

.product-item {
    background: rgb(250, 250, 250);
    border-radius: 7px;
    box-shadow: 0px 0px 3px rgb(175, 175, 175);
    margin: 0 5px 0 5px;
    width: 200px;
    min-width: 200px;
    padding: 10px;
    transition: 0.5s ease;
}

.product-item:first-child {
    margin-left: 0;
}

.product-item:last-child {
    margin-right: 0;
}

.product-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    border-radius: 7px;
    border: 0;
    background: rgb(240, 240, 240);
    box-shadow: 0px 0px 3px rgb(175, 175, 175);
    -webkit-user-select: none;
    user-select: none;
    overflow: hidden;
}

.product-item .product-name {
    font-size: 18px;
}

.product-item a img {
    width: 100%;
    max-height: 200px;
    box-shadow: 0px 0px 3px rgb(175, 175, 175);
}

.product-item .product-description {
    height: 278px;
    overflow-y: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.product-read-more {
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: 0.5s ease;
}

.product-expanded {
    max-width: 600px;
    background: rgb(250, 250, 250);
    border-radius: 7px;
    box-shadow: 0px 0px 3px rgb(175, 175, 175);
    padding: 20px;
}

.product-expanded img {
    margin-top: 5px;
    width: 100%;
    border-radius: 7px;
    border: 0;
    box-shadow: 0px 0px 3px rgb(175, 175, 175);
}

.product-expanded .product-name {
    font-size: 18px;
}

.product-expanded a {
    margin-top: 20px;
    display: block;
    width: 100%;
    text-align: center;
    color: LinkText;
}

.membership {
    margin: 20px 10px 0px 10px;
    padding: 20px 10px 0px 10px;
}

.membership .title {
    width: 100%;
    text-align: center;
    -webkit-user-select: none;
    user-select: none;
    font-size: 18px;
}

.membership-section {
    margin-top: 10px;
}

.membership-section .title {
    font-size: 16px;
    text-align: left;
}

.membership-section .description .bold {
    display: inline;
}

ul {
    margin-top: 0;
    margin-bottom: 0;
}

#overlay-close-button,
#message-close-button {
    position: relative;
    float: right;
    background: none;
    border: 0;
    transition: 0.5s ease;
}

@import url("https://fonts.googleapis.com/css?family=Fredoka+One");

.store-container {
    line-height: 0;
    margin: 50px auto;
    width: 50%;
}

.stroke {
    stroke: #0170bb;
    stroke-width: 5;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

.round-end {
    stroke-linecap: round;
}

#store {
    animation: fadeIn 0.8s ease-in;
}

.border-animation {
    background-color: white;
    border-radius: 10px;
    position: relative;
}

.border-animation:after {
    content: "";
    background: linear-gradient(45deg, #ccc 48.9%, #0170bb 49%);
    background-size: 300% 300%;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    left: -5px;
    height: calc(100% + 10px);
    width: calc(100% + 10px);
    z-index: -1;
    animation: borderGradient 8s linear both infinite;
}

@keyframes borderGradient {

    0%,
    100% {
        background-position: 0% 100%;
    }

    50% {
        background-position: 100% 0%;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

#browser {
    transform: translateY(-100%);
    -webkit-animation: moveDown 1.5s cubic-bezier(0.77, -0.5, 0.3, 1.5) forwards;
    animation: moveDown 1.5s cubic-bezier(0.77, -0.5, 0.3, 1.5) forwards;
}

@keyframes moveDown {
    from {
        transform: translate(0, -100%);
    }

    to {
        transform: translate(0, 0);
    }
}

#toldo {
    animation: fadeIn 1s 1.4s ease-in forwards;
}

.grass {
    animation: fadeIn 0.5s 1.6s ease-in forwards;
}

#window {
    animation: fadeIn 0.5s 1.8s ease-in forwards;
}

#door {
    animation: fadeIn 0.5s 2s ease-in forwards;
}

#sign {
    transform-origin: 837px 597px;
    animation: pendulum 1.5s 2s ease-in-out alternate;
}

.trees {
    animation: fadeIn 0.5s 2.2s ease-in forwards;
}

#toldo,
.grass,
#window,
#door,
.trees,
.cat,
.cat-shadow,
.box,
.parachute,
.tshirt,
.cap,
.ball,
#text,
#button,
.sky-circle,
.sky-circle2,
.sky-circle3 {
    opacity: 0;
}

@keyframes pendulum {
    20% {
        transform: rotate(60deg);
    }

    40% {
        transform: rotate(-40deg);
    }

    60% {
        transform: rotate(20deg);
    }

    80% {
        transform: rotate(-5deg);
    }
}

.cat {
    transform-origin: 1145px 620px;
}

.cat-shadow {
    transform-origin: 1115px 625px;
}

#store:hover .cat {
    animation: catHi 3s 3s cubic-bezier(0.7, -0.5, 0.3, 1.4);
}

#store:hover .cat-shadow {
    animation: catShadow 4s 2s cubic-bezier(0.7, -0.5, 0.3, 1.4) alternate;
}

@keyframes catHi {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }

    10%,
    60% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes catShadow {

    0%,
    100% {
        transform: translate(40px, -35px) scale(0.3);
    }

    10%,
    60% {
        opacity: 1;
        transform: translate(-5px, 10px) scale(0.5);
    }

    60% {
        opacity: 0;
    }
}

.box,
.parachute {
    transform-origin: 430px 100px;
    animation: moveBox 14s 4s linear forwards infinite;
}

.parachute {
    animation: parachute 14s 4s linear forwards infinite;
}

@keyframes moveBox {
    0% {
        opacity: 0;
        transform: translate(0, -150px) rotate(20deg);
    }

    15% {
        opacity: 1;
        transform: translate(0, 100px) rotate(-15deg);
    }

    25% {
        transform: translate(0, 250px) rotate(10deg);
    }

    30% {
        transform: translate(0, 350px) rotate(-5deg);
    }

    35% {
        opacity: 1;
        transform: translate(0, 570px) rotate(0deg);
    }

    45%,
    100% {
        opacity: 0;
        transform: translate(0, 570px);
    }
}

@keyframes parachute {
    0% {
        transform: translate(0, -150px) rotate(20deg) scale(0.8);
        opacity: 0;
    }

    15% {
        transform: translate(0, 100px) rotate(-15deg) scale(1);
        opacity: 1;
    }

    25% {
        transform: translate(0, 250px) rotate(10deg);
    }

    30% {
        transform: translate(0, 350px) rotate(-5deg);
    }

    33% {
        transform: translate(0, 460px) rotate(0deg) scale(0.9);
        opacity: 1;
    }

    45%,
    100% {
        transform: translate(0, 480px);
        opacity: 0;
    }
}

.tshirt {
    animation: fadeInOut 42s 10s ease-in forwards infinite;
}

.cap {
    animation: fadeInOut 42s 24s ease-in forwards infinite;
}

.ball {
    animation: fadeInOut 42s 38s ease-in forwards infinite;
}

#text,
#button {
    animation: fadeIn 1s 5s ease-in forwards;
}

@keyframes fadeInOut {

    5%,
    12% {
        opacity: 1;
    }

    20% {
        opacity: 0;
    }
}

.cloud {
    animation: clouds 50s linear backwards infinite;
}

.cloud2 {
    animation: clouds 40s 40s linear backwards infinite;
}

.plane {
    animation: clouds 30s linear backwards infinite;
    will-change: transform;
}

@keyframes clouds {
    from {
        transform: translate(-150%, 0);
    }

    to {
        transform: translate(150%, 0);
    }
}

.sky-circle {
    animation: fadeInOut 10s 5s ease-in infinite;
}

.sky-circle2 {
    animation: fadeInOut 12s 30s ease-in infinite;
}

.sky-circle3 {
    animation: fadeInOut 8s 40s ease-in infinite;
}

.message-text {
    text-align: center;
}

.message-check {
    text-shadow: 0 0 2px black;
    color: green;
    font-size: 100px;
}

.message-cross {
    text-shadow: 0 0 2px black;
    color: red;
    font-size: 100px;
}