/* font library */
@font-face {
    font-family: Sk-Bold;
    src: url('/assets/font/Sk-Modernist-Bold.otf');
}

@font-face {
    font-family: Sk-Mono;
    src: url('/assets/font/Sk-Modernist-Mono.otf');
}

@font-face {
    font-family: Sk-Reg;
    src: url('/assets/font/Sk-Modernist-Regular.otf');
}

@font-face {
    font-family: barlow-reg;
    src: url('/assets/font/barlow/BarlowCondensed-Regular.ttf');
}

@font-face {
    font-family: barlow-semibold;
    src: url('/assets/font/barlow/BarlowCondensed-SemiBold.ttf');
}

a.view-more{
    font-family: 'barlow-reg';
    color: blue;
    font-size: 1.2rem !important;
    text-decoration: underline  !important;
    transition: .3s;
}
a.view-more:hover{
    color: navy;
    text-decoration: underline  !important;
}
* {
    box-sizing: border-box;
}

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

html,
body {
    padding: 0;
    width: 100%;
    font-family: 'barlow-reg' !important;
    /* font-size: 18px; */
    background-color: rgba(238, 231, 215, 1);
}


::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #333232;
}

::-webkit-scrollbar-thumb {
    background: #666;
}

/* hero-banner */
.hero-banner {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slick-next {
    right: 15% !important;
   
}

.slick-prev {
    left: 15% !important;
}

.slick-arrow {
    z-index: 2 !important;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;

}

.slick-dots li {
    margin: 0 .2rem;

}

.slick-dots li button {
    display: block;
    width: .5rem !important;
    height: .5rem !important;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: grey !important;
    text-indent: -9999px;

}

.slick-dots li.slick-active button {
    background-color: white !important;
    border: 1px solid lightgray;
}

.slick-slide {
    opacity: 0.3;
}

.slick-active, .slick-center, .slick-current {
    opacity: 1;
}

.slide-parent {
    margin: 0 5px;
    padding: 0;

    .slide-child {
        transition: all .2s ease;
        height: 411px;
        justify-content: center;
        vertical-align: middle;
    }

    .slide-child img {
        height: 100%;
        /* height: 300px !important;
        transition: all .5s;
        margin: 55px 0; */
    }

    /* &.slick-center {
        .slide-child img {
            height: 411px !important;
            margin: 0;
            padding: 0;
        }
    } */
}

/* mobile hero banner */
/* Main Slider */
.hero-banner-mobile {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border: solid 9px #fff;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 5px;
}


.hero-banner-mobile .slick-slide img {
    width: 100%;
}

/* make button larger and change their positions */
#prev-mobile,
#next-mobile {
    width: 50px;
    height: 50px;
    z-index: 1;
    position: absolute;
    top: 35%;
    background-color: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
}

#prev-mobile {
    left: 5px;
}

#next-mobile {
    right: 5px;
}

#prev-mobile:before,
#next-mobile:before {
    font-size: 40px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* General slick slider styling */
.slick-slide:focus,
.slick-slide:focus {
    outline: none;
    /* remove default outline when on :focus */
}

/* hide dots and arrow buttons when slider is not hovered */

/* transition effects for opacity */
.slick-arrow {
    transition: opacity 0.5s ease-out;
}

/* Thumbnails Slider */
.hero-banner-mobile-nav {
    margin-left: -15px;
    margin-right: -15px;
}

.hero-banner-mobile-nav .slick-slide {
    padding: 15px;
    transition: transform 0.3s ease-out;
}

.hero-banner-mobile-nav .slick-slide:focus img {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

.hero-banner-mobile-nav .slick-slide img {
    max-width: 100%;
    border: solid 5px #fff;
    box-sizing: border-box;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease-out;
    border-radius: 3px;
}

/*  */

/* animation hover */
.hover-up {
    -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    cursor: pointer;
}

.hover-up:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    background-color: #f7f4f3 !important;
    box-shadow: 0px 0px 5px lightgray;
}

.img-hover-scale img {
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

.img-hover-scale:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

h1.title {
    font-family: 'barlow-reg';
    font-size: 3rem;
}

h4 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    font-weight: bold;
}

ul.banner-list li {
    font-size: 1.2rem;
    margin-left: 5px;
    margin-right: 5px;
}

h3.subtitle {
    font-family: 'Sk-Reg';
    font-size: 1.6em;
    margin-bottom: 1.5em;
}

/* news */
.news-sub {
    font-size: .8rem;
    font-family: 'barlow-reg';
    font-weight: bold;
    color: #ff543e;
}

.news-desc {
    font-size: 1rem;
    font-family: 'barlow-reg';
}

#map {
    filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="g"><feColorMatrix type="matrix" values="0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0 0 0 1 0"/></filter></svg>#g');
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayScale=1);
}

.bg-gold {
    background: url('/assets/frontend/images/bellsBgGold2.png');
    background-size: 50%;
    background-repeat: no-repeat, no-repeat;
    background-position: right bottom;

}

.border-circle {
    border-radius: 100%;
    border: 1px solid #bc9a48;
    aspect-ratio: 1 / 1;
    /* height: 150px;
    width: 150px; */
}

.grey {
    background-color: #f0f0f1;
}

.gold {
    color: #bc9a48;
}

.text-gold-bold {
    color: #bc9a48;
    margin-top: 20px;
    display: block;
    font-family: 'Sk-Bold';
    /* font-size: 1.8em; */
}

/* navbar */
#navigation>li>a {
    color: black;
    font-size: 1em;
    padding: 0 15px;
    font-family: 'Sk-Bold';
}

.navbar .dropdown-menu.show {
    min-width: 250px;
    display: inline-block;
}

button.stripe-button-el:hover {
    background-color: white;
    color: #bc9a48;
    border: 1px solid #bc9a48;
    border-radius: 20px;
}

#navigation>a:hover {
    color: #bc9a48;
    text-decoration: underline;
}

.content-section {
    position: absolute;
    top: 106;
    bottom: 0;
    width: 100%
}

.btn-select {
    background-color: black;
    color: white;
    font-family: 'Sk-Bold';
}

.btn-select:hover {
    background-color: #bc9a48;
    color: white;

}

.gold-border {
    border-color: #bc9a48 !important;
}

.itemflex {
    flex: 2 1 0;
    width: 0;
}

#header {
    min-height: 400px;
    /* background-color: #e1e1e3;
    border: 20px solid #bc9a48; */
}

.form-select-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-arrow-down' width='24' height='24' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'%3E%3C/path%3E%3Cpath d='M12 5l0 14'%3E%3C/path%3E%3Cpath d='M18 13l-6 6'%3E%3C/path%3E%3Cpath d='M6 13l6 6'%3E%3C/path%3E%3C/svg%3E");
    background-size: 20px auto;
}

#front_right_header {
    background-image: url('/assets/img/bg-bells.png');
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    background-position: right bottom;
}

/* information */

form#customer-information label{
    font-size: 1rem;
    font-family: 'Sk-reg';
}
form#customer-information input,form#customer-information select{
    font-size: 1rem;
    font-family: 'Sk-reg';
}
.cart{
    font-family: 'Sk-reg';
}
a#link-packages h5{
    font-family: 'Sk-reg';
}

#walletSection h6{
    font-family: 'Sk-bold';
    font-size: 1.2rem;
}
/* end information */

#title {
    font-size: 3.5em;
}

.title-text {
    font-size: 3.5rem;
    font-family: 'Sk-bold';
}

.subheader {
    font-size: 1.5rem ;
    font-family: 'Sk-reg';
}

a.btn-circle {
    width: auto;
    border: 1px solid #bc9a48;
    padding: 2px 20px;
    font-size: 1.5em;
    border-radius: 100px;
    font-family: 'Sk-Bold';

}

a.btn-circle:hover {
    background-color: #bc9a48;
    color: white;
}

.gold-border {
    border: 1px solid #bc9a48;
}

.greybox {
    background-color: #f0f0f1;
}

#promotion {
    background-image: url('/assets/frontend/images/img.png');
    background-position: 30%;
    background-repeat: no-repeat;
    /* height: 600px; */
    background-size: cover;
}

/* step wizard navigation */
.step-wizard {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 25px
}

.step-wizard-list {
    color: #333;
    list-style-type: none;
    display: flex;
    padding: 20px 10px;
    position: relative;
    z-index: 10;
}

.step-wizard-item {
    padding: 0 20px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-width: 200px;
    position: relative;
}

.step-wizard-item+.step-wizard-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: black;
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    z-index: -10;
}

.progress-count {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    color: transparent;
}

.progress-count:after {
    content: "";
    height: 40px;
    width: 40px;
    background: #bc9a48;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -10;
}

.progress-count:before {
    content: "";
    height: 10px;
    width: 20px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(-45deg);
    transform-origin: center center;
}

.progress-label {
    font-size: 1em;
    margin-top: 10px;
}

.pl-title {
    font-family: 'Sk-Bold';
    font-weight: bold;
}

.current-item .progress-count:before,
.current-item~.step-wizard-item .progress-count:before {
    display: none;
}

.current-item~.step-wizard-item .progress-count:after {
    height: 10px;
    width: 10px;
}

.current-item~.step-wizard-item .progress-label {
    opacity: 0.5;
}

.current-item .progress-count:after {
    background: #fff;
    border: 2px solid #bc9a48;
}

.current-item .progress-count {
    color: #bc9a48;
}

/* end step wizard */


#img-bg {
    height: 200px;
    background-position: center center;
    background-size: 50%;
}

/* choose cake modal */
.cake-title {
    font-family: 'NeueMontreal-Bold';
    color: #bc9a48;
}

.modal-text-title {
    font-family: 'Ogg-roman';

}

button.modal-book-btn {
    padding: 5px 15px;
    background-color: black;
    color: white;
    border-radius: 20px;
}

button.modal-book-btn:hover {
    background-color: white;
    color: #bc9a48;
    border: 1px solid #bc9a48;
    border-radius: 20px;
}

/* .hero-banner .slide-child img {
    width: 979px;
} */

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: black !important;
}