@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --baseFont: "Jost", sans-serif;
  --primary: #FF304F;
  --primaryDark: #FF0D31;
  --secondary: #FFBB00;
  --bodyBg: #000;
  --white: #FFFFFF;
  --black: #000;
  --darkBg: #252525;
  --error: #ff5151;
  --fbColor: #1877F2;
  --googleColor: #5F6368;
  --transition: 400ms ease-in-out 0s;
}
/* body {
  font-size: 20px;
  line-height: 1.6;
  color: var(--white);
  font-family: var(--baseFont);
  background-color: #fff;
  font-weight: 300;
} */
a, a:hover {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}



/* components */
.textPrimary {
  color: var(--primary);
}

/* btn */
.btn {
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 25px;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  line-height: 1.2;
  border-width: 1px;
  position: relative;
  overflow: hidden;
}
.btn > span {
  position: relative;
  z-index: 2;
}
.btn::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	transform: skew(45deg);
	transition: all 0.4s ease-in-out;
	z-index: 2;
}
.btn:hover::before {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}
.btnPrimary {
  border-color: transparent;
	background-color: var(--primary);
	color: var(--white);
  background: linear-gradient(to right,  var(--primaryDark) 0%,var(--primary) 50%,var(--primaryDark) 100%);
  background-size: 200% auto;
  background-position: left top;
  transition: background-position var(--transition);
}
.btnPrimary::before {
  background-color: var(--darkBg);
}
.btnPrimary:hover {
  background-position: right top;
  color: var(--white);
}
.btnWhiteOutline {
  border-color: var(--white);
  background-color: var(--darkBg);
  color: var(--white);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btnWhiteOutline:hover {
  color: var(--white);
}
.btnWhiteOutline::before {
  background-color: var(--primary);
}
.btnWhiteOutline.fbBtn::before {
  background-color: var(--fbColor);
}
.btnWhiteOutline.fbBtn:hover {
	border-color: var(--fbColor);
}
.btnWhiteOutline.googleBtn::before {
  background-color: var(--googleColor);
}
.btnWhiteOutline.googleBtn:hover {
  border-color: var(--googleColor);
}
.iconBtn::after {
	content: "";
	background-image: url('../images/btn-arrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 10px;
	height: 10px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.btnSvg {
	width: 20px;
	height: auto;
	display: block;
}

/* Header */
.logo svg, .sidebarLogo svg {
  max-width: 100%;
  height: auto;
}
.sidebarLogo {
	padding: 0 0 10px;
}
.sidebarLogo a {
  display: inline-block;
  max-width: 160px;
}
.logo {
  --logo-height: 50px;
  height: var(--logo-height);
  max-width: 200px;
  display: flex;
  align-items: center;
}
.logo a {
  display: flex;
  align-items: center;
}
.logo > a > img, .logo > a > svg {
  max-width: 100%;
  object-fit: contain;
  max-height: var(--logo-height);
}
header.headerSection {
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: var(--darkBg);
  color: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--baseFont);
}
.menuColMain {
  display: flex;
  justify-content: center;
}
.navItems {
  display: flex;
  column-gap: 40px;
  font-size: 18px;
}
.navItems a {
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}
.navItems a.active, .navItems a:hover {
  color: var(--primary);
}
.headerRightOption {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.cartCol {
  position: relative;
  display: block;
}
.cartIcon {
	display: block;
}
.cartCount {
	color: var(--white);
	background-color: var(--primary);
	font-size: 12px;
	padding: 2px 4px;
	position: absolute;
	top: -8px;
	right: 0;
	line-height: 1;
	border-radius: 10px;
	min-width: 16px;
	text-align: center;
	font-weight: 600;
}
.menuToggle {
  position: relative;
  width: 26px;
  height: 18px;
  margin-left: auto;
}
.menuToggle > a {
  display: block;
  width: 100%;
  height: 100%;
}
.menuToggle > a > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background-color: var(--white);
  border-radius: 20px;
  transition: all 300ms ease-in-out 0s;
}
.menuToggle > a > span:nth-child(2) {
  top: 8px;
}
.menuToggle > a > span:last-child {
  bottom: 0;
  top: auto;
}
.actNav .menuToggle > a > span:nth-child(1) {
  transform: rotate(135deg);
  top: 8px;
}
.actNav .menuToggle > a > span:nth-child(2) {
  opacity: 0;
  transform: translateX(-25px);
}
.actNav .menuToggle > a > span:nth-child(3) {
  transform: rotate(-135deg);
  bottom: 8px;
}
.menuBackDrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 800ms ease-in-out 0s;
  z-index: 9;
  background-color: rgba(19, 15, 38, 0.7);
}
.userLogin {
  position: relative;
}
.userLogin .dropMenu {
	position: absolute;
	top: 100%;
	background: var(--darkBg);
	box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.9);
	width: 210px;
	text-align: left;
	right: 0;
	display: none;
	z-index: 9;
	padding: 6px 0;
	border-radius: 8px;
}
.userLogin > a {
	padding: 8px 16px 8px 0;
	display: flex;
	align-items: center;
	column-gap: 6px;
	position: relative;
}
.userLogin > a::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}
.userLogin .userName {
  font-size: 16px;
  font-weight: 500;
}
.userLogin .dropMenu a {
	padding: 8px 14px;
	display: block;
	color: var(--white);
	font-size: 14px;
  line-height: 1.2;
	font-weight: normal;
  transition: padding-left var(--transition), background-color var(--transition);
}
.userLogin .dropMenu a:hover {
	background-color: rgba(255, 255, 255, 0.03);
	padding-left: 20px;
}
.form-check input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.form-check label {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
}
.form-check label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #495057;
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
}
.form-check input:checked + label:before {
  background-color: #FF304F;
}
.form-check input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 6px;
  width: 5px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.fw-medium {
    font-weight: 500!important;
}
.formStyle {
  font-size: 16px;
}
.formStyle input[type="date"] ~ .inputFieldIcon, .formStyle input[type="time"] ~ .inputFieldIcon {
  background-color: var(--darkBg);
}
.formStyle .form-select, .formStyle .form-control {
  border-radius: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  border-width: 2px;
  background-color: transparent;
  border-color: #495057;
  color: #dee2e6;
}
.formStyle textarea.form-control {
	height: 120px;
	resize: none;
	border-radius: 16px;
}
.formStyle .form-check {
    padding: 0;
}
.simpleLink {
  position: relative;
  padding-bottom: 2px;
}
.simpleLink::before {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.simpleLink:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.linkStyle2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/****** Footer css Start ******/

.footerColMain {
  padding: 100px 0;
  background-color: black;
  color: white;
  font-family: var(--baseFont);
}
.footerTop p,
.footerTop ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}
.footerTop ul li span {
  font-weight: 500;
}
.addressCol {
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.footerBtm {
  margin-top: 75px;
}
.footerLogo {
  position: relative;
}
.footerLogo:before {
  content: "";
  background-color: var(--white);
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  transform: translate(0,-50%);
  z-index: 1;
}
.footerCopyright {
  margin-top: 50px;
}
@media (min-width: 768px) {
    .text-md-end {
        text-align: right !important;
    }
}
.footerLogo span {
  padding: 0 40px;
  background-color: var(--bodyBg);
  display: inline-block;
  position: relative;
  z-index: 2;
}
.copyrightCol {
  font-size: 16px;
  font-weight: 300;
}
.socialMenu ul li + li {
  margin-left: 20px;
}
.socialMenu a {
  transition: opacity var(--transition);
}
.socialMenu a:hover {
	opacity: 0.5;
}

/* login modal */
.mdTitle {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
}
.modalNewstyle {
    --xSpace: 30px;
    --ySpace: 30px;
    color: #dee2e6;
}
.modalNewstyle .modal-body,
.modalNewstyle .modal-header {
  padding: var(--ySpace) var(--xSpace);
  position: relative;
}
.modalNewstyle .modal-header {
	flex-direction: column;
	row-gap: 10px;
}
.modalNewstyle .modal-header + .modal-body {
  padding-top: 10px;
  padding-bottom: calc(var(--ySpace) + 10px);
}
.modalNewstyle .modal-content {
  background-color: var(--darkBg);
}
.modalNewstyle .close {
  position: absolute;
  right: 15px;
  top: 7px;
  text-shadow: none;
  color: #fff;
  font-weight: 300;
  font-size: 35px;
  padding: 0;
  margin: 0;
}
.modalForm {
	margin: 0 auto;
	max-width: 520px;
}
.sideLinesDivider {
  overflow: hidden;
  text-align: center;
  position: relative;
}
.sideLinesDivider > .dividerText {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c1c5d0;
  font-weight: 600;
}
.sideLinesDivider > .dividerText::before, .sideLinesDivider > .dividerText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
  margin-top: -1px;
  border-top: 2px solid currentColor;
  opacity: 0.2;
}
.sideLinesDivider > .dividerText::before {
  right: 100%;
}
.sideLinesDivider > .dividerText::after {
  left: 100%;
}
.rightIconFld {
	position: relative;
}
.rightIconFld > .inputFieldIcon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0, -50%);
	pointer-events: none;
  z-index: 2;
}
.fieldIcon {
	height: auto;
	width: 22px;
  display: block;
  opacity: 0.5;
}
.formStyle .rightIconFld .form-control {
	padding-right: 50px;
}
.formStyle .rightIconFld .form-control.reservationField {
	padding-right: 15px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
input[type="date"]::-moz-calendar-picker-indicator {
  display: none;
  pointer-events: none;
}
.modalNewstyle .form-label {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
}
.errorMsg {
	font-size: 14px;
	color: var(--error);
	letter-spacing: 0.5px;
	font-weight: 400;
	margin: 4px 0;
	line-height: 1.2;
  display: none;
}
#resend_otp {
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
#timer {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}

/******* Media Quary *******/

@media (min-width: 1400px) {
  .container {
      max-width: 1320px;
  }
}

@media (min-width:768px) {
  .modal-md {
    max-width: 600px;
  }
}
@media (min-width:768px) and (max-width:991px) {
  .modal-lg {
    max-width: 650px;
  }
}
@media (max-width: 1399px) {
  .logo {
    max-width: 160px;
  }
  .navItems {
    column-gap: 30px;
    font-size: 16px;
  }
  .headerRightOption {
    column-gap: 12px;
  }
  .btn {
    letter-spacing: 0.5px;
    padding: 14px 20px;
    min-width: 110px;
    column-gap: 5px;
  }
}

@media (max-width: 1199px) {
  body {
    font-size: 18px;
  }
  .logo {
    max-width: 140px;
  }
}

@media (max-width: 991px) {
  .menuColMain {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 99;
    background-color: var(--darkBg);
    color: var(--white);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
    transform: translateX(-200%);
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px;
  }
  .actNav .menuColMain {
    transform: translateX(0);
  }
  .actNav .menuBackDrop {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  .logo {
    max-width: 160px;
  }
  .navItems {
    flex-direction: column;
  }
  .navItems a {
    display: block;
    padding: 10px 0;
  }
  .navItems > li + li {
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  header.headerSection {
    padding: 12px 0;
  }
}

@media (max-width:767px) {
  .copyrightCol {
    margin-top: 15px;
  }
  .footerLogo span {
    padding: 0 15px;
  }
  .footerLogo svg {
    max-width: 180px;
  }
  .modalNewstyle {
    --xSpace: 15px;
    --ySpace: 20px;
  }
}
@media (max-width:575px) {
  .btn {
    letter-spacing: 0.1px;
    padding: 14px 18px;
    min-width: 100px;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-left: 15px;
  }
}
@media (max-width:360px) {
  .modalNewstyle .rightIconFld > .inputFieldIcon {
    right: 14px;
  }
  .formStyle .rightIconFld .form-control {
    padding-right: 40px;
  }
  .formStyle .form-control {
    font-size: 14px;
  }
  .inputFieldIcon {
    height: auto;
    width: 20px;
  }
  .modalNewstyle#reservationModal {
    --xSpace: 10px;
  }
}
.contactPage .formStyle .form-select, .formStyle .form-control {
    border: 2px solid #e2e4eb !important;
    color: #495057 !important;
    background-color: #fff !important;
    border-radius: 0.25rem !important;
}
@media (max-width:575px) {
.form-control {
      margin-left: 0px !important;
      width: 100% !important;
  } 
}
html{
scrollbar-width: thin !important;
scrollbar-color: #FF304F #252525 !important;
}
.singleProductSlideCol {
    margin-top: 80px !important;
}
@media (max-width: 1640px) {
    .topSpace {
        padding-top: 20px !important;
    }
}