.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 1;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center
}

.blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em
}

.blocker.behind {
    background-color: transparent
}

.modal:not(.in) {
    display: none;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    max-width: 500px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 90%;
    background: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    text-align: left
}

.modal a.close-modal {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==")
}

.modal-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    padding: 12px 16px;
    border-radius: 5px;
    background-color: #111;
    height: 20px
}

.modal-spinner>div {
    border-radius: 100px;
    background-color: #fff;
    height: 20px;
    width: 2px;
    margin: 0 1px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out
}

.modal-spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s
}

.modal-spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s
}

.modal-spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s
}

@-webkit-keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.5)
    }

    20% {
        -webkit-transform: scaleY(1)
    }
}

@keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(0.5);
        -webkit-transform: scaleY(0.5)
    }

    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1)
    }
}

.nectaradvent-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 800px;
    margin: auto
}

.nectaradvent-container:after {
    content: "";
    display: table;
    clear: both
}

.nectaradvent-container .nectaradvent-door {
    line-height: 0;
    position: relative
}

.nectaradvent-container .nectaradvent-door .nectaradvent-door-inner {
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    padding: 3px
}

.nectaradvent-container .nectaradvent-door .nectaradvent-door-inner a {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    display: block;
    text-decoration: none !important;
    position: relative
}

.nectaradvent-container .nectaradvent-door .nectaradvent-door-inner a:focus {
    outline: none
}

.nectaradvent-container .nectaradvent-door .nectaradvent-door-inner a img {
    width: 100%;
    height: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    border: 0;
    -webkit-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
    box-shadow: none;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out
}

.nectaradvent-container .nectaradvent-door .nectaradvent-door-inner a.open img {
    -webkit-transform: perspective(1200px) translateZ(0px) translateX(0px) translateY(0px) rotateY(-45deg);
    transform: perspective(1200px) translateZ(0px) translateX(0px) translateY(0px) rotateY(-45deg)
}

.nectaradvent-container .nectaradvent-door .nectaradvent-door-inner a.loaded {
    background: #999
}

.nectaradvent-container .nectaradvent-door.status-future {
    opacity: .5;
    pointer-events: none
}

.nectaradvent-container .nectaradvent-door.preview {
    opacity: 1;
    pointer-events: auto
}

.nectaradvent-container .nectaradvent-door:hover {
    -webkit-animation: dangle 400ms 1;
    animation: dangle 400ms 1
}

.nectaradvent-container .nectaradvent-door:hover a {
    text-decoration: none
}

.nectaradvent-container .nectaradvent-door {
    display: inline-block;
    width: 20%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 20%;
    flex: 1 0 20%;
    min-width: 1%
}

@media (max-width: 767px) {
    .nectaradvent-container .nectaradvent-door {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%
    }
}

.nectaradvent-container.w-24-doors .nectaradvent-door {
    display: inline-block;
    width: 25%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
    min-width: 1%
}

@media (max-width: 767px) {
    .nectaradvent-container.w-24-doors .nectaradvent-door {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%
    }
}

@media only screen and (min-width: 768px) {
    .nectaradvent-container.cols-1 .nectaradvent-door {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%
    }

    .nectaradvent-container.cols-2 .nectaradvent-door {
        width: 50%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%
    }

    .nectaradvent-container.cols-3 .nectaradvent-door {
        width: 33.333333333333333%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 33.333333333333333%;
        flex: 1 0 33.333333333333333%
    }

    .nectaradvent-container.cols-4 .nectaradvent-door {
        width: 25%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 25%;
        flex: 1 0 25%
    }

    .nectaradvent-container.cols-5 .nectaradvent-door {
        width: 20%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 20%;
        flex: 1 0 20%
    }

    .nectaradvent-container.cols-6 .nectaradvent-door {
        width: 16.666666666666667%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 16.666666666666667%;
        flex: 1 0 16.666666666666667%
    }

    .nectaradvent-container.cols-7 .nectaradvent-door {
        width: 14.285714285714286%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 14.285714285714286%;
        flex: 1 0 14.285714285714286%
    }

    .nectaradvent-container.cols-8 .nectaradvent-door {
        width: 12.5%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 12.5%;
        flex: 1 0 12.5%
    }

    .nectaradvent-container.cols-9 .nectaradvent-door {
        width: 11.111111111111111%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 11.111111111111111%;
        flex: 1 0 11.111111111111111%
    }

    .nectaradvent-container.cols-10 .nectaradvent-door {
        width: 10%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 10%;
        flex: 1 0 10%
    }
}

@-webkit-keyframes dangle {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    35% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px)
    }

    75% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px)
    }
}

.nectaradvent-post.modal {
    position: relative;
    min-height: 400px;
    visibility: visible;
    overflow: visible !important;
    height: auto
}

@media (max-width: 767px) {
    .nectaradvent-post.modal {
        padding-left: 0;
        padding-right: 0
    }
}

.nectaradvent-post.modal:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    width: 100%;
    background-image: url(../png/bg_pattern.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: -105px;
    z-index: -1
}

.nectaradvent-post.modal p {
    color: #000
}

.nectaradvent-post.modal:before {
    content: '';
    position: absolute;
    left: -31px;
    top: -49px;
    background: url(../png/santa_hat.png) no-repeat;
    width: 175px;
    height: 168px;
    background-size: contain
}

@font-face {
    font-family: 'Lobster';
    font-style: normal;
    font-weight: 400;
    src: url("../eot/lobster-v20-latin-regular.eot");
    src: local("Lobster Regular"), local("Lobster-Regular"), url("../eot/lobster-v20-latin-regulard41d.eot?#iefix") format("embedded-opentype"), url("../woff2/lobster-v20-latin-regular.woff2") format("woff2"), url("../woff/lobster-v20-latin-regular.woff") format("woff"), url("../ttf/lobster-v20-latin-regular.ttf") format("truetype"), url("../svg/lobster-v20-latin-regular.svg#Lobster") format("svg")
}

@font-face {
    font-family: 'Bree Serif';
    font-style: normal;
    font-weight: 400;
    src: url("../eot/bree-serif-v9-latin-regular.eot");
    src: local("Bree Serif Regular"), local("BreeSerif-Regular"), url("../eot/bree-serif-v9-latin-regulard41d.eot?#iefix") format("embedded-opentype"), url("../woff2/bree-serif-v9-latin-regular.woff2") format("woff2"), url("../woff/bree-serif-v9-latin-regular.woff") format("woff"), url("../ttf/bree-serif-v9-latin-regular.ttf") format("truetype"), url("../svg/bree-serif-v9-latin-regular.svg#BreeSerif") format("svg")
}

h1.nectaradvent-title {
    width: 75%;
    margin: 10px auto 25px auto;
    padding: 0;
    text-align: center;
    font-family: 'Lobster', serif;
    font-size: 55px;
    line-height: normal;
    font-weight: bold;
    color: #1dbfb3;
    border: 0;
    position: relative;
    height: 60px;
    line-height: 45px;
    letter-spacing: normal;
    text-shadow: -2px -2px 4px #1dbfb3, 2px -2px 4px #1dbfb3, -2px 2px 4px #1dbfb3, 2px 2px 4px #1dbfb3, 5px 7px 9px rgba(0, 0, 0, 0.6);
    text-rendering: auto;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3)
}

h1.nectaradvent-title:before {
    display: none !important
}

h1.nectaradvent-title:after {
    display: none !important
}

.nectaradvent-post-inner img {
    max-width: 100%;
    height: auto
}

.nectaradvent-post-inner blockquote {
    margin: 0;
    border: 0;
    font-style: normal;
    font-family: 'Bree Serif', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: normal;
    padding: 0;
    width: 100%
}

.nectaradvent-post-inner blockquote:before,
.nectaradvent-post-inner blockquote:after {
    display: none
}

.nectaradvent-post-inner blockquote p {
    font-family: 'Bree Serif', sans-serif;
    font-size: 15px;
    font-weight: normal;
    line-height: normal;
    font-weight: 400
}

.nectaradvent-post-inner blockquote footer {
    font-family: 'Bree Serif', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
    border: 0;
    color: #000
}

.nectaradvent-post-inner blockquote footer:before {
    content: '- '
}

.nectaradvent-post-inner blockquote footer:after {
    content: '- '
}

@media (max-width: 767px) {
    .nectaradvent-post-inner {
        width: auto
    }
}

.blocker {
    z-index: 999998;
    -webkit-transform: translateZ(1000px);
    transform: translateZ(1000px);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

body.nectaradvent-snow-modal .nectaradvent-post.modal {
    z-index: 9999999
}

body.nectaradvent-snow-modal .blocker:after {
    content: '';
    -webkit-transform: translateY(-5000px);
    -ms-transform: translateY(-5000px);
    transform: translateY(-5000px);
    opacity: 0;
    -webkit-transition: opacity 2000ms linear;
    -o-transition: opacity 2000ms linear;
    transition: opacity 2000ms linear
}

body.nectaradvent-snow-modal.modal-open .blocker:after {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

body.nectaradvent-snow-everywhere .spsnow {
    opacity: 0;
    -webkit-transition: opacity 2000ms linear;
    -o-transition: opacity 2000ms linear;
    transition: opacity 2000ms linear
}

body.nectaradvent-snow-everywhere.nectaradvent-snow-everywhere-active .spsnow {
    opacity: 1
}

_:-ms-lang(x),
body.nectaradvent-snow-everywhere .spsnow {
    display: none\9
}

@media screen and (min-width: 0\0) and (-webkit-min-device-pixel-ratio: 0),
screen and (min-width: 0\0) and (-o-min-device-pixel-ratio: 0/1),
screen and (min-width: 0\0) and (min-resolution: 0.001dpcm) {
    body.nectaradvent-snow-everywhere .spsnow {
        display: none !important
    }
}

.nectaradvent-snow,
body.nectaradvent-snow-modal .blocker:after,
body.nectaradvent-snow-everywhere .spsnow {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999 !important;
    height: 100%;
    background: url(../png/sp_snow1.png), url(../png/sp_snow2.png), url(../png/sp_snow3.png);
    z-index: 1;
    -webkit-animation: snow 15s linear 1s infinite;
    animation: snow 15s linear 1s infinite;
    will-change: animation;
    pointer-events: none
}

.snow.snow_home {
    height: 400px !important
}

@-webkit-keyframes snow {
    0% {
        background-position: 0 0, 0 0, 0 0
    }

    50% {
        background-position: 250px 500px, 250px 250px, -250px 250px
    }

    100% {
        background-position: 500px 1000px, 500px 500px, -500px 500px
    }
}

@keyframes snow {
    0% {
        background-position: 0 0, 0 0, 0 0
    }

    50% {
        background-position: 250px 500px, 250px 250px, -250px 250px
    }

    100% {
        background-position: 500px 1000px, 500px 500px, -500px 500px
    }
}

.nectaradvent-btn {
    display: inline-block
}

.sp-icon {
    display: block;
    margin: 25px auto
}

.nectaradvent-door.nectaradvent-layout-04 .nectaradvent-door-inner a.loaded {
    background: transparent
}

.sp_icon {
    display: inline-block;
    margin-top: 25px
}

.hiddenmode {
    display: none
}

.nectaradvent-container-outer {
    background: #000;
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1100;
    top: 0;
    left: 0;
    display: none;
    padding: 15px;
    overflow-y: auto
}

.nectaradvent-container-outer .nectaradvent-container {
    max-width: 650px;
    margin: 5% auto;
    -webkit-transform: translateY(-1200px);
    -ms-transform: translateY(-1200px);
    transform: translateY(-1200px);
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    -webkit-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms
}

.nectaradvent-container-outer .nectaradvent-snow,
.nectaradvent-container-outer body.nectaradvent-snow-modal .blocker:after,
body.nectaradvent-snow-modal .nectaradvent-container-outer .blocker:after,
.nectaradvent-container-outer body.nectaradvent-snow-everywhere .spsnow,
body.nectaradvent-snow-everywhere .nectaradvent-container-outer .spsnow {
    opacity: 0;
    -webkit-transition: opacity 1000ms linear;
    -o-transition: opacity 1000ms linear;
    transition: opacity 1000ms linear;
    -webkit-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms
}

.nectaradvent-container-outer.active .nectaradvent-container {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.nectaradvent-container-outer.active .nectaradvent-snow,
.nectaradvent-container-outer.active body.nectaradvent-snow-modal .blocker:after,
body.nectaradvent-snow-modal .nectaradvent-container-outer.active .blocker:after,
.nectaradvent-container-outer.active body.nectaradvent-snow-everywhere .spsnow,
body.nectaradvent-snow-everywhere .nectaradvent-container-outer.active .spsnow {
    opacity: 1
}

#sp-close-hidden-mode {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 12px;
    background-image: url(../svg/close.svg);
    background-size: contain;
    z-index: 9999;
    display: block
}

@media (max-width: 767px) {
    #sp-close-hidden-mode {
        top: 6px
    }
}

h1.nectaradvent-title {
    margin: 0 0 10px 0;
    padding: 0;
    color: #fff;
    font-size: 44px;
    font-family: 'Lobster';
    line-height: normal;
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    text-align: left
}

@media (max-width: 767px) {
    h1.nectaradvent-title {
        font-size: 36px
    }
}

h1.nectaradvent-title:before,
h1.nectaradvent-title:after {
    display: none !important
}

h2.nectaradvent-subtitle {
    margin: 0 0 25px 0;
    padding: 0;
    color: #fff;
    font-size: 15px;
    font-family: 'Bree Serif';
    line-height: normal;
    width: 100%
}

h2.nectaradvent-subtitle:before,
h2.nectaradvent-subtitle:after {
    display: none !important
}

#nectaradvent-trigger {
    position: fixed;
    z-index: 999;
    right: 10px;
    top: 10px;
    padding: 10px 5px
}

#nectaradvent-trigger>span {
    background-image: url(../png/default_trigger.png);
    background-repeat: no-repeat;
    width: 60px;
    height: 91px;
    background-size: contain;
    display: block;
    z-index: 1001;
    cursor: pointer
}

#nectaradvent-trigger:hover {
    -webkit-animation: dangle 400ms 1;
    animation: dangle 400ms 1
}

.nectaradvent-post.modal {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms
}

.nectaradvent-post.modal:hover {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.spquiz h2.spquiz-question {
    margin: 20px auto 40px;
    padding: 0;
    text-align: left;
    font-family: 'Bree Serif', serif;
    font-size: 24px;
    line-height: normal;
    font-weight: bold;
    color: #555;
    border: 0;
    position: relative;
    line-height: 1.2;
    letter-spacing: normal
}

.spquiz h2.spquiz-question:before {
    display: none !important
}

.spquiz h2.spquiz-question:after {
    display: none !important
}

.spquiz .spquiz-answer {
    font-size: 15px;
    font-family: 'Bree Serif';
    line-height: normal;
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 20px;
    -webkit-transition: background 400ms;
    -o-transition: background 400ms;
    transition: background 400ms;
    cursor: pointer;
    position: relative;
    border: 3px solid #ccc;
    text-align: center
}

.spquiz .spquiz-answer:hover {
    -webkit-box-shadow: -2px -2px 4px red, 2px -2px 4px red, -2px 2px 4px red, 2px 2px 4px red, 5px 8px 10px rgba(0, 0, 0, 0.4);
    box-shadow: -2px -2px 4px red, 2px -2px 4px red, -2px 2px 4px red, 2px 2px 4px red, 5px 8px 10px rgba(0, 0, 0, 0.4);
    background: #fff;
    color: red !important
}

.spquiz-loader,
.spquiz-result .wpcf7 .ajax-loader {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: -34px;
    top: 3px;
    background-image: url(../gif/loader.gif);
    background-repeat: no-repeat;
    background-size: contain;
    display: none
}

.spquiz-result {
    display: none
}

.spquiz-result p {
    font-size: 15px;
    font-family: 'Bree Serif';
    line-height: 1.2
}

.spquiz-result .wpcf7 {
    margin-top: 2em
}

.spquiz-result .wpcf7 input[type="text"],
.spquiz-result .wpcf7 input[type="email"],
.spquiz-result .wpcf7 input[type="url"],
.spquiz-result .wpcf7 input[type="password"],
.spquiz-result .wpcf7 input[type="search"],
.spquiz-result .wpcf7 input[type="number"],
.spquiz-result .wpcf7 input[type="tel"],
.spquiz-result .wpcf7 input[type="range"],
.spquiz-result .wpcf7 input[type="date"],
.spquiz-result .wpcf7 input[type="month"],
.spquiz-result .wpcf7 input[type="week"],
.spquiz-result .wpcf7 input[type="time"],
.spquiz-result .wpcf7 input[type="datetime"],
.spquiz-result .wpcf7 input[type="datetime-local"],
.spquiz-result .wpcf7 input[type="color"],
.spquiz-result .wpcf7 textarea {
    color: #555;
    background: #fff;
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    border: 0;
    border-radius: 3px;
    display: block;
    padding: 0.7em;
    width: 100%
}

.spquiz-result .wpcf7 textarea {
    max-height: 125px
}

.spquiz-result .wpcf7 .wpcf7-form-control-wrap {
    margin: 5px 0;
    display: block
}

.spquiz-result .wpcf7 button,
.spquiz-result .wpcf7 input[type="button"],
.spquiz-result .wpcf7 input[type="submit"] {
    background-color: #222;
    border: 0;
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1;
    padding: 1em 2em;
    text-shadow: none;
    -webkit-transition: background 0.2s;
    -o-transition: background 0.2s;
    transition: background 0.2s;
    margin-left: 29px
}

.spquiz-result .wpcf7 div.wpcf7-response-output {
    font-size: 15px;
    font-family: 'Bree Serif';
    line-height: 1.2;
    border: 0 !important
}

.spquiz-result .wpcf7 .ajax-loader {
    position: relative;
    display: inline-block;
    right: 0;
    top: 0;
    margin-left: 5px
}

.spquiz-back {
    display: inline-block;
    margin: 1em 0 0 0;
    cursor: pointer
}

.nectaradvent-post.modal h1.nectaradvent-title,
.nectaradvent-post.modal h2.spquiz-question {
    text-align: center
}

.nectaradvent-post.modal .spquiz-answer {
    border-color: #fffc
}

.nectaradvent-post.modal .nectaradvent-post-inner {
    padding: 20px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center
}

.nectaradvent-post.modal blockquote {
    text-align: center
}

.nectaradvent-post.modal.nectaradvent-layout-01 {
    background: #c2703d;
    background: -o-radial-gradient(center, ellipse, #c2703d 1%, #7a4723 100%);
    background: radial-gradient(ellipse at center, #c2703d 1%, #7a4723 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c2703d', endColorstr='#7a4723', GradientType=1);
    border: 26px double #8d522a;
    position: relative;
    padding-bottom: 80px
}

.nectaradvent-post.modal.nectaradvent-layout-01 h1.nectaradvent-title,
.nectaradvent-post.modal.nectaradvent-layout-01 h2.spquiz-question {
    color: #fff
}

.nectaradvent-post.modal.nectaradvent-layout-01 p,
.nectaradvent-post.modal.nectaradvent-layout-01 footer {
    color: #fff;
    text-align: center;
    margin-bottom: 0
}

.nectaradvent-post.modal.nectaradvent-layout-01 .spquiz-answer,
.nectaradvent-post.modal.nectaradvent-layout-01 .spquiz-result p,
.nectaradvent-post.modal.nectaradvent-layout-01 .wpcf7-form label,
.nectaradvent-post.modal.nectaradvent-layout-01 div.wpcf7-response-output {
    color: #fff
}

.nectaradvent-post.modal.nectaradvent-layout-01 a.close-modal {
    background-image: url(../svg/close.svg);
    background-size: contain;
    top: -35.5px;
    right: -36.5px
}

.nectaradvent-post.modal.nectaradvent-layout-01:before {
    content: '';
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    height: 100px;
    width: 100%;
    background-image: url(../png/bg_pattern2.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: 15px;
    z-index: -1;
    display: block !important;
    top: auto;
    height: 150px
}

@media (max-width: 767px) {
    .nectaradvent-post.modal.nectaradvent-layout-01:before {
        background-position-y: bottom
    }
}

.nectaradvent-post.modal.nectaradvent-layout-02 {
    background-color: #e94444;
    position: relative;
    background: #e94444;
    background: -o-radial-gradient(center, ellipse, #e94444 1%, #690303 100%);
    background: radial-gradient(ellipse at center, #e94444 1%, #690303 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e94444', endColorstr='#690303', GradientType=1)
}

.nectaradvent-post.modal.nectaradvent-layout-02 h1.nectaradvent-title,
.nectaradvent-post.modal.nectaradvent-layout-02 h2.spquiz-question {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4)
}

.nectaradvent-post.modal.nectaradvent-layout-02 p,
.nectaradvent-post.modal.nectaradvent-layout-02 footer {
    color: #fff;
    text-align: center;
    margin-bottom: 0
}

.nectaradvent-post.modal.nectaradvent-layout-02 .spquiz-answer,
.nectaradvent-post.modal.nectaradvent-layout-02 .spquiz-result p,
.nectaradvent-post.modal.nectaradvent-layout-02 .wpcf7-form label,
.nectaradvent-post.modal.nectaradvent-layout-02 div.wpcf7-response-output {
    color: #fff
}

.nectaradvent-post.modal.nectaradvent-layout-02 a.close-modal {
    background-image: url(../svg/close.svg);
    background-size: contain;
    top: -11.5px;
    right: -14.5px
}

.nectaradvent-post.modal.nectaradvent-layout-02:before {
    content: '';
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    height: 100px;
    width: 100%;
    background-image: url(../png/bg_pattern2.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: 15px;
    z-index: -1;
    display: block !important;
    top: auto;
    height: 150px
}

@media (max-width: 767px) {
    .nectaradvent-post.modal.nectaradvent-layout-02:before {
        background-position-y: bottom
    }
}

.nectaradvent-post.modal.nectaradvent-layout-03 {
    background-color: #79C9CB;
    background-image: url(../png/bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 -180px;
    position: relative
}

.nectaradvent-post.modal.nectaradvent-layout-03 h1.nectaradvent-title,
.nectaradvent-post.modal.nectaradvent-layout-03 h2.spquiz-question {
    color: #555;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8)
}

.nectaradvent-post.modal.nectaradvent-layout-03 p,
.nectaradvent-post.modal.nectaradvent-layout-03 footer {
    color: #555;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 0
}

.nectaradvent-post.modal.nectaradvent-layout-03 .spquiz-answer,
.nectaradvent-post.modal.nectaradvent-layout-03 .spquiz-result p,
.nectaradvent-post.modal.nectaradvent-layout-03 .wpcf7-form label,
.nectaradvent-post.modal.nectaradvent-layout-03 div.wpcf7-response-output {
    color: #555
}

.nectaradvent-post.modal.nectaradvent-layout-03 a.close-modal {
    background-image: url(../svg/close-2.svg);
    background-size: contain;
    top: -11.5px;
    right: -14.5px
}

.nectaradvent-post.modal.nectaradvent-layout-03:before {
    content: '';
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    height: 100px;
    width: 100%;
    background-image: url(../png/bg_pattern2.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: 15px;
    z-index: -1;
    display: block !important;
    top: auto;
    height: 150px
}

@media (max-width: 767px) {
    .nectaradvent-post.modal.nectaradvent-layout-03:before {
        background-position-y: bottom
    }
}

.nectaradvent-post.modal.nectaradvent-layout-04 {
    position: relative;
    background: #dbdb56;
    background: -o-radial-gradient(center, ellipse, #dbdb56 1%, #343a0e 100%);
    background: radial-gradient(ellipse at center, #dbdb56 1%, #343a0e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dbdb56', endColorstr='#343a0e', GradientType=1)
}

.nectaradvent-post.modal.nectaradvent-layout-04 h1.nectaradvent-title,
.nectaradvent-post.modal.nectaradvent-layout-04 h2.spquiz-question {
    color: #fff
}

.nectaradvent-post.modal.nectaradvent-layout-04 h2.spquiz-question {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.72)
}

.nectaradvent-post.modal.nectaradvent-layout-04 p,
.nectaradvent-post.modal.nectaradvent-layout-04 footer {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.72);
    text-align: center;
    margin-bottom: 0
}

.nectaradvent-post.modal.nectaradvent-layout-04 .spquiz-answer,
.nectaradvent-post.modal.nectaradvent-layout-04 .spquiz-result p,
.nectaradvent-post.modal.nectaradvent-layout-04 .wpcf7-form label,
.nectaradvent-post.modal.nectaradvent-layout-04 div.wpcf7-response-output {
    color: #fff
}

.nectaradvent-post.modal.nectaradvent-layout-04 a.close-modal {
    background-image: url(../svg/close.svg);
    background-size: contain;
    top: -11.5px;
    right: -14.5px
}

.nectaradvent-post.modal.nectaradvent-layout-05 {
    background: #e94444;
    background: -o-radial-gradient(center, ellipse, #e94444 1%, #690303 100%);
    background: radial-gradient(ellipse at center, #e94444 1%, #690303 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e94444', endColorstr='#690303', GradientType=1);
    position: relative
}

.nectaradvent-post.modal.nectaradvent-layout-05 h1.nectaradvent-title,
.nectaradvent-post.modal.nectaradvent-layout-05 h2.spquiz-question {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.75)
}

.nectaradvent-post.modal.nectaradvent-layout-05 p,
.nectaradvent-post.modal.nectaradvent-layout-05 footer {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.75)
}

.nectaradvent-post.modal.nectaradvent-layout-05 .spquiz-answer,
.nectaradvent-post.modal.nectaradvent-layout-05 .spquiz-result p,
.nectaradvent-post.modal.nectaradvent-layout-05 .wpcf7-form label,
.nectaradvent-post.modal.nectaradvent-layout-05 div.wpcf7-response-output {
    color: #fff
}

.nectaradvent-post.modal.nectaradvent-layout-05 a.close-modal {
    background-image: url(../svg/close.svg);
    background-size: contain;
    top: -11.5px;
    right: -14.5px
}

.nectaradvent-post.modal.nectaradvent-layout-05:before {
    content: '';
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    height: 100px;
    width: 100%;
    background-image: url(../png/bg-2.png);
    background-size: cover;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
    display: block !important;
    top: auto;
    height: 100%
}

.nectaradvent-post.modal.nectaradvent-layout-06 {
    background: #dbdb56;
    background: -o-radial-gradient(center, ellipse, #dbdb56 1%, #343a0e 100%);
    background: radial-gradient(ellipse at center, #dbdb56 1%, #343a0e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dbdb56', endColorstr='#343a0e', GradientType=1);
    position: relative
}

.nectaradvent-post.modal.nectaradvent-layout-06 h1.nectaradvent-title,
.nectaradvent-post.modal.nectaradvent-layout-06 h2.spquiz-question {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6)
}

.nectaradvent-post.modal.nectaradvent-layout-06 p,
.nectaradvent-post.modal.nectaradvent-layout-06 footer {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    text-align: center;
    margin-bottom: 0
}

.nectaradvent-post.modal.nectaradvent-layout-06 .spquiz-answer,
.nectaradvent-post.modal.nectaradvent-layout-06 .spquiz-result p,
.nectaradvent-post.modal.nectaradvent-layout-06 .wpcf7-form label,
.nectaradvent-post.modal.nectaradvent-layout-06 div.wpcf7-response-output {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6)
}

.nectaradvent-post.modal.nectaradvent-layout-06 a.close-modal {
    background-image: url(../svg/close-3.svg);
    background-size: contain;
    top: -11.5px;
    right: -14.5px
}

.nectaradvent-post.modal.nectaradvent-layout-06:before {
    content: '';
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    width: 100px;
    background-image: url(../png/bg-3.png);
    background-position: 6% 5%;
    background-size: cover;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
    display: block !important;
    top: auto;
    height: 100px;
    top: 14px;
    left: 15px
}

.nectaradvent-post.modal.nectaradvent-layout-07 {
    background-color: #D3B229;
    background-image: url(../png/bg-4.png);
    background-size: contain;
    position: relative
}

.nectaradvent-post.modal.nectaradvent-layout-07 h1.nectaradvent-title,
.nectaradvent-post.modal.nectaradvent-layout-07 h2.spquiz-question {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.55)
}

.nectaradvent-post.modal.nectaradvent-layout-07 p,
.nectaradvent-post.modal.nectaradvent-layout-07 footer {
    color: #000;
    text-align: center;
    margin-bottom: 0
}

.nectaradvent-post.modal.nectaradvent-layout-07 .spquiz-answer,
.nectaradvent-post.modal.nectaradvent-layout-07 .spquiz-result p,
.nectaradvent-post.modal.nectaradvent-layout-07 .wpcf7-form label,
.nectaradvent-post.modal.nectaradvent-layout-07 div.wpcf7-response-output {
    color: #000
}

.nectaradvent-post.modal.nectaradvent-layout-07 a.close-modal {
    background-image: url(../svg/close-4.svg);
    background-size: contain;
    top: -11.5px;
    right: -14.5px
}

.nectaradvent-post.modal.nectaradvent-layout-08 {
    background-color: #BA7337;
    background-image: url(../png/bg-5.png);
    background-size: cover;
    position: relative
}

.nectaradvent-post.modal.nectaradvent-layout-08 h1.nectaradvent-title,
.nectaradvent-post.modal.nectaradvent-layout-08 h2.spquiz-question {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4)
}

.nectaradvent-post.modal.nectaradvent-layout-08 p,
.nectaradvent-post.modal.nectaradvent-layout-08 footer {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4)
}

.nectaradvent-post.modal.nectaradvent-layout-08 .spquiz-answer,
.nectaradvent-post.modal.nectaradvent-layout-08 .spquiz-result p,
.nectaradvent-post.modal.nectaradvent-layout-08 .wpcf7-form label,
.nectaradvent-post.modal.nectaradvent-layout-08 div.wpcf7-response-output {
    color: #fff
}

.nectaradvent-post.modal.nectaradvent-layout-08 a.close-modal {
    background-image: url(../svg/close.svg);
    background-size: contain;
    top: -11.5px;
    right: -14.5px
}

.nectaradvent-post.modal.nectaradvent-layout-08:before {
    content: '';
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    height: 100px;
    width: 100%;
    background-image: url(../png/bg_pattern2.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: 15px;
    z-index: -1;
    display: block !important;
    top: auto;
    height: 150px
}

@media (max-width: 767px) {
    .nectaradvent-post.modal.nectaradvent-layout-08:before {
        background-position-y: bottom
    }
}

.sp-modal-iframe {
    padding: 0 !important;
    line-height: 0;
    height: 0;
    overflow: hidden;
    z-index: 9999999 !important;
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-transition: -webkit-transform 400ms;
    transition: -webkit-transform 400ms;
    -o-transition: transform 400ms;
    transition: transform 400ms;
    transition: transform 400ms, -webkit-transform 400ms
}

.sp-modal-iframe:hover {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.sp-modal-iframe.iframeloaded {
    overflow: visible
}

.sp-modal-iframe iframe {
    margin: 0;
    padding: 0;
    border-radius: 8px;
    overflow: hidden
}

body.nectaradvent-snow-modal.modal-open .blocker:after {
    -webkit-backface-visibility: hidden
}

.nectaradvent-post-inner blockquote,
.nectaradvent-post-inner blockquote p {
    background: transparent
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 15px;
    left: 0;
    right: 0;
    height: auto;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    display: flex;
}
.nectaradvent-door-inner:hover .overlay {
    opacity: 1;
    background: rgba(0,0,0,.7);
}
.text {
    color: white;
    font-size: 20px;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
    padding: 10%;
    text-align: center;
}

.na-parent-link {
    position: relative;
    width: 100%;
    color: inherit;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: auto;
}
.na-header-img{
    width: auto;
    height: auto;
}