@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}

:root {
    --coco-pink: #f9d4cc;
    --coco-brown: #6e6054;
    --coco-light: #fff8f0;
    --coco-dark: #293338;
}

*,*:before,*:after{
    box-sizing:inherit;
    cursor: inherit;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin:0;
    background-color: var(--coco-light);
}
body,h1,h2,h3,h4,h5,h6 {font-weight:normal; margin: 0; }
h1,h2,h3,h4,h5,h6 { padding: 0; }
  
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{
    display:block;
}
p { font-weight: 100; margin: 0; padding: 0; }

.lock-body { overflow: hidden; }
.dim-bg { background-color: rgba(0, 0, 0, .85); }

.header-wrapper {
    width: 100%;
    top: 0;
    position: sticky;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.header-container {
    border-radius: 0 0 5px 5px;
    max-width: 1200px;
    width: 100%;
    height: 4em;
    background-color: var(--coco-pink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
}

.promo-icon {
    transition: all .5s ease-in-out;
    width: 3em;
    height: 3em;
    animation: pulse-and-shake 2s infinite ease-in-out;
    cursor: pointer;
}
.promo-icon:hover {
    animation-play-state: paused;
}
.promo-icon path {
    transition: all .25s linear;
}
.promo-icon:hover path:nth-of-type(1) { fill: var(--coco-light); }
.promo-icon:hover path:nth-of-type(3) { fill: var(--coco-dark); }

@keyframes pulse-and-shake {
    0% {
        transform: scale(0.9) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(4deg);
    }
    50% {
        transform: scale(0.9) rotate(0deg);
    }
    75% {
        transform: scale(1.1) rotate(-4deg);
    }
    100% {
        transform: scale(0.9) rotate(0deg);
    }
}

.coco-logo-top-container {
    cursor: pointer;
    margin-left: .5em;
    transition: all .25s linear;
    border-radius: 5px;
    padding: 0 .25em;
}
.coco-logo-top-container:hover {
    background-color: #fae5dd;
}

.coco-logo-top {
    width: 8em;
    height: 3.5em;
}

.main-container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 2em .5em;
}

.coco-logo {
    width: 100%;
}

.landing-section {
    display: flex;
}

.landing-section-text-section {
    padding-right: 1em;
    max-width: 650px;
}

.landing-section-logo-container {
    display: flex;
    align-items: center;
    max-width: 400px;
    height: 15em;
}

.landing-section-logo-image {
    width: 420px;
}

.landing-section-big-text {
    padding-top: .5em;
    max-width: 700px;
    font-size: 4.5em;
    font-weight: 1000;
    color: var(--coco-dark);
}

.landing-section-medium-text {
    padding-top: .8em;
    font-size: 2.5em;
    color: var(--coco-brown);
    font-weight: 450;
}

.landing-section-image-container {
    margin-left: auto;
}

.landing-section-image {
    max-width: 420px;
    border-radius: 5px;
}

.book-an-appointment-button-container {
    margin-top: 2em;
}

.book-an-appointment-button {
    -webkit-tap-highlight-color: transparent;
    font-size: 1.15em;
    background-color: #222;
    color: var(--coco-pink);
    border-radius: 30px;
    padding: 1em 1.8em;
    border: none;
    outline: none;
    transition: all .25s linear;
    cursor: pointer;
}
.book-an-appointment-button:hover { color: #fff; }

.book-an-appointment-button-top {
    -webkit-tap-highlight-color: transparent;
    font-size: 1em;
    background-color: #222;
    color: var(--coco-pink);
    border-radius: 30px;
    padding: .8em 1.2em;
    border: none;
    outline: none;
    transition: all .25s linear;
    cursor: pointer;
    margin-right: .5em;
}
.book-an-appointment-button-top:hover { color: #fff; }

.section {
    margin: 3em 0;
    display: flex;
}

.centered-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image-container-right {
    margin-left: auto;
}

.section-image-container-left {
    margin-right: auto;
    padding-right: 2em;
}

.section-image {
    max-width: 420px;
    border-radius: 5px;
}

.big-brown-text {
    max-width: 700px;
    font-size: 4em;
    font-weight: 1000;
    color: var(--coco-brown);
}

.big-brown-text-centered {
    max-width: 700px;
    font-size: 4em;
    font-weight: 1000;
    color: var(--coco-brown);
    text-align: center;
}


.services-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-container {
    padding: 0 .2em;
    margin: 1em auto 2em auto;
    width: 380px;
}

.service-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 230px;
    overflow: hidden;
    border-radius: 20px;
    max-width: 380px;
}

#serviceImg1 {
    width: 100%;
    position: absolute;
    top: -180px;
    left: 0;
}

#serviceImg2 {
    width: 100%;
    position: absolute;
    top: -145px;
    left: 0;
}

#serviceImg3 {
    width: 100%;
    position: absolute;
    top: -105px;
    left: 0;
}

.service-card {
    background-color: var(--coco-dark);
    padding: 2em;
    margin-top: 1em;
    border-radius: 20px;
}

.service-card-title {
    text-align: center;
    color: var(--coco-pink);
    font-weight: 450;
    font-size: 1.15em;
}

.service-card-description {
    padding: 1em 0;
    text-align: center;
    color: var(--coco-pink);
    font-weight: 700;
    font-size: 1.35em;
}

.service-card-price {
    text-align: center;
    color: var(--coco-light);
    font-size: 1.15em;
    font-weight: 450;
}

.promise-section {
    display: flex;
}

.promise-section-content-container {
    max-width: 720px;
    padding: 2em;
}

.promises-container {
    padding-top: 4em;
}

.promise {
    font-weight: 450;
    text-align: center;
    font-size: 1.7em;
    margin-top: 2em;
    background-color: var(--coco-dark);
    color: var(--coco-pink);
    border-radius: 50px;
    padding: 1em 1.8em;
}

.promise-section-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 720px;
    overflow: hidden;
    border-radius: 20px;
    width: 680px;
}

#promiseImg {
    max-width: 680px;
    border-radius: 5px;
    width: 100%;
    position: absolute;
    top: -70px;
    left: 0;
}

.client-feedback-title {
    padding-top: .8em;
    max-width: 500px;
    font-size: 4em;
    font-weight: 700;
    color: var(--coco-dark);
}

.client-feedback-section {
    margin-top: 3em;
    display: flex;
}

.client-feedback-card {
    max-width: 350px;
    margin: 0 auto;
}

.client-feedback-card-text {
    font-size: 1.2em;
    font-weight: 450;
}

.client-feedback-card-initials {
    margin-top: 1.25em;
    font-weight: bold;
}

.something {
    margin-top: 4em;
    max-width: 1200px;
    background-image: url("images/relaxing.png");
    background-position: center;
    border-radius: 50px;
    height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2em;
}

.something-card {
    background-color: var(--coco-light);
    padding: 3em 2em;
    border-radius: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.big-dark-text {
    text-align: center;
    font-size: 4em;
    font-weight: 700;
    color: var(--coco-dark);
    margin: 0 auto;
}

.something-small-text {
    margin: 2em auto 0 auto;
    color: var(--coco-brown);
    font-size: 1.3em;
    max-width: 700px;
}

.contact-details-section {
    margin: 2em auto 0 auto;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.contact-detail-card {
    /*min-width: 250px;*/
    background-color: var(--coco-brown);
    padding: 2em;
    border-radius: 50px;
    display: flex;
    align-items: center;
    color: var(--coco-light);
    max-width: 400px;
    margin-top: 1em;
}

.contact-detail-title {
    font-size: 1.5em;
    font-weight: bold;
    padding-right: .5em;
}

.contact-detail-info {
    font-size: 1.3em;
}

@media (max-width: 1200px) {


    .big-brown-text {
        font-size: 3.5em;
    }
}

@media (max-width: 1100px) {

    .promises-container {
        padding-top: 1.85em;
    }
}

@media (max-width: 1102px) {

    .landing-section-big-text {
        font-size: 3.5em;
    }

    .landing-section-medium-text {
        font-size: 1.5em;
    }
}

@media (max-width: 1000px) {

    .promise-section-content-container {
        padding: 1em;
    }

    .promise {
        font-size: 1.5em;
        margin-top: 2em;
        padding: 1em 1.3em;
    }

}

@media (max-width: 900px) {

    .landing-section-text-section {
        margin: 0 auto;
        padding: 0;
    }

    .landing-section-logo-image {
        margin: 0 auto;
        width: 320px;
    }

    .landing-section-image-container {
        display: none;
    }

    .big-brown-text, .big-brown-text-centered {
        font-size: 3em;
    }

    .section-image {
        max-width: 380px;
    }

}

@media (max-width: 850px) {
    .big-brown-text {
        font-size: 2.8em;
    }

    .promises-container {
        padding-top: .5em;
    }

    .promise {
        font-size: 1.4em;
        margin-top: 1.8em;
        padding: .9em 1.1em;
    }
}


@media (max-width: 800px) {
    .something {
        height: 400px;
    }

    .section-image {
        max-width: 280px;
    }

    .big-dark-text {
        font-size: 2.5em;
    }
}

@media (max-width: 750px) {
    .promise-section {
        flex-wrap: wrap;
    }

    .promise-section-content-container {
        margin: 0 auto;
        padding: 0;
    }

    .promise-section-image-container {
        margin: 4em auto 0 auto;
        height: 620px;
        width: 500px;
    }

    #promiseImg {
        max-width: 500px;
        top: -20px;
        left: 0;
    }

}

@media (max-width: 716px) {
    .something-card {
        padding: 1em;
    }

    .something {
        background-image: none;
        padding: 0;
    }
}

@media (max-width: 700px) {

    .big-brown-text, .big-brown-text-centered {
        font-size: 2.5em;
    }
}

@media (max-width: 600px) {

    .book-an-appointment-button-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .landing-section-big-text {
        font-size: 2.5em;
    }

    .landing-section-medium-text {
        font-size: 1.25em;
    }

    .section {
        flex-wrap: wrap;
    }

    .section-image-container-left {
        padding-right: 0;
        margin: 0 auto;
    }

    .big-brown-text {
        text-align: center;
        margin: 1em auto 0 auto;
        font-size: 2em;
    }
}

@media (max-width: 550px) {
    .something {
        margin-top: 0;
    }
}

@media (max-width: 500px) {

    .book-an-appointment-button-top {
        font-size: 1em;
        padding: .65em 1em;
    }

    .coco-logo-top {
        width: 7em;
    }

    .promo-icon {
        width: 2.5em;
        height: 2.5em;
    }

    .big-dark-text {
        font-size: 2em;
    }

    .something-small-text {
        font-size: 1.05em;
    }

    .client-feedback-title {
        font-size: 3em;
    }

    .contact-detail-title {
        font-size: 1.3em;
    }

    .contact-detail-info {
        font-size: 1.2em;
    }

    .contact-detail-card {
        padding: 1.5em;
    }
}

@media (max-width: 450px) {

    .book-an-appointment-button-top {
        font-size: .8em;
        padding: .65em 1em;
    }

    .coco-logo-top {
        width: 6em;
    }

    .promo-icon {
        width: 2.25em;
        height: 2.25em;
    }

    #serviceImg1 {
        top: -180px;
    }

    #serviceImg2 {
        top: -130px;
    }

    #serviceImg3 {
        top: -95px;
    }

    .contact-detail-title {
        font-size: 1em;
    }

    .contact-detail-info {
        font-size: 1em;
    }

    .contact-detail-card {
        padding: 1.3em;
    }
}

@media (max-width: 400px) {
    .header-container {
        justify-content: center;
    }

    .coco-logo-top {
        display: none;
    }

    .promo-icon {
        width: 3em;
        height: 3em;
        margin: 0 1.25em 0 .5em;
    }

    .book-an-appointment-button-top {
        font-size: 1em;
        padding: .8em 1.2em;
        margin: 0 .5em 0 1.25em;
    }

}

@media (max-width: 370px) {
    #serviceImg1 {
        top: -160px;
    }

    #serviceImg2 {
        top: -110px;
    }

    #serviceImg3 {
        top: -75px;
    }

    .contact-detail-title {
        font-size: .85em;
    }

    .contact-detail-info {
        font-size: 1em;
    }

    .contact-detail-card {
        padding: 1.1em;
    }

}

@media (max-width: 350px) {
    #serviceImg1 {
        top: -140px;
    }

    #serviceImg2 {
        top: -90px;
    }

    #serviceImg3 {
        top: -65px;
    }

    .contact-detail-title {
        font-size: .8em;
    }

    .contact-detail-info {
        font-size: .9em;
    }

    .contact-detail-card {
        padding: 1em;
    }
}

@media (max-width: 350px) {
    .contact-detail-title {
        font-size: .75em;
    }

    .contact-detail-info {
        font-size: .8em;
    }

    .contact-detail-card {
        padding: .95em;
    }
}

.booking-modal {
    max-width: 900px;
    min-width: 280px;
    padding: 0;
    outline: none;
    background-color: var(--coco-light);
    border: 1px solid var(--coco-light);
    border-radius: 5px;
}
.booking-modal::backdrop {
    opacity: 0.7;
    background-color: black;
}

.booking-modal-body {
    padding: 1em;
    max-width: 900px;
    min-width: 280px;
}

.booking-method {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1em auto;
}

.appointment-logo-container {
    padding: .25em .5em;
    border-radius: 5px;
    transition: all .25s linear;
    cursor: pointer;
    height: 5em;
    width: 12em;
    display: flex;
    justify-content: center;
    margin: .5em;
    border: none;
}

.appointment-logo-container:hover {
    background-color: #efeadf;
    border-color: #e2c7b4;
}
.appointment-logo-container:hover .logo-fresha path, .appointment-logo-container:hover .logo-booksy path {
    fill: #000;
}

.logo-fresha {
    height: 5em;
    width: 9em;
}

.logo-fresha path {
    fill: #545454;;
    transition: all .25s linear;
}

.logo-booksy {
    height: 6em;
    width: 11em;
}

.logo-booksy path {
    fill: #545454;;
    transition: all .25s linear;
}

.top-nav-menu {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    background-color: transparent;
    transition: all .25s ease-in-out;
}

.top-nav-menu-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-nav-menu-mobile {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1em 0 1em 0;
    height: 1.8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: all .25s ease-in-out;
}

.top-nav-menu-scrolled {
    box-shadow: rgba(0, 0, 0, 0.12) 0 1px 3px, rgba(0, 0, 0, 0.24) 0 1px 2px;
    background-color: #fff;
}
.top-nav-menu-scrolled div>a {
    transition: all .25s ease-in-out;
    color: #000;
}

.hamburger {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    padding-right: 1em;
}
.hamburger input { display: none; }
.hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 3em;
    /* Define the transition for transforming the SVG */
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger .line {
    fill: none;
    stroke: #000;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 250ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger:has(.hamburger-scrolled) .line { stroke: #111; }
.line-top-bottom { stroke-dasharray: 12 63; }
.hamburger input:checked + svg .line { stroke: #111; }
.hamburger input:checked + svg { transform: rotate(-45deg); }
.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}
.hamburger-scrolled .line { stroke: #111; }

.side-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 95;
}

.side-menu-container {
    background-color: #fff;
    height: 100%;
    width: 25em;
    border-left: 1px solid #353535;
    margin-left: auto;
    position: fixed;
    right: 0;
    animation-name: animateRightToLeft;
    animation-duration: .25s;
    z-index: 96;
}

.reverse-side-menu-animation { animation-name: animateLeftToRight; }

@keyframes animateRightToLeft {
    from { right: -25em; opacity: 0 }
    to   { right: 0;     opacity: 1 }
}
@keyframes animateLeftToRight {
    from { right: 0;     opacity: 1 }
    to   { right: -25em; opacity: 0 }
}

.side-menu {
    height: 100vh;
    overflow: scroll;
    padding: 3.5em .5em 1em .5em;
    user-select: none;
}

@media (min-width: 1500px) {
    .side-menu-container { width: calc(50vw - 25em); }
    @keyframes animateRightToLeft {
        from { right: calc(-50vw + -25em); opacity: 0 }
        to   { right: 0;                   opacity: 1 }
    }
    @keyframes animateLeftToRight {
        from { right: 0;                   opacity: 1 }
        to   { right: calc(-50vw + -25em); opacity: 0 }
    }
}

@media (max-width: 900px) {

    .side-menu-container {
        max-width: 50%;
    }

    @keyframes animateRightToLeft {
        from {right: -50%; opacity: 0}
        to {right: 0; opacity: 1}
    }
    @keyframes animateLeftToRight {
        from {right: 0; opacity: 1}
        to {right: -50%; opacity: 0}
    }

}

@media (max-width: 500px) {

    .side-menu-container {
        max-width: 70%;
    }

    @keyframes animateRightToLeft {
        from {right: -50%; opacity: 0}
        to {right: 0; opacity: 1}
    }
    @keyframes animateLeftToRight {
        from {right: 0; opacity: 1}
        to {right: -50%; opacity: 0}
    }

    .side-menu-user-initials {
        font-size: 1.25em;
    }
    .side-menu-username {
        font-size: 1em;
    }
}

.side-menu-items-container {
    max-width: 20em;
    width: 100%;
}

.side-menu-item {
    margin: .5em 0 .5em auto;
    border-radius: 5px;
    color: #000;
    transition: all .25s linear;
}
.side-menu-item > a {
    display: inline-block;
    padding: .5em;
    width: 100%;
    height: 100%;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    font-weight: 450;
    transition: all .25s linear;
}
.side-menu-item:hover {
    background-color: #111;
}
.side-menu-item:hover > a {
    color: #fff;
}

.side-menu-section-title {
    font-size: 1.2em;
    padding: .5em .5em 0 .5em;
    margin: 1.2em 0 0 auto;
    font-weight: 450;
    color: #666;
}
.side-menu-section-title:first-of-type {
    margin: .8em 0 0 auto;
}

.nav-logo-wrapper {
    display: flex;
}

.nav-logo-container {
    margin: 1em auto 0 auto;
}

.nav-logo {
    max-width: 285px;
    height: 10em;
    cursor: pointer;
    border-radius: 10px;
}

.nav-btn {
    transition: all .3s ease-in-out;
    /*width: 10em;*/
    max-width: 12em;
    width: calc(100vw / 8);
    text-align: center;
    margin: 0 .75em;
    text-wrap: nowrap;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    /*color: var(--site-accent-color);*/
    color: white;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    /*background-color: var(--site-accent-color);*/
    background-color: #000;
    transform-origin: center;
    transition: transform .25s ease-out;
}

.hover-underline-animation-scrolled {
    color: #000;
}

.hover-underline-animation-scrolled::after {
    background-color: #000;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: center;
}

.social-media-nav {
    margin: 1em 0 0 .5em;
    display: flex;
    align-items: center;
}

.social-media-nav a {
    margin-right: .5em;
    height: 3em;
}

.social-media-nav>a>svg {
    cursor: pointer;
}

.social-media {
    margin: 2em auto 0 auto;
    /*margin-top: 2em;*/
    width: 15em;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.social-media>a>svg {
    cursor: pointer;
}

.facebook-link {
    transition: all .25s linear;
    border-radius: 50%;
    fill: var(--coco-light);
    background-color: #000;
    border: 2px solid #fff;
}
.facebook-link:hover {
    fill: #000;
    background-color: var(--coco-light);
    border: 2px solid #000;
}

.instagram-link {
    border-radius: 15px;
    transition: all .25s linear;
    fill: #000;
    background-color: var(--coco-light);
    border: 2px solid var(--coco-light);
}
.instagram-link:hover {
    fill: var(--coco-light);
    background-color: #000;
    border: 2px solid var(--coco-light);
}

.tik-tok-link {
    display: flex;
    align-items: center;
    transition: all .25s linear;
    border-radius: 50%;
    fill: var(--coco-light);
    background-color: #000;
    border: 2px solid var(--coco-light);
}
.tik-tok-link:hover {
    fill: #000;
    background-color: var(--coco-light);
    border: 2px solid #000;
}

.x-link {
    transition: all .25s linear;
    border-radius: 2px;
    padding: 2px;
    background-color: white;
    /*fill: var(--site-accent-color);*/
}
.x-link:hover {
    /*background-color: var(--site-accent-color);*/
    fill: white;
}

.facebook-link-nav {
    transition: all .25s linear;
    border-radius: 50%;
    fill: white;
    background-color: #000;
    border: 2px solid white;
}
.facebook-link-nav:hover {
    fill: #000;
    background-color: white;
    border: 2px solid #000;
}

.instagram-link-nav {
    border-radius: 15px;
    transition: all .25s linear;
    fill: #000;
    background-color: white;
    border: 2px solid white;
}
.instagram-link-nav:hover {
    fill: white;
    background-color: #000;
    border: 2px solid white;
}

.tik-tok-link-nav {
    display: flex;
    align-items: center;
    transition: all .25s linear;
    border-radius: 50%;
    fill: white;
    background-color: #000;
    border: 2px solid white;
}
.tik-tok-link-nav:hover {
    fill: #000;
    background-color: white;
    border: 2px solid #000;
}

.nav-btn-link {
    user-select: none;
    font-weight: 500;
    font-size: 1.3em;
    letter-spacing: 1px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.no-decoration { text-decoration: none; }
.hidden { display: none; }
.select-none { user-select: none; }
.bolder { font-weight: 450; }

.to-top-container {
    position: fixed;
    bottom: 2em;
    right: 2em;
    transition: all .25s ease-in-out;
}

.to-top-btn {
    width: 40px;
    height: 45px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    border: none;
}

.to-top-arrow { height: 1.5em; }
.to-top-arrow path { fill: white; }

.to-top-text {
    font-size: 1em;
    width: 100px;
    position: absolute;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -18px;
    opacity: 0;
    transition-duration: .7s;
}

.to-top-btn:hover .to-top-text {
    opacity: 1;
    transition-duration: .7s;
}

.to-top-btn:hover .to-top-arrow {
    animation: slide-in-bottom .7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.pointer { cursor: pointer; }

#about, #services {
    scroll-margin-top: 3em;
}
#contact {
    scroll-margin-top: 2em;
}

.appointment-image-container {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13em;
    height: 4em;
    padding: .5em 1em;
    margin: 0 1em;
    border-radius: 5px;
    transition: all .25s linear;
}
.appointment-image-container:hover {
    background-color: #222;
}
.appointment-image {
    width: 100%;
}

.appointment-logo-container {
    padding: .25em .5em;
    border-radius: 5px;
    transition: all .25s linear;
    cursor: pointer;
    height: 5em;
    width: 12em;
    display: flex;
    justify-content: center;
    margin: .5em;
}

.appointment-logo-container:hover {
    background-color: #000;
}
.appointment-logo-container:hover .logo-fresha path, .appointment-logo-container:hover .logo-booksy path {
    fill: #fff;
}

.logo-fresha {
    height: 5em;
    width: 9em;
}

.logo-fresha path {
    fill: #000;
    transition: all .25s linear;
}

.logo-booksy {
    height: 6em;
    width: 11em;
}

.logo-booksy path {
    fill: #000;
    transition: all .25s linear;
}

/*
  Below Webkit is used to make Chrome's scrollbars look better.
  These can be used (scrollbar-width: thin; scrollbar-color: #444 transparent;)
  but this will have to be applied to every element where overflow is expected
  and it makes firefox's scrollbar look glitched/broken.
  Below Webkit only affects Chrome and only needs to be in the CSS file to work
  on every overflow.
*/
::-webkit-scrollbar {
    width: 3px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #888;
    cursor: grab;
}
::-webkit-scrollbar-thumb:active {
    cursor: grabbing;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
}
::-webkit-scrollbar-track:hover {
    background-color: #333;
}

::-webkit-scrollbar-corner {
    background-color: transparent;
}

@media (max-width: 850px) {

    .nav-btn-link {
        font-size: 1.1em;
    }
}

@media (max-width: 665px) {
    .nav-btn-link {
        font-size: 1em;
    }
}

.close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s linear;
    margin-left: auto;
    margin-right: 10px;
    margin-top: 10px;
    background-color: var(--coco-light);
    border: none;
    padding: 0;
    outline: none;
}
.close-btn svg>path { transition: all .25s linear; }
.close-btn:hover svg>path:nth-of-type(1) { fill: #666; }
.close-btn:hover svg>path:nth-of-type(2) { fill: #eee; }

.remove-highlight {
    -webkit-tap-highlight-color: transparent;
}

.promo-modal {
    max-width: 900px;
    min-width: 280px;
    padding: 0;
    outline: none;
    background-color: var(--coco-light);
    border: 1px solid var(--coco-light);
    border-radius: 5px;
}
.promo-modal::backdrop {
    opacity: 0.7;
    background-color: black;
}

.promo-modal-body {
    padding: 1em;
    max-width: 480px;
    min-width: 280px;
}

.promo-modal-img {
    max-width: 100%;
}