/*-----------------------------------------------------------------------
    Fonts
-----------------------------------------------------------------------*/

@import url("https://use.typekit.net/wxn8oqh.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900");

/*-----------------------------------------------------------------------
    Variables
-----------------------------------------------------------------------*/

:root {
    --admin-height: 32px;
    --header-height: 100px;

    --font-primary: "Poppins", sans-serif;
    --font-secondary: "the-seasons", sans-serif;

    --white: #ffffff;
    --white-rgb: 255, 255, 255;

    --grey: #aaaaaa;
    --grey-rgb: 170, 170, 170;

    --black: #000000;
    --black-rgb: 0, 0, 0;

    --wine: #30131f;
    --wine-rgb: 48, 19, 31;

    --berry: #572337;
    --berry-rgb: 87, 35, 55;

    --plum: #5c3f48;
    --plum-rgb: 92, 63, 72;

    --peach: #f9ccbd;
    --peach-rgb: 249, 204, 189;

    --lace: #ffe5e5;
    --lace-rgb: 255, 229, 229;

    --silk: #fcf1f1;
    --silk-rgb: 252, 241, 241;

    --red: #ff1414;
    --red-rgb: 255, 20, 20;

    --border-radius-sm: 5px;
    --border-radius-md: 12px;
    --border-radius-lg: 30px;

    --container-xs: 620px;
    --container-sm: 820px;
    --container-md: 1040px;
    --container-lg: 1260px;

    --box-shadow: 0 0 5px rgba(var(--black-rgb), 10%);

    --transition: 0.25s ease;
}

/* Responsive */

@media (max-width: 782px) {
    :root {
        --admin-height: 46px;
    }
}

@media (max-width: 990px) {
    :root {
        --header-height: 70px;
    }
}

/*-----------------------------------------------------------------------
    Base
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme *,
.sunnyaesthetics-theme *:before,
.sunnyaesthetics-theme *:after {
    box-sizing: border-box;
}

.sunnyaesthetics-theme * {
    scroll-margin-top: calc(var(--header-height));
}

body.sunnyaesthetics-theme,
.editor-styles-wrapper {
    font-optical-sizing: auto;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    color: var(--plum);
    font-family: var(--font-primary) !important;
    font-size: 17px !important;
    line-height: 28px;
    font-weight: 300;
}

body.sunnyaesthetics-theme,
.editor-styles-wrapper,
.site-responsive-menu,
.site-main {
    background: #fffcfc;
}

.site-main {
    position: relative;
    transition: var(--transition) all;
    z-index: 1;
}

/*-----------------------------------------------------------------------
    Admin Bar
-----------------------------------------------------------------------*/

body.sunnyaesthetics-theme {
    padding-top: var(--header-height) !important;
}

body.sunnyaesthetics-theme.admin-bar {
    padding-top: calc(var(--header-height) + var(--admin-height)) !important;
}

#wpadminbar {
    top: 0;
    position: fixed;
    z-index: 20000000000000001;
}

#wpadminbar ul li.admin-bar-search {
    display: none !important;
}

/*-----------------------------------------------------------------------
    Layouts
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme *[class*="container-"],
.sunnyaesthetics-theme *[class*="section-"],
.sunnyaesthetics-theme *[class*="block-"],
.sunnyaesthetics-theme *[class*="entry-"],
.sunnyaesthetics-theme .relative {
    position: relative;
}

.sunnyaesthetics-theme .absolute {
    position: absolute;
}

/* Flex Layout */

.sunnyaesthetics-theme .flex-layout,
.sunnyaesthetics-theme .flex-align-start,
.sunnyaesthetics-theme .flex-align-center,
.sunnyaesthetics-theme .flex-align-end,
.sunnyaesthetics-theme .flex-justify-start,
.sunnyaesthetics-theme .flex-justify-center,
.sunnyaesthetics-theme .flex-justify-end,
.sunnyaesthetics-theme .flex-justify-between {
    display: flex;
    flex-wrap: wrap;
}

.sunnyaesthetics-theme .flex-align-start {
    align-items: flex-start;
}

.sunnyaesthetics-theme .flex-align-center {
    align-items: center;
}

.sunnyaesthetics-theme .flex-align-end {
    align-items: flex-end;
}

.sunnyaesthetics-theme .flex-justify-start {
    justify-content: flex-start;
}

.sunnyaesthetics-theme .flex-justify-center {
    justify-content: center;
}

.sunnyaesthetics-theme .flex-justify-end {
    justify-content: flex-end;
}

.sunnyaesthetics-theme .flex-justify-between {
    justify-content: space-between;
}

.sunnyaesthetics-theme .flex-row-reverse {
    flex-direction: row-reverse;
}

.sunnyaesthetics-theme .flex-column-reverse {
    flex-direction: column-reverse;
}

.sunnyaesthetics-theme .flex-nowrap {
    flex-wrap: nowrap;
}

.sunnyaesthetics-theme .flex-gap {
    gap: 15px;
}

/* Containers */

.sunnyaesthetics-theme .container,
.sunnyaesthetics-theme .container-xl,
.sunnyaesthetics-theme .container-lg,
.sunnyaesthetics-theme .container-md,
.sunnyaesthetics-theme .container-sm,
.sunnyaesthetics-theme .container-xs {
    z-index: 99;
    margin: 0 auto;
    width: calc(100% - 60px);
}

.sunnyaesthetics-theme .container,
.sunnyaesthetics-theme .container-xl {
    width: 100%;
}

.sunnyaesthetics-theme .container-lg {
    max-width: var(--container-lg);
}

.sunnyaesthetics-theme .container-md {
    max-width: var(--container-md);
}

.sunnyaesthetics-theme .container-sm {
    max-width: var(--container-sm);
}

.sunnyaesthetics-theme .container-xs {
    max-width: var(--container-xs);
}

/* Padding */

.sunnyaesthetics-theme .padding-lg,
.sunnyaesthetics-theme .padding-lg-top {
    padding-top: 80px;
}

.sunnyaesthetics-theme .padding-lg,
.sunnyaesthetics-theme .padding-lg-bot {
    padding-bottom: 80px;
}

.sunnyaesthetics-theme .padding-md,
.sunnyaesthetics-theme .padding-md-top {
    padding-top: 40px;
}

.sunnyaesthetics-theme .padding-md,
.sunnyaesthetics-theme .padding-md-bot {
    padding-bottom: 40px;
}

.sunnyaesthetics-theme .padding-sm,
.sunnyaesthetics-theme .padding-sm-top {
    padding-top: 20px;
}

.sunnyaesthetics-theme .padding-sm,
.sunnyaesthetics-theme .padding-sm-bot {
    padding-bottom: 20px;
}

/* Grid Layout */

.sunnyaesthetics-theme .grid-col-1,
.sunnyaesthetics-theme .grid-col-2,
.sunnyaesthetics-theme .grid-col-3,
.sunnyaesthetics-theme .grid-col-4,
.sunnyaesthetics-theme .grid-col-5,
.sunnyaesthetics-theme .grid-col-6 {
    display: grid;
    gap: 25px;
}

.sunnyaesthetics-theme .grid-col-2 {
    gap: 80px;
}

.sunnyaesthetics-theme .grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.sunnyaesthetics-theme .grid-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.sunnyaesthetics-theme .grid-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.sunnyaesthetics-theme .grid-col-5 {
    grid-template-columns: repeat(5, 1fr);
}

.sunnyaesthetics-theme .grid-col-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Visibility */

.sunnyaesthetics-theme .desktop-only {
    display: block;
}

.sunnyaesthetics-theme .mobile-only {
    display: none;
}

/* Block Settings */

.sunnyaesthetics-theme .block-setting-padding {
    padding-top: var(--block-padding-top);
    padding-bottom: var(--block-padding-bottom);
}

.sunnyaesthetics-theme .block-setting-background-colour {
    background-color: var(--block-background-colour);
}

/* Responsive */

@media (max-width: 1200px) {
    .sunnyaesthetics-theme .grid-col-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .sunnyaesthetics-theme .grid-col-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 860px) {
    .sunnyaesthetics-theme .padding-lg,
    .sunnyaesthetics-theme .padding-lg-top {
        padding-top: 40px;
    }

    .sunnyaesthetics-theme .padding-lg,
    .sunnyaesthetics-theme .padding-lg-bot {
        padding-bottom: 40px;
    }

    .sunnyaesthetics-theme .grid-col-2 {
        gap: 40px;
    }

    .sunnyaesthetics-theme .grid-col-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .sunnyaesthetics-theme .grid-col-3,
    .sunnyaesthetics-theme .grid-col-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sunnyaesthetics-theme .grid-col-5,
    .sunnyaesthetics-theme .grid-col-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .sunnyaesthetics-theme .block-setting-padding {
        padding-top: calc(var(--block-padding-top) / 1.5);
        padding-bottom: calc(var(--block-padding-bottom) / 1.5);
    }
}

@media (max-width: 770px) {
    .sunnyaesthetics-theme .container-lg,
    .sunnyaesthetics-theme .container-md,
    .sunnyaesthetics-theme .container-sm,
    .sunnyaesthetics-theme .container-xs {
        width: calc(100% - 30px);
    }

    .sunnyaesthetics-theme .grid-col-4,
    .sunnyaesthetics-theme .grid-col-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sunnyaesthetics-theme .desktop-only {
        display: none;
    }

    .sunnyaesthetics-theme .mobile-only {
        display: block;
    }
}

@media (max-width: 640px) {
    .sunnyaesthetics-theme .grid-col-3,
    .sunnyaesthetics-theme .grid-col-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .sunnyaesthetics-theme .grid-col-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*-----------------------------------------------------------------------
    Typography
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme h1,
.sunnyaesthetics-theme h1 *,
.sunnyaesthetics-theme .h1,
.sunnyaesthetics-theme .h1 *,
.sunnyaesthetics-theme h2,
.sunnyaesthetics-theme h2 *,
.sunnyaesthetics-theme .h2,
.sunnyaesthetics-theme .h2 *,
.sunnyaesthetics-theme h3,
.sunnyaesthetics-theme h3 *,
.sunnyaesthetics-theme .h3,
.sunnyaesthetics-theme .h3 *,
.sunnyaesthetics-theme h4,
.sunnyaesthetics-theme h4 *,
.sunnyaesthetics-theme .h4,
.sunnyaesthetics-theme .h4 *,
.sunnyaesthetics-theme h5,
.sunnyaesthetics-theme h5 *,
.sunnyaesthetics-theme .h5,
.sunnyaesthetics-theme .h5 *,
.sunnyaesthetics-theme h6,
.sunnyaesthetics-theme h6 *,
.sunnyaesthetics-theme .h6,
.sunnyaesthetics-theme .h6 *,
.sunnyaesthetics-theme ul,
.sunnyaesthetics-theme ol,
.sunnyaesthetics-theme li,
.sunnyaesthetics-theme p,
.sunnyaesthetics-theme a {
    margin: 0;
    padding: 0;
    text-wrap: wrap;
    word-wrap: break-word;
}

.sunnyaesthetics-theme h1,
.sunnyaesthetics-theme h1 *,
.sunnyaesthetics-theme .h1,
.sunnyaesthetics-theme .h1 *,
.sunnyaesthetics-theme h2,
.sunnyaesthetics-theme h2 *,
.sunnyaesthetics-theme .h2,
.sunnyaesthetics-theme .h2 *,
.sunnyaesthetics-theme h3,
.sunnyaesthetics-theme h3 *,
.sunnyaesthetics-theme .h3,
.sunnyaesthetics-theme .h3 *,
.sunnyaesthetics-theme h4,
.sunnyaesthetics-theme h4 *,
.sunnyaesthetics-theme .h4,
.sunnyaesthetics-theme .h4 *,
.sunnyaesthetics-theme h5,
.sunnyaesthetics-theme h5 *,
.sunnyaesthetics-theme .h5,
.sunnyaesthetics-theme .h5 *,
.sunnyaesthetics-theme h6,
.sunnyaesthetics-theme h6 *,
.sunnyaesthetics-theme .h6,
.sunnyaesthetics-theme .h6 * {
    font-family: var(--font-secondary);
    color: var(--berry);
    font-weight: 700;
}

.sunnyaesthetics-theme ul,
.sunnyaesthetics-theme ol,
.sunnyaesthetics-theme li,
.sunnyaesthetics-theme p,
.sunnyaesthetics-theme a {
    color: var(--plum);
    font-weight: 300;
}

.sunnyaesthetics-theme h1,
.sunnyaesthetics-theme h1 *,
.sunnyaesthetics-theme .h1,
.sunnyaesthetics-theme .h1 * {
    font-size: 60px;
    line-height: 70px;
    color: var(--wine);
}

.sunnyaesthetics-theme h2,
.sunnyaesthetics-theme h2 *,
.sunnyaesthetics-theme .h2,
.sunnyaesthetics-theme .h2 * {
    font-size: 35px;
    line-height: 45px;
}

.sunnyaesthetics-theme h3,
.sunnyaesthetics-theme h3 *,
.sunnyaesthetics-theme .h3,
.sunnyaesthetics-theme .h3 * {
    font-size: 25px;
    line-height: 35px;
}

.sunnyaesthetics-theme h4,
.sunnyaesthetics-theme h4 *,
.sunnyaesthetics-theme .h4,
.sunnyaesthetics-theme .h4 * {
    font-size: 20px;
    line-height: 26px;
}

.sunnyaesthetics-theme h5,
.sunnyaesthetics-theme h5 *,
.sunnyaesthetics-theme .h5,
.sunnyaesthetics-theme .h5 * {
    font-size: 18px;
    line-height: 20px;
}

.sunnyaesthetics-theme h6,
.sunnyaesthetics-theme h6 *,
.sunnyaesthetics-theme .h6,
.sunnyaesthetics-theme .h6 * {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    padding-left: 20px;
    text-transform: uppercase;
    position: relative;
}

.sunnyaesthetics-theme h6:before {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url("../img/emblem-dark.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
}

.sunnyaesthetics-theme p,
.sunnyaesthetics-theme li {
    font-weight: 300;
    font-size: 17px !important;
    line-height: 28px !important;
}

.sunnyaesthetics-theme strong,
.sunnyaesthetics-theme strong * {
    font-weight: 500 !important;
}

.sunnyaesthetics-theme a {
    text-underline-offset: 3px !important;
    text-decoration-thickness: 1px !important;
    transition: var(--transition) all;
    color: var(--berry);
    text-decoration: none;
}

.sunnyaesthetics-theme a:hover,
.sunnyaesthetics-theme a:focus {
    text-decoration: underline;
}

.sunnyaesthetics-theme ul,
.sunnyaesthetics-theme ol,
.sunnyaesthetics-theme li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sunnyaesthetics-theme code {
    padding: 10px;
    font-size: 14px;
    color: var(--white);
    background: var(--black);
}

.sunnyaesthetics-theme mark {
    background: none;
}

.sunnyaesthetics-theme hr {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--black);
}

/* Responsive */

@media (max-width: 860px) {
    .sunnyaesthetics-theme h1,
    .sunnyaesthetics-theme h1 *,
    .sunnyaesthetics-theme .h1,
    .sunnyaesthetics-theme .h1 * {
        font-size: 50px;
        line-height: 52px;
    }
}

@media (max-width: 770px) {
    .sunnyaesthetics-theme h1 br,
    .sunnyaesthetics-theme .h1 br,
    .sunnyaesthetics-theme h2 br,
    .sunnyaesthetics-theme .h2 br,
    .sunnyaesthetics-theme h3 br,
    .sunnyaesthetics-theme .h3 br,
    .sunnyaesthetics-theme h4 br,
    .sunnyaesthetics-theme .h4 br,
    .sunnyaesthetics-theme h5 br,
    .sunnyaesthetics-theme .h5 br {
        display: none;
    }

    .sunnyaesthetics-theme h1,
    .sunnyaesthetics-theme h1 *,
    .sunnyaesthetics-theme .h1,
    .sunnyaesthetics-theme .h1 * {
        font-size: 42px;
        line-height: 50px;
    }
}

/*-----------------------------------------------------------------------
    Content Styling
-----------------------------------------------------------------------*/

/* Sizes */

.sunnyaesthetics-theme .text-small,
.sunnyaesthetics-theme .text-small * {
    font-size: 14px !important;
}

.sunnyaesthetics-theme .text-sub,
.sunnyaesthetics-theme .text-sub * {
    font-size: 12px !important;
}

/* Alignment */

.sunnyaesthetics-theme .text-left {
    text-align: left;
}

.sunnyaesthetics-theme .text-center {
    text-align: center;
}

.sunnyaesthetics-theme .text-right {
    text-align: right;
}

/* Colours */

.sunnyaesthetics-theme .text-muted {
    opacity: 40%;
}

.sunnyaesthetics-theme .text-white,
.sunnyaesthetics-theme .text-white *:not(.button, button, .button *, button *, [class*="text-"], [style*="color"], .gform_validation_errors *) {
    color: var(--white) !important;
    border-color: var(--white);
}

/*-----------------------------------------------------------------------
    WYSIWYG Content
-----------------------------------------------------------------------*/

.wysiwyg-content {
    width: 100%;
    position: relative;
    z-index: 99;
}

.wysiwyg-content h1:not(:last-child),
.wysiwyg-content h2:not(:last-child),
.wysiwyg-content h3:not(:last-child),
.wysiwyg-content h4:not(:last-child),
.wysiwyg-content h5:not(:last-child),
.wysiwyg-content p:not(:last-child),
.wysiwyg-content ul:not(:last-child),
.wysiwyg-content ol:not(:last-child),
.wysiwyg-content img:not(:last-child),
.wysiwyg-content table:not(:last-child),
.wysiwyg-content code:not(:last-child),
.wysiwyg-content blockquote:not(:last-child) {
    margin: 0 0 20px !important;
}

.wysiwyg-content h6:not(:last-child) {
    margin: 0 0 10px !important;
}

.wysiwyg-content li:not(:last-child) {
    margin: 0 0 5px !important;
}

.wysiwyg-content .button-group {
    margin-top: 30px;
}

/* Emblem */

.wysiwyg-content .content-emblem,
.wysiwyg-content .content-emblem svg {
    width: 45px;
    height: 45px;
}

.wysiwyg-content .content-emblem {
    margin-bottom: 30px;
}

/* Subtitle */

.sunnyaesthetics-theme .text-center h6,
.wysiwyg-content h6[style*="text-align: center"] {
    display: block;
    max-width: fit-content;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Links */

.wysiwyg-content h5 a,
.wysiwyg-content p a,
.wysiwyg-content li a,
.wysiwyg-content span a {
    text-decoration: underline;
}

.wysiwyg-content a:hover {
    color: var(--wine);
}

/* Lists */

.wysiwyg-content ul,
.wysiwyg-content ol {
    display: inline-block;
}

.wysiwyg-content li {
    position: relative;
    text-align: left;
    padding: 0 0 0 20px;
}

.wysiwyg-content ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    border: 0.1em solid rgba(var(--white-rgb), 60%);
    background: var(--peach);
}

.wysiwyg-content ol {
    counter-reset: item;
    list-style-position: outside;
}

.wysiwyg-content ol li:before {
    content: counter(item) ". ";
    counter-increment: item;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Blockquote */

.wysiwyg-content blockquote {
    padding: 30px 50px;
    background: var(--silk);
    border-radius: var(--border-radius-md);
}

/* Hr */

.wysiwyg-content hr {
    margin: 30px 0;
}

/* Images */

.wysiwyg-content img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
}

.wysiwyg-content img:not(:first-child) {
    margin-top: 40px !important;
}

.wysiwyg-content img:not(:last-child) {
    margin-bottom: 40px !important;
}

.wysiwyg-content img.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none;
}

.wysiwyg-content img.alignleft {
    float: left;
}

.wysiwyg-content img.alignright {
    float: right;
}

.wysiwyg-content img.size-full {
    width: 100% !important;
}

/* Responsive */

@media (max-width: 770px) {
    .wysiwyg-content blockquote {
        padding: 30px;
    }
}

/*-----------------------------------------------------------------------
    Global Forms
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme form *[disabled] {
    opacity: 50%;
    pointer-events: none;
}

/* Labels */

.sunnyaesthetics-theme label,
.sunnyaesthetics-theme legend {
    display: block;
    margin: 5px 0;
    color: var(--black);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.sunnyaesthetics-theme label a,
.sunnyaesthetics-theme legend a {
    color: var(--black) !important;
    text-decoration: underline;
}

.sunnyaesthetics-theme label .required,
.sunnyaesthetics-theme .gravity-theme form label.gfield_required {
    font-size: inherit;
    color: var(--red);
}

/* Basic Fields */

.sunnyaesthetics-theme input:not([type="button"], [type="submit"]),
.sunnyaesthetics-theme select,
.sunnyaesthetics-theme textarea {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100%;
    height: auto;
    border: 0;
    border-radius: 0;
    border: 1px solid var(--grey);
    background: transparent;
    padding: 14px 16px;
    color: var(--black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    transition: none;
    resize: none;
}

.sunnyaesthetics-theme textarea {
    min-height: 100px;
    max-height: 200px;
}

.sunnyaesthetics-theme ::placeholder,
.sunnyaesthetics-theme ::-ms-input-placeholder,
.sunnyaesthetics-theme ::-webkit-input-placeholder {
    color: var(--black);
}

/* Select */

.sunnyaesthetics-theme select:not([multiple="multiple"]) {
    padding-right: 45px;
}

.sunnyaesthetics-theme select:not([multiple="multiple"]),
.sunnyaesthetics-theme .select2-container .select2-selection {
    background: url(../img/icon-chevron-down.svg) no-repeat;
    background-size: 12px;
    background-position: center right 20px;
    cursor: pointer;
}

.sunnyaesthetics-theme .select2,
.sunnyaesthetics-theme .select2 * {
    margin: 0;
    padding: 0;
}

.sunnyaesthetics-theme .select2-container .select2-selection,
.sunnyaesthetics-theme .select2-container .select2-selection .selection__rendered {
    line-height: 20px;
}

.sunnyaesthetics-theme .select2-container .select2-selection {
    margin: 0;
    outline: 0;
    display: block;
    height: auto;
    padding: 14px 16px;
    border: 1px solid var(--grey);
    background: transparent;
    color: var(--black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.sunnyaesthetics-theme .select2-selection__rendered,
.sunnyaesthetics-theme .select2-selection__placeholder {
    color: var(--black);
}

.sunnyaesthetics-theme .select2-dropdown {
    top: 0;
    border: 1px solid var(--black);
    background: var(--white);
}

.sunnyaesthetics-theme .select2-dropdown .select2-search,
.sunnyaesthetics-theme .select2-dropdown .select2-results__option {
    padding: 5px;
}

.sunnyaesthetics-theme .select2-dropdown .select2-results__option.select2-results__option--highlighted {
    background: var(--black);
}

.sunnyaesthetics-theme .select2-container .select2-selection__arrow {
    display: none;
}

/* Checkbox & Radio */

.sunnyaesthetics-theme input[type="checkbox"],
.sunnyaesthetics-theme input[type="radio"] {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 10px 0 0;
    min-height: 25px !important;
    min-width: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
    border: 1px solid var(--grey);
    border-radius: 3px;
    background: var(--white);
    box-shadow: none;
    transition: none;
    cursor: pointer;
}

.sunnyaesthetics-theme input[type="checkbox"],
.sunnyaesthetics-theme input[type="radio"],
.sunnyaesthetics-theme input[type="checkbox"] + label,
.sunnyaesthetics-theme input[type="radio"] + label {
    display: inline-block;
    vertical-align: top;
}

.sunnyaesthetics-theme input[type="checkbox"] + label,
.sunnyaesthetics-theme input[type="radio"] + label {
    margin: 3px 0 !important;
    font-size: 16px !important;
    line-height: 20px;
    width: calc(100% - 40px);
}

.sunnyaesthetics-theme input[type="radio"] {
    border-radius: 25px !important;
}

.sunnyaesthetics-theme input[type="checkbox"]:checked {
    border-color: var(--black);
    background: var(--black) url(../img/icon-checkbox.svg) 50% no-repeat;
    background-size: 16px;
}

.sunnyaesthetics-theme input[type="radio"]:checked {
    border: 6px solid var(--black);
}

.sunnyaesthetics-theme input[type="radio"]:before,
.sunnyaesthetics-theme input[type="checkbox"]:before {
    display: none !important;
}

/*-----------------------------------------------------------------------
    Gravity Forms
-----------------------------------------------------------------------*/

.gravity-theme form .gform_body,
.gravity-theme form .gform_fields,
.gravity-theme form .gform_footer {
    margin: 0 !important;
}

.gravity-theme form .gform_fields {
    gap: 10px 20px !important;
}

.gravity-theme form .ginput_complex {
    gap: 0 !important;
}

.gravity-theme .gform_required_legend {
    display: none !important;
}

/* Validation */

.gravity-theme form .gform_ajax_spinner,
.gravity-theme form .gform-loader {
    width: 12px;
    height: 12px;
    margin: 0 0 0 20px;
}

.gravity-theme .gform_validation_errors {
    outline: 0 !important;
    box-shadow: none !important;
    margin-bottom: 20px;
}

.gravity-theme form .gfield .gfield_validation_message {
    padding: 0;
    border: 0;
    background: transparent;
}

.gravity-theme .gform_validation_errors * {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--red);
}

/* Labels */

.gravity-theme form .ginput_preview *,
.gravity-theme form .gform-field-label,
.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
    margin: 5px 0;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: var(--black);
}

.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
    padding: 0 !important;
    font-weight: 300;
    color: rgba(var(--black-rgb), 50%);
}

/* Checkbox & Radio */

.gravity-theme form .gfield--type-choice .gchoice {
    margin: 10px 0 !important;
}

.gravity-theme form .gfield--type-choice input[type="checkbox"],
.gravity-theme form .gfield--type-choice input[type="radio"],
.gravity-theme form .gfield--type-consent input[type="checkbox"] {
    display: inline-block;
}

.gravity-theme form .gfield--type-choice input[type="checkbox"] + label,
.gravity-theme form .gfield--type-consent input[type="checkbox"] + label {
    display: inline-block;
    margin: 3px 0 !important;
    width: calc(100% - 40px) !important;
    vertical-align: top !important;
}

/* Date & Time */

.gravity-theme form .gfield--type-date .ginput_container,
.gravity-theme form .gfield--type-time .ginput_container {
    flex-basis: auto !important;
    max-width: 100% !important;
    flex: 1 !important;
}

.gravity-theme form .hour_minute_colon {
    line-height: 42px !important;
}

/* List */

.gravity-theme form .gfield_list .gfield_list_icons button {
    min-width: 16px !important;
    min-height: 16px !important;
    width: 16px !important;
    height: 16px !important;
}

/* File Upload */

.gravity-theme form .gfield--type-fileupload .gform_drop_area {
    border-color: var(--black) !important;
}

.gravity-theme form .gfield--type-fileupload .gform_drop_area .gform_button_select_files {
    margin: auto !important;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview {
    display: flex !important;
    align-items: center;
    margin: 10px 0 0 !important;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview * {
    order: 9;
    line-height: 18px;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview .gform_delete_file {
    order: 1;
    margin: 0;
    padding: 0;
    min-width: 0 !important;
    text-decoration: none;
}

/* Product */

.gravity-theme form .ginput_product_price_wrapper {
    width: 100%;
    margin: 0 0 10px;
}

/* Progress Bar */

.gravity-theme form .gf_progressbar_wrapper .gf_progressbar {
    margin: 0 0 20px !important;
}

.gravity-theme form .gf_progressbar_wrapper .gf_progressbar_title {
    font-size: 12px !important;
    margin: 0 0 10px !important;
}

.gravity-theme form .gf_progressbar,
.gravity-theme form .gf_progressbar_wrapper,
.gravity-theme form .gf_progressbar_percentage {
    border-radius: 20px !important;
}

.gravity-theme form .gf_progressbar {
    background: rgba(var(--black-rgb), 5%) !important;
}

.gravity-theme form .gf_progressbar_percentage {
    background: var(--black) !important;
}

/* Page Footer */

.gravity-theme form .gform-page-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gravity-theme form .gform-page-footer .button {
    margin: 0 !important;
}

.gravity-theme form .gform-page-footer .gform_previous_button:not(:hover, :focus),
.gravity-theme form .gform-page-footer .gform_next_button:not(:hover, :focus) {
    color: var(--black) !important;
}

.gravity-theme form .gform-page-footer .gform_previous_button:hover,
.gravity-theme form .gform-page-footer .gform_next_button :hover {
    color: var(--white) !important;
    background: var(--black) !important;
}

/*-----------------------------------------------------------------------
    Buttons
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sunnyaesthetics-theme .button svg {
    width: 14px;
    height: 14px;
    color: var(--white);
}

/* Default Styles */

.sunnyaesthetics-theme button,
.sunnyaesthetics-theme button:hover,
.sunnyaesthetics-theme button:focus,
.sunnyaesthetics-theme .button,
.sunnyaesthetics-theme .button:hover,
.sunnyaesthetics-theme .button:focus {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    display: inline-block;
    margin: 0;
    outline: 0;
    width: auto;
    height: auto;
    padding: 14px 30px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background: var(--berry);
    border: 1px solid var(--berry);
    border-radius: var(--border-radius-lg) !important;
    transition: var(--transition) background;
    cursor: pointer;
}

/* Hover/Focus */

.sunnyaesthetics-theme button:hover,
.sunnyaesthetics-theme button:focus,
.sunnyaesthetics-theme .button:hover,
.sunnyaesthetics-theme .button:focus {
    outline: 0;
    box-shadow: none;
    background: var(--wine);
}

/* Additional Styles */

.sunnyaesthetics-theme .button.button-white {
    color: var(--berry);
    background: var(--silk);
    border-color: var(--berry);
}

.sunnyaesthetics-theme .button.button-white:hover {
    background: var(--lace);
}

.sunnyaesthetics-theme .text-link,
.sunnyaesthetics-theme .text-link:hover,
.sunnyaesthetics-theme .text-link:focus {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    padding: 0 0 2px;
    text-decoration: none !important;
    position: relative;
}

.sunnyaesthetics-theme .text-link:after {
    content: "";
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    background: var(--wine);
    transition: var(--transition) width;
}

.sunnyaesthetics-theme .text-link:hover:after,
.sunnyaesthetics-theme .text-link:focus:after {
    width: 100%;
}

/* Responsive */

@media (max-width: 550px) {
    .sunnyaesthetics-theme .button-group {
        width: 100%;
    }
}

/*-----------------------------------------------------------------------
    Site Logo
-----------------------------------------------------------------------*/

.site-logo,
.site-logo img,
.site-logo svg {
    display: block;
    max-width: 180px;
    max-height: 70px;
    width: 100%;
    height: 100%;
    z-index: 20000;
    transition: none;
}

.site-footer .site-logo,
.site-footer .site-logo img,
.site-footer .site-logo svg {
    max-width: 180px;
    max-height: 145px;
}

/* Responsive */

@media (max-width: 990px) {
    .site-logo,
    .site-logo img,
    .site-logo svg {
        max-width: 140px;
        max-height: 55px;
    }
}

/*-----------------------------------------------------------------------
    Site Header
-----------------------------------------------------------------------*/

.site-header {
    top: 0;
    width: 100%;
    display: block;
    position: fixed;
    background: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 2000000002;
}

body.sunnyaesthetics-theme.admin-bar .site-header {
    top: var(--admin-height);
}

.site-header > div[class*="container"] {
    height: var(--header-height);
    flex-wrap: nowrap;
    gap: 20px;
}

/* Main Menu */

.site-header .main-menu {
    flex-wrap: nowrap;
}

.site-header ul li {
    position: relative;
}

.site-header ul li a {
    display: block;
    padding: 10px;
    color: var(--plum);
    font-size: 17px;
    font-weight: 400;
    text-decoration: none !important;
    transition: var(--transition) all;
}

.site-header ul li a:hover,
.site-header ul li a:focus,
.site-header ul > li.current-menu-item > a,
.site-header ul > li.current-menu-parent > a {
    color: var(--berry);
}

.site-header ul > li.current-menu-item > a,
.site-header ul > li.current-menu-parent > a {
    font-weight: 500;
}

.site-header ul:not(.sub-menu) {
    display: flex;
}

/* Sub Menu */

.site-header ul li .trigger-sub-menu svg {
    width: 12px;
    height: 12px;
    margin: 1px 0 0 4px;
}

.site-header ul.sub-menu {
    padding: 20px 25px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
}

.site-header ul.sub-menu li a {
    padding: 5px;
}

.site-header ul li .sub-menu-wrap {
    width: max-content;
    min-width: 160px;
    opacity: 0;
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    right: 50%;
    margin: 0;
    transform: translate(-50%);
    pointer-events: none;
    z-index: 20000;
}

.site-header ul ul .sub-menu-wrap {
    padding: 0 0 0 8px;
    top: 0;
    right: auto;
    left: 100%;
    transform: translate(0);
}

.site-header ul li:hover > .sub-menu-wrap {
    opacity: 1;
    pointer-events: all;
}

/* Hamburger */

.site-header .icon-hamburger {
    width: 40px;
    height: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.site-header .icon-hamburger span,
.site-header .icon-hamburger span:before,
.site-header .icon-hamburger span:after {
    display: block;
    position: absolute;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--berry);
    transition: background 0s 0.3s;
}

.site-header .icon-hamburger span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.site-header .icon-hamburger span:before {
    content: "";
    top: -8px;
    transition-property: top, transform;
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

.site-header .icon-hamburger span:after {
    content: "";
    bottom: -8px;
    transition-property: bottom, transform;
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

body.sunnyaesthetics-theme.menu-active .site-header .icon-hamburger span {
    background: none;
}

body.sunnyaesthetics-theme.menu-active .site-header .icon-hamburger span:before {
    top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.3s;
}

body.sunnyaesthetics-theme.menu-active .site-header .icon-hamburger span:after {
    bottom: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.3s;
}

/* Responsive Menu */

.site-responsive-menu {
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    top: var(--header-height);
    overflow-y: auto;
    background: var(--berry);
    padding: 50px;
    z-index: 0;
}

body.admin-bar .site-responsive-menu {
    top: calc(var(--header-height) + var(--admin-height));
}

.site-responsive-menu div[class*="container"] {
    width: 100%;
    opacity: 0;
    transition: var(--transition) all;
}

.site-responsive-menu .button-group {
    padding: 20px;
}

/* Responsive Menu: Menu */

.site-responsive-menu ul li a {
    display: block;
    font-weight: 300;
    color: var(--silk);
    text-decoration: none !important;
}

.site-responsive-menu .main-menu > ul > li > a {
    padding: 20px;
    font-family: var(--font-secondary);
    font-size: 46px;
    line-height: 50px;
}

.site-responsive-menu ul li .trigger-sub-menu {
    width: 20px;
    float: right;
}

.site-responsive-menu ul li a:hover,
.site-responsive-menu ul li a:focus,
.site-responsive-menu ul > li.current-menu-item > a,
.site-responsive-menu ul > li.current-menu-parent > a {
    color: var(--peach) !important;
}

/* Responsive Menu: Sub Menu */

.site-responsive-menu ul.sub-menu {
    padding-bottom: 10px;
}

.site-responsive-menu ul.sub-menu li a {
    font-size: 18px;
    padding: 0 20px 5px;
    color: var(--white);
}

.site-responsive-menu ul.sub-menu > li.current-menu-item > a,
.site-responsive-menu ul.sub-menu > li.current-menu-parent > a {
    font-weight: 500;
}

.site-responsive-menu ul li.menu-item-has-children ul.sub-menu,
.site-responsive-menu ul li.menu-item-has-children .sub-menu-wrap {
    display: none;
}

.site-responsive-menu ul li.menu-item-has-children.sub-menu-active > a > .trigger-sub-menu svg {
    transform: rotate(135deg);
}

.site-responsive-menu ul.sub-menu,
.site-responsive-menu ul li.menu-item-has-children.sub-menu-active > .sub-menu-wrap {
    display: block !important;
}

/* Responsive */

@media (min-width: 991px) {
    .site-header .trigger-menu,
    .site-responsive-menu {
        display: none !important;
    }
}

@media (max-width: 990px) {
    .site-header .main-menu ul,
    .site-header .main-menu .button {
        display: none !important;
    }

    .site-header .trigger-menu {
        display: flex !important;
    }

    body.menu-active .site-main {
        transform: translateX(-100%);
    }

    body.menu-active .site-responsive-menu div[class*="container"] {
        opacity: 1;
    }
}

/*-----------------------------------------------------------------------
    Site Footer
-----------------------------------------------------------------------*/

.site-footer {
    position: relative;
    background: var(--berry);
}

.site-footer .footer-columns a,
.site-footer .footer-columns p,
.site-footer .footer-columns li {
    color: var(--white);
    font-size: 14px !important;
    line-height: 18px !important;
}

.site-footer li {
    margin-top: 5px;
}

.site-footer li a:hover {
    text-decoration: none;
    color: var(--peach);
}

.site-footer .grid-col-2 {
    grid-template-columns: 270px 1fr;
}

.site-footer .col-1 .site-logo {
    display: block;
    margin: auto;
}

.site-footer .col-1 .button-group {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
}

.site-footer .col-2.flex-layout {
    gap: 70px;
    justify-content: flex-end;
}

.site-footer .footer-menu h5,
.site-footer .footer-contact h5 {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 500;
    color: var(--peach);
    margin: 0 0 20px;
}

.site-footer .footer-copyright {
    background: var(--silk);
    padding: 10px 0;
}

.site-footer .footer-copyright a,
.site-footer .footer-copyright p {
    font-size: 12px !important;
    line-height: 16px !important;
    font-weight: 400;
}

/* Responsive */

@media (max-width: 1040px) {
    .site-footer .grid-col-2 {
        grid-template-columns: 1fr;
    }

    .site-footer .col-1 {
        width: 270px;
    }

    .site-footer .col-2.flex-layout {
        gap: 40px 90px;
        justify-content: flex-start;
    }
}

@media (max-width: 770px) {
    .site-footer .col-1 {
        width: 100%;
    }

    .site-footer .col-2.flex-layout {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }

    .site-footer .col-1 .button-group {
        width: 100%;
    }

    .site-footer .footer-menu,
    .site-footer .footer-contact {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-copyright .flex-layout {
        justify-content: center;
        gap: 10px;
        text-align: center;
    }
}

/*-----------------------------------------------------------------------
    Media
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme img {
    max-width: 100%;
    height: auto;
    display: block;
}

.sunnyaesthetics-theme svg {
    transition: var(--transition) all;
}

.sunnyaesthetics-theme .image-square,
.sunnyaesthetics-theme .image-portrait,
.sunnyaesthetics-theme .image-landscape {
    width: 100%;
    background: var(--peach);
    position: relative;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.sunnyaesthetics-theme .image-square {
    aspect-ratio: 1 / 1;
}

.sunnyaesthetics-theme .image-portrait {
    aspect-ratio: 3 / 4;
}

.sunnyaesthetics-theme .image-landscape {
    aspect-ratio: 4 / 3;
}

/* Background Elements */

.sunnyaesthetics-theme .background-svg {
    position: absolute;
}

.sunnyaesthetics-theme .background-image,
.sunnyaesthetics-theme .background-video,
.sunnyaesthetics-theme .background-overlay:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.sunnyaesthetics-theme .background-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.sunnyaesthetics-theme .background-video,
.sunnyaesthetics-theme .background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sunnyaesthetics-theme .background-overlay:before {
    content: "";
    background: rgba(var(--black-rgb), 40%);
}

/* Background Shapes */

div[class*="block-"].has-shape-1.sunnyaesthetics-theme:after,
div[class*="block-"].has-shape-2.sunnyaesthetics-theme:after,
div[class*="block-"].has-shape-corner-1.sunnyaesthetics-theme:after,
div[class*="block-"].has-shape-corner-2.sunnyaesthetics-theme:after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    background-size: contain;
    pointer-events: none;
    max-height: 100%;
}

div[class*="block-"].has-shape-1.sunnyaesthetics-theme:after {
    width: 280px;
    height: 400px;
    background: url(../img/shape-1.svg) 50% no-repeat;
    top: 0;
    bottom: 0;
    left: -100px;
}

div[class*="block-"].has-shape-corner-1.sunnyaesthetics-theme:after,
div[class*="block-"].has-shape-corner-2.sunnyaesthetics-theme:after {
    width: 370px;
    height: 235px;
    top: 0;
    right: 0;
}

div[class*="block-"].has-shape-corner-1.sunnyaesthetics-theme:after {
    background: url(../img/shape-corner-1.svg) 50% no-repeat;
}

div[class*="block-"].has-shape-corner-2.sunnyaesthetics-theme:after {
    background: url(../img/shape-corner-2.svg) 50% no-repeat;
}

/* Video Embed */

.sunnyaesthetics-theme .responsive-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.sunnyaesthetics-theme .responsive-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Animations */

.sunnyaesthetics-theme .anim-spin {
    animation: spin 5s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*-----------------------------------------------------------------------
    Swiper
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme .swiper-carousel-wrap {
    min-width: 100%;
    overflow: hidden;
}

.sunnyaesthetics-theme .swiper .swiper-slide {
    width: auto;
    height: auto;
}

/* Pagination */

.sunnyaesthetics-theme .swiper-pagination {
    top: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.sunnyaesthetics-theme .swiper-pagination span {
    position: relative;
    opacity: 100%;
    margin: 0 3px;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    border: 2px solid var(--lace);
    background: var(--peach);
    transition: var(--transition) border-width;
}

.sunnyaesthetics-theme .swiper-pagination span.swiper-pagination-bullet-active {
    border-width: 4px;
}

/* Navigation */

.sunnyaesthetics-theme .swiper-navigation {
    top: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sunnyaesthetics-theme .swiper-navigation div[class*="swiper-nav-"] {
    width: 42px;
    height: 42px;
    border: 1px solid var(--berry);
    border-radius: var(--border-radius-lg);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition) background;
    cursor: pointer;
}

.sunnyaesthetics-theme .swiper-navigation div[class*="swiper-nav-"]:hover {
    background: var(--silk);
}

.sunnyaesthetics-theme .swiper-navigation div[class*="swiper-nav-"] svg {
    width: 16px;
    height: 16px;
    color: var(--berry);
}

/* Responsive */

@media (max-width: 860px) {
    .sunnyaesthetics-theme .swiper-pagination {
        margin-top: 15px;
    }
}

/*-----------------------------------------------------------------------
    Tables
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme table {
    border-collapse: collapse;
    width: 100%;
}

.sunnyaesthetics-theme table,
.sunnyaesthetics-theme table tr,
.sunnyaesthetics-theme table th,
.sunnyaesthetics-theme table td {
    border-color: var(--grey);
}

.sunnyaesthetics-theme table th,
.sunnyaesthetics-theme table td {
    padding: 10px;
    text-align: left;
    border: 1px solid var(--grey);
}

.sunnyaesthetics-theme table th,
.sunnyaesthetics-theme table th * {
    font-weight: 500;
}

.sunnyaesthetics-theme table .button {
    width: fit-content !important;
    margin: 5px 5px 5px 0 !important;
}

/*-----------------------------------------------------------------------
    Social Icons
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme .social-icons {
    gap: 5px;
}

.sunnyaesthetics-theme .social-icons a,
.sunnyaesthetics-theme .social-icons > div {
    padding: 4px 10px;
    background: var(--lace);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sunnyaesthetics-theme .social-icons a:hover,
.sunnyaesthetics-theme .social-icons div:hover {
    background: var(--peach);
}

.sunnyaesthetics-theme .social-icons svg {
    width: 16px;
    height: 16px;
    color: var(--wine);
}

.sunnyaesthetics-theme .social-icons svg:last-child {
    width: 12px;
    height: 12px;
    transform: rotate(-45deg);
}

/*-----------------------------------------------------------------------
    Clipboard Copy
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme .copy-to-clipboard {
    position: relative;
    cursor: pointer;
}

.sunnyaesthetics-theme .copy-to-clipboard .tooltip {
    background: var(--wine);
    padding: 5px 8px;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    white-space: nowrap;
    color: var(--white);
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -140%);
    transition: var(--transition) all;
}

.sunnyaesthetics-theme .copy-to-clipboard .tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--wine) transparent transparent transparent;
}

.sunnyaesthetics-theme .copy-to-clipboard:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/*-----------------------------------------------------------------------
    Popups
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme .trigger-popup,
.sunnyaesthetics-theme .popup-close {
    cursor: pointer;
    z-index: 20000;
}

.sunnyaesthetics-theme .popup-wrap {
    display: none;
}

.sunnyaesthetics-theme .popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--white-rgb), 90%);
    z-index: 20000000000;
}

/* Containers */

.sunnyaesthetics-theme .popup-overlay > *[class*="container"] {
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    background: var(--white);
}

/* Close Button */

.sunnyaesthetics-theme .popup-overlay .popup-close:not(.button) {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--berry);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sunnyaesthetics-theme .popup-overlay .popup-close svg {
    width: 12px;
    height: 12px;
}

/*-----------------------------------------------------------------------
    Categories & Tags
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme .group-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 99;
}

.sunnyaesthetics-theme .group-categories a,
.sunnyaesthetics-theme .group-categories span {
    padding: 10px 18px;
    font-size: 14px !important;
    line-height: 16px !important;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
}

.sunnyaesthetics-theme .group-categories a {
    background: var(--white);
}

.sunnyaesthetics-theme .group-categories a:hover,
.sunnyaesthetics-theme .group-categories a.is-active {
    background: var(--peach);
}

/* .sunnyaesthetics-theme .group-categories span {
    backdrop-filter: blur(4px);
    background: rgba(var(--white-rgb), 30%);
    border: 1px solid rgba(var(--white-rgb), 30%);
} */

.sunnyaesthetics-theme .group-categories span {
    backdrop-filter: blur(4px);
    background: rgba(var(--white-rgb), 30%);
}

.sunnyaesthetics-theme .group-categories span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 1px;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background: linear-gradient(160deg, rgba(var(--white-rgb), 70%), transparent, rgba(var(--white-rgb), 70%));
    border-radius: var(--border-radius-lg);
}

/*-----------------------------------------------------------------------
    Pagination
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme .archive-pagination {
    margin: auto;
    margin-top: 40px;
    width: fit-content;
    gap: 10px;
}

.sunnyaesthetics-theme .archive-pagination a {
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    font-weight: 500;
    text-align: center;
    border-radius: 40px;
    color: var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition) all;
}

.sunnyaesthetics-theme .archive-pagination a:hover {
    background: var(--lace);
}

.sunnyaesthetics-theme .archive-pagination a.is-current {
    background: var(--berry);
    color: var(--white);
}

.sunnyaesthetics-theme .post-pagination {
    margin-top: 40px;
}

.sunnyaesthetics-theme .post-pagination a {
    text-transform: uppercase;
}

/*-----------------------------------------------------------------------
    Entry - Default
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme *[class^="entry-"] {
    display: block;
    position: relative;
    text-decoration: none !important;
    transition: var(--transition) all;
}

.sunnyaesthetics-theme *[class^="entry-"] .inner-entry-content {
    padding: 10px 0;
}

.sunnyaesthetics-theme *[class^="entry-"] .inner-entry-content > *:not(:last-child) {
    margin: 0 0 10px !important;
}

/*-----------------------------------------------------------------------
    Block - Default
-----------------------------------------------------------------------*/

.wp-block .sunnyaesthetics-theme,
.sunnyaesthetics-theme *[class^="block-"] {
    overflow: hidden;
}

.sunnyaesthetics-theme .inner-block-header {
    margin-bottom: 50px;
}

/* Responsive */

@media (max-width: 770px) {
    .sunnyaesthetics-theme .inner-block-header {
        margin-bottom: 30px;
    }
}

/*-----------------------------------------------------------------------
    Block - Image Gallery
-----------------------------------------------------------------------*/

.block-image-gallery .carousel-gallery img {
    width: auto;
    height: 50vw;
    min-height: 360px;
    max-height: 400px;
    border-radius: var(--border-radius-md);
}

/*-----------------------------------------------------------------------
    Block - Accordion
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme .entry-accordion {
    display: block;
    padding: 25px 0;
    border-bottom: 1px solid rgba(var(--berry-rgb), 25%);
}

.sunnyaesthetics-theme .entry-accordion .trigger-accordion {
    flex: 1;
    position: relative;
    flex-wrap: nowrap;
    cursor: pointer;
    align-items: center;
    gap: 10px;
}

.sunnyaesthetics-theme .entry-accordion .inner-entry-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--berry);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sunnyaesthetics-theme .entry-accordion .inner-entry-icon svg {
    width: 12px;
    height: 12px;
}

.sunnyaesthetics-theme .entry-accordion.is-active .inner-entry-icon svg {
    transform: rotate(135deg);
}

.sunnyaesthetics-theme .entry-accordion .inner-entry-content {
    padding: 0;
    display: none;
}

/* Responsive */

@media (max-width: 640px) {
    .sunnyaesthetics-theme .entry-accordion {
        padding: 15px 0;
    }
}

/*-----------------------------------------------------------------------
    Block - Separator
-----------------------------------------------------------------------*/

.block-separator .separator {
    display: block;
    margin: 0;
    width: 100%;
    height: 1px;
    background: var(--block-background-colour);
}

.block-editor .block-separator {
    padding: 5px 0;
}

/*-----------------------------------------------------------------------
    Block - Hero Banner
-----------------------------------------------------------------------*/

.block-hero-banner {
    height: calc(100vh - var(--header-height));
}

body.sunnyaesthetics-theme.admin-bar .block-hero-banner {
    height: calc(100vh - var(--header-height) - var(--admin-height));
}

.block-hero-banner .block-setting-padding {
    height: 100%;
    display: flex;
    align-items: center;
}

.block-hero-banner .wysiwyg-content {
    max-width: 550px;
}

/* Responsive */

@media (max-width: 990px) {
    .block-hero-banner {
        height: auto !important;
    }
}

/*-----------------------------------------------------------------------
    Block - Page Banner
-----------------------------------------------------------------------*/

.block-page-banner .wysiwyg-content {
    max-width: 480px;
}

/*-----------------------------------------------------------------------
    Block - Split Content
-----------------------------------------------------------------------*/

.block-split-content .col-gallery {
    display: grid;
    align-items: center;
    gap: 25px;
}

.block-split-content .col-gallery img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    background-color: var(--peach);
}

.block-split-content .col-gallery.has-1-images img {
    aspect-ratio: 4 / 3;
}

.block-split-content .col-gallery.has-2-images img {
    aspect-ratio: 3 / 4;
}

.block-split-content .col-gallery.has-2-images {
    grid-template-columns: repeat(2, 1fr);
}

.block-split-content .col-gallery.has-3-images {
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
}

.block-split-content .col-gallery.has-3-images img {
    aspect-ratio: 26 / 19;
}

.block-split-content .col-gallery.has-3-images img:nth-child(1) {
    grid-row: span 2 / span 2;
    aspect-ratio: 31 / 36;
}

.block-split-content .col-gallery.has-3-images img:nth-child(3) {
    grid-column-start: 2;
}

/* Responsive */

@media (max-width: 860px) {
    .block-split-content .col-content {
        order: 9;
    }

    .block-split-content .col-image,
    .block-split-content .col-gallery {
        order: 1;
    }
}

@media (max-width: 770px) {
    .block-split-content .col-gallery {
        gap: 15px;
    }
}

/*-----------------------------------------------------------------------
    Block - Call to Action
-----------------------------------------------------------------------*/

.block-call-to-action .col-2 {
    grid-column-start: 2;
}

.block-call-to-action .background-image {
    width: 45%;
    right: auto;
    mask-image: url("../img/mask-image-1.svg");
    mask-size: cover;
    mask-position: center;
}

.block-call-to-action .background-svg {
    right: -150px;
    bottom: -100px;
}

/* Responsive */

@media (max-width: 860px) {
    .block-call-to-action div[class*="container-"] {
        padding-top: 50vw;
    }

    .block-call-to-action .background-image {
        height: 50vw;
        width: 100%;
        mask-position: bottom right;
        mask-size: 110%;
    }

    .block-call-to-action .col-2 {
        grid-column-start: 1;
    }
}

/*-----------------------------------------------------------------------
    Block - Services
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme .entry-service .inner-entry-image .background-image {
    transition: var(--transition) transform;
}

.sunnyaesthetics-theme .entry-service:hover .inner-entry-image .background-image {
    transform: scale(105%);
}

.sunnyaesthetics-theme .entry-service .inner-entry-content {
    padding: 25px 0;
}

/*----------------------------------------------------------------
    Block - Reviews
-----------------------------------------------------------------*/

.sunnyaesthetics-theme .entry-review .inner-entry-image {
    width: 70px;
    height: 70px;
    border-radius: 70px;
    overflow: hidden;
}

/* Responsive */

@media (min-width: 771px) {
    .sunnyaesthetics-theme .entry-review {
        padding: 0 80px;
    }

    .block-reviews .carousel-reviews div[class*="swiper-nav-"] {
        position: absolute;
        top: calc(50% - 30px);
        z-index: 999;
    }

    .block-reviews .carousel-reviews .swiper-nav-prev {
        left: 0;
    }

    .block-reviews .carousel-reviews .swiper-nav-next {
        right: 0;
    }
}

@media (max-width: 770px) {
    .block-reviews .carousel-reviews .swiper-navigation {
        margin-top: 30px;
        justify-content: flex-start;
    }
}

/*-----------------------------------------------------------------------
    Block - Icon Grid
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme .entry-icon {
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 10px 0 rgba(var(--black-rgb), 8%);
}

.sunnyaesthetics-theme .entry-icon img.inner-entry-icon {
    max-height: 50px;
    margin-bottom: 50px;
}

/*-----------------------------------------------------------------------
    Block - Post Feed
-----------------------------------------------------------------------*/

.sunnyaesthetics-theme .entry-post .group-categories {
    position: absolute;
    top: 20px;
    left: 20px;
}

.sunnyaesthetics-theme .entry-post .inner-entry-image {
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.sunnyaesthetics-theme .entry-post .inner-entry-image .background-image {
    transition: var(--transition) all;
}

.sunnyaesthetics-theme .entry-post:hover .inner-entry-image .background-image {
    transform: scale(1.1);
}

.sunnyaesthetics-theme .entry-post .inner-entry-content {
    padding: 25px 0;
}

/*-----------------------------------------------------------------------
    Block - Contact
-----------------------------------------------------------------------*/

.block-location div[class*="container-"] {
    padding: 50px;
    border-radius: var(--border-radius-md);
}

.block-location .entry-contact {
    margin-top: 20px;
}

.block-location .entry-contact .text-link {
    overflow-wrap: anywhere;
}

.block-location .entry-contact > h4 {
    margin-bottom: 8px;
}

.block-location .col-1 .flex-layout {
    gap: 0 15px;
}

.block-location .col-1 .flex-layout .text-link {
    font-size: 17px !important;
    font-weight: 300 !important;
}

.block-location .button-group {
    margin-top: 30px;
}

/* Responsive */

@media (max-width: 860px) {
    .block-location div[class*="container-"] {
        padding: 30px;
    }
}

/*---------------------------------------------------------------
    Block - Team
-----------------------------------------------------------------*/

.sunnyaesthetics-theme .entry-team {
    border-bottom: 1px solid rgba(var(--berry-rgb), 25%);
}

.sunnyaesthetics-theme .entry-team .inner-entry-content {
    position: relative;
    padding: 20px 0;
}

.sunnyaesthetics-theme .entry-team .inner-entry-content > *:not(:last-child) {
    margin: 0 !important;
}

.sunnyaesthetics-theme .entry-team .inner-entry-content svg {
    color: var(--peach);
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 24px;
}

.sunnyaesthetics-theme .entry-team .inner-entry-image .background-image {
    transition: var(--transition) transform;
}

.sunnyaesthetics-theme .entry-team:hover .inner-entry-image .background-image {
    transform: scale(105%);
}

/* Responsive */

@media (min-width: 861px) {
    .sunnyaesthetics-theme div[id*="popup-team-"] .grid-col-2 {
        grid-template-columns: 1fr 2fr;
    }
}

@media (max-width: 860px) {
    .sunnyaesthetics-theme div[id*="popup-team-"] .image-portrait {
        max-width: 350px;
    }
}

/*-----------------------------------------------------------------------
    Block - Before/After
-----------------------------------------------------------------------*/

.block-before-after div[class*="container-"] {
    padding: 50px;
    border-radius: var(--border-radius-md);
}

.block-before-after .col-1 {
    padding-bottom: 100px;
}

.block-before-after .col-2.col-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.block-before-after .carousel-split-compare .swiper-navigation-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.block-before-after .carousel-split-compare .swiper-navigation,
.block-before-after .carousel-split-compare .swiper-pagination {
    width: 100%;
    justify-content: flex-start;
    margin: 0;
}

.block-before-after .carousel-split-compare .swiper-pagination {
    margin-top: 25px;
}

/* Responsive */

@media (max-width: 860px) {
    .block-before-after div[class*="container-"] {
        padding: 30px;
    }

    .block-before-after .col-1 {
        padding-bottom: 0;
    }

    .block-before-after .carousel-split-compare {
        padding-bottom: 100px;
    }

    .block-before-after .carousel-split-compare .swiper-navigation-wrap {
        width: 100%;
    }

    .block-before-after .carousel-split-compare .swiper-navigation,
    .block-before-after .carousel-split-compare .swiper-pagination {
        justify-content: center;
    }
}

/*-----------------------------------------------------------------------
    Single - Post
-----------------------------------------------------------------------*/

.block-post-header .group-categories span {
    background: var(--white);
}

.block-post-header h1 {
    margin: 20px auto !important;
}

.block-post-header p {
    font-size: 14px !important;
    text-transform: uppercase;
}

.block-post-header img.image-landscape {
    aspect-ratio: 16 / 9;
    margin-top: 20px;
}

.block-post-content .flex-layout.has-sidebar {
    gap: 30px 80px;
    align-items: flex-start;
}

.block-post-content .flex-sidebar {
    width: 260px;
}

.block-post-content .flex-sidebar .social-icons {
    margin-top: 12px;
}

.block-post-content .flex-main {
    flex: 1;
}

/* Responsive */

@media (max-width: 860px) {
    .block-post-content .flex-sidebar {
        width: 100%;
    }
}
