

body.show-bg.et-db #et-boc #header-row {
    backdrop-filter: blur(2px);
    background: rgba(140, 194, 176, 0.85);
    padding: 10px;
/*    transition: backdrop-filter 0.3s ease, background 0.3s ease, padding 0.3s ease;*/
}

body.et-db #et-boc #header-row {
    backdrop-filter: blur(0px);
    background: rgba(140, 194, 176, 0); /* Transparent background initially */
    padding: 10px;
    transition: background 0.3s ease;
}

/*
* ----------[HEADER]--------*
*/
.email-txt {
    display: none;
}
.contact-form-icon .et_pb_code_inner {
    display: flex;
    color: var(--white);
    font-weight: 400;
    align-items: center;
    text-transform: uppercase;
}
.contrast .contact-form-icon .et_pb_code_inner {
    color: var(--contrast);
}
.contact-form-icon .et_pb_code_inner svg {
    margin-left: 20px;
}
#gvt-header-logo svg {
    max-width: 100%;
}
.contrast #gvt-header-logo svg path {
    fill: var(--contrast);
}
.effect-shine .et_pb_text_inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sparkles-container,
.musicnotes-container{
    visibility: hidden;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.musicnotes-container {
    z-index: -1;
}
.sparkle-animation {
    position: absolute;
    font-size: 15px;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: paused;
    opacity: 0;
    color: var(--color2);
}
.musicnotes-container .sparkle-animation {
    color: var(--white);
}
.contrast .musicnotes-container .sparkle-animation {
    color: var(--contrast);
}

/* Animations */
.sparkle-delay-1 {
    animation-delay: 0.5s;
}
.sparkle-delay-2 {
    animation-delay: 1s;
}
.sparkle-1{
    animation-name: sparkle1;
}
.sparkle-2{
    animation-name: sparkle2;
}
.sparkle-3{
    animation-name: sparkle3;
}
.sparkle-4{
    animation-name: sparkle4;
}
.sparkle-5{
    animation-name: sparkle5;
}
.sparkle-6{
    animation-name: sparkle6;
}
@keyframes sparkle1{
    0% {
        font-size: 5px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        font-size: 20px;
        margin-top: -100px;
        opacity: 0;
    }
}
@keyframes sparkle2{
    0% {
        font-size: 5px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        font-size: 10px;
        margin-top: 80px;
        margin-left: -100px;
        opacity: 0;
    }
}
@keyframes sparkle3{
    0% {
        font-size: 3px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        font-size: 10px;
        margin-top: -20px;
        margin-left: 100px;
        opacity: 0;
    }
}
@keyframes sparkle4{
    0% {
        font-size: 2px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        font-size: 20px;
        margin-top: -40px;
        margin-left: -80px;
        opacity: 0;
    }
}
@keyframes sparkle5{
    0% {
        font-size: 5px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        font-size: 30px;
        margin-top: 80px;
        margin-left: 100px;
        opacity: 0;
    }
}
@keyframes sparkle6{
    0% {
        font-size: 5px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        font-size: 30px;
        margin-top: -80px;
        margin-left: 100px;
        opacity: 0;
    }
}
/*
* ----------[MENU]--------*
*/
#vertical-menu {
    position: fixed;
    left: 50px;
    height: auto;
    width: 50px;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
}
#menu-main-menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#menu-main-menu li {
    width: 47px;
    height: 47px;
    background-color: rgba(255,255,255,.12);
    border-radius: 50%;
    justify-content: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 13px;
    cursor: pointer;
    transform-origin: center center;

    transition: background-color 0.5s ease-in;
}
#menu-main-menu.contrast li{
    background-color: rgb(0 0 0 / 20%);
}
#menu-main-menu li svg {
    width: 23px;
    height: 23px;
}
#menu-main-menu li i:before {
    content: '';
    top: 50%;
    left: 50%;
    width: 55%;
    height: 55%;
    max-width: 23px;
    max-height: 23px;
    position: absolute;
    transform: translate(-50%,-50%);
    transform-origin: center;
}
#menu-main-menu li .bbq:before,
.sparkle-animation i.bbq {
    content: url('../img/flame.svg');
    max-width: 15px;
    max-height: 22px;
}
#menu-main-menu li .coffee:before,
.sparkle-animation i.coffee {
    content: url('../img/coffee.svg');
    width: 21px;
    height: 19px;
}
#menu-main-menu li .sweets:before,
.sparkle-animation i.sweets {
    content: url('../img/sweets.svg');
    width: 19px;
    height: 22px;
}
#menu-main-menu li .mystery:before,
.sparkle-animation i.mystery {
    content: url('../img/mystery.svg');
    width: 14px;
    height: 23px;
}
#menu-main-menu li:hover i {
    animation-name: pop;
    animation-duration: 1.5s;
    animation-timing-function: ease;
}
@keyframes pop {
  0%   {transform: scale(1);}
  50%  {transform: scale(1.2);}
  100% {transform: scale(1);}
}
.tooltip-box {
    position: relative;
    display: inline-block;
}
.tooltip-box i {
    width: 100%;
    height: 100%;
}
.tooltip-box .tooltip-text {
    /*visibility: hidden;
    opacity:0;*/
    width: 100px;
/*    background-color: rgba(255,255,255,.12);*/
    color: #fff;
    text-align: left;
    padding: 6px 0;
    position: absolute;
    z-index: 1;
    left: 60px;
    text-transform: uppercase;
    font-weight: 500;
    transition: opacity .4s ease-in-out;
}
.contrast .tooltip-box .tooltip-text {
    color: var(--contrast);
}
.tooltip-box:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/*
* ----------[HEADER]--------*
*/
body.notification-bar #header-row {
    margin-top: 5px;
}
#sns-container {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}
#sns-container li {
    flex: 0 0 50px;
}
#sns-container .et-social-icon a {
    font-size: 14px;
    color: #fff;
    transition: .4s ease;
}
#sns-container .et-social-icon a:hover {
    transform: scale(1.3);
}
#header-row {
    align-items: center;
    justify-content: center;
}
#header-row .et_pb_column:first-child {
    /*order: 0;
    flex: 1 0 45%;*/
    margin-bottom: 0;
    margin-right: auto;
    flex: 1 0 25%;
}

#header-row .et_pb_column:nth-child(2) {
    /*order: 2;
    flex: 1 0 100%;*/
    margin: 0 auto;
    flex: 1 0 50%;
}

#header-row .et_pb_column:last-child {
    /*order: 1;
    flex: 1 0 45%;*/
    /*position: absolute;
    right: 20px;*/
    margin-left: auto;
    flex: 1 0 25%;
}
#header-row .et_pb_column {
    line-height: 0;
    width: auto !important;
}
.contact-form-icon {
    display: flex;
    flex-direction: row-reverse;
    opacity: 1;
    width: fit-content;
    margin-left: auto;
    cursor: pointer;
    transition: .5s;
}

/*.contact-form-icon:hover .a-email {
    opacity: .5;
}

.contact-form-icon .a-email,
.contact-form-icon .b-email {
    transition: .5s;
}

.contact-form-icon.is-active {
    pointer-events: none;
}

.contact-form-icon.is-active,
.contact-form-icon.is-active .a-email {
    opacity: 1;
}

.contact-form-icon.is-active .b-email {
    fill: #2e2c35;
}*/

/*.g-logo-image {
    opacity: .8;
    transition: .3s;
}
.g-logo-image:hover {
    opacity: 1;
}*/
body.blue .a-logo,
body.blue .a-email,
body.blue .b-email {
    fill: #254059;
}

body.dark-blue .a-logo,
body.dark-blue .a-email,
body.dark-blue .b-email {
    fill: #1e1c26;
}

.contrast .a-email {
    fill: var(--contrast);
    opacity: 1;
}
.contrast .b-email {
    fill: var(--white);
    opacity: 1;
}

/*
* ----------[CONTACT / FORM]--------*
*/
.lets-chat-section {
    position: fixed;
    transform: translateX(100%);
    height: 100vh;
    overflow: scroll;
    display: flex;
    transition: .4s ease;
}
body.menu-open {
    overflow: hidden;
}
body.menu-open .lets-chat-section {
    transform: translateX(0);
}
/*.scrollable-content {
    max-height: 75vh;
    overflow: scroll;
}*/
#section-contact .et_pb_row {
    align-items: flex-start;
    height: auto;
    /*padding-top: 80px;
    padding-bottom: 100px;*/
}
.lets-chat-form-container .gform-theme--foundation .gform_fields {
    grid-gap: 0;
}
.gfield.form-fields-heading {
    padding: 0;
    border: none;
}
.gfield.form-fields-heading h3 {
    font-weight: 600;
}
.lets-chat-form-container .gform_heading {
    display: none;
}

.lets-chat-form-container form.wpcf7-form {
    display: flex;
    flex-wrap: wrap;
}

.lets-chat-form-container .form-field.full,
.lets-chat-form-container .form-field input,
.lets-chat-form-container .form-field textarea {
    width: 100%;
}

.lets-chat-form-container .form-field.half {
    width: 47.75%;
}

.lets-chat-form-container .mr-24 {
    margin-right: 24px;
}

.lets-chat-form-container .form-field input,
.lets-chat-form-container .form-field textarea,
.lets-chat-form-container .form-field select {
    /*background: rgba(255, 255, 255, .10);*/
    border: 1px solid var(--black);
    padding: 17.5px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 30px;
    color: #000;
    block-size: auto;
}
/*.lets-chat-form-container .gfield.form-field input,
.lets-chat-form-container .gfield.form-field textarea,
.lets-chat-form-container .gfield.form-field select {
    padding: 13.5px 17.5px;
}*/

/*.lets-chat-form-container .gfield.form-field select {
    line-height: 2;
}*/

.lets-chat-form-container .form-field select {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: 
        linear-gradient(45deg, transparent 50%, rgb(128 128 128 / 50%) 50%), 
        linear-gradient(135deg, rgb(128 128 128 / 50%) 50%, transparent 50%);
    background-position: 
        calc(100% - 33px) calc(1em + 10px), 
        calc(100% - 25px) calc(1em + 10px);
    background-size: 8px 8px;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

/*.lets-chat-form-container .gform-theme--framework *,
.lets-chat-form-container .gfield.form-field select {
    box-sizing: content-box;
}*/


.lets-chat-form-container .form-field {
    margin-bottom: 24px;
}


.lets-chat-section .lets-chat-form-container form {
    display: flex;
    flex-wrap: wrap;
}

.lets-chat-section .lets-chat-form-container .form-field.full,
.lets-chat-section .lets-chat-form-container .form-field input,
.lets-chat-section .lets-chat-form-container .form-field textarea {
    width: 100%;
}

.lets-chat-section .wpcf7-list-item input[type=checkbox] {
    padding: 0;
    width: auto;
}

.lets-chat-section .lets-chat-form-container .mr-24 {
    margin-right: 24px;
}

.lets-chat-section .lets-chat-form-container .form-field input,
.lets-chat-section .lets-chat-form-container .form-field textarea {
    background: rgba(255, 255, 255, .10);
    border: none;
    padding: 17.5px;
    border-radius: 5px;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

.lets-chat-section .lets-chat-form-container .form-field {
    margin-bottom: 24px;
}
.lets-chat-section input::-webkit-input-placeholder,
.lets-chat-section textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.lets-chat-section input:-moz-placeholder,
.lets-chat-section textarea:-moz-placeholder {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.lets-chat-section input::-moz-placeholder,
.lets-chat-section textarea::-moz-placeholder {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.lets-chat-section input:-ms-input-placeholder,
.lets-chat-section textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.lets-chat-section input:focus::-webkit-input-placeholder,
.lets-chat-section textarea:focus::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .25);
}

.lets-chat-section input:focus:-moz-placeholder,
.lets-chat-section textarea:focus:-moz-placeholder {
    color: rgba(255, 255, 255, .25);
}

.lets-chat-section input:focus::-moz-placeholder,
.lets-chat-section textarea:focus::-moz-placeholder {
    color: rgba(255, 255, 255, .25);
}

.lets-chat-section input:focus:-ms-input-placeholder,
.lets-chat-section textarea:focus:-ms-input-placeholder {
    color: rgba(255, 255, 255, .25);
}

.form-fields-heading {
    font-weight: 600;
    color: #000;
    width: 100%;
    margin-bottom: 10px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
.gform-theme--framework ::placeholder {
    color: rgb(0 0 0 / 30%);
    /*font-weight: 600;*/
    transition: all .3s ease-in-out;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: rgb(0 0 0 / 30%);
    /*font-weight: 600;*/
    transition: all .3s ease-in-out;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: rgb(0 0 0 / 30%);
    /*font-weight: 600;*/
    transition: all .3s ease-in-out;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: rgb(0 0 0 / 30%);
    /*font-weight: 600;*/
    transition: all .3s ease-in-out;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .25);
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    color: rgba(255, 255, 255, .25);
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    color: rgba(255, 255, 255, .25);
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    color: rgba(255, 255, 255, .25);
}

input[type="submit"],
#submit {
    background: transparent;
    border: none;
    color: var(--red);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    
}
.lets-chat-form-container.finalize-gift #submit,
.lets-chat-form-container.finalize-gift #gform_submit_button_1 {
    background: var(--red);
    border: none;
    color: #FFF5E0;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    padding: 25px 40px;
    border-radius: 10px;
}
.lets-chat-form-container.finalize-gift .gform-theme--framework.gform-theme.gform_wrapper input[type=submit].gform_button {
    border-radius: 0;
}
.lets-chat-form-container.finalize-gift .gform-theme--framework.gform-theme.gform_wrapper input[type=submit].gform_button:focus {
    box-shadow: none;
}

img#gform_ajax_spinner_1 {
    height: 100%;
    margin: 18px 0;
}

#submit,
#gform_submit_button_1 {
    display: flex;
    align-items: center;
    /*padding: 0;*/
    transition: .3s;
}

.lets-chat-form-container.finalize-gift #submit:hover,
.lets-chat-form-container.finalize-gift #gform_submit_button_1:not(.disabled):hover {
    /*color: rgb(203, 77, 83, .75);*/
    background: var(--black);
}
#submit:hover .right-icon-red {
    /*box-shadow: inset 10px 0 0px rgba(203, 77, 83, 0.5), 0 0 0px rgba(255, 255, 255, 0.2);*/
    background: url('../img/right-arrow-red-inverted.svg');
}

.submit-btn {
    display: flex;
    align-items: center;
}

/*.submit-btn input[type="submit"] {
    order: 0;
    margin-right: 20px;
}*/

/*.submit-btn .ajax-loader {
    order: 2;
}*/

.right-icon-red {
    background: url('../img/right-arrow-red.svg');
    width: 47px;
    height: 47px;
    order: 1;
    margin-left: 20px;
    /*border: 0 solid transparent;*/
    /*box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);*/
    /*transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);*/
    border-radius: 50%;
    transition: .5s;
}
div.wpcf7 .ajax-loader {
    background-image: url('../img/ajax-loader.gif');
    background-repeat: no-repeat;
    width: 45px;
    height: 12px;
    border-radius: 0;
    margin-left: 20px;
}

.wpcf7-form:not(.submitting) .ajax-loader {
    display: none;
}

/*div.wpcf7 .ajax-loader {
    background-image: url('../img/ajax-loader.gif');
    background-repeat: no-repeat;
    width: 45px;
    height: 12px;
    border-radius: 0;
}*/

/*.wpcf7 .ajax-loader::before {
    display: none;
}*/

.wpcf7-response-output,
.wpcf7-not-valid-tip {
    position: absolute;
}
.wpcf7-not-valid-tip,
.wpcf7 form .wpcf7-response-output {
    font-size: var(--notificationFont);
    font-weight: 500;
    line-height: 1.5;
}

.wpcf7-response-output {
    bottom: -62px;
}

.wpcf7-list-item > label {
    display: flex;
    justify-content: flex-start;
    font-size: var(--notificationFont);
    font-weight: 500;
    line-height: 23px;
}
.wpcf7-list-item input[type=checkbox] {
    padding: 0;
    width: auto;
}
.merry-christmas-container,
.merry-christmas-container-bbq,
.merry-christmas-container-coffee {
    position: fixed;
    bottom: 100%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transform-origin: 50% 0;
    -webkit-transform-origin: 50% 0;
    font-size: 80px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-align: center;
    background: #a34d52;
    padding: 30px;
    max-width: 800px;
    border: 20px solid var(--red);
    border-image: repeating-linear-gradient( 45deg, var(--red), var(--red) 20px, white 20px, white 40px ) 20;
}
.merry-christmas-container-bbq {
    font-size: 40px;
}
.merry-christmas-container-coffee {
    font-size: 50px;
}
/*.merry-christmas-container:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    background: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50px;
    transform: translateX(-50%);
    border: 2px solid var(--red);
    box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
}*/
/*.merry-christmas-container:after {

}*/
.swingimage{
    -webkit-animation: enter 10s linear forwards 1, swinging 3.5s ease-in-out forwards infinite;
    animation: enter 10s linear forwards 1, swinging 3.5s ease-in-out forwards infinite;
}
@keyframes enter {
  0% {
    bottom: 100%;
  }
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 10%;
  }
}
@keyframes swinging {
    0%{
        transform: translate(-50%,-50%) rotate(10deg);
    }
    50%{
        transform: translate(-50%,-50%) rotate(-5deg);
    }
    100%{
        transform: translate(-50%,-50%) rotate(10deg);
    }
}
/*
* ----------[MEDIA QUERIES]--------*
*/
@media only screen and (min-width: 981px) {
    .email-txt {
        display: inline;
    }
    #section-contact .et_pb_row {
        padding-top: 80px;
        padding-bottom: 100px;
    }
}
@media only screen and (max-width: 980px) {
    #header-section {
        padding: 0;
    }

    #menu-main-menu {
        justify-content: space-evenly;
    }

    #menu-main-menu li {
        margin-right: inherit;
    }
    #header-row {
        padding: 30px 20px 30px!important;
        display: flex;
        /*flex-wrap: wrap;*/
        width: 100%;
        max-width: 100%;
    }
    #header-row .et_pb_column {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 812px) {
    #header-row {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    #vertical-menu{
        left: 5px;
    }

    #vertical-menu .tooltip-text{
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    #header-row {
        padding: 10px 20px 10px!important;
    }
    #menu-main-menu li {
        width: 37px;
        height: 37px;
    }
    /*#menu-main-menu li .coffee:before {
        max-width: 27px;
        max-height: 25px;
    }
    #menu-main-menu li .sweets:before{
        max-width: 15px;
    }
    #menu-main-menu li .mystery:before {
        max-width: 18px;
        max-height: 20px;
    }*/
}

@media only screen and (max-width: 667px) {
    .lets-chat-form-container .form-field.half{
        width: 100%;
    }

    .lets-chat-form-container .form-field.half.mr-24{
        margin-right: 0!important;
    }
}