/********** Template CSS **********/
:root {
    --primary: #FF0000;
    --light: #F1F8FF;
    /*--dark: #0F172B;*/
    --dark: #000;

    /* Animation Timing Function */
    --primary-timing-func: cubic-bezier(0.86, 0, 0.07, 1);
    /* Button Variables */
    --button-radius: 60px; 
    --button-inner-ring-radius: 120px;
    --button-outer-ring-radius: 100px;
    --button-gradient: 135deg, rgba(244,87,116,1) 0%, rgba(229,69,139,1) 100%;
    --main-background-color: #edc1c2;
    /* Menu Variables */
    --menu-radius: calc(var(--button-radius) - 2px);
    --menu-height: 255px;
    --menu-width: 245px;
    --menu-border-radius: 10px;
    --menu-bg-color: #141622;
    --menu-timing-function: var(--primary-timing-func);
    --menu-icon-size: 30px;
    /*   Close Icon */
    --close-icon-timing-function: var(--primary-timing-func);
}


svg{
  fill: #FFFFFF;
}

.py-10 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.ml-10{
    /*margin-right: 3rem !important;*/
    margin-left: 8rem !important;
}

.mg-10{
    margin-top: calc(100*(65vw / 1320));
    margin-bottom: calc(100*(30vw / 1320));
}

.pd-lg{
    padding: calc(100*(35vw / 1320));
}

.spl-pd{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.spl-mt{
    margin-top: 3rem !important;
}

h1{
  font-family: 'SF Pro Display Bold';
  font-size: calc(100*(35vw / 1320));
  font-weight: 700;
  color: #740C00;
}

p{
  font-family: 'SF Pro Display Regular';
  font-size: calc(100*(22vw / 1320));
  line-height: calc(100*(29vw / 1320));
  color: #000;
}

.spl-border{
    border-radius: calc(100*(80vw / 1320)) 0 calc(100*(80vw / 1320)) 0;
}

.spl-border-2{
    border-radius: 0 calc(100*(80vw / 1320)) 0 calc(100*(80vw / 1320));
}

.spl-center{
    display: flex;
    align-items: center;
}

.sticky-menu-container{
    position: fixed;
    right: 50px;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    display: none;
}

.sticky-menu-container .outer-button{
  position: absolute;
  height: var(--button-radius, 70px);
  width: var(--button-radius, 70px);
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 10px 10px 18px 5px rgba(0,0,0,0.2);
  cursor: pointer;
}
.sticky-menu-container .outer-button .icon-container{
  height: inherit;
  width: inherit;
  border-radius: inherit;
  display: inherit;
  align-items: inherit;
  justify-content: inherit;
  overflow: hidden;
  position: relative;
  cursor: inherit;
}
.sticky-menu-container .outer-button .close-icon{
  transform: scale(0) rotate(-270deg);
  opacity: 0;
  height: 25px;
  width: 25px;
  position: absolute;
  fill: #FFFFFF;
}

.sticky-menu-container .outer-button .arrow-icon{
  height: 25px;
  width: 25px;
  position: absolute;
  fill: #FFFFFF;
}

.sticky-menu-container .outer-button .arrow-icon.hiding-spot{
transform: translateX(calc(var(--button-radius) / -2)) translateY(calc(var(--button-radius) / 2));
  opacity: 0;
}

.sticky-menu-container .outer-button .close-icon.show{
  animation-duration: 1000ms;
  animation-name: close-in;
  animation-fill-mode: forwards;
  animation-timing-function: var(--close-icon-timing-function); 
}

.sticky-menu-container .outer-button .close-icon.hide{
  animation-duration: 1000ms;
  animation-name: close-out;
  animation-timing-function: var(--close-icon-timing-function); 
}

.sticky-menu-container .outer-button .arrow-icon.show{
  opacity: 0;
  animation-duration: 1000ms;
  animation-name: arrow-in;
  animation-fill-mode: forwards;
  animation-timing-function: var(--close-icon-timing-function); 
/*   animation-delay: 250ms; */
}

.sticky-menu-container .outer-button .arrow-icon.hide{
  animation-duration: 1000ms;
  animation-name: arrow-out;
  animation-fill-mode: forwards;
  animation-timing-function: var(--close-icon-timing-function); 
}

.sticky-menu-container .outer-button::after, sticky-menu-container.outer-button::before{
  position: absolute;
  display: inline-block;
  content: "";
  height: var(--button-inner-ring-radius);
  width: var(--button-inner-ring-radius);
  border-radius: 50%;
  background-color:transparent;
  border: 0px solid rgba(255,255,255,0.5);
  opcacity: 0;
  cursor: pointer;
}

.sticky-menu-container .outer-button.clicked::after{
  animation-duration: 500ms;
  animation-name: touch-click-inner;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.sticky-menu-container .outer-button::before{
  height: var(--button-outer-ring-radius);
  width: var(--button-outer-ring-radius);
}

.sticky-menu-container .outer-button.clicked::before{
  animation-name: touch-click-outer;
  animation-duration: 500ms;
  animation-iteration-count: 1;
  animation-delay: 250ms;
}

.sticky-menu-container .inner-menu{
  position: absolute;
  height: var(--menu-height);
  width: var(--menu-width);
  border-radius: var(--menu-border-radius);
  background-color: var(--menu-bg-color); 
/*   transform: translate(calc(-50% + var(--button-radius) / 2), calc(-55% - var(--button-radius) / 2)); */
  transform: translateX(-91px) translateY(-169px);
  transition: all 1000ms cubic-bezier(0.86, 0, 0.07, 1);
/*   transition-delay: 500ms; */
  padding: 30px;
  overflow: hidden;
  box-shadow: 10px 10px 18px 5px rgba(0,0,0,0.4);
}

.sticky-menu-container .inner-menu > ul{
  height: 100%;
  list-style: none;
/*  display: flex;*/
  flex-wrap: wrap;
  align-content: space-between;
  margin: 0;
  padding: 0;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item{
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 3px;
  width: 100%;
  display: flex;
  align-items: center;
    padding: 10px 0;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item{
  overflow: hidden;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item > a{
  color: #FFFFFF;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item > a:hover{
  color: #FFFFFF;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item > .item-icon{
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item > .item-icon > svg{
  height: var(--menu-icon-size);
  width: var(--menu-icon-size);
}

.sticky-menu-container .inner-menu.closed{
  height: var(--menu-radius);
  width: var(--menu-radius);
  border-radius: 50%;
  padding:0;
  transform: unset;
}

/*.sticky-menu-container .inner-menu > .menu-list > .menu-item > .item-text{
  opacity: 0;  
}*/

.sticky-menu-container .inner-menu > .menu-list > .menu-item > .item-text.text-in{
  animation-duration: 1500ms;
  animation-name: text-in;
  animation-fill-mode: forwards;
  animation-timing-function: var(--close-icon-timing-function);
}

.sticky-menu-container .inner-menu > .menu-list > .menu-item.text-hides{
  animation-duration: 200ms;
  animation-name: text-hides;
  animation-fill-mode: forwards;
  animation-timing-function: var(--close-icon-timing-function);
}

@keyframes touch-click-inner {
  50%{ 
      transform: scale(0.375);
      border-width: 30px;
      opacity: 1;
  }
  100%{ 
      transform: scale(1);
      border-width: 1px;
      opacity: 0;
  }
}

@keyframes touch-click-outer {
  0%{
    border-width: 10px;
    opacity: 0;
  }
  50%{
    opacity: 0.2;
  }
  100%{ 
      transform: scale(1.1);
      opacity: 0;
  }
}

@keyframes close-in{
  0%{
    transform: transform: scale(0) rotate(270deg);
    opacity: 0;
  }
  100% {
    transform: scale(1.1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes close-out{
  0%{
    transform: scale(1.1) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(0) rotate(270deg);
    opacity: 0;
  }
}

@keyframes arrow-out{
  0%{
    transform: translateX(0) translateY(0);
  }
  100%{
    transform: translateX(calc(var(--button-radius) / 1.5)) translateY(calc(var(--button-radius) / -1.5));
  }
}

@keyframes arrow-in{
  0%{
    transform: translateX(calc( -1 * var(--button-radius))) translateY(calc(var(--button-radius)));
    opacity: 0;
  }
  100%{
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

@keyframes text-in{
  0%{
    opcaity: 1;
    transform: translateY(50px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes text-hides{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'SF PRO DISPLAY REGULAR';
    line-height: normal;
    background: #FAF8F2;
}

.container-menu{
    max-width: 100%;
}

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-nav{
    margin-left: calc(100 * (200vw/1320));
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}

.top-add-phn{
    color: #fff;
    line-height: 25px;
    margin-top: 22px;
    width: calc(100 * (300vw/1320));
    font-size: calc(100 * (17vw/1320));
}

.call-btn{
    /*background-color: #CFAC76 !important;*/
    background-color: transparent !important;
    color: #000 !important;
    border-color: #CFAC76 !important;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: calc(100 * (30vw/1320));
    padding: calc(100 * (40vw/1320)) 0;
    font-size: calc(100 * (17vw/1320));
    color: var(--light) !important;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-brand{
    /*top: 1rem;
    position: absolute;*/
    margin: 0;
    margin-top: 2rem;
}

.navbar-brand img{
    max-width: calc(100 * (150vw/1320));
}

.navbar-p{
    font-size: calc(100 * (17vw/1320));
    line-height: calc(100 * (25vw/1320));
    color: #fff;
    padding: 0;
    margin: 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    width: calc(100 * (150vw/1320));
    max-width: calc(100 * (250vw/1320));
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 45px;
}

.top-h{
    color: #E73A14;
    font-family: 'Degular Display';
    font-size: calc(100*(40vw / 1320));
    padding: calc(100*(10vw / 1320)) 0;
    border: calc(100*(3vw / 1320)) solid #CFAC76;
    border-radius: calc(100*(40vw / 1320));
}

.top-h2{
    color: #E73A14;
    font-family: 'Degular Display';
    font-size: calc(100*(40vw / 1320));
}

.top-p{
    font-size: calc(100*(25vw / 1320));
    line-height: calc(100*(30vw / 1320));
    text-align: center;
}

.top-p-span{
    color: #740C00;
    font-weight: 600;
}

.anchor{
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    color: #061737;
}

.comment-h{
    font-style: italic;
    font-size: calc(100*(25vw / 1320));
    font-family: 'SF PRO DISPLAY REGULAR';
    font-weight: 400;
    color: #000;
}

.comment-f{
    width: 25%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.comment-f img{
    width: calc(100*(55vw / 1320));
    margin-right: calc(100*(10vw / 1320));
}

.comment-f p{
    font-size: calc(100*(18vw / 1320));
    color: #929397;
}

.top-navbar{
    /*background: var(--primary);*/
}

.top-section{
    padding: calc(100*(15vw / 1320)) 0;
    max-height: calc(100*(100vw / 1320));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-section .top-text{
    width: 80%;
    float: left;
}

.top-section .top-text h1{
    font-family: 'Degular Display';
    font-weight: 400;
    font-size: calc(100*(40vw / 1320));
    color: #000;
    margin: 0;
    padding: 0;
}

.bottom-navbar{
    background: var(--dark) !important;
}

.bottom-section{
    padding: calc(100*(15vw / 1320)) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-section .bottom-text{
    float: left;
    text-align: center;
}

.bottom-section .bottom-text.bottom-left{
    display: flex;
    align-items: center;
}

.bottom-section .bottom-text img{
    max-width: calc(100*(150vw / 1320));
}

.bottom-section .bottom-text h1{
    font-family: 'Bebas Neue';
    font-weight: 400;
    font-size: 3rem;
    color: #fff;
    margin: 0;
    padding: 0;
}

.bottom-section .bottom-text p{
    text-align: left;
    color: #fff;
    padding: 0;
    margin: 0;
    font-size: calc(100*(17vw / 1320));
    line-height: calc(100*(30vw / 1320));
}

.bottom-section .bottom-text p.bottom-mid-p{
    text-align: center;
    color: #676262;
    font-weight: bold;
    font-family: 'Rubik';
    font-size: calc(100*(17vw / 1320));
    line-height: calc(100*(30vw / 1320));
}

.bottom-section .bottom-text a{
    display: block;
    text-align: left;
    color: #fff;
    padding: 0;
    margin: 0;
    text-decoration: underline;
    font-size: calc(100*(17vw / 1320));
    line-height: calc(100*(30vw / 1320));
}

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header img {
    animation: imgRotate 50s linear infinite;
}

.banner {
    width: 100%;
    /*height: calc(100 * (620vw/1520));
    height: -webkit-calc(100 * (620vw/1520));
    height: -moz-calc(100 * (620vw/1520));*/
    height: 80vh;
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.banner:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(1, 1, 1, 0.49) 100%);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(1, 1, 1, 0.49) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(1, 1, 1, 0.49) 100%);
}

.banner-img{
    width: 100%;
    height: 100%;
    object-fit: unset;
    object-position: center;
}

.banner-vdo{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content{
    display: block;
    width: 50%;
    height: auto;
    position: absolute;
    /*left: 25%;
    bottom: 30vh;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: calc(100 * (10vw/1320));
    cursor: pointer;
    /*background: #000;
    opacity: 0.7;*/
}

.banner-logo{
    position: absolute;
    /*top: calc(100*(55vw / 1320));
    right: calc(100*(150vw / 1320));*/
    max-width: calc(100*(250vw / 1320));
    top: 5%;
    right: 3%;
}
.banner-logo-right{
    max-width: calc(100*(200vw / 1320));
    /*position: absolute;
    top: 5%;
    left: 3%;*/
    /*top: calc(100*(55vw / 1320));
    right: calc(100*(150vw / 1320));*/
}
.guidos_logo{
    max-width: calc(100*(250vw / 1320));
}

.banner-main{
    padding: 2rem;
    /*height: calc(100*(615vw / 1520));
    padding: calc(100*(60vw / 1520)) calc(100*(75vw / 1520));*/
    /*display: flex;
    align-items: center;
    justify-content: center;*/
}
.banner-main-right{
    padding: 1rem 2rem;
    min-height: calc(100*(650vw / 1320));
    text-align: center;
}

.name_logo_banner{
    width: calc(100 * (450vw/1320));
}

.name_logo_top{
    width: calc(100 * (200vw/1320)) !important;
}

h1.banner-restaurant-name{
    font-size: calc(100 * (70vw/1320));
    font-weight: 500;
    color: #fff;
    font-family: 'Bebas Neue' !important;
}

h2.banner-restaurant-location{
    color: #F0DB90;
    font-family: 'Gilroy' !important;
}

.banner-logo-top{
    display: none;
}

.banner-restaurant-p{
    font-size: calc(100 * (20vw/1320));
}

.banner-restaurant-text{
    background: var(--primary);
    color: #FFF;
    border-radius: calc(100 * (10vw/1320));
    font-family: 'Gilroy' !important;
    font-size: calc(100 * (17vw/1320));
    text-transform: uppercase;
    padding: 0 calc(100 * (17vw/1320));
}

.banner-btn-social{
    margin: 0;
    padding: 0;
}

.banner-btn-social img{
    width: calc(100 * (40vw/1320));
}

.banner-btn{
    background: var(--primary);
    color: #FFF;
    border-radius: calc(100 * (30vw/1320));
    font-family: 'SF Pro Display Bold';
    font-size: calc(100 * (20vw/1320));
    min-width: calc(100 * (200vw/1320));
    text-transform: none;
}

.banner-btn:hover{
    color: #FFF !important;
}

.banner-h1{
    font-family: 'Degular Display';
    font-size: calc(100*(62vw / 1320));
    line-height: calc(100*(67vw / 1320));
    color: #000;
}

.banner_dialog_box_content_right .banner-h1{
    font-size: calc(100*(55vw / 1320));
    line-height: calc(100*(60vw / 1320));
}

.banner-p1{
    font-family: 'Fjalla One';
    font-size: calc(100*(24vw / 1320));
    line-height: calc(100*(30vw / 1320));
    color: #740C00;
}

.banner-p2{
    font-family: 'Degular Display';
    font-size: calc(100*(30vw / 1320));
    line-height: calc(100*(40vw / 1320));
    color: #740C00;
}

.banner-p3{
    font-family: 'Degular Display';
    color: #9A745E;
    text-align: center;
}

.banner-p3.span{
    color: #9B745E;
}

.banner-p4{
    font-weight: 600;
    font-size: calc(100*(25vw / 1320));
    line-height: calc(100*(38vw / 1320));
    margin: 0;
    margin-left: calc(100*(-12vw / 1320));
}

.banner-p5{
    font-weight: 600;
    font-size: calc(100*(20vw / 1320));
    line-height: calc(100*(25vw / 1320));
    margin: 0;
}

.banner-p5 span{
    color: #BE0009;
}

.banner-p6{
    font-family: 'Degular Display';
    font-size: calc(100*(40vw / 1320));
    line-height: calc(100*(50vw / 1320));
    color: #E73A14;
}

.banner-line{
    position: absolute;
    margin-left: calc(100*(75vw / 1320));
    width: calc(100*(235vw / 1320));
}

.info-btn{
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: var(--primary);
    border: none;
    border-radius: 10px;
    transition: box-shadow 0.15s ease-in-out;
    color: #FFF;
    border-color: #FFF;
    display: none;
}

.menu-bar-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: var(--primary);
    border: none;
    border-radius: 10px;
    transition: box-shadow 0.15s ease-in-out;
    color: #FFF;
    border-color: #FFF;
    display: none;
}

.navbar-btn{
    background: #CFAC76;
    color: #FFF;
    border-radius: calc(100 * (10vw/1320));
    font-size: calc(100 * (17vw/1320));
    text-transform: none;
}

.nav-menu{
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 999;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    overflow-y: auto;
    background: #000;
    padding: 10px 20px;
    display: none;
}

.nav-menu .nav-menu-item{
    position: relative;
    padding: 10px 0;
    margin-left: 0;
    font-size: 15px;
    color: #FFF !important;
    text-transform: uppercase;
    font-weight: 800;
    outline: none;
    transition: .5s;
    display: block;
}

.nav-menu .nav-menu-top{
    display: block;
    position: sticky;
    top: 0px;
    z-index: 999;
    height: 35px;
}

.nav-menu .nav-menu-close{
    position: sticky;
    width: 35px;
    height: 35px;
    float: right;
    color: #fff;
    padding: 5px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 10px;
}

.contact-btn{
    display: flex;
}

.map-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

.service .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.service .btn.btn-social:hover {
    color: var(--primary);
}

.service .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--primary);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.service .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.service .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.bg-spcl{
    background: #EAE4CE;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
    border-radius: calc(100 * (20vw/1320)) !important;
}

.testimonial-carousel .owl-item .testimonial-item img{
    border-radius: calc(100 * (20vw/1320)) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    /*background: var(--primary) !important;
    border-color: var(--primary) !important;*/
}

.testimonial-carousel .owl-item.center .testimonial-item * {
/*    color: var(--light) !important;*/
}
.menu-carousel .owl-item .testimonial-item{
/*    border-radius: 12px !important;*/
}
.menu-carousel .owl-item .testimonial-item .item-name-container{
    background: #000;
    opacity: 0.7;
    position: absolute;
    top: 25px;
    right: 0;
    max-width: 50%;
    height: auto;
    color: #fff;
    padding: 5px 10px;
}

.menu-carousel .owl-item .testimonial-item .item-name{
    color: #fff;
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
/*    width: 15px;*/
    height: 14px;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--dark);
}

.testimonial-block{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100 * (170vw/1320));
}

.testimonial-block .heading{
    font-size: calc(100 * (20vw/1320));
    color: #ff0000;
    font-weight: 700;
}

.testimonial-block .comment{
    font-size: calc(100 * (15vw/1320));
}

.testimonial-block .customer{
    text-align: right;
    font-size: calc(100 * (15vw/1320));
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.subscribe-input{
    border-radius: calc(100 * (10vw/1320));
}

.subscribe-btn{
    background: #CFAC76;
    color: #FFF;
    border-radius: 0 calc(100 * (10vw/1320)) calc(100 * (10vw/1320)) 0;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.mob{
    display: none !important;
}

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

.cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 1rem;
    top: 6rem;
    background: #ff0000;
    width: 4rem;
    height: 4rem;
    padding: 1.2rem;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none; 
}
.cc-calto-action-ripple i {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 1.7rem; 
}
/*.cc-calto-action-ripple:hover i {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); 
}*/
  
@-webkit-keyframes cc-calto-action-ripple {
    0% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2); }
    100% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } 
}
  
@keyframes cc-calto-action-ripple {
    0% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2); }
    100% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } 
}

span.num{
    position: absolute;
    color: #fff;
    left: -30%;
    bottom: -50%;
}

.ai_microphone {
    background: #ff0000;
    z-index: 99999;
    position: fixed;
    right: 2.5rem;
    bottom: 6rem;
    width: 4rem;
    height: 4rem;
    padding: 1.4rem;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: ai_microphone 0.6s linear infinite;
    animation: ai_microphone 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none; 
}
.ai_microphone i {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 1.7rem; 
}
/*.ai_microphone:hover i {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); 
}*/

@-webkit-keyframes ai_microphone {
    0% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2); }
    100% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } 
}
  
@keyframes ai_microphone {
    0% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2); }
    100% {
      -webkit-box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
      box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2), 0 0 0 5px rgba(255, 0, 0, 0.2), 0 0 0 10px rgba(255, 0, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } 
}

.voice_ai_modal{
    z-index: 99999;
    background: transparent;
}
.voice_ai_modal .modal-dialog{
    max-width: calc(100 * (800vw/1520));
}
.voice_ai_modal .modal-content{
    background: transparent;
}
.voice_ai_modal .modal-content .close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 9;
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}
.voice_ai_modal .modal-body{
    padding: 0 !important;
}
.voice_ai_modal .modal-body .voice_ai_modal_iframe{
  width: 100%;
  height: calc(100 * (700vw/1520));
  margin: 0;
  padding: 0;
  border-radius: calc(100 * (12vw/1520));
}
.voice_ai_modal .modal-body .close {
  position: absolute;
  right: 15px;
  top: 15px;
  opacity: 1;
}
.voice_ai_modal .modal-body .close img{
  width: calc(100 * (55vw/1520));
}

.banner-offr-content{
    display: block;
    position: absolute;
    /*left: 15%;
    bottom: 7%;
    top: 10%; */
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: calc(100 * (650vw/1520));
    height: calc(100 * (650vw/1520));
    max-height: 86%;
    margin: 0;
    padding: calc(100 * (35vw/1520));
    border-radius: calc(100 * (15vw/1520));
    background: #fff;
}
.banner-offr-content .banner-offr-content-text{
    height: 100%;
}
.banner-offr-content h1{
    font-family: 'Playfair Display' !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
/*    -webkit-line-clamp: 3;*/
    -webkit-box-orient: vertical;
    height: calc(100 * (300vw/1520));
    max-height: 48%;
    /*font-size: calc(100 * (72vw/1520));
    margin-bottom: 2rem;*/
}
.banner-offr-content h1.ofr_title_small{
    font-size: calc(100 * (45vw/1520)) !important;
}
.banner-offr-content h1.ofr_title_medium{
    font-size: calc(100 * (53vw/1520)) !important;
}
.banner-offr-content h1.ofr_title_large{
    font-size: calc(100 * (72vw/1520)) !important;
}

.banner-offr-content p{
/*    font-family: 'Playfair Display' !important;*/
    font-weight: 500;
    color: #000;
    margin: calc(100 * (20vw/1520)) 0;
    font-size: calc(100 * (30vw/1520));
}
.banner-offr-content .banner-btn{
    position: absolute;
    bottom: calc(100 * (5vw/1520));
    background: #000;
}
.banner-offr-logo-section{
    position: absolute;
    right: 5%;
    bottom: 15%;
    text-align: center;
}
.banner-offr-logo-section .banner-logo{
    display: none;
}
.banner-offr-logo-section .banner-restaurant-p{
    display: none;
}
.banner-offr-content .owl-carousel, .banner-offr-content .owl-carousel .owl-stage-outer, .banner-offr-content .owl-carousel .owl-stage-outer .owl-stage, .banner-offr-content .owl-carousel .owl-stage-outer .owl-stage .owl-item{
    height: 100% !important;
}
.banner-offr-content .owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    font-size: calc(100 * (35vw/1520));
    color: #6c757d;
    bottom: 42%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    /* width: 45px; 
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff; */
}
.banner-offr-content .owl-theme .owl-nav button.owl-prev {
    left: -5%;
}
.banner-offr-content .owl-theme .owl-nav button.owl-next {
    right: -5%;
}
.banner-fix-img{
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100*(650vw / 1320));
}

.bottom-button-sec{
    display: none;
    background: #000;
    opacity: 0.5;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 9;
    padding: 0 30px;
    text-align: center;
}
.btn-top{
    display: none;
    width: 75%;
    max-width: 450px;
    position: fixed;
    top: 0;
    z-index: 99;
    margin: 0 13%;
}

.yelp-iframe{
    width: 100%;
    min-width: 990px;
}

.reservation-widget__09f24__jOLtt{
    max-width: 1024px !important;
}

.contentx{
    width: 88%;
    margin: 0 auto;
}

.contentx .faq-border{
    border: 1px solid #000;
    border-radius: calc(100*(50vw / 1320));
    padding: calc(100*(25vw / 1320)) calc(100*(30vw / 1320));
    margin-bottom: calc(100*(30vw / 1320));
}

.contentx .faq-border .faq_h{
    display: flex;
}

.contentx .faq-border .faq_p{
    display: none;
}

.contentx .big-h1{
    font-size: calc(100*(35vw / 1320));
    color: #000;
}

.contentx h1{
    font-size: calc(100*(22vw / 1320));
    margin: calc(100*(12vw / 1320)) 0;
    cursor: pointer;
}

.contentx h1 i{
    margin-right: calc(100*(12vw / 1320));
}

.contentx p{
    font-size: calc(100*(18vw / 1320));
    line-height: calc(100*(22vw / 1320));
    font-weight: 400;
    margin: calc(100*(12vw / 1320)) 0 calc(100*(12vw / 1320)) calc(100*(30vw / 1320));
}

.contact-p{
    display: flex;
    align-items: center;
    font-size: calc(100*(18vw / 1320));
    line-height: calc(100*(30vw / 1320));
    font-weight: 400;
}

.checkout{
    width: 100%;
    height: auto;
    position: relative;
    padding: calc(100 * (20vw/1520));
}
.checkout .pr{
    margin-bottom: 24px;
}
.checkout .pl{
    margin-bottom: 24px;
}
.checkout_tooltip_img {
    margin-left: 10px;
    cursor: pointer;
}
.checkout h3{
    font-family: 'SF Pro Display Bold';
    font-size: calc(100*(18vw / 1520));
    line-height: calc(100*(25vw / 1520));
}
.checkout h3 span{
    font-size: calc(100 * (20vw/1520));
    font-size: -webkit-calc(100 * (20vw/1520));
    font-size: -moz-calc(100 * (20vw/1520));
    color: #f00;
    font-weight: 400;
}
.checkout-p {
    font-family: 'SF Pro Display Bold';
    font-size: calc(100 * (17vw/1520)) !important;
    line-height: calc(100 * (23vw/1520)) !important;
}
.checkout .form-group .checkout-label, .checkout .checkout-label{
    color: #f00;
    top: -7px;
    right: 11px;
    position: absolute;
    font-size: 20px;
    z-index: 1;
}
.checkout .form-group .form-control {
    height: calc(100 * (47vw/1520));
    height: -webkit-calc(100 * (47vw/1520));
    height: -moz-calc(100 * (47vw/1520));
    background: #fff;
    color: var(--all-main-color);
    font-size: calc(100 * (22vw/1520));
    border-radius: calc(100 * (12vw/1520));
}
.checkout .form-group p{
    padding: calc(100*(10vw / 1520));
    font-size: calc(100 * (20vw/1520));
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-size: calc(100 * (19vw/1520));
}
.checkout .form-group .edit-btun, .checkout .edit-btun{
    position: absolute;
    right: 20px;
    top: 3px;
    cursor: pointer;
}
.checkout .btun{
    font-style: normal;
    font-weight: 500;
    font-size: calc(100 * (22vw/1520));
    line-height: calc(100 * (27vw/1520));
    text-align: center;
    text-transform: uppercase;
    background: #f20d0d;
    color: #fff;
    border: 1px solid #f20d0d;
    padding: calc(100*(10vw / 1520)) 20px;
    padding: -webkit-calc(100*(10vw / 1520)) 20px;
    padding: -moz-calc(100*(10vw / 1520)) 20px;
    display: table;
    width: 100%;
    border-radius: 11px;
    transition: 0.8s;
    text-decoration: none;
    margin-bottom: 0px;
    text-decoration: none;
    width: 100%;
    margin-top: 5px;
    cursor: pointer;
}
.checkout .btun-bck{
    font-style: normal;
    font-weight: 500;
    font-size: calc(100 * (22vw/1520));
    line-height: calc(100 * (27vw/1520));
    text-align: center;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: calc(100*(10vw / 1520)) 20px;
    padding: -webkit-calc(100*(10vw / 1520)) 20px;
    padding: -moz-calc(100*(10vw / 1520)) 20px;
    display: table;
    width: 100%;
    border-radius: 11px;
    transition: 0.8s;
    text-decoration: none;
    margin-bottom: 0px;
    text-decoration: none;
    width: 100%;
    margin-top: 5px;
    cursor: pointer;
}

.checkout-bottom{
    display: none;
}

.checkout .checkout-bottom .heading {
    /*width: 90%;
    height: auto;*/
    min-height: calc(100 * (60vw/1520));
    position: relative;
    display: flex;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    align-items: center;
    margin: 0 auto;
    margin-bottom: calc(100 * (20vw/1520));
    text-align: center;
}

.checkout .checkout-top .heading h4, .checkout .checkout-bottom .heading h4{
  font-size: calc(100 * (26vw/1520));
  font-size: -webkit-calc(100 * (26vw/1520));
  font-size: -moz-calc(100 * (26vw/1520)); 
  font-weight: 700;
  width: 100%;
  color: #061737;
}

.checkout .checkout-bottom p.resp_msg {
    margin-bottom: calc(100*(35vw / 1520));
}
.checkout .checkout-bottom p {
    text-align: center;
    font-size: calc(100 * (20vw/1520));
    line-height: calc(100 * (25vw/1520));
    color: #9796C0;
}

.checkout .checkout-bottom .btun-box {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    justify-content: space-between;
}

.checkout .checkout-bottom .btun-box .save-btn {
    width: 100%;
    background: var(--all_button_back);
    border: none;
    border-radius: calc(100*(25vw / 1520));
    padding: 10px 50px;
    color: #fff;
    font-size: calc(100 * (22vw/1520));
    font-size: -webkit-calc(100 * (22vw/1520));
    font-size: -moz-calc(100*(22vw / 1520));
    line-height: 29px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.checkout .checkout-bottom .ex-boxes {
    width: 100%;
    height: auto;
    position: relative;
    margin: 10px 0 20px 0;
    text-align: center;
}

.checkout .checkout-bottom .ex-boxes p {
    font-size: calc(100 * (16vw/1520));
    font-size: -webkit-calc(100 * (16vw/1520));
    font-size: -moz-calc(100*(16vw / 1520));
    line-height: calc(100 * (20vw/1520));
}
.checkout .checkout-bottom p {
    text-align: center;
    font-size: calc(100 * (20vw/1520));
    line-height: calc(100 * (25vw/1520));
    color: #9796C0;
}

.checkout .checkout-bottom .ex-boxes p a {
    color: #9796C0;
    text-decoration: underline;
    font-weight: 600;
}
.pay-check{
    background: #fff;
    /*border: #e6e6e6 1px solid;*/
    border-radius: calc(100*(8vw / 1520));
    padding: calc(100*(20vw / 1520)) 0;
}
.payment-part{
    width: 100%;
    height: auto;
    position: relative;
    padding: 0;
    margin-bottom: 10px;
}
.payment-part .list-box{
    width: 100%;
    height: auto;
    position: relative;
    padding: 0 12px;
    background: #fff;
    border-radius: calc(100 * (12vw/1520));
}
.payment-part .item-row{
    width: 100%;
    height: auto;
    position: relative;
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(100*(15vw / 1520)) 0;
    border-bottom: 1px solid #E7E4E4; 
}
.payment-part .item-row p{
    font-size: calc(100 * (22vw/1520));
    font-weight: 400;
    display: flex;
    align-items: center;
    color: #575757 !important;
}
.payment-part .item-row p img{
    margin-left: 10px;
    cursor: pointer;
}
.payment-part .item-row h5{
    font-size: calc(100 * (16vw/1520));
    line-height: calc(100 * (18vw/1520));
    font-weight: 500;
    color: #9796C0;
    white-space: nowrap;
    margin: 0;
}
.payment-part .item-row h5 span{
/*  color:var(--small_element_color);*/
}
.payment-part .grand-total{
    width: 100%;
    height: auto;
    position: relative;
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
    justify-content: space-between;
    padding: calc(100*(10vw / 1520)) 0;
}

.payment-part .grand-total p{
    font-family: 'SF Pro Display Regular';
    font-size: calc(100 * (22vw/1520)) !important;
    line-height: calc(100 * (27vw/1520)) !important;
    font-weight: 600;
    color: #061737 !important;
}
.payment-part .grand-total h5{
    font-family: 'SF Pro Display Regular';
    font-size: calc(100 * (22vw/1520)) !important;
    line-height: calc(100 * (27vw/1520)) !important;
    font-weight: 600;
    margin: 0;
}
.tip-box{
    width: 100%;
    height: auto;
    position: relative;
    background: #fff;
    padding:10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #E7E4E4;
}
.tip-box .heading{
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 17px;
}
.tip-box .heading p{
    color: #080713;
    font-family: 'SF Pro Display Regular';
    font-weight: 500;
    font-size: calc(100 * (17vw/1520));
    font-size: -webkit-calc(100 * (17vw/1520));
    font-size: -moz-calc(100 * (17vw/1520));
    display: flex;
    align-items: center;
}
.tip-box .heading p img {
    margin-left: 10px;
    cursor: pointer;
}
.tip-box .heading h4{
    color: #9796C0 !important;
    font-size: calc(100 * (16vw/1520)) !important;
    line-height: calc(100 * (18vw/1520)) !important;
    font-weight: 500 !important;
    width: unset !important;
}
.tip-box .heading h4 a{
    margin-left: 5px;
}

/*.success-container{
    min-height: 70vh;
}*/

.footer-bottom{
    position: fixed;
    bottom: 0;
}

.banner_dialog_box_group{
    /*position: fixed;
    top: calc(100*(205vw / 1320));
    left: calc(100*(480vw / 1320));
    z-index: 999999999;
    display: none;*/
}
/*Dialog box*/
.banner_dialog_box {
    /*background: #FAF8F2;
    border: calc(100*(4vw / 1320)) solid #ffffff;
    border-radius: calc(100*(31vw / 1320));
    width: calc(100*(434vw / 1320));
    height: calc(100*(375vw / 1320));
    transform: perspective(calc(100*(70vw / 1320))) rotateX(-1deg) rotateY(-1deg);
    box-shadow: calc(100*(8vw / 1320)) calc(100*(8vw / 1320)) #9aa0a691;
    margin-top: calc(100*(50vw / 1320));*/

    width: calc(100*(480vw / 1320));
    margin-top: calc(100*(35vw / 1320));
    float: right;
}
.banner_dialog_box_right{
    position: absolute;
    top: calc(100*(125vw / 1320));
    right: calc(100*(225vw / 1320));
    z-index: 99;
}
/*.banner_dialog_box:after, .banner_dialog_box:before {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
}
.banner_dialog_box:after {
    border-top-width: calc(100*(29vw / 1320));
    border-right-width: calc(100*(30vw / 1320));
    border-bottom-width: 0;
    border-left-width: calc(100*(8vw / 1320));
}
.banner_dialog_box:before {
    border-top-width: calc(100*(35vw / 1320));
    border-right-width: calc(100*(37vw / 1320));
    border-bottom-width: 0;
    border-left-width: calc(100*(11vw / 1320));
}*/

.big_bubble {
    height: calc(100*(480vw / 1320));
}
.big_bubble_right{
    height: calc(100*(400vw / 1320));
}
 
/*Arrow pointing BOTTOM*/
.banner_dialog_box.bottom:after, .banner_dialog_box.bottom:before {
    left: 25%;
    top: 99.5%;
}
.banner_dialog_box.bottom:after {
    border-color:  #FAF8F2 transparent transparent transparent ;
    margin-left: calc(100*(-5vw / 1320));
}
.banner_dialog_box.bottom:before {
    border-color:  #fff transparent transparent transparent ;
    margin-left: calc(100*(-10vw / 1320));
}

.banner_dialog_box_content{
    position: absolute;
    top: calc(100*(40vw / 1320));
    left: calc(100*(195vw / 1320));
    padding: calc(100*(5vw / 1320));
}
.banner_dialog_box_content_right{
    position: absolute;
    top: calc(100*(85vw / 1320));
    right: calc(100*(285vw / 1320));
    padding: calc(100*(5vw / 1320));
    z-index: 999;
}

.banner_dialog_box_content_top{
    position: absolute;
    top: calc(100*(35vw / 1320));
    left: calc(100*(145vw / 1320));
    padding: calc(100*(5vw / 1320));
}

.banner-p4 img{
    width: calc(100*(100vw / 1320));
    margin-top: calc(100*(-20vw / 1320));
}

.banner_section_save{
    position: absolute;
    top: calc(100*(562vw / 1320));
    left: calc(100*(475vw / 1320));
}

.review-block{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*min-height: calc(100*(250vw / 1320));
    width: 30%;
    border: solid 1px #000;*/
}
.review-block .review-block-top{
    display: flex;
    padding: calc(100*(5vw / 1520));
    margin: calc(100*(5vw / 1520)) 0;
}
.review-block .review-block-top .review-block-name{
    font-family: 'SF Pro Display Bold';
    font-size: calc(100*(25vw / 1520));
    line-height: calc(100*(30vw / 1520));
    margin-right: calc(100*(50vw / 1520));
    color: #740C00;
    white-space: nowrap;
}
.review-block .review-block-top .review-block-rating{
    display: flex;
    justify-content: space-between;
}
.review-block .review-block-top .review-block-rating .rate-star{
    width: calc(100*(22vw / 1320));
    margin: 0 calc(100*(3vw / 1520));
}
.review-block .review-block-mid{
    min-height: calc(100*(155vw / 1520));
    padding: calc(100*(5vw / 1520));
    margin: calc(100*(5vw / 1520)) 0;
}
.review-block .review-block-mid p{
    font-size: calc(100*(16vw / 1320));
    line-height: calc(100*(21vw / 1320));
    margin: 0;
}
.review-block .review-block-bottom{
    display: flex;
    align-items: center;
    padding: calc(100*(5vw / 1520));
    margin: calc(100*(5vw / 1520)) 0;
}
.review-block .review-block-bottom .review-block-platform-logo{
    width: calc(100*(30vw / 1320));
    margin-right: calc(100*(10vw / 1520));
}
.review-block .review-block-bottom .review-block-platform-name{
    font-family: 'SF Pro Display Regular';
    font-size: calc(100*(23vw / 1520));
    line-height: calc(100*(28vw / 1520));
    color: #929397;
}
.review-block .review-block-bottom .review-block-platform-name span{
    color: #1645FF;
}

.dialog_box_group{
    position: fixed;
    /*top: 22%;
    left: 35%;*/
    top: calc(100*(205vw / 1320));
    left: calc(100*(480vw / 1320));
    z-index: 999999999;
    display: none;
}
/*Dialog box*/
.dialog_box {
    background: #FBCD33;
    border: calc(100*(4vw / 1320)) solid #ffffff;
    border-radius: calc(100*(18vw / 1320));
    position: fixed;
    top: calc(100*(185vw / 1320));
    left: calc(100*(460vw / 1320));
    width: 20%;
    height: calc(100*(145vw / 1320));
    transform: perspective(calc(100*(25vw / 1320))) rotateX(-1deg) rotateY(-1deg);
    box-shadow: calc(100*(8vw / 1320)) calc(100*(8vw / 1320)) #9aa0a691;
}
.dialog_box:after, .dialog_box:before {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
}
.dialog_box:after {
    /*border-width: 14px;*/
    border-top-width: calc(100*(29vw / 1320));
    border-right-width: calc(100*(30vw / 1320));
    border-bottom-width: 0;
    border-left-width: calc(100*(8vw / 1320));
}
.dialog_box:before {
    /*border-width: 18px;*/
    border-top-width: calc(100*(35vw / 1320));
    border-right-width: calc(100*(37vw / 1320));
    border-bottom-width: 0;
    border-left-width: calc(100*(11vw / 1320));
}
 
/*Arrow pointing BOTTOM*/
.dialog_box.bottom:after, .dialog_box.bottom:before {
    left: 25%;
    top: 99.5%;
}
.dialog_box.bottom:after {
    border-color:  #FBCD33 transparent transparent transparent ;
    margin-left: calc(100*(-5vw / 1320));
}
.dialog_box.bottom:before {
    border-color:  #fff transparent transparent transparent ;
    margin-left: calc(100*(-10vw / 1320));
}

.dialog_box_content{
    position: absolute;
    width: calc(100*(240vw / 1320));
    height: calc(100*(125vw / 1320));
    padding: calc(100*(5vw / 1320));
    text-align: center;
}
.dialog_box_content h1{
    font-family: 'SF Pro Display';
    font-size: calc(100*(20vw / 1320));
    line-height: calc(100*(25vw / 1320));
    color: #000;
}
.dialog_box_content p{
    font-family: 'SF Pro Display';
    font-size: calc(100*(18vw / 1320));
    line-height: calc(100*(23vw / 1320));
    color: #BE0009;
}
.dialog_box_content img.close_dialog{
    position: absolute;
    top: calc(100*(-12vw / 1320));
    right: calc(100*(-5vw / 1320));
    width: calc(100*(16vw / 1320));
    cursor: pointer;
}

.checkout-logo{
    max-width: calc(100*(155vw / 1320));
}

.reward-logo{
    max-width: calc(100*(100vw / 1320));
}

.reglogModal {
    width: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: unset;
    background: rgb(255, 255, 255);
}

.reglogModal .modal-dialog {
    width: calc(100 * (600vw/1520)) !important;
    max-width: unset;
    margin: 0 auto;
}

.successModal .modal-dialog {
    width: calc(100 * (600vw/1520)) !important;
}

.reglogModal.fade .modal-dialog {
  right: -50%;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}
.reglogModal.fade.show .modal-dialog {
  right: 0;
/*  box-shadow: 0px 0px 19px rgba(0,0,0,.5);*/
}

.reglogModal .modal-content{
    height: 100vh;
    border-radius: unset;
}
.reglogModal .modal-content .modal-body{
    padding: 0;
}
.reglogModal .modal-content .modal-body .modal-body-top{
    padding: calc(100 * (50vw/1520));
    max-height: 100vh;
    overflow-x: auto;
}
.reglogModal .modal-content .modal-body .modal-body-bottom{
    position: absolute;
    bottom: 0;
    padding: calc(100 * (20vw/1520)) calc(100 * (50vw/1520));
    background: #F3F3F3;
}
.reglogModal .modal-content .close {
    position: absolute;
    right: 7px;
    top: 7px;
    z-index: 9;
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}
.reglogModal .modal-content .close img{
    width: calc(100 * (40vw/1520));
}
.reglogModal .modal-body .heading {
    /*min-height: calc(100 * (60vw/1520));*/
    position: relative;
    margin: 0 auto;
    margin-bottom: calc(100 * (15vw/1520));
}

.reglogModal .modal-body .form-body{
    border: 3px dashed #000;
    border-radius: calc(100 * (12vw/1520));
    border-radius: -webkit-calc(100 * (12vw/1520));
    border-radius: -moz-calc(100 * (12vw/1520));
    padding: 20px;
}

.reglogModal .modal-body .form-body .form-group {
    position: relative;
    margin-bottom: calc(100 * (12vw/1520));
}

.reglogModal .modal-body h1 {
    font-family: 'SF Pro Display Bold';
    font-size: calc(100 * (28vw/1520));
    line-height: calc(100 * (38vw/1520));
}

.reglogModal .modal-body h2{
    font-family: 'SF Pro Display Bold';
    font-size: calc(100*(23vw / 1520));
    line-height: calc(100*(33vw / 1520));
    text-align: center;
}

.reglogModal .modal-body p{
    font-size: calc(100 * (16vw/1520));
    line-height: calc(100 * (18vw/1520));
    color: #9796C0;    
    margin: 0;
}

.reglogModal .modal-body p.resp_msg{
        margin-bottom: calc(100 * (35vw/1520));
}

.reglogModal .modal-body .form-group .save-btn {
    width: 100%;
    background: #ff0000;
    border: 2px solid #ff0000;
    border: none;
    border-radius: 15px;
    padding: 10px 50px;
/*    text-transform: uppercase;*/
    color: #fff;
    font-size: calc(100 * (20vw/1520));
    font-size: -webkit-calc(100 * (20vw/1520));
    font-size: -moz-calc(100 * (20vw/1520));
    cursor: pointer;
    margin-top: 20px;
}

.reglogModal .modal-body .heading h4{
  font-family: 'SF Pro Display Regular';
  font-size: calc(100 * (26vw/1520));
  line-height: calc(100 * (30vw/1520));
  font-weight: 700;
  width: 100%;
}
.reglogModal .modal-body .form-group{
  position: relative;
  margin-bottom: calc(100 * (10vw/1520));
}
.reglogModal .modal-body .form-group label {
  position: relative;
  cursor: pointer;
  text-align: left;
  font-size: calc(100 * (16vw/1520));
  font-weight: 600;
  margin-bottom: calc(100 * (5vw/1520));
  display: flex;
  align-items: center;
  color: #061737;
}
.reglogModal .modal-body .form-group label.active {
    font-weight: 600;
}
.reglogModal .modal-body .form-group .form-checkbox {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.reglogModal .modal-body .form-group label span.checkbox {
  position: relative;
  border-radius: calc(100 * (5vw/1520));
  border: 1px solid var(--primary);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 -15px 10px -12px rgba(0, 0, 0, 0.05);
  width: calc(100 * (25vw/1520));
  height: calc(100 * (25vw/1520));
  display: table;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 7px;
/*  flex: 0 0 18px;*/
}
.reglogModal .modal-body .form-group input:checked + span.checkbox{
  background: var(--primary);
}
.reglogModal .modal-body .form-group input:checked + span.checkbox:after {
  content: '';
  display: block;
  position: absolute;
  left: calc(100*(7vw / 1520));
  top: calc(100*(2vw / 1520));
  width: calc(100 * (8vw/1520));
  height: calc(100 * (15vw/1520));
  border: solid #fff;
  border-width: 0 calc(100 * (3vw/1520)) calc(100 * (3vw/1520)) 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.reglogModal .modal-body .form-group .form-control {
    /*height: calc(100 * (55vw/1520));*/
    border-radius: calc(100 * (5vw/1520));
    border: 1px solid #D9D9D9;
    box-shadow: 0px 1px 14px rgba(187, 187, 187, 0.3);
    -webkit-box-shadow: 0px 1px 14px rgba(187, 187, 187, 0.3);
    -moz-box-shadow: 0px 1px 14px rgba(187, 187, 187, 0.3);
    background: #FAFAFA;
    font-size: calc(100 * (19vw/1520));
    font-size: -webkit-calc(100 * (19vw/1520));
    font-size: -moz-calc(100 * (19vw/1520));
}
.reglogModal .modal-body .form-group .iti__flag-container{
    font-size: calc(100 * (19vw/1520));
    font-size: -webkit-calc(100 * (19vw/1520));
    font-size: -moz-calc(100 * (19vw/1520));
}
.reglogModal .modal-body .form-group .eye{
  position: absolute;
  right: 10px;
  top: 10px;
}
.checkval_msg{
    padding: calc(100 * (5vw/1520)) calc(100 * (10vw/1520)) !important;
    font-size: calc(100 * (16vw/1520)) !important;
    line-height: calc(100 * (18vw/1520)) !important;
    color: #ff0000 !important;
    text-align: left;
}
.reglogModal .modal-body .rewards-checkbox{
    /*padding: calc(100 * (10vw/1520)) calc(100 * (65vw/1520));
    margin-top: calc(100*(10vw / 1520));*/
    margin-top: 0;
}
.reglogModal .modal-body .rewards-checkbox .form-group{
    margin-bottom: calc(100 * (10vw/1520));
}
.reglogModal .modal-body .rewards-checkbox .form-group label {
  font-size: calc(100 * (16vw/1520));
  font-size: -webkit-calc(100 * (16vw/1520));
  font-size: -moz-calc(100 * (16vw/1520));
  line-height: calc(100 * (20vw/1520));
  margin-bottom: 0;
  font-weight: unset;
  color: #9796C0;
}
.reglogModal .modal-body .rewards-checkbox .form-group label p{
  font-size: calc(100 * (16vw/1520));
  line-height: calc(100 * (20vw/1520));
  color: #9796C0;
}
.reglogModal .modal-body .rewards-checkbox .form-group label span {
    font-weight: 600;
    color: #061737;
}
.reglogModal .modal-body .rewards{
  display: flex;
  margin: 10px 0;
}
.reglogModal .modal-body .rewards .reward-section{
  width: 100%;
  text-align: center;
  font-size: calc(100 * (33vw/1520));
}
.reglogModal .modal-body .rewards .reward-section img{
    width: calc(100 * (50vw/1520));
}
.reglogModal .modal-body .rewards .reward-section p{
  font-size: calc(100 * (20vw/1520));
  font-size: -webkit-calc(100 * (20vw/1520));
  font-size: -moz-calc(100 * (20vw/1520));
  line-height: calc(100 * (25vw/1520));
  font-weight: 600;
  margin: calc(100 * (15vw/1520)) 0;
  color: #000;
}
.reglogModal .modal-body .btun-box{
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  justify-content: space-between;
}
.reglogModal .modal-body .btun-box .back-btn{
  background: #C3C3C3;
  border:none;
  border-radius: 15px;
  padding: 10px 20px;
  text-transform: uppercase;
  color: #fff;
  font-size: calc(100 * (20vw/1520));
  font-size: -webkit-calc(100 * (20vw/1520));
  font-size: -moz-calc(100 * (20vw/1520));
  cursor: pointer;
  border:2px solid #C3C3C3;
}
.reglogModal .modal-body .btun-box .delete-btn{
  background: #fff;
  border:none;
  border-radius: 15px;
  padding: 10px 20px;
  text-transform: uppercase;
  color: #979797;
  font-size: calc(100 * (20vw/1520));
  font-size: -webkit-calc(100 * (20vw/1520));
  font-size: -moz-calc(100 * (20vw/1520));
  cursor: pointer;
  border:2px solid #EAEAEA;
}
.reglogModal .modal-body .btun-box .save-btn{
    width: 100%;
    margin: 0 auto;
    background: var(--primary);
    border: none;
    border-radius: calc(100*(30vw / 1320));
    padding: calc(100*(10vw / 1320));
    color: #fff;
    font-size: calc(100 * (20vw/1320));
    line-height: calc(100 * (25vw/1320));
    font-weight: 600;
    cursor: pointer;
}
.reglogModal .modal-body .ex-boxes{
  width: 100%;
  height: auto;
  position: relative;
  margin: 10px 0 20px 0;
  text-align: center;
}
.reglogModal .modal-body .ex-boxes p{
  font-size: calc(100 * (16vw/1520));
  font-size: -webkit-calc(100 * (16vw/1520));
  font-size: -moz-calc(100 * (16vw/1520));
  line-height: calc(100 * (20vw/1520));
}
.reglogModal .modal-body .ex-boxes p a{
  color: #9796C0;
  text-decoration: underline;
  font-weight: 600;
}
.reglogModal .modal-body .ex-box{
  width: 100%;
  height: auto;
  position: relative;
/*  margin-top: 10px;*/
  text-align: center;
}
.reglogModal .modal-body .ex-box p.txt{
  font-size: calc(100 * (15vw/1520));
  font-size: -webkit-calc(100 * (15vw/1520));
  font-size: -moz-calc(100 * (15vw/1520));
  line-height: calc(100 * (20vw/1520));
  color: #857777;
}
.reglogModal .modal-body .ex-box p.txt span{
  font-weight: 600;
  color: #000;
}
.reglogModal .modal-body .ex-box p a{
  color: #ff0000;
}
.reglogModal .modal-content .modal-body.log-phn{
    height: 100vh;
    display: flex;
    align-items: center;
}
.reglogModal .modal-content .modal-body.log-phn .modal-body-top{
    width: 100%;
    height: auto;
    padding: calc(100 * (105vw/1520));
}

.reglogModal .modal-content .modal-body .modal-body-top::-webkit-scrollbar {
  width: calc(100 * (7vw/1520));
}

/* Track */
.reglogModal .modal-content .modal-body .modal-body-top::-webkit-scrollbar-track {
  border-radius: calc(100 * (10vw/1520));
  background: #efefef;
}
 
/* Handle */
.reglogModal .modal-content .modal-body .modal-body-top::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: calc(100 * (10vw/1520));
}

/* Handle on hover */
.reglogModal .modal-content .modal-body .modal-body-top::-webkit-scrollbar-thumb:hover {
  background: #979797;
}

.checkout-group-1{
    display: block;
}
.checkout-group-2{
    display: flex;
    justify-content: space-between;
}
.checkout-group-md {
    flex: 0 0 auto;
    width: 100%;
}
.checkout-group-sm {
    flex: 0 0 auto;
    width: 47%;
}

.checkout .blocks{
    width: 100%;
    margin: calc(100 * (30vw/1520)) 0;
}
.checkout .btn-box{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.iti{
    width: 100%;
}

.iti--separate-dial-code .iti__selected-flag{
    font-size: calc(100 * (18vw/1520));
    font-size: -webkit-calc(100 * (18vw/1520));
    font-size: -moz-calc(100*(18vw / 1520));
}


.passModal {
    top: 5%;
    bottom: unset;
    z-index: 99999;
}
.passModal .modal-dialog {
    max-width: calc(100*(865vw / 1520));
    max-width: -webkit-calc(100*(865vw / 1520));
    max-width: -moz-calc(100*(865vw / 1520));
    margin: 0 auto;
}
.passModal .modal-dialog .modal-content {
    border-radius: calc(100*(25vw / 1520));
}
.passModal .modal-body {
    min-height: calc(100*(400vw / 1520));
    /* max-height: calc(100vh - 400px); */
    margin: 0;
    padding: 0;
    display: flex;
}
.passModal .modal-dialog .modal-content .modal-body .close {
    width: calc(100*(120vw / 1520));
    right: calc(100*(40vw / 1520));
    top: calc(100*(35vw / 1520));
}
.passModal .modal-dialog .modal-body.scroll-pad-marg {
    padding-right: 0 !important;
    padding: calc(100*(20vw / 1520));
}
.passModal .modal-dialog .modal-content .modal-body .close {
    width: calc(100*(45vw / 1520));
    position: absolute;
    right: calc(100*(20vw / 1520));
    top: calc(100*(20vw / 1520));
    z-index: 9;
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}
.passModal .modal-dialog .modal-content .modal-body .close img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}
.passModal .modal-body .text-block{
    width: 60%;
    height: 100%;
    padding: calc(100*(42vw / 1520));
}
.passModal .modal-body .text-block .scroll-block {
    margin: 0;
    padding: 0;
}
/*.passModal .modal-body .text-block .scroll-block .mCSB_scrollTools{
    display: none !important;
}*/
.passModal .modal-body .text-block h1{
    font-family: 'Degular Display';
    font-size: calc(100*(30vw / 1320));
    line-height: calc(100*(45vw / 1320));
    color: #000;
}
.passModal .modal-body .text-block p{
    font-family: 'SF Pro Display Regular';
    font-size: calc(100*(17vw / 1320));
    line-height: calc(100*(22vw / 1320));
}
.passModal .modal-body .text-block ul{
    padding: 0 0 0 calc(100*(20vw / 1320));
}
.passModal .modal-body .text-block ul li{
    font-family: 'SF Pro Display Regular';
    font-size: calc(100*(16vw / 1320));
    line-height: calc(100*(20vw / 1320));
    margin: calc(100*(10vw / 1320)) 0;
    color: #000;
}
.passModal .modal-body .img-block{
    width: 40%;
    border-radius: 0 calc(100*(25vw / 1520)) calc(100*(25vw / 1520)) 0;
    overflow: hidden;
}
.passModal .modal-body .img-block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}

.passModal .modal-body .img-block .img-block-content{
    position: absolute;
    bottom: calc(100*(20vw / 1320));
    right: calc(100*(20vw / 1320));
    display: flex;
    align-items: center;
    width: 30%;
}
.passModal .modal-body .img-block .img-block-content .img-block-text p{
    font-size: calc(100*(20vw / 1320));
    line-height: calc(100*(28vw / 1320));
    margin: 0;
    color: #fff;
}
.passModal .modal-body .img-block .img-block-content .img-block-text p span{
    font-size: calc(100*(25vw / 1320));
    line-height: calc(100*(40vw / 1320));
}
.passModal .modal-body .img-block .img-block-content .img-block-logo img{
    width: calc(100*(100vw / 1320));
    height: auto;
}
.reglogModal .modal-body .heading .form-group .plan-block{
    display: flex;
    justify-content: space-between;
    /*margin-bottom: calc(100*(20vw / 1520));*/
    margin-bottom: 0;
}
.reglogModal .modal-body .heading .form-group label {
    /*float: left;
    width: 50%;
    margin-bottom: calc(100*(20vw / 1520));*/
}
.reglogModal .modal-body .heading .form-group label p{
    font-size: calc(100*(20vw / 1520));
    line-height: calc(100*(25vw / 1520));
    font-weight: 600;
    color: #000;
}
.reglogModal .modal-body .heading .form-group .form-radio {
    appearance: none;
    background-color: #fff;
    width: calc(100 * (25vw/1520));
    height: calc(100 * (25vw/1520));
    border-radius: calc(100*(5vw / 1520));
    border: 1px solid var(--primary);
    display: inline-grid;
    place-content: center; 
}
.reglogModal .modal-body .heading .form-group .form-radio::before {
    content: "";
    width: calc(100*(15vw / 1520));
    height: calc(100*(14vw / 1520));
    transform: scale(0);
    transform-origin: bottom left;
    background-color: #fff;
    clip-path: polygon(13% 50%, 34% 66%, 81% 2%, 100% 18%, 39% 100%, 0 71%);
}
.reglogModal .modal-body .heading .form-group .form-radio:checked::before {
    transform: scale(1);
}
.reglogModal .modal-body .heading .form-group .form-radio:checked{
    background-color:   var(--primary);
    border: 1px solid var(--primary);
}


.reglogModal .modal-body .form-group .use-btn {
    width: calc(100*(175vw / 1520));
    /*padding: 0 calc(100*(30vw / 1520)) !important;*/
    background: #000;
    color: #fff;
    font-size: calc(100*(16vw / 1520)) !important;
    font-weight: 400;
    border-radius: 0 calc(100*(8vw / 1520)) calc(100*(8vw / 1520)) 0 !important;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.disable-btn{
    background-color: #d9d9d9 !important;
}

.phn-verify{
    display: none;
}

.phn-code-block{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1% 10%;
}

.phn-code-block .phcode-control{
    width: 10%;
    padding: 0;
    text-align: center;
}

.main-form-sec{
    min-height: calc(100*(325vw / 1520));
}

.main-form-sec2{
    min-height: calc(100*(325vw / 1520));
}

.slider2{
    display: flex;
    justify-content: space-between;
}

.banner-text-first-right{
    font-family: 'Degular Display';
    font-size: calc(100*(40vw / 1320));
    line-height: calc(100*(50vw / 1320));
    color: #061737;
    margin: calc(100*(20vw / 1320)) 0;
}
.banner-text-second-right{
    width: calc(100*(450vw / 1320));
    padding: calc(100*(7vw / 1320)) calc(100*(20vw / 1320));
    border-radius: calc(100*(10vw / 1320));
    margin: 0 auto;
    background: #BE0009;
    color: #fff;
    font-family: 'SF Pro Display Bold';
    font-size: calc(100*(25vw / 1320));
    line-height: calc(100*(30vw / 1320));
    margin-bottom: calc(100*(35vw / 1320));
    text-transform: uppercase;
}
.banner-text-third-right{
    width: calc(100*(400vw / 1320));
    margin: 0 auto;
    margin-bottom: calc(100*(20vw / 1320)) !important;
}
.banner-text-third-right p{
    font-family: 'Degular Display';
    font-size: calc(100*(25vw / 1320));
    line-height: calc(100*(30vw / 1320));
    color: #BE0009;
    margin-bottom: calc(100*(5vw / 1320));
}
.banner-text-fourth-right{
    font-family: 'Degular Display';
    font-size: calc(100*(30vw / 1320));
    line-height: calc(100*(35vw / 1320));
    color: #000;
}
.banner-text-fifth-right{
    width: calc(100*(400vw / 1320));
    padding: calc(100*(15vw / 1320));
    margin: 0 auto;
    margin-bottom: calc(100*(35vw / 1320)) !important;
    border-radius: calc(100*(10vw / 1320));
    border: #CFAC7666 1px solid;
    display: flex;
    justify-content: space-between;
}
.banner-text-fifth-right .date-blocks{
    font-family: 'SF Pro Display Bold';
    background: #000;
    color: #fff;
    text-align: center;
    width: 30%;
    border-radius: calc(100*(10vw / 1320));
    padding: calc(100*(5vw / 1320));
}
.banner-text-fifth-right .date-blocks .date-blocks-up{
    font-size: calc(100*(35vw / 1320));
    line-height: calc(100*(45vw / 1320));
    font-weight: 600;
}
.banner-text-fifth-right .date-blocks .date-blocks-down{
    font-size: calc(100*(15vw / 1320));
    line-height: calc(100*(20vw / 1320));
    text-transform: uppercase;
}

.promo-code {
    /*width: 70%;*/
    height: auto;
    position: relative;
    padding: 0;
    margin-bottom: 10px;
}
.promo-code .form-box {
    border-radius: 13px;
    background: #F5F4F4;
}
.promo-code .form-control {
    width: 100% !important;
    height: calc(100*(42vw / 1520)) !important;
    border-radius: calc(100*(8vw / 1520)) 0 0 calc(100*(8vw / 1520)) !important;
    font-size: calc(100*(22vw / 1520)) !important;
    line-height: calc(100*(27vw / 1320)) !important;
    padding: 0 calc(100*(25vw / 1520));
    border: none;
    border-right: none;
}
.promo-code .use-btn {
    height: calc(100*(42vw / 1520)) !important;
    padding: 0 calc(100*(30vw / 1520)) !important;
    background: #BE0009;
    color: #fff;
    font-weight: 600;
    font-size: calc(100*(22vw / 1520)) !important;
    line-height: calc(100*(27vw / 1320)) !important;
    border-radius: 0 calc(100*(8vw / 1520)) calc(100*(8vw / 1520)) 0 !important;
    border: none;
    cursor: pointer;
}
.promo-msg {
    font-size: calc(100*(17vw / 1520)) !important;
    color: #ff0000 !important;
}

.notify-email{
    width: 90%;
    margin: 0 auto;
}

.banner-text-third-right p.email_notify_msg{
    font-family: 'SF Pro Display Regular';
    font-size: calc(100 * (22vw/1520)) !important;
    line-height: calc(100 * (22vw/1520)) !important;
}

.map-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.wkh-accordion{
    width: 80%;
}
.wkh-box{
    border: none !important;
}
.wkh-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.4rem 0;
    color: #000;
    background-color: #fff !important;
    font-size: calc(100*(18vw / 1320));
}
.wkh-body{
    padding: 0 !important;
}
.wkh-sec{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.1rem 0;
    font-size: calc(100*(18vw / 1320));
}
.wkh-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    font-size: calc(100*(18vw / 1320));
}
.spcl-rounded{
    border-radius: 20px !important;
}