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

@import url("https://use.typekit.net/avj7vft.css");

@font-face {
    font-family: "SeasonSans";
    src: url("../fonts/SeasonSans-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "SeasonSans";
    src: url("../fonts/SeasonSans-Medium.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

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

:root {
    --admin-height: 32px;
    --header-height: 75px;
    --notice-height: 33px;

    --font-primary: "SeasonSans";
    --font-secondary: "garamond-premier-pro", serif;

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

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

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

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

    --deep-red: #58101b;
    --deep-red-rgb: 88, 16, 27;

    --ivory: #f1f0ec;
    --ivory-rgb: 241, 240, 236;

    --linen: #f5f3f1;
    --linen-rgb: 245, 243, 241;

    --neutral: #d1c7bd;
    --neutral-rgb: 209, 199, 189;

    --border-radius-sm: 3px;
    --border-radius-md: 15px;
    --border-radius-lg: 30px;

    --container-xs: 680px;
    --container-sm: 790px;
    --container-md: 860px;
    --container-lg: 1310px;

    --box-shadow: 0 0 5px rgba(var(--black-rgb), 10%);
    --transition: 0.3s ease;
}

/* Responsive */

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

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

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

.raffaele-theme {
    margin: 0;
    padding: 0;
}

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

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

body.raffaele-theme,
.editor-styles-wrapper {
    font-optical-sizing: auto;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    font-family: var(--font-primary) !important;
    font-size: 16px !important;
    color: var(--black);
    line-height: 1.5;
    font-weight: 400;
}

body.raffaele-theme,
.editor-styles-wrapper {
    background: var(--white);
}

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

body.raffaele-theme {
    padding-top: calc(var(--header-height) + var(--notice-height)) !important;
}

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

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

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

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

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

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

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

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

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

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

.single-post > .wp-block-group > .wp-block-group__inner-container {
    z-index: 99;
    margin: auto;
    width: calc(100% - 60px);
    max-width: 860px;
}

/* Padding */

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

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

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

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

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

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

.single-post > .wp-block-group {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Grid Layout */

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

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

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

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

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

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

/* Visibility */

.raffaele-theme .is-desktop-only {
    display: block;
}

.raffaele-theme .is-mobile-only {
    display: none;
}

/* Block Settings */

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

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

/* Responsive */

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

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

@media (max-width: 990px) {
    .raffaele-theme .grid-col-3,
    .raffaele-theme .grid-col-4 {
        gap: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

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

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

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

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

    .raffaele-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) {
    .raffaele-theme .container-lg,
    .raffaele-theme .container-md,
    .raffaele-theme .container-sm,
    .raffaele-theme .container-xs {
        width: calc(100% - 30px);
    }

    .raffaele-theme .grid-col-1,
    .raffaele-theme .grid-col-2,
    .raffaele-theme .grid-col-3,
    .raffaele-theme .grid-col-4,
    .raffaele-theme .grid-col-5,
    .raffaele-theme .grid-col-6 {
        gap: 20px;
    }

    .raffaele-theme .grid-col-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .raffaele-theme .is-desktop-only {
        display: none;
    }

    .raffaele-theme .is-mobile-only {
        display: block;
    }
}

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

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

.raffaele-theme h1,
.raffaele-theme h1 *,
.raffaele-theme .h1,
.raffaele-theme .h1 *,
.raffaele-theme h2,
.raffaele-theme h2 *,
.raffaele-theme .h2,
.raffaele-theme .h2 *,
.raffaele-theme h3,
.raffaele-theme h3 *,
.raffaele-theme .h3,
.raffaele-theme .h3 *,
.raffaele-theme h4,
.raffaele-theme h4 *,
.raffaele-theme .h4,
.raffaele-theme .h4 *,
.raffaele-theme h5,
.raffaele-theme h5 *,
.raffaele-theme .h5,
.raffaele-theme .h5 *,
.raffaele-theme h6,
.raffaele-theme h6 *,
.raffaele-theme .h6,
.raffaele-theme .h6 *,
.raffaele-theme ul,
.raffaele-theme ol,
.raffaele-theme li,
.raffaele-theme p,
.raffaele-theme a {
    margin: 0;
    padding: 0;
    color: var(--black);
    font-weight: 400;
    text-wrap: wrap;
    word-wrap: break-word;
}

.raffaele-theme h1,
.raffaele-theme h1 *,
.raffaele-theme .h1,
.raffaele-theme .h1 *,
.raffaele-theme h2,
.raffaele-theme h2 *,
.raffaele-theme .h2,
.raffaele-theme .h2 *,
.raffaele-theme h3,
.raffaele-theme h3 *,
.raffaele-theme .h3,
.raffaele-theme .h3 *,
.raffaele-theme h4,
.raffaele-theme h4 *,
.raffaele-theme .h4,
.raffaele-theme .h4 *,
.raffaele-theme h5,
.raffaele-theme h5 *,
.raffaele-theme .h5,
.raffaele-theme .h5 *,
.raffaele-theme h6,
.raffaele-theme h6 *,
.raffaele-theme .h6,
.raffaele-theme .h6 * {
    font-family: var(--font-secondary);
    font-variant: all-small-caps;
    font-weight: 400;
}

.raffaele-theme h1 em,
.raffaele-theme .h1 em,
.raffaele-theme h2 em,
.raffaele-theme .h2 em,
.raffaele-theme h3 em,
.raffaele-theme .h3 em {
    font-size: 0.8em;
    font-style: italic;
    font-variant: none;
    font-weight: 500;
}

.raffaele-theme h1,
.raffaele-theme h1 *,
.raffaele-theme .h1,
.raffaele-theme .h1 * {
    font-size: 50px;
    line-height: 40px;
    font-weight: 400;
}

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

.raffaele-theme h3,
.raffaele-theme h3 *,
.raffaele-theme .h3,
.raffaele-theme .h3 * {
    font-size: 30px;
    line-height: 30px;
}

.raffaele-theme h4,
.raffaele-theme h4 *,
.raffaele-theme .h4,
.raffaele-theme .h4 * {
    font-size: 24px;
    line-height: 24px;
}

.raffaele-theme h5,
.raffaele-theme h5 *,
.raffaele-theme .h5,
.raffaele-theme .h5 * {
    font-size: 22px;
    line-height: 24px;
    font-variant: none;
}

.raffaele-theme h6,
.raffaele-theme h6 *,
.raffaele-theme .h6,
.raffaele-theme .h6 * {
    font-size: 20px;
    line-height: 22px;
}

.raffaele-theme p,
.raffaele-theme li {
    font-size: 16px !important;
    line-height: 1.5 !important;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.raffaele-theme strong,
.raffaele-theme strong * {
    font-weight: 600;
}

/* Links */

.raffaele-theme a {
    text-underline-offset: 3px !important;
    text-decoration-thickness: 1px !important;
}

.raffaele-theme a:hover,
.raffaele-theme a:focus {
    color: inherit;
}

/* Lists */

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

/* Misc */

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

.raffaele-theme mark {
    background: none;
}

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

/* Responsive */

@media (max-width: 990px) {
    .raffaele-theme h1,
    .raffaele-theme h1 *,
    .raffaele-theme .h1,
    .raffaele-theme .h1 * {
        font-size: 35px;
        line-height: 28px;
    }

    .raffaele-theme h2,
    .raffaele-theme h2 *,
    .raffaele-theme .h2,
    .raffaele-theme .h2 * {
        font-size: 30px;
        line-height: 25px;
    }

    .raffaele-theme h2 span {
        font-size: 25px;
    }

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

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

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

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

/* Styles */

.raffaele-theme .text-small,
.raffaele-theme .text-small * {
    font-size: 13px !important;
    line-height: 16px !important;
}

.raffaele-theme .text-sub,
.raffaele-theme .text-sub * {
    font-size: 11px !important;
    line-height: 14px !important;
}

.raffaele-theme .title-sub,
.raffaele-theme .title-sub * {
    color: var(--grey);
    font-family: var(--font-primary);
    font-size: 14px !important;
    font-weight: 600;
    line-height: 20px !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Alignment */

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

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

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

/* Colours */

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

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

.raffaele-theme .text-default,
.raffaele-theme .text-default *:not(.button, button, .button *, button *, [class*="text-"], [style*="color"], .gform_validation_errors *) {
    color: var(--black);
}

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

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

.wysiwyg-content a:hover {
    text-decoration: none;
}

.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 h6:not(:last-child),
.wysiwyg-content ul:not(:last-child),
.wysiwyg-content ol:not(:last-child),
.wysiwyg-content p: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 li:not(:last-child) {
    margin: 0 0 10px !important;
}

/* Links */

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

/* 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 li:not(:last-child) {
    margin: 0 0 5px !important;
}

.wysiwyg-content ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 3px;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background: var(--black);
}

.wysiwyg-content ul.list-style-underline {
    width: 100%;
}

.wysiwyg-content ul.list-style-underline li {
    padding: 10px 0 !important;
    border-bottom: 1px solid var(--black);
}

.wysiwyg-content ul.list-style-underline li:before {
    display: none;
}

/* .wysiwyg-content ul.list-style-checkmark li {
    padding: 0 0 0 25px;
}

.wysiwyg-content ul.list-style-checkmark li:before {
    top: 5px;
    width: 14px;
    height: 14px;
    background: url(../img/icon-checkmark.svg) 50% no-repeat;
    background-size: 14px;
} */

.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 {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.wysiwyg-content blockquote cite {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--grey);
    font-style: normal;
}

/* Hr */

.wysiwyg-content hr {
    margin: 30px 0;
    border-color: var(--neutral);
}

/* Images */

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

.wysiwyg-content .gallery * {
    margin: 0 !important;
    border: 0 !important;
}

.wysiwyg-content .gallery img {
    width: 100%;
}

.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;
}

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

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

/* Labels */

.raffaele-theme label,
.raffaele-theme legend,
.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 {
    display: block;
    margin: 5px 0;
    color: var(--black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.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-size: 12px !important;
    line-height: 16px;
    font-weight: 400;
    color: rgba(var(--black-rgb), 50%);
}

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

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

/* Basic Fields */

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

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

.raffaele-theme ::placeholder {
    color: var(--grey);
}

/* Select */

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

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

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

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

.raffaele-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;
}

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

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

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

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

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

/* Checkbox & Radio */

.raffaele-theme input[type="checkbox"],
.raffaele-theme input[type="radio"] {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    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;
}

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

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

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

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

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

.raffaele-theme input[type="radio"]:before,
.raffaele-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 {
    font-size: 0.1em !important;
    margin: 0 0 0 15px !important;
}

.gravity-theme .gform_validation_errors .gform-icon {
    display: none !important;
}

.gravity-theme .gform_validation_errors {
    outline: 0 !important;
    border-radius: 0 !important;
    padding: 14px !important;
    box-shadow: none !important;
    margin: 0 0 20px !important;
}

.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: 14px !important;
    font-weight: 500 !important;
    font-variant: none;
    color: var(--red);
}

/* 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(--grey) !important;
    border-radius: 0;
}

.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;
}

/* Footer */

.gravity-theme form .gform_footer {
    padding: 0 !important;
    margin-top: 25px !important;
}

.gravity-theme form .gform_footer *[type="submit"] {
    margin: 0 !important;
}

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

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

.raffaele-theme button svg,
.raffaele-theme .button svg {
    width: 14px;
    height: 14px;
}

/* Default Styles */

.raffaele-theme button:not([class*="f-"]),
.raffaele-theme button:not([class*="f-"]):hover,
.raffaele-theme button:not([class*="f-"]):focus,
.raffaele-theme .button,
.raffaele-theme .button:hover,
.raffaele-theme .button:focus {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    margin: 0;
    outline: 0;
    border-radius: 0 !important;
    width: auto;
    min-width: 100px;
    height: auto;
    min-height: 0;
    padding: 8px 12px !important;
    font-size: 14px;
    line-height: 20px !important;
    letter-spacing: 0.05em;
    font-family: var(--font-primary);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    background: var(--deep-red);
    border: 1px solid var(--deep-red);
    transition: var(--transition) all;
    cursor: pointer;
}

.raffaele-theme .button.button-black {
    background: var(--black);
    border-color: var(--black);
}

.raffaele-theme .button.button-white {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

/* Hover/Focus */

.raffaele-theme button:hover,
.raffaele-theme button:focus,
.raffaele-theme .button:hover,
.raffaele-theme .button:focus {
    outline: 0;
    box-shadow: none;
    background: var(--black);
    border-color: var(--black);
}

.raffaele-theme .button.button-black:hover,
.raffaele-theme .button.button-black:focus {
    background: var(--deep-red);
    border-color: var(--deep-red);
}

.raffaele-theme .button.button-white:hover,
.raffaele-theme .button.button-white:focus {
    background: var(--ivory);
    border-color: var(--ivory);
}

/* Text Link */

.raffaele-theme .text-link {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 0 2px;
    color: var(--black);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    /* letter-spacing: 0.05em; */
    text-transform: uppercase;
    text-decoration: none;
}

.raffaele-theme .text-link:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--black);
    transform: scaleX(1);
    transform-origin: left;
    transition: var(--transition) transform;
}

.raffaele-theme .text-link:hover:after,
.raffaele-theme .text-link.is-active:after {
    transform: scaleX(0);
    transform-origin: right;
}

.raffaele-theme .text-link.text-link-white {
    color: var(--white);
}

.raffaele-theme .text-link.text-link-white:after {
    background: var(--white);
}

/* Responsive */

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

/*-----------------------------------------------------------------------
    Site Notice
-----------------------------------------------------------------------*/

.site-notice {
    padding: 8px 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--grey);
}

.raffaele-theme .site-notice p {
    font-family: var(--font-secondary);
    font-weight: 500;
    text-transform: uppercase;
}

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

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

.site-header .site-logo,
.site-header .site-logo img,
.site-header .site-logo svg {
    width: 100%;
    max-width: 380px;
    height: 30px;
}

.site-footer .site-logo,
.site-footer .site-logo img,
.site-footer .site-logo svg {
    width: 120px;
    height: 80px;
}

/* Responsive */

@media (max-width: 770px) {
    .site-header .site-logo,
    .site-header .site-logo img,
    .site-header .site-logo svg {
        height: 20px;
    }
}

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

.site-header {
    top: 0;
    width: 100%;
    display: block;
    position: fixed;
    background: var(--white);
    border-bottom: 1px solid var(--grey);
    transition: var(--transition) top;
    z-index: 2000000002;
}

body.raffaele-theme.is-scrolled .site-header {
    top: calc(0px - var(--notice-height));
}

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

body.raffaele-theme.admin-bar.is-scrolled .site-header {
    top: calc(var(--admin-height) - var(--notice-height));
}

.site-header .grid-col-3 {
    height: var(--header-height);
    grid-template-columns: 250px 1fr 250px;
    transition: var(--transition) height;
}

/* body.raffaele-theme.is-scrolled .site-header .grid-col-3 {
    height: 65px;
} */

.site-header .col-3.flex-layout {
    gap: 8px;
    justify-content: flex-end;
}

/*  Logo */

.site-header .site-logo {
    margin: auto;
}

/* body.raffaele-theme.is-scrolled .site-header .site-logo svg {
    height: 24px;
} */

/* Icons */

.site-header *[class*="icon-"],
.site-header *[class*="icon-"] svg {
    margin: 0;
    display: block;
    cursor: pointer;
}

.site-header *[class*="icon-"] svg {
    width: 18px;
    height: 18px;
}

/* Hamburger */

.site-header .icon-hamburger {
    width: 40px;
    height: 18px;
    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(--black);
    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;
}

.site-header .icon-hamburger span:after {
    content: "";
    bottom: -8px;
}

/* Main Menu */

.site-main-menu {
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(var(--black-rgb), 80%);
    z-index: 20000000000;
    transition:
        var(--transition) opacity,
        visibility 0s linear 0.3s;
}

body.raffaele-theme.admin-bar .site-main-menu {
    top: var(--admin-height);
}

.site-main-menu .container {
    background: var(--white);
    padding: 70px 80px;
    width: 550px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    transition: var(--transition) transform;
}

body.raffaele-theme.has-active-menu .site-main-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: var(--transition) opacity;
}

body.raffaele-theme.has-active-menu .site-main-menu .container {
    transform: translateX(0);
}

.site-main-menu .close-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.site-main-menu .close-menu svg {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
}

.site-main-menu .main-menu ul li,
.site-main-menu .main-menu ul li a {
    display: block;
    position: relative;
}

.site-main-menu .main-menu > ul {
    margin: 60px 0;
}

/* .site-main-menu .main-menu > ul > li {
    border-bottom: 1px solid var(--neutral);
} */

.site-main-menu .main-menu ul li a {
    padding: 5px 0;
    font-size: 14px;
    line-height: 20px;
}

.site-main-menu .main-menu > ul > li > a {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    padding: 15px 0;
}

.site-main-menu .main-menu ul li .trigger-sub-menu {
    display: flex;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
}

.site-main-menu .main-menu ul li .trigger-sub-menu svg {
    width: 12px;
    height: 12px;
    margin: auto;
}

.site-main-menu .main-menu ul li.has-active-sub-menu .trigger-sub-menu {
    transform: rotate(-90deg);
}

.site-main-menu .main-menu ul li .sub-menu-wrap {
    display: none;
}

.site-main-menu .main-menu ul li ul.sub-menu {
    padding: 0 0 15px;
}

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

/* Responsive */

@media (max-width: 990px) {
    .site-header .grid-col-3 {
        grid-template-columns: 60px 1fr 60px;
    }

    .site-header .button {
        display: none;
    }
}

@media (max-width: 770px) {
    .site-main-menu .container {
        width: 90%;
        padding: 40px 50px;
    }
}

/*-----------------------------------------------------------------------
    Site Search
-----------------------------------------------------------------------*/

.site-search {
    background: var(--white);
    position: fixed;
    left: 0;
    right: 0;
    z-index: 200;
    display: none;
    top: calc(var(--header-height) + var(--notice-height));
    border-bottom: 1px solid var(--grey);
    transition: var(--transition) top;
}

body.raffaele-theme.is-scrolled .site-search {
    top: calc(var(--header-height) - var(--notice-height));
}

body.raffaele-theme.admin-bar .site-search {
    top: calc(var(--header-height) + var(--notice-height) + var(--admin-height));
}

body.raffaele-theme.admin-bar.is-scrolled .site-search {
    top: calc(var(--header-height) + var(--admin-height));
}

.site-search *[class*="container"] {
    padding: 20px 0;
}

.site-search .close-search {
    margin-left: 15px;
    cursor: pointer;
}

.site-search .close-search,
.site-search .close-search svg {
    display: block;
    width: 18px;
    height: 18px;
}

.raffaele-theme form.search-form,
.raffaele-theme form.aws-search-form {
    display: flex;
    gap: 15px;
}

.raffaele-theme form.search-form,
.raffaele-theme form.search-form > input,
.raffaele-theme form.aws-search-form,
.raffaele-theme form.aws-search-form > * {
    flex: 1;
}

/* Advanced Woo Search Form */

.raffaele-theme .aws-container {
    padding: 0;
    flex: 1;
}

.raffaele-theme form.aws-search-form {
    gap: 0 !important;
    height: 38px;
}

.raffaele-theme form.aws-search-form .aws-search-btn span {
    display: none;
}

.raffaele-theme form.aws-search-form .aws-search-btn {
    margin-left: -1px;
    max-width: 38px;
    width: 38px;
    height: 38px;
    background: var(--deep-red) url(../img/icon-search-alt.svg) 50% no-repeat !important;
    background-size: 16px !important;
    border: 0;
    padding: 0;
    z-index: 9;
}

/* Advanced Woo Search Results */

.raffaele-theme .aws-search-result ul li,
.raffaele-theme .aws-search-result .aws_result_item {
    border-color: var(--grey);
}

.raffaele-theme .aws-search-result .aws_result_image img {
    width: 75px;
}

.raffaele-theme .aws-search-result .aws_result_title {
    font-family: var(--font-secondary);
    text-transform: uppercase;
}

.raffaele-theme .aws-search-result .aws_result_title,
.raffaele-theme .aws-search-result .aws_result_excerpt {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: var(--black);
}

.raffaele-theme .aws-search-result .aws_result_sale,
.raffaele-theme .aws-search-result .aws_result_price {
    display: none;
}

.raffaele-theme .aws-search-result a.aws_search_more,
.raffaele-theme .aws-search-result a.aws_search_more:hover,
.raffaele-theme .aws-search-result a.aws_search_more:focus {
    padding: 8px 12px !important;
    font-size: 14px;
    line-height: 20px !important;
    letter-spacing: 0.05em;
    font-family: var(--font-primary);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    background: var(--deep-red);
}

.raffaele-theme .aws-search-result a.aws_search_more:hover,
.raffaele-theme .aws-search-result a.aws_search_more:focus {
    background: var(--black);
    border-color: var(--black);
}

/* Responsive */

@media (max-width: 990px) {
    .site-search form input {
        padding: 7px 16px !important;
    }
}

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

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

.site-footer .grid-col-3 {
    padding: 40px 0;
    grid-template-columns: 200px 1fr 200px;
}

.site-footer .social-icons {
    width: fit-content;
    justify-content: center;
    margin: 0 0 0 auto;
}

/* .site-footer .site-newsletter-form {
    max-width: 520px;
    width: 100%;
    margin: auto;
}

.site-footer .site-newsletter-form p {
    margin-bottom: 5px;
} */

/* Menu */

.site-footer .footer-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 20px;
}

.site-footer .footer-menu ul li a {
    font-size: 13px;
    text-transform: uppercase;
}

.site-footer .footer-menu ul.sub-menu {
    display: none;
}

.site-footer li a,
.site-footer p a {
    position: relative;
    text-decoration: none;
    padding-bottom: 2px;
}

.site-footer li a:after,
.site-footer p a:after {
    content: "";
    display: block;
    position: absolute;
    background: var(--black);
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    transition: var(--transition) width;
}

.site-footer li a:hover:after,
.site-footer p a:hover:after {
    width: 100%;
}

/* Copyright */

.site-footer .footer-copyright {
    padding: 10px 0;
    background: rgba(var(--linen-rgb), 30%);
}

.site-footer .footer-copyright .flex-layout {
    gap: 5px;
}

.site-footer .footer-copyright span {
    width: 1px;
    height: 1px;
    background: var(--black);
}

/* Responsive */

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

    .raffaele-theme .site-logo {
        margin: auto;
    }
    .raffaele-theme .social-icons {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-menu ul {
        display: block;
        text-align: center;
    }
}

/*-----------------------------------------------------------------------
    Newsletter
-----------------------------------------------------------------------*/

/* Button */

.site-newsletter-button {
    position: fixed;
    bottom: 80px;
    left: -47px;
    transform: rotate(-90deg);
    z-index: 200000;
}

.site-newsletter-button .button.button-newsletter {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--ivory);
    border-color: rgba(var(--neutral-rgb), 30%);
    border-top: 0;
    color: var(--black);
    font-weight: 500;
    width: 130px;
}

.site-newsletter-button .button.button-newsletter svg {
    color: var(--neutral);
}

/* Form */

/* .site-newsletter-form form {
    position: relative;
}

.site-newsletter-form form .gfield input {
    padding: 10px 30px 10px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--grey) !important;
}

.site-newsletter-form form .gfield input::placeholder {
    color: rgba(var(--black-rgb), 50%);
}

.site-newsletter-form form .gform-footer {
    margin: 0 !important;
    position: absolute;
    right: 0;
    top: 5px;
}

.site-newsletter-form form .gform-footer input[type="submit"],
.site-newsletter-form form .gform-footer input[type="submit"]:hover,
.site-newsletter-form form .gform-footer input[type="submit"]:focus {
    font-size: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    min-width: 26px !important;
    max-width: 26px !important;
    width: 26px !important;
    min-height: 26px !important;
    max-height: 26px !important;
    height: 26px !important;
    border-radius: 26px !important;
    background: var(--ivory) url(../img/icon-arrow-right.svg) 50% no-repeat;
    background-size: 10px !important;
}

.site-newsletter-form form .gform-footer input[type="submit"]:hover,
.site-newsletter-form form .gform-footer input[type="submit"]:focus {
    background: var(--white) url(../img/icon-arrow-right.svg) 50% no-repeat;
}

.site-newsletter-form .gravity-theme .gform_validation_errors {
    margin: 10px 0 !important;
    padding: 10px !important;
}

.site-newsletter-form .gravity-theme .gform_validation_errors * {
    font-size: 12px !important;
} */

@media (min-width: 640px) {
    .raffaele-theme .gravity-theme form[data-formid="1"] .gform_fields {
        display: flex;
        align-items: flex-start;
    }

    .raffaele-theme .gravity-theme form[data-formid="1"] .gfield--width-third {
        flex: 1;
    }

    .raffaele-theme .gravity-theme form[data-formid="1"] .gfield--type-submit.gfield--width-third {
        max-width: fit-content;
    }
}

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

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

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

.raffaele-theme .image-square,
.raffaele-theme .image-portrait,
.raffaele-theme .image-landscape {
    background: var(--neutral);
    position: relative;
    object-fit: cover;
    width: 100%;
}

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

.raffaele-theme .image-portrait {
    aspect-ratio: 5 / 6;
}

.raffaele-theme .image-landscape {
    aspect-ratio: 3 / 2;
}

/* Background Elements */

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

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

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

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

/* Video Embed */

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

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

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

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

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

.raffaele-theme .swiper.is-disabled .swiper-pagination,
.raffaele-theme .swiper.is-disabled .swiper-navigation {
    display: none;
}

/* Pagination */

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

.raffaele-theme .swiper-pagination span {
    opacity: 100%;
    margin: 0 3px !important;
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background: #d9d9d9;
    transition:
        var(--transition) width,
        var(--transition) background;
}

.raffaele-theme .swiper-pagination span.swiper-pagination-bullet-active {
    background: var(--deep-red);
}

/* Navigation */

.raffaele-theme .swiper-navigation div[class*="swiper-nav-"] {
    position: absolute;
    top: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
}

.raffaele-theme .swiper-navigation .swiper-nav-prev {
    left: 30px;
}

.raffaele-theme .swiper-navigation .swiper-nav-next {
    right: 30px;
}

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

/* Responsive */

@media (max-width: 990px) {
    .raffaele-theme .swiper-navigation div[class*="swiper-nav-"] {
        width: 40px;
        height: 40px;
        border-radius: 40px;
    }

    .raffaele-theme .swiper-navigation div[class*="swiper-nav-"] svg {
        width: 14px;
        height: 14px;
    }
}

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

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

.raffaele-theme table,
.raffaele-theme table tr,
.raffaele-theme table th,
.raffaele-theme table td {
    border-color: var(--ivory) !important;
    background: transparent !important;
    font-size: inherit !important;
}

.raffaele-theme table th,
.raffaele-theme table td {
    padding: 10px !important;
    text-align: left !important;
    border-top: 1px solid var(--ivory);
    border-bottom: 1px solid var(--ivory);
}

.raffaele-theme table th,
.raffaele-theme table th * {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

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

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

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

.raffaele-theme .social-icons a,
.raffaele-theme .social-icons div,
.raffaele-theme .social-icons svg {
    margin: 0;
    display: block;
}

.raffaele-theme .social-icons svg {
    width: 18px !important;
    height: 18px !important;
    color: var(--neutral);
}

.raffaele-theme .social-icons:not(.share-icons) a,
.raffaele-theme .social-icons:not(.share-icons) div {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    background: var(--black);
}

.raffaele-theme .social-icons:not(.share-icons) a:hover,
.raffaele-theme .social-icons:not(.share-icons) div:hover {
    background: var(--deep-red);
}

.raffaele-theme .social-icons:not(.share-icons) svg {
    width: 12px !important;
    height: 12px !important;
}

.raffaele-theme .social-icons.share-icons {
    gap: 10px;
}

.raffaele-theme .social-icons.share-icons a:hover svg {
    color: var(--deep-red);
}

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

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

.raffaele-theme .copy-to-clipboard .tooltip {
    background: var(--black);
    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;
}

.raffaele-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(--black) transparent transparent transparent;
}

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

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

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

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

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

/* Containers */

.raffaele-theme .popup-overlay > *[class*="container"] {
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
    padding: 40px;
    background: var(--white);
}

/* Close Button */

.raffaele-theme .popup-overlay .close-popup:not(.button) {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
}

.raffaele-theme .popup-overlay .close-popup svg {
    width: 16px;
    height: 16px;
}

/*-----------------------------------------------------------------------
    Tabs
-----------------------------------------------------------------------*/

.raffaele-theme .tab-listing .tab-title {
    margin: 4px 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition) opacity;
    cursor: pointer;
}

.raffaele-theme .tab-listing .tab-title:not(:hover, .is-active) {
    opacity: 50%;
}

.raffaele-theme .tab-listing .tab-content:not(.is-active) {
    display: none;
}

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

.raffaele-theme .group-categories:not(.flex-gap) {
    gap: 10px;
}

.raffaele-theme .group-categories a,
.raffaele-theme .group-categories span {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--grey);
}

.raffaele-theme .group-categories a:hover,
.raffaele-theme .group-categories a.is-active {
    color: var(--black);
}

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

.raffaele-theme .post-pagination,
.raffaele-theme .archive-pagination {
    padding: 40px 0;
    border-top: 1px solid var(--neutral);
}

.raffaele-theme .post-pagination .post-prev,
.raffaele-theme .post-pagination .post-next,
.raffaele-theme .archive-pagination .page-prev,
.raffaele-theme .archive-pagination .page-next {
    min-width: 60px;
}

.raffaele-theme .post-pagination a,
.raffaele-theme .post-pagination span,
.raffaele-theme .archive-pagination a,
.raffaele-theme .archive-pagination span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.raffaele-theme .post-pagination a,
.raffaele-theme .archive-pagination a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(var(--black-rgb), 60%);
}

.raffaele-theme .post-pagination a svg,
.raffaele-theme .archive-pagination a svg {
    width: 14px;
    height: 14px;
    margin-bottom: 1px;
}

.raffaele-theme .post-pagination a:hover,
.raffaele-theme .archive-pagination a:hover {
    color: var(--black);
}

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

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

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

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

.raffaele-theme .inner-block-head {
    margin: 0 auto 80px;
}

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

.block-split-content .container-xl .col-content .wysiwyg-content {
    max-width: 500px;
    width: calc(100% - 30px);
    margin: auto;
    padding: 40px;
}

/* Responsive */

@media (min-width: 861px) {
    .block-split-content .grid-col-2 {
        gap: 80px;
    }

    .block-split-content .container-xl .grid-col-2 {
        gap: 0;
    }
}

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

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

    .block-split-content .container-xl .col-content .wysiwyg-content {
        padding: 20px;
    }
}

/*-----------------------------------------------------------------------
    Block - Quote
-----------------------------------------------------------------------*/

.block-quote .wysiwyg-content blockquote {
    max-width: 100%;
}

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

.block-image-gallery .listing-gallery {
    gap: 35px;
}

.block-image-gallery .carousel-gallery img {
    display: block;
}

/*-----------------------------------------------------------------------
    Block - Full Image
-----------------------------------------------------------------------*/

.block-full-image img {
    width: 100%;
    height: 55vw;
    min-height: 450px;
    object-fit: cover;
}

/*-----------------------------------------------------------------------
    Block - Video
-----------------------------------------------------------------------*/

.block-video .responsive-video {
    position: relative;
}

.block-video .responsive-video video {
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    cursor: pointer;
}

.block-video .responsive-video:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(var(--black-rgb), 40%);
}

.block-video .responsive-video .inner-video-icon svg {
    margin: auto;
    width: 100px;
    height: 100px;
    color: var(--white);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
}

.block-video .responsive-video:after,
.block-video .responsive-video .inner-video-icon {
    opacity: 0;
    pointer-events: none;
    transition: var(--transition) opacity;
}

.block-video .responsive-video.is-paused:after,
.block-video .responsive-video.is-paused .inner-video-icon {
    opacity: 1;
}

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

.block-hero-banner > div[class*="block-setting-"] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - var(--header-height) - var(--notice-height));
}

body.raffaele-theme.admin-bar .block-hero-banner > div[class*="block-setting-"] {
    height: calc(100vh - var(--header-height) - var(--notice-height) - var(--admin-height));
}

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

.block-hero-banner .banner-badge,
.block-hero-banner .banner-badge svg {
    display: block;
    width: 130px;
    height: 130px;
}

.block-hero-banner .banner-badge {
    position: absolute;
    bottom: 70px;
    right: 70px;
    z-index: 999;
}

/* Alignment */

.block-hero-banner.is-aligned-left .wysiwyg-content {
    margin: auto;
    margin-left: 0;
    text-align: left;
}

.block-hero-banner.is-aligned-left .wysiwyg-content .button-group {
    justify-content: flex-start;
}

.block-hero-banner.is-aligned-left .banner-badge {
    left: 70px;
    right: auto;
}

.block-hero-banner.is-aligned-right .wysiwyg-content {
    margin: auto;
    margin-right: 0;
    text-align: right;
}

.block-hero-banner.is-aligned-right .wysiwyg-content .button-group {
    justify-content: flex-end;
}

.block-hero-banner.is-aligned-right .banner-badge {
    right: 70px;
    left: auto;
}

/* Responsive */

@media (max-width: 1310px) {
    .block-hero-banner .banner-badge {
        left: 30px;
    }

    .block-hero-banner.is-aligned-left .banner-badge {
        left: 30px;
        right: auto;
    }

    .block-hero-banner.is-aligned-right .banner-badge {
        right: 30px;
        left: auto;
    }
}

@media (max-width: 990px) {
    .block-hero-banner > div[class*="block-setting-"] {
        height: auto !important;
        min-height: 550px;
    }

    .block-hero-banner div[class*="container-"] {
        margin-bottom: 0;
    }

    .block-hero-banner .banner-badge {
        display: none;
    }
}

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

.block-page-banner > div[class*="block-setting-"] {
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

.block-page-banner div[class*="container-"] {
    margin: auto auto 0;
}

.block-page-banner .background-overlay:before {
    background: linear-gradient(to right, rgba(var(--black-rgb), 80%), transparent 30%);
}

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

.block-cta .background-image {
    width: 50%;
}

.block-cta .background-image.background-position-left {
    right: auto;
}

.block-cta .background-image.background-position-right {
    left: auto;
}

.block-cta div[class*="container-"] {
    background: var(--white);
    padding: 50px;
}

/* Responsive */

@media (max-width: 640px) {
    .block-cta .background-image {
        width: 100%;
        left: 0;
        right: 0;
    }
}

/*-----------------------------------------------------------------------
    Block -  Quick Links
-----------------------------------------------------------------------*/

.raffaele-theme .entry-quick-link,
.raffaele-theme .entry-quick-link .inner-entry-content {
    display: flex;
    flex-direction: column;
}

.raffaele-theme .entry-quick-link .inner-entry-content {
    flex: 1;
    padding: 15px 0;
}

.raffaele-theme .entry-quick-link .inner-entry-content .button-group {
    margin: auto 0 0;
}

/*-----------------------------------------------------------------------
    Block - Logo Slider
-----------------------------------------------------------------------*/

.block-logo-slider [class*="container-"] {
    margin-right: 0;
    margin-left: auto;
    padding-right: 0;
    max-width: 100%;
    width: calc(var(--container-lg) + ((100% - var(--container-lg)) / 2));
}

.block-logo-slider .col-1 {
    width: 210px;
    margin-right: 50px;
}

.block-logo-slider .col-2 {
    position: relative;
    flex: 1;
}

.block-logo-slider .col-2:before {
    content: "";
    display: block;
    position: absolute;
    width: 80px;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
    z-index: 99;
}

.block-logo-slider .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-logo-slider .swiper-slide a:hover {
    opacity: 60%;
}

.block-logo-slider .swiper-slide img {
    max-height: 20px;
}

.block-logo-slider .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
}

/* Responsive */

@media (max-width: 990px) {
    .block-logo-slider .flex-layout {
        flex-direction: column;
    }

    .block-logo-slider .col-1,
    .block-logo-slider .col-2 {
        width: 100%;
    }

    .block-logo-slider .col-1 {
        text-align: center;
        margin: 0 auto 50px;
    }
}

/*-----------------------------------------------------------------------
    Block - FAQ
-----------------------------------------------------------------------*/

.raffaele-theme .entry-accordion {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--neutral);
}

.raffaele-theme .entry-accordion .trigger-accordion {
    position: relative;
    flex: 1;
    flex-wrap: nowrap;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.raffaele-theme .entry-accordion .trigger-accordion svg {
    width: 12px;
    height: 20px;
    min-width: 12px;
    min-height: 20px;
    margin-left: 10px;
    transition: var(--transition);
}

.raffaele-theme .entry-accordion.is-active .trigger-accordion svg {
    transform: rotate(-90deg);
}

.raffaele-theme .entry-accordion .wysiwyg-content {
    padding: 10px 0 5px;
}

.raffaele-theme .entry-accordion .inner-entry-content {
    display: none;
}

.block-faq .tab-listing > .flex-layout {
    margin: 0 auto 50px;
}

.block-faq .entry-accordion {
    padding: 14px 0;
}

.block-faq .entry-accordion .trigger-accordion {
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
}

.block-faq .entry-accordion .trigger-accordion svg {
    height: 24px;
    min-height: 24px;
}

/*-----------------------------------------------------------------------
    Block - Our Story
-----------------------------------------------------------------------*/

.block-our-story .col-gallery-left,
.block-our-story .col-gallery-right {
    position: relative;
}

.block-our-story div[class*="col-gallery-"] img.image-portrait {
    width: 80%;
}

.block-our-story div[class*="col-gallery-"] img.image-portrait:last-child {
    width: 100%;
}

.block-our-story div[class*="col-gallery-"] img.image-landscape {
    width: auto;
    height: auto;
    max-height: 150px;
    max-width: 80%;
    position: absolute;
}

.block-our-story .col-gallery-left img.image-portrait {
    margin: 0 auto 40px 0;
}

.block-our-story .col-gallery-left img.image-landscape {
    bottom: 0;
    right: 0;
}

.block-our-story .col-gallery-right img.image-portrait {
    margin: 0 0 40px auto;
}

.block-our-story .col-gallery-right img.image-landscape {
    bottom: 0;
    left: 0;
}

/* Responsive */

@media (min-width: 991px) {
    .block-our-story .grid-col-3 {
        grid-template-columns: 1fr 470px 1fr;
    }
}

@media (max-width: 990px) {
    .block-our-story .grid-col-3 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/*-----------------------------------------------------------------------
    Block - Boutiques
-----------------------------------------------------------------------*/

.raffaele-theme .entry-contact-detail {
    display: flex;
    gap: 10px;
}

.raffaele-theme .entry-contact-detail p {
    text-transform: none;
}

.raffaele-theme .entry-contact-detail .inner-entry-icon {
    width: 26px;
    height: 26px;
    border-radius: 26px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.raffaele-theme .entry-contact-detail .inner-entry-icon svg {
    width: 14px;
    height: 14px;
    color: var(--white);
}

.raffaele-theme .entry-boutique > .inner-entry-content {
    padding: 20px 0 0;
}

.raffaele-theme .entry-boutique > .inner-entry-content > * {
    margin: 0 0 15px !important;
}

.raffaele-theme .entry-boutique .entry-accordion .trigger-accordion {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.raffaele-theme .entry-boutique .button {
    flex: 1;
    max-width: 100%;
    margin-top: 20px;
}

/*-----------------------------------------------------------------------
    Block - Boutique Info
-----------------------------------------------------------------------*/

.block-boutique-info .entry-contact-detail {
    margin: 0 0 15px;
}

.block-boutique-info .entry-contact-detail:last-of-type {
    margin: 0 0 20px;
}

/*-----------------------------------------------------------------------
    Block - Products
-----------------------------------------------------------------------*/

.block-product-listing .carousel-products .swiper-navigation div[class*="swiper-nav-"] {
    top: calc(50% - 70px) !important;
}

/*-----------------------------------------------------------------------
    Block - Product Info
-----------------------------------------------------------------------*/

.block-product-info .col-image {
    position: relative;
}

.block-product-info .col-image > div[class*="yith-"] {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    z-index: 99;
}

.block-product-info .col-image > div[class*="yith-"] span[class*="label"] {
    display: none;
}

.block-product-info .col-image > div[class*="yith-"] a,
.block-product-info .col-image > div[class*="yith-"] svg {
    display: block;
    width: 18px;
    height: 18px;
}

/*-----------------------------------------------------------------------
    Block - Designers
-----------------------------------------------------------------------*/

.raffaele-theme .entry-designer {
    aspect-ratio: 2 / 3 !important;
}

/*-----------------------------------------------------------------------
    Block - Designer Info
-----------------------------------------------------------------------*/

.block-designer-info img.designer-logo {
    max-width: 250px !important;
    max-height: 250px !important;
}

/* Responsive */

@media (min-width: 860px) {
    .block-designer-info .grid-col-2 {
        grid-template-columns: 1fr 450px;
    }
}

/*-----------------------------------------------------------------------
    Block - Posts
-----------------------------------------------------------------------*/

.raffaele-theme .entry-post .inner-entry-image {
    overflow: hidden;
}

.raffaele-theme .entry-post .background-image {
    transition: var(--transition) transform;
}

.raffaele-theme .entry-post:hover .background-image {
    transform: scale(105%);
}

.raffaele-theme .entry-post .inner-entry-content {
    padding: 20px 0 0;
}

/*-----------------------------------------------------------------------
    Block - Post Info
-----------------------------------------------------------------------*/

.block-post-info .wysiwyg-content h1 {
    margin: 20px auto 25px !important;
}

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

/*-----------------------------------------------------------------------
    Block - Events
-----------------------------------------------------------------------*/

.raffaele-theme .entry-event {
    background: var(--ivory);
}

.raffaele-theme .entry-event .inner-entry-content {
    padding: 30px 40px;
}

.raffaele-theme .entry-event .inner-entry-content > *:not(:last-child) {
    margin: 0 0 10px;
}

/*-----------------------------------------------------------------------
    Block - Event Info
-----------------------------------------------------------------------*/

.raffaele-theme .entry-event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.raffaele-theme .entry-event-detail svg {
    width: 18px;
    height: 18px;
}

/*-----------------------------------------------------------------------
    Block - Real Brides
-----------------------------------------------------------------------*/

.raffaele-theme .listing-brides,
.raffaele-theme .listing-brides .grid-row {
    display: grid;
    gap: 35px;
}

.raffaele-theme .entry-bride {
    aspect-ratio: 5 / 7;
}

.raffaele-theme .entry-bride .background-overlay:before {
    background: linear-gradient(to top, rgba(var(--black-rgb), 80%), transparent 50%);
    z-index: 99;
}

.raffaele-theme .entry-bride .inner-entry-content {
    position: absolute;
    padding: 25px 20px;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: var(--transition) opacity;
    z-index: 99;
}

.raffaele-theme .entry-bride:hover .inner-entry-content {
    opacity: 1;
}

.raffaele-theme .entry-bride:hover .text-link:after {
    width: 100%;
}

/* Responsive */

@media (min-width: 991px) {
    .raffaele-theme .listing-brides .grid-row {
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(4, 1fr);
    }

    .raffaele-theme .listing-brides .grid-row:nth-child(odd) .entry-bride:nth-child(1),
    .raffaele-theme .listing-brides .grid-row:nth-child(even) .entry-bride:nth-child(5) {
        aspect-ratio: auto;
    }

    .raffaele-theme .listing-brides .grid-row:nth-child(odd) .entry-bride:nth-child(1) {
        grid-row: span 2 / span 2;
        grid-column: span 2 / span 2;
    }

    .raffaele-theme .listing-brides .grid-row:nth-child(even) .entry-bride:nth-child(5) {
        grid-column: 3 / span 2;
        grid-row: 1 / span 2;
    }
}

@media (max-width: 990px) {
    .raffaele-theme .listing-brides,
    .raffaele-theme .listing-brides .grid-row {
        gap: 20px;
    }
}

@media (max-width: 990px) and (min-width: 641px) {
    .raffaele-theme .listing-brides .grid-row {
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(6, 1fr);
    }

    .raffaele-theme .listing-brides .grid-row .entry-bride:nth-child(1),
    .raffaele-theme .listing-brides .grid-row .entry-bride:nth-child(2),
    .raffaele-theme .listing-brides .grid-row .entry-bride:nth-child(3) {
        grid-row: span 2 / span 2;
        grid-column: span 2 / span 2;
    }

    .raffaele-theme .listing-brides .grid-row .entry-bride:nth-child(4),
    .raffaele-theme .listing-brides .grid-row .entry-bride:nth-child(5) {
        grid-column: span 3 / span 2;
    }
}

@media (max-width: 640px) {
    .raffaele-theme .listing-brides .grid-row {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*-----------------------------------------------------------------------
    Block - Bride Info
-----------------------------------------------------------------------*/

.block-bride-info .wysiwyg-content table tr th {
    padding-left: 0 !important;
}

.block-bride-info .wysiwyg-content span {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.05em;
    color: var(--grey);
    text-transform: uppercase;
}

/*-----------------------------------------------------------------------
    Block - Instagram Feed
-----------------------------------------------------------------------*/

.block-instagram-feed #sb_instagram #sbi_images {
    padding: 0 !important;
}
