:root {
    --font-website: "Roboto Condensed", sans-serif;
    --color-text: #000000de;
    --color-text-1: #000000;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}
* {
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}

b, strong {
    font-weight: 700;
}
img {
    max-width: 100%;
}
body {
    padding: 0;
    margin: 0;
    font-family: var(--font-website);
    color: var(--color-text);
    font-size: 16px;
    position: relative;
    background-color: white;
}

input,
textarea {
    font-family: var(--font-website);
}

.--flex {
    display: flex;
    flex-wrap: wrap;
}

.--space-between {
    justify-content: space-between;
}

.--align-center {
    align-items: center;
}

.--display-none {
    display: none !important;
}

.--width-100 {
    width: 100%;
}

.loading {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.loading .spinner {
    color: white;
    display: inline-block;
    position: absolute;
    width: 64px;
    height: 64px;
    left: 50%;
    margin-left: -32px;
    top: 50%;
    margin-top: -32px;
}

.loading .spinner div {
	transform-origin: 32px 32px;
	animation: lds-spinner 1.2s linear infinite;
}

.loading .spinner div::after {
	content: " ";
	display: block;
	position: absolute;
	top: 3px;
	left: 29px;
	width: 5px;
	height: 14px;
	border-radius: 20%;
	background: #fff;
}

.loading .spinner div:nth-child(1) {
	transform: rotate(0deg);
	animation-delay: -1.1s;
}
.loading .spinner div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -1s;
}
.loading .spinner div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -0.9s;
}
.loading .spinner div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -0.8s;
}
.loading .spinner div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -0.7s;
}
.loading .spinner div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -0.6s;
}
.loading .spinner div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -0.5s;
}
.loading .spinner div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -0.4s;
}
.loading .spinner div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -0.3s;
}
.loading .spinner div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -0.2s;
}
.loading .spinner div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -0.1s;
}
.loading .spinner div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s;
}
@keyframes lds-spinner {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.wow:first-child {
    visibility: hidden;
}

.section {
    width: 90%;
    margin: auto;
    padding: 0 2vw;
    position: relative;
    z-index: 2;
}

.section--small {
    width: 80%;
}

.banner {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.banner__image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    object-fit: cover;
    object-position: top;
}

.banner__content-left {
    flex: 0 0 40%;
    width: 40%;
}

.banner__content-right {
    flex: 0 0 58%;
    width: 58%;
    margin-right: -4vw;
    position: relative;
}

.banner__content-logo {
    line-height: 0;
    margin-bottom: 3vw;
}

.banner__content-logo a {
    line-height: 0;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.banner__content-logo a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2vw;
    bottom: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: none;
    transition: none;
    -webkit-transform: skewX( -25deg );
    transform: skewX(-25deg);
}

.banner__content-logo a:hover::before {
    width: 150%;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all .45s ease-out;
    transition: all .45s ease-out;
    z-index: 2;
}

.banner__content-logo a img {
    width: 11vw;
}

.banner__content {
    flex: 0 0 100%;
    width: 100%;
}

.banner__section {
    min-height: 100vh;
    padding-top: 5vw;
}

.banner__content-title {
    line-height: 0;
    width: 39vw;
    margin-bottom: 2vw;
}

.banner__content-description {
    line-height: 0;
    width: 38vw;
    margin-bottom: 1.5vw;
}

.banner__content-button a {
    transition: all 0.3s ease;
}

.banner__content-button a:hover {
    transform: scale(1.05);
}

.banner__content-button .banner__content-button-order {
    flex: 0 0 16vw;
    width: 16vw;
    line-height: 0;
}

.banner__content-button .banner__content-button-register {
    flex: 0 0 19.6vw;
    width: 19.6vw;
    line-height: 0;
}

.banner__content-product,
.banner__content-title img,
.banner__content-description img,
.banner__content-button a img,
.sticker-icon__item img,
.popup-order__variant-image {
    width: 100%;
}

.banner__content-product {
    bottom: 0;
    right: 0;
    z-index: 1;
    animation-name: stayAndtranslate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-delay: 4s;
    animation-fill-mode: forwards;
    animation-play-state: running;
}

/* @keyframes stayAndtranslate {
    from {
        transform: translateY(0vw);
    }
    to {
        transform: translateY(1vw);
    }
} */

.sticker-icon {
    position: fixed;
    bottom: 2vw;
    right: 2vw;
    z-index: 1000;
}

.sticker-icon__item {
    line-height: 0;
    display: block;
    transition: all 0.3s ease;
    width: 4.5vw;
    margin-top: 1vw;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.sticker-icon__item:hover {
    transform: scale(1.1);
}

.--mobile,
.popup {
    display: none;
}

.popup__content {
    max-height: 100vh;
    overflow-y: auto;
    position: relative;
}

.popup__content::-webkit-scrollbar {
    background-color: transparent;
    display: none
}

.popup__content::-webkit-scrollbar-thumb {
    background-color: transparent
}

.popup__content::-webkit-scrollbar-track {
    background-color: transparent
}

.popup__content .popup__background {
    width: 40vw;
}

.popup__close {
    position: absolute;
    right: 0;
    top: -3vw;
    z-index: 3;
    line-height: 0;
    width: 3vw;
}

.popup__close img {
    filter: brightness(0) invert(1);
}

.popup__layer-in-front {
    position: absolute;
    z-index: 2;
    top: 4vw;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}

.popup__form-input {
    margin-bottom: 1.5vw;
}

.popup__layer-in-front-image {
    margin-bottom: 1vw;
    width: 100%;
}

.popup__form-input input[type="text"] {
    width: 100%;
    border: none;
    outline: none;
    padding: 0.75vw 1.5vw;
    border-radius: 4vw;
    font-size: 1.5vw;
}

.popup__form {
    margin-bottom: 1.5vw;
}

.popup-order__variant {
    margin-bottom: 2vw;
    position: relative;
}

.popup-order__button {
    text-align: center;
}

.popup-order__button-submit {
    line-height: 0;
    width: 40%;
    display: inline-block;
    transition: all 0.3s ease;
}

.popup-order__button-submit:hover {
    transform: scale(1.1);
}

.popup-order__variant-form-input-checkbox {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    height: 1.5vw;
    width: 1.5vw;
    margin-right: 0.5vw;
    display: block;
}

.popup-order__variant-form-input-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.popup-order__variant-form-input-checkbox .popup-order__variant-form-input-checkbox-mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5vw;
    width: 1.5vw;
    background-color: #770e0e;
    border: 1px solid #770e0e;
}

.popup-order__variant-form-input-checkbox .popup-order__variant-form-input-checkbox-mark:after {
    content: "";
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    width: 0.5vw;
    height: 1vw;
    border: solid white;
    border-width: 0 0.2vw 0.2vw 0;
    -webkit-transform: rotate(45deg) translateX(-100%) translateY(-25%);
    -ms-transform: rotate(45deg) translateX(-100%) translateY(-25%);
    transform: rotate(45deg) translateX(-100%) translateY(-25%);
}

.popup-order__variant-form-input-checkbox input:checked ~ .popup-order__variant-form-input-checkbox-mark {
    background-color: #770e0e;
}

.popup-order__variant-form-input-checkbox input:checked ~ .popup-order__variant-form-input-checkbox-mark:after {
    display: block;
}

.popup-order__variant-form {
    position: absolute;
    top: 2.5vw;
    z-index: 1;
    left: 1.7vw;
}

.popup-order__variant-quantity {
    gap: 0.5vw;
    margin-top: 0.3vw;
    margin-left: 4vw;
}

.popup-order__variant-quantity-button {
    display: block;
    background-color: #770e0e;
    color: white;
    text-decoration: none;
    width: 1.2vw;
    height: 1.2vw;
    text-align: center;
    line-height: 1.2vw;
}

.popup-order__variant-quantity-input {
    background: transparent;
    border: none;
    text-align: center;
    padding: 0;
    width: 2vw;
    font-size: 1.3vw;
    color: #770e0e;
    outline: none !important;
}

.variant-2 {
    margin-top: 0.6vw;
}

.popup__form-input--error {
    box-shadow: inset 1px 1px 10px rgb(255 113 5);
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.altar,
.gift,
.popular-product,
.guide,
.gift-box,
.map {
    margin-top: 5vw;
}

.guide img {
    border-radius: 1.5vw;
}

footer {
    background-color: #690712;
    padding: 3vw 0;
    position: relative;
    z-index: 2;
    margin-top: 5vw;
}

.section__title {
    text-align: center;
}

.section__title img {
    width: 60vw;
    margin: auto;
    max-width: 100%;
    display: inline-block;
}

.map__search {
    text-align: center;
    margin-bottom: 3vw;
}

.map__search input {
    width: 40vw;
    border: none !important;
    outline: none !important;
    background: #D2B673;
    background: linear-gradient(90deg,rgba(210, 182, 115, 1) 0%, rgba(238, 227, 171, 1) 50%, rgba(210, 182, 115, 1) 100%);
    color: #690712;
    font-size: 2vw;
    padding: 1vw 2vw;
    border-radius: 3vw;
}

.map__search input::placeholder {
    color: #690712;
    opacity: 1;
}

.map__search input::-ms-input-placeholder {
    color: #690712;
}

.map__title {
    margin-bottom: 2vw;
}

.map__item {
    cursor: pointer;
    margin-bottom: 1.5vw;
    transition: all 0.3s ease;
    padding: 1vw;
    border-radius: 0.7vw;
}

.map__item--active,
.map__item:hover {
    background-color: #831d2b;
    box-shadow: inset 0 0 0.5vw #d2b673;
}

.map__list {
    color: white;
    flex: 0 0 23vw;
    width: 23vw;
    height: 45vw;
    overflow: auto;
}

.map__list::-webkit-scrollbar {
    background-color: transparent;
    display: none
}

.map__list::-webkit-scrollbar-thumb {
    background-color: transparent
}

.map__list::-webkit-scrollbar-track {
    background-color: transparent
}

.map__iframe {
    flex: 0 0 50vw;
    width: 50vw;
}

.map__item-title {
    font-size: 2vw;
    font-weight: bold;
    margin-bottom: 0.5vw;
}

.map__item-address {
    font-size: 1.5vw;
}

.sticker-icon__item img {
    border-radius: 50%;
}

.popup-register-success .popup__content {
    background-color: #831d2b;
    padding: 2vw;
    width: 30vw;
    max-width: 100%;
}

.popup-register-success__title {
    margin-bottom: 1vw;
}

.popup-register-success .popup__layer-in-front {
    top: 0;
    right: 0;
    left: initial;
    transform: initial;
}

.popup-register-success .popup__close {
    right: 0;
    top: 0;
    width: 2vw;
}

.banner__content-left--desktop .banner__content-logo,
.banner__content-left--desktop .banner__content-title {
    display: none;
}

.banner__content-top {
    flex: 0 0 100%;
    width: 100%;
}

.banner__content-top .banner__content-title {
    flex: 0 0 calc(100% - 20vw);
    width: calc(100% - 20vw);
}
.banner__content-top .banner__content-title img {
    width: 80%;
}

@media only screen and (max-width: 550px) {
    .banner__content-left--desktop .banner__content-logo,
    .banner__content-left--desktop .banner__content-title {
        display: block;
    }
    .banner__content-top {
        display: none !important;
    }
    .section,
    .section--small {
        width: 100%;
    }
    .--desktop {
        display: none;
    }

    .--mobile {
        display: block;
    }

    .banner__image {
        object-position: 96%;
    }

    .banner__content-block-1 .banner__content-logo,
    .banner__content-block-1 .banner__content-title {
        margin-bottom: 0;
    }

    /* .banner__section {
        padding: 8vw 6vw;
    } */

    .banner__content-logo a img {
        width: 20vw;
    }

    .banner__content-title {
        width: 100vw;
    }

    .banner__content-block-1 {
        margin-bottom: 5vw;
        justify-content: center;
    }

    .banner__content-block-1 .banner__content-logo {
        margin-bottom: 5vw;
    }

    .banner__content-description {
        line-height: 0;
        width: 84vw;
        margin: auto;
        margin-bottom: 8vw;
    }

    .banner__content-right {
        height: auto;
        flex: 0 0 100%;
        width: 100%;
    }

    .banner__content-product {
        position: relative;
    }

    .banner__content-product {
        animation-delay: 3s;
    }

    .sticker-icon__item {
        width: 9vw;
        margin-top: 3vw;
    }

    .sticker-icon {
        bottom: 5vw;
        right: 5vw;
    }

    /* @keyframes stayAndtranslate {
        from {
            transform: translateY(0vw);
        }
        to {
            transform: translateY(3vw);
        }
    } */

    .banner__content-button {
        width: 50vw;
        margin: auto;
    }

    .banner__content-button .banner__content-button-register {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .banner__content-button .banner__content-button-order {
        flex: 0 0 78%;
        width: 78%;
        margin-bottom: 2vw;
    }

    .popup__content .popup__background {
        width: 80vw;
    }

    .popup__layer-in-front {
        width: 80%;
        top: 8vw;
    }

    .popup__close {
        top: -2vw;
        width: 6vw;
    }

    .popup__form-input input[type="text"] {
        font-size: 2.5vw;
        padding: 1vw 2vw;
    }

    .popup__form-input {
        margin-bottom: 1.5vw;
    }

    .popup-order__variant-form {
        top: 6.2vw;
        left: 4vw;
    }

    .popup-order__variant-form-input-checkbox,
    .popup-order__variant-form-input-checkbox .popup-order__variant-form-input-checkbox-mark {
        height: 3vw;
        width: 3vw;
    }

    .popup-order__variant-quantity {
        gap: 1vw;
        margin-top: 1.3vw;
        margin-left: 10vw;
    }

    .popup-order__variant-quantity-button {
        width: 2.5vw;
        height: 2.5vw;
        line-height: 2.5vw;
    }

    .popup-order__variant-quantity-input {
        font-size: 2.5vw;
    }

    .variant-2 {
        margin-top: 1.6vw;
    }

    .popup-order__button {
        margin-top: 4vw;
    }

    /* .popup-register {
        top: 50% !important;
        transform: translateY(-50%) !important;
    } */

    .map__search {
        margin-bottom: 5vw;
    }

    .map__iframe {
        flex: 0 0 63vw;
        width: 63vw;
    }

    .banner,
    .banner__section {
        min-height: 1vh !important;
    }

    .map__list {
        flex: 0 0 27vw;
        width: 27vw;
    }

    .popup-register-success .popup__content {
        width: 96%;
        padding: 5vw;
        margin: auto;
    }

    .popup-register-success .popup__close {
        width: 6vw;
    }
}
