/* <--------------------------------------------------------- FONTS ---------------------------------------------------------> */

/* Primary font */

@font-face {
  font-family: Poppins;
  src: url(./fonts/poppins/Poppins-Black.ttf);
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url(./fonts/poppins/Poppins-ExtraBold.ttf);
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url(./fonts/poppins/Poppins-Bold.ttf);
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url(./fonts/poppins/Poppins-SemiBold.ttf);
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url(./fonts/poppins/Poppins-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Poppins;
  src: url(./fonts/poppins/Poppins-Regular.ttf);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url(./fonts/poppins/Poppins-Light.ttf);
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url(./fonts/poppins/Poppins-ExtraLight.ttf);
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url(./fonts/poppins/Poppins-Thin.ttf);
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(./fonts/montserrat/Montserrat-Black.ttf);
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(./fonts/montserrat/Montserrat-ExtraBold.ttf);
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(./fonts/montserrat/Montserrat-Bold.ttf);
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(./fonts/montserrat/Montserrat-SemiBold.ttf);
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(./fonts/montserrat/Montserrat-Medium.ttf);
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(./fonts/montserrat/Montserrat-Regular.ttf);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(./fonts/montserrat/Montserrat-Light.ttf);
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(./fonts/montserrat/Montserrat-ExtraLight.ttf);
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url(./fonts/montserrat/Montserrat-Thin.ttf);
  font-weight: 100;
  font-display: swap;
}

/* <--------------------------------------------------------- ROOT ---------------------------------------------------------> */

:root {
  /* Colors */

  --primary-color: #bc9664;
  --white-secondary: #d9dbe1;
  --circle-linear: linear-gradient(180deg, #2ce6ff 0%, #fff 98.44%);
  --body-bg: #000000;
  --header-bg: #0e0e0e;
  --p-color: #ffffff;
  --h-color: #ffffff;
  --a-color: #ffffff;
  --black: #000000;
  --black-70: rgb(0, 0, 0, 70%);
  --black-30: rgb(0, 0, 0, 30%);
  --black-20: rgb(0, 0, 0, 20%);
  --white: #ffffff;
  --white-70: rgb(255, 255, 255, 70%);
  --white-40: rgb(255, 255, 255, 40%);
  --white-20: rgb(255, 255, 255, 20%);
  --white-10: rgb(255, 255, 255, 10%);
  --border-radius-s: 0.3em;
  --border-radius-m: 0.625rem;
  --border-radius-l: 2.5em;
  --border-radius-btn: 50px;

  /* Transition */

  --transition-slow: all 0.5s linear;
  --transition-medium: all 0.35s linear;
  --transition-fast: all 0.25s linear;
  --transition-superfast: all 0.15s linear;

  /* Dynamic height */

  --dynamic-height: calc(var(--vh, 1vh) * 100);
  --header-height: --header-height;

  /* Gap */

  --container-padding: var(--col-gap);
  --row-gap: max(1.75em, 1.75vw);
  --col-gap: max(2.75em, 2.75vw);
  --col-gap-50: calc(var(--col-gap) * 0.5);
}

/* <--------------------------------------------------------- TYPOGRAPHY ---------------------------------------------------------> */

/* Heading */

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
li,
ul,
ol,
span,
strong,
em,
figcaption {
  font-style: normal;
  letter-spacing: normal;
  font-family: "Montserrat";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--h-color);
}

h1 {
  font-size: min(max(22px, calc(1.375rem + ((1vw - 2.8px) * 1.8293))), 52px);
  font-weight: 400;
}

h2 {
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.8537))), 32px);
  font-weight: 500;
}

h3 {
  font-weight: 600;
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.122))), 20px);
  color: var(--h-color);
}

h4 {
  font-weight: 500;
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.122))), 20px);
  color: var(--h-color);
}

h5 {
  font-weight: 500;
  font-size: min(max(18px, calc(1.125rem + ((1vw - 2.8px) * 0.122))), 20px);
  color: var(--h-color);
}

/* Paragraph */

p {
  font-weight: 300;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  color: var(--p-color);
}

p:last-of-type {
  margin-bottom: 0;
}

p:not(:last-of-type) {
  margin-bottom: 1rem;
}

/* Anchor */

a {
  font-weight: 400;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 16px);
  color: var(--a-color);
  transition: var(--transition-fast);
}

a.search-hide {
  display: flex;
  width: 35px;
  height: var(--header-height);
  /* align-items: center; */
  color: var(--primary-color);
  position: absolute;
  top: 40px;
  right: 0;
}

input#search {
  height: 105px;
  transition: all 0.5s ease-in-out;
}

a:hover {
  color: var(--primary-color);
  transition: var(--transition-fast);
}

/* List */

li {
  font-weight: 300;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  color: var(--p-color);
}

li::marker {
  color: var(--primary-color);
}

/* Strong */

strong {
  font-weight: 600;
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
  color: var(--p-color);
}

/* Titles */

.title>* {
  color: var(--h-color);
}

.title.xl>* {
  font-size: min(max(22px, calc(1.375rem + ((1vw - 2.8px) * 1.8293))), 52px);
  font-weight: 700;
  text-wrap: balance;
}

.title.lg>* {
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.3659))), 22px);
}

.title.md>* {
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
}

.title.sm>* {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
}

/* Text */

.text>* {
  color: var(--p-color);
}

.text.xl>* {
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.3659))), 22px);
}

.title.lg>* {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.2439))), 18px);
}

.title.md>* {
  font-size: min(max(14px, calc(0.875rem + ((1vw - 2.8px) * 0.122))), 16px);
}

.title.sm>* {
  font-size: min(max(12px, calc(0.75rem + ((1vw - 2.8px) * 0.122))), 14px);
}

/* Font weight */

.title.black,
.text-black {
  font-weight: 900;
}

.title.extrabold,
.text-extrabold {
  font-weight: 800;
}

.title.bold,
.text-bold {
  font-weight: 700;
}

.title.semibold,
.text-semibold {
  font-weight: 600;
}

.title.medium,
.text-medium {
  font-weight: 500;
}

.title.regular,
.text-regular {
  font-weight: 400;
}

.title.light,
.text-light {
  font-weight: 300;
}

.title.thin,
.text-thin {
  font-weight: 200;
}

.title.extrathin,
.text-extrathin {
  font-weight: 100;
}

/* <--------------------------------------------------------- GENERALS ---------------------------------------------------------> */

/* Classes */

.ss {
  margin-bottom: 3.75rem;
}

/* Containers */

body {
  background: var(--body-bg);
  color: #fff;
}

.container-fluid {
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.container-fluid .row {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container {
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: 1920px;
}

.row {
  max-width: 1920px;
  margin: 0 auto;
}

.threesixty-view .module-image img {
  width: auto;
}

/* <--------------------------------------------------------- BUTTONS ---------------------------------------------------------> */

/* Primary button */

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: none;
}

.btn {
  padding: 0.625em 1.25em;
  border-radius: var(--border-radius-btn);
  font-size: min(max(16px, calc(1rem + ((1vw - 2.8px) * 0.2439))), 20px);
  border-radius: 8px;
}

.btn.btn-primary {
  background: var(--primary-color);
  border: none;
  color: var(--white);
  border-radius: 8px;
  margin-block: 2rem;
  outline: none;
}

.btn-danger:focus,
.btn-danger.focus {
  box-shadow: none;
}

.btn.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
}

button:focus {
  outline: none;
}

/* <--------------------------------------------------------- NAVBAR ---------------------------------------------------------> */

/* Header */

header .container {
  gap: 2.5rem;
}

.mobile-nav-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

header::before {
  content: '';
  height: 1px;
  background-image: linear-gradient(to right, rgba(182, 152, 107, 0), rgba(182, 152, 107, 0.75), rgba(182, 152, 107, 0));
  position: absolute;
  /* top: calc(var(--header-height) - 0.5rem); */
  bottom: 0;
  left: 0;
  right: 0;
}

header {
  position: fixed;
  z-index: 99999;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  padding-block: 1rem;
  background: rgba(55, 55, 55, 0.5);
  backdrop-filter: blur(50px);
}

header #main-navbar .logo {
  max-height: 40px;
}

div#main-navbar-collapse div.search-wrapper div.search-results {
  background: linear-gradient(90deg, #636363 0%, #2f2f2f 100%);
  border-radius: var(--border-radius-m);
  padding: 5px 15px;
  position: absolute;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  top: 35px;
  right: 1px;
  width: 100%;
}

header #main-navbar .navbar-brand {
  padding: 0;
  margin: 0;
}

header #main-navbar-collapse {
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

header #main-navbar-collapse .nav-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header #main-navbar-collapse .main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

header .navbar-expand-lg>.container {
  gap: 3rem;
}

header .nav-item .toggle-menu {
  display: flex;
}

header .nav-link,
.contact-wrapper button.contact-button {
  font-size: 0.875rem;
}

.contact-wrapper i {
  margin-left: 0 !important;
}


/* Search */

header .search-wrapper .search-icon {
  position: absolute;
  right: 15px;
  top: 10px;
  bottom: 0;
  height: fit-content;
  display: flex;
}

header .search-wrapper #search {
  background: linear-gradient(90deg, #636363 0%, #2f2f2f 100%);
  padding-inline: 35px;
  border: none ;
  color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

header .search-wrapper #search::placeholder {
  color: var(--white);
  font-family: "Montserrat";
}

/* <--------------------------------------------------------- HOMEPAGE ---------------------------------------------------------> */

/* Hero */

.hero-section {
  position: relative;
}
.hero-section .row {
  min-height: var(--dynamic-height);
  padding-top: var(--header-height);
}

.hero-section .text-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: calc(var(--container-padding) / 2);
  padding: 0 3.5%;
}

.hero-section .text-inner div.text-wrapper {
  margin-top: 6rem;
  padding-inline: 30px;
  text-wrap: balance;
}

.hero-section .image-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-section .image-inner .module-image {
  position: relative;
}

.hero-section .image-inner .module-image::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  height: 100%;
  /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0.55%, rgba(255, 255, 255, 0) 100%); */
  background: #00000014;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  z-index: -1;
  border-radius: var(--border-radius-l);
  box-shadow: 0 0 1px 1px #ffffff0f;
}

.hero-section .image-inner .module-image::after {
  content: "";
  position: absolute;
  inset: -1px;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  z-index: -2;
  border-radius: var(--border-radius-l);

  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.hero-section .image-inner .module-image img {
  max-width: 600px;
  display: flex;
  margin: auto;
  padding: 3rem;
}

.hero-section .image-inner .image-wrapper {
  padding: 0;
  margin: 0;
}

nav.secondary-menu ul.nav li.nav-item a.nav-link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.25rem;
  white-space: nowrap;
}

nav.secondary-menu ul.nav li.nav-item a.nav-link img {
  width: 40px;
  height: 40px;
}

/* product archive */
.product-grid-item {
  border: 1px solid #fff;
  border-radius: 15px;
  background: linear-gradient(135deg, rgb(255 255 255 / 28%) 0%, rgba(255, 255, 255, 0) 100%);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  min-height: 450px;
}

.product-grid-item-title a {
  font-family: 'Montserrat';
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.product-grid-item-content {
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.product-grid-item-image {
  display: flex;
  justify-content: center;
}

.product-grid-item-image a {
  flex: 0.5;
}

.product-grid-item-image img.img-fluid {
  border-radius: 15px;
}

h1.category-page-title {
  font-family: 'Montserrat';
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  padding-top: 40px;
}

button.add-to-cart {
  padding: 0.375rem 0.75rem;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

button.add-to-cart:hover,
button.add-to-cart:active,
button.add-to-cart:focus {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  outline: none !important;
  box-shadow: none !important;
}

.row.row-products-grid .product-grid-item-time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  padding: 10px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  flex-basis: 45px;
}

span.product-price-format {
  font-family: 'Montserrat';
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  color: #fff;
}

.produc-grid-item-ctas {
  display: none;
}

.product-grid-item-price {
  margin-block: 0.5rem;
}

.product-grid-item-price .product-prices-has-redus {
  display: flex;
  gap: 1rem;
  align-items: center;
}

span.product-price-format.price-type-redus {
  color: #FF0000;
  margin: 0 10px;
}

.product-prices-has-redus .price-type-regular {
  text-decoration: line-through;
}

.product-grid-item-rating-and-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button.add-to-fav-btn {
  padding: 0.375rem 0.75rem;
}

.timp-preparare-info {
  color: #fff;
}

img.timp {
  max-width: 1rem;
  margin-right: 0.2em;
}

.product-grid-item-time {
  min-width: 5rem;
}

.local-info {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Montserrat';
  color: #ffffff;
}

/*--------Cos-finalizare comanda-----*/
.row.cart-row {
  border: 1px solid #fff;
  border-radius: 15px;
  background: linear-gradient(135deg, rgb(255 255 255 / 28%) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 20px 40px;
  margin: 0 15px;
  justify-content: end;
}

.col-12.col-xl-8.col-md-7.cart-content {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.cart-content-heading {
  display: none;
}

.cart-row .cart-content .cart-item .cart-item-inner {
  border: 0;
  padding-top: 30px;
  /* grid-template: auto / 1fr .4fr .2fr; */
}
.cart-title {
  margin-left: 15px;
  margin-bottom: 20px;
}
.cart-item-product-group {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.cart-content-list .cart-item {
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
}

.cart-item-product-group figure {
  background-color: #000;
  border-radius: 15px;
  margin: 0;
}

a.cart-prod-title {
  font-size: min(max(30px, calc(0.875rem +((1vw - 2.8px)* 0.2439))), 35px);
}

.item-action {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.item-action button.btn.btn-danger.remove-btn {
  width: 120px;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-size: min(max(12px, calc(1rem +((1vw - 2.8px)* 0.2439))), 16px);
  padding: 0.25em 0.25em;
  outline: none;
}

button.btn.btn-danger.remove-btn i.fa.fa-times {
  margin-right: 5px;
}

.item-value.cart-prod-price {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  gap: 1rem;
  flex-direction: column;
}

.item-qty {
  display: flex;
  align-items: center;
  justify-content: center;
}

span.cart-sumar-details.d-flex.flex-column {
  color: #fff;
}

span.cart-sumar-details>span.d-flex {
  border-bottom: 1px solid #fff;
  padding: 5px 0;
}

.cart-checkout-btn.mt-3,
.cart-checkout-btn.mt-3:active {
  background-color: var(--primary-color) !important;
  box-shadow: none;
  padding: 10px;
}

/*------------Footer-----------*/
.FooterEditat {
  background: linear-gradient(345deg, rgba(0, 0, 0, 1) 0%, rgb(61 61 61) 100%);
  padding: 30px 0;
}

.reserved-rights-wrapper-row div>div.builder-row {
  padding-inline: 0;
}

.footer-site-map-section .module-text p strong,
.footer-also-visit-section .module-text p strong,
.footer-gdpr-section .module-text p strong {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  color: var(--primary-color);
}

.module-code.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  background-color: #4f4f4f;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  border-radius: 50%;
}

/* .FooterEditat .module-newsletter form {
  display: flex;
  margin-top: 20px;
}

.FooterEditat .module-newsletter button.btn {
  background-image: url(https://skyrestaurant.cdin.ro/uploads/images/send.png);
  background-repeat: no-repeat;
  background-position: center;
  font-size: 14px;
  color: transparent;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.FooterEditat .module-newsletter form input.form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #4f4f4f;
  border-color: #4f4f4f;
  color: #fff;
}

.FooterEditat .module-newsletter form input.form-control::placeholder {
  color: #fff;
} */

/*---------- Home ---------*/
.item-value.item-value-12.cart-prod-price del {
  color: #FF0000;
}

nav.secondary-menu ul.nav {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  border-radius: 10px;
  background: #ffffff0d;
  backdrop-filter: blur(20px);
  border: 1px solid #ffffff1a;
  padding: 10px;
  gap: 1rem;
  flex-direction: row;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.container-categories .row-subcategories {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  border-radius: 10px;
  background: #ffffff0d;
  backdrop-filter: blur(20px);
  border: 1px solid #ffffff1a;
  padding: 10px;
  flex-direction: row;
  overflow-x: auto;
  flex-wrap: nowrap;
  margin-top: 0 !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.navbar .dropdown ul button:hover,
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.video-hp-section {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding-inline: 0;
  z-index: -1;
  filter: opacity(0.25);
}

.video-hp-section .module-video {
  width: 100%;
  height: 100%;
}

.video-hp-section .video-js {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-hp-section .video-js video {
  object-fit: cover;
}

nav.secondary-menu {
  padding-inline: 15px;
}

.nav-icons .cart .icon-basket {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  position: relative;
}

.nav-icons .cart .icon-basket span.cart-items {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 17px;
  height: 17px;
  right: 0px;
  background: #fff;
  color: #000;
  font-size: 11px;
  transform: translate(50%, -10px);
  border-radius: 100%;
  transition: var(--transition);
  font-weight: 500;
}

.nav-icons .dropdown-toggle::after {
  display: none;
}

.nav-icons svg {
  height: 20px;
  width: auto;
}

/*---------------HOME CATEGORY TABS-----------*/
#tabs {
  width: 100%;
  height: 62px;
  padding-right: 0;
  margin-top: 50px;
  padding-left: 15px;
  display: flex;
  gap: 15px;
}

#tabs li {
  list-style: none;
}

#tabs li a {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;

  border-radius: 5px;
  height: 60px;
  min-width: 60px;
  text-align: center;
  font-size: 15px;
  padding: 5px;
  background-image: linear-gradient(135deg, rgb(255 255 255 / 28%) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid #fff;
}

#tabs li a img {
  max-height: 33px;
  width: auto;
}

#tabs li a span {
  width: 100%;
}

#tabs li a.inactive {
  background-image: none;
  border: none;
}

#tabs li a:hover,
#tabs li a.inactive:hover {
  cursor: pointer;
}

.ctn {
  clear: both;
  width: 100%;
  margin-bottom: 50px;
  text-align: left;
  padding-top: 20px;
}

.ctn .row.row-products-grid {
  padding: 0;
}

/*-------End Tabs------*/

/*-------Recenzii Home--------*/
.Recenzie {
  border: 1px solid #fff;
  border-radius: 15px;
  background: linear-gradient(135deg, rgb(255 255 255 / 28%) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(12.3px);
  -webkit-backdrop-filter: blur(12.3px);
  padding: 50px;
  margin: 30px;
  transform: scale(0.7);
  transition: all 0.5s;
}

.Recenzie.slick-center {
  transform: scale(1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

span.slick-arrow-secondary {
  cursor: pointer;
}

.Recenzie .fickle-item.fickle-image {
  width: 65px;
  height: 130px;
  overflow: hidden;
  margin-top: -140px;
}

.RecenziiHome .slick-list {
  padding-top: 100px !important;
  padding-bottom: 50px !important;
}

.Recenzie .fickle-item h3 {
  font-size: 22px;
  margin-top: 25px;
}

/* .module.module-image.ElipseS {
  position: absolute;
  max-width: 15%;
  left: 15%;
  top: 50%;
}

.module.module-image.ElipseB {
  position: absolute;
  max-width: 30%;
  right: 12%;
  top: 5%;
} */

/* PRODUCT PAGE */

.product-details-wrapper {
  display: flex;
  padding-left: 45px;
}

[data-pagetype="products"] ul.tab-menu-wrapper {
  align-items: start;
  justify-content: start;
  /* margin: 40px 15px; */
}

.product-description-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.product-rating {
  padding: 0;
  flex: 1;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.sumary-item-image-wrapper {
  display: flex;
  flex: 1;
  gap: 1rem;
}

.form-check {
  padding-left: 0;
}

.product-grid-item-content h3.product-grid-item-title {
  display: flex;
}

.container-categories .row-subcategories {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

div.row.menu-subcategories {
  margin-block: 1.5rem;
}

.col-subcategory .subcategory-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.col-subcategory .subcategory-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

input#loginform-email,
input#loginform-password,
div.form-group input.form-control,
input#w3 {
  background-color: rgb(242 242 242 / 10%);
  color: #fff;
  border-color: var(--primary-color);
}

input#w3 {
  width: 50%;
  padding-block: 25px;
}

div.captcha-box p,
div.captcha-box p.danger,
div.agreement-radio span.checkbox-text {
  font-size: 15px;
}

div.hr-line {
  height: 1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  margin-block: 1rem;
}

div.captcha-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

div.captcha-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

div.captcha-box p {
  margin: 0;
}

input#loginform-email:focus,
input#loginform-password:focus {
  outline: none;
  box-shadow: none;
  border-color: #fff;
}

p.help-block-error {
  color: red;
  display: flex;
  flex-direction: row-reverse;
}

label.control-label {
  display: flex;
}

.form-details-wrapper p a {
  color: var(--primary-color);
  text-decoration: underline;
}

div.item-action p {
  font-size: 16px;
}

div.item-action a {
  font-size: 20px;
}

ul.tab-menu-wrapper {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
  flex-direction: row-reverse;
}

.breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 16px !important;
  text-transform: uppercase;
}

/* product-page-tabs */
.tab-content {
  display: none;
}

.tab-content.active {
  display: flex;
  margin-bottom: 1rem;
}

ol#w0 {
  background: unset;
  gap: .5rem;
}

ol#w0 li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  text-transform: uppercase;
}

ol#w0 li a {
  font-size: inherit;
}

div.product-image-wrapper img {
  width: 350px;
  margin: auto;
  display: flex;
  transition: all 0.7s ease-in-out;
  z-index: 1;
}

div.product-image-wrapper img:hover {
  cursor: pointer;
}

div.reviews div.product-review {
  border: 0.5px solid var(--primary-color);
  border-radius: 6px;
  padding: 20px;
}

div.review-rating {
  text-align: right;
}

div.product-review div.row.mb-3 {
  border-bottom: 0.5px solid var(--primary-color);
}

.wrapper-form-review {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.wrapper-form-review div.form-content {
  flex: 1;
}

form#review-form div.review-stars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

form#review-form {
  border: 0.5px solid var(--primary-color);
  border-radius: 6px;
  padding: 0 20px 20px 20px;
}

.acasa .alert {
  z-index: 99999;
  text-align: center;
}

.alert {
  z-index: 9999;
  text-align: center;
}

/* .alert-danger {
  z-index: 9999;
} */

.subcategory-item a>img {
  width: 45px;
}

.footer-gdpr-section .module-image {
  width: 150px;
}

.footer-logo-section .module-image {
  width: 150px;
}

div#cart-message-box .cart-message-box-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

textarea#checkoutform-desc,
select#checkoutform-city {
  background-color: rgb(242 242 242 / 10%);
  color: #fff;
}

div#checkoutform-payment {
  flex-direction: column;
  display: flex;
}

button#voucher-remove {
  padding: 0 10px;
}

.footer-rights-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
}

.footer-rights-wrapper::before {
  content: '';
  height: 1px;
  background-image: linear-gradient(to right, rgba(182, 152, 107, 0), rgba(182, 152, 107, 0.75), rgba(182, 152, 107, 0));
  position: absolute;
  inset: 0;
}

.FooterEditat .footer-logo-section .module-text>*,
.FooterEditat .footer-site-map-section .module-text p>*,
.FooterEditat .footer-also-visit-section .module-text p>*,
.FooterEditat .footer-gdpr-section .module-text p>*,
.reserved-rights-wrapper-row .footer-rights-wrapper .module-text>* {
  font-size: 14px;
}

.threesixty-view {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.threesixty-view .module-image a img {
  height: 40px;
}

.reserved-rights-wrapper-row {
  background: linear-gradient(345deg, rgba(0, 0, 0, 1) 0%, rgb(61 61 61) 100%);
}

.footer-logo-section,
.footer-site-map-section,
.footer-also-visit-section,
.footer-gdpr-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.image-wrapper .slick-slide:not(.slick-current, .slick-active) {
  transform: scale(0.7);
}

.module.module-image.slick-slide {
  margin: 1px;
  transition: all 0.7s ease-in-out;
}

span.search-icon:hover {
  cursor: pointer;
}

div.search-wrapper {
  transition: all 0.5s ease-in-out;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  margin-left: 2rem;
}

.contact-wrapper button.contact-button {
  background: #fff;
  padding: 6px 15px;
  border-radius: 25px;
  box-shadow: 0 0px 30px 0 rgba(0, 0, 0, .12);
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.5s ease-in-out;
}

.contact-wrapper button.contact-button:hover {
  transform: scale(1.1);
}

.contact-wrapper>a:hover {
  text-decoration: none;
}

.qty-and-button-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-box {
  display: flex;
}

.qty-and-button-wrapper .qty-box>* {
  padding: 0.625em 1.25em;
  background: black;
  color: #fff;
  border: 0.5px solid white;
  text-align: center;
  /* -moz-appearance: textfield; */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}

.product-image-wrapper {
  border-radius: 10px;
  background: #ffffff0d;
  backdrop-filter: blur(20px);
  border: 1px solid #ffffff1a;
  align-items: center;
  display: flex;
}

span.pret-initial {
  text-decoration: line-through;
  color: lightgray;
  font-weight: 400;
}

input#w5 {
  height: 50px;
  background-color: rgb(242 242 242 / 10%);
  color: #fff;
  border-color: var(--primary-color);
}

li.tab-menu>a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vegan-spicy-icons-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1rem;
  position: absolute;
  inset: 0;
  width: 100%;
  padding-inline: 1.5rem;
}

.slick-arrows-container {
  position: relative;
}

.slick-arrows-container .slick-dots li {
  width: 35px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-arrows-container .slick-dots li button {
  display: block;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  width: 90%;
  height: 2.5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
}

.slick-arrows-container ul.slick-dots li.slick-active>button {
  background-color: #fff !important;
}

.product-grid-item .product-grid-item-content .product-grid-item-restaurant {
  text-align: left;
}

.slick-prev,
.slick-next {
  z-index: 999999;
}

.slick-prev {
  left: 37%;
}

.slick-next {
  right: 37%;
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 1rem;
}

.slick-arrows-container .slick-prev:before {
  content: url('https://skyrestaurant.cdin.ro/uploads/images/left-slider-icon.svg');
}

.slick-arrows-container .slick-next:before {
  content: url('https://skyrestaurant.cdin.ro/uploads/images/right-slider-icon.svg');
}

.breadcrumbs-container {
  position: relative;
}

.breadcrumbs-container .product-breadcrumbs {
  position: absolute;
  inset: 0;
  top: 40%;
}

.breadcrumbs-container .hero-img-container {
  display: flex;
  justify-content: center;
  max-height: 45vh;
}

.hero-img-container img {
  width: 100%;
  object-fit: cover;
}

div#cart-message-box span b {
  color: var(--primary-color);
}

div#cart-message-box .cart-message-box-buttons a {
  padding: 10px 15px;
  color: #000;
  background-color: #fff;
  font-weight: 600;
  border-radius: 15px;
}

div.cart-item-inner div.item-qty input,
div.cart-item-inner div.item-qty button {
  padding: 0.625em 1.25em;
  background: black;
  color: #fff;
  border: 0.5px solid white;
  text-align: center;
  /* -moz-appearance: textfield; */
  outline: none;
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

div.checkout-details-col .checkout-details-col-inner .section-title h2 {
  color: #fff;
  padding: 0;
}

div.sumary-content div.sumary-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

div.sumary-content div.sumary-items .sumary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 20px;
}

div.sumary-content div.sumary-items .sumary-item .sumary-item-info {
  flex: 1;
}

div.sumary-content div.sumary-items .sumary-item .sumary-item-image-wrapper span {
  font-size: 20px;
}

div.sumary-content div.sumary-items .sumary-item .sumary-item-image-wrapper a picture img {
  width: 75px;
  height: 75px;
}

div.field-checkoutform-city select#checkoutform-city,
div.field-checkoutform-desc textarea#checkoutform-desc {
  border: 1px solid var(--primary-color);
}

div#reviews div.product-reviews {
  gap: 2rem;
  display: flex;
  flex-direction: column;
}
.hero-section .image-wrapper .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 1rem;;
  gap: 0;
}
.hero-section .image-wrapper ul.slick-dots li {
  width: auto;
  height: auto;
  margin: 0 2px;
}
.hero-section .image-wrapper ul.slick-dots button {
  display: flex;
  width: auto;
  height: auto;
}
  .hero-section .image-wrapper ul.slick-dots li button::before {
  position: relative;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  font-size: 15px;
  line-height: 25px;
  width: 25px;
  height: 25px;
}

.row.row-products-grid.slick-initialized.slick-slider {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  width: 100%;
}

.module.module-category.module-category-view-products {
  display: flex;
}

span.slick-arrow-secondary.slick-arrow-left.slick-arrow.slick-disabled {
  display: flex;
  height: 100%;
  align-items: center;
  opacity: 0.6;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  margin-top: 3rem;
  gap: 1rem;
}

.contact-info .module-fickle {
  display: flex;
  align-items: center;
  background: #ffffff08;
  border-radius: 5px;
  padding: 0 2rem;
  gap: 1rem;
  justify-content: center;
  border: 1px solid var(--primary-color);
}

.contact-info .fickle-image {
  margin-bottom: 0;
}

.contact-info .fickle-image img {
  filter: invert();
}

.contact-info .module-fickle a {
  display: flex;
  color: #fff;
  padding: 2.8rem 0;
  font-weight: 400;
}

.contact-info .module-fickle a:hover {
  text-decoration: underline;
}


/* formular de contact 

.cf_row .module-image {
  position: relative;
  height: 100%;
  max-height: 530px;
}

.cf_row .module-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgba(24, 29, 36, 1) 0%, rgba(24, 29, 36, 0) 100%);
  z-index: 1;
}

.cf_row .module-image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(19 53 95) 100%);
  background: linear-gradient(180deg, rgba(24, 29, 36, 0) 0%, rgba(24, 29, 36, 1) 100%);
  z-index: 1;
}

.cf_row .module-image img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.cf_row .btn-section {
  margin-bottom: 0;
}

.cf_row .form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 7rem;
}

.cf_row .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0;
}

.cf_row .radio > label {
  position: relative !important;
}

.cf_row .radio .input-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cf_row .radio .input-wrapper label {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative !important;
  bottom: 0 !important;
  pointer-events: all !important;
  cursor: pointer;
  padding-left: 30px;
}

.cf_row .radio label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #fff;
  transition: var(--transition);
}

.cf_row .radio input:checked ~ .checkmark {
  background-color: var(--secondary-color);
}

.radio .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: var(--transition);
}

.cf_row .radio label input:checked ~ .checkmark:after {
  opacity: 1;
}

.cf_row input,
.cf_row textarea {
  background: transparent;
  color: #fff;
}

.apartment_info_form input,
.apartment_info_form textarea {
  background: transparent;
  color: #fff;
}

.apartment_info_form input:focus,
.apartment_info_form textarea:focus {
  color: #fff;
}

.cf_row input:focus,
.cf_row textarea:focus {
  background: transparent;
  outline: none;
  box-shadow: none;
  color: #fff;
}

.form-group {
  position: relative;
  margin-bottom: 35px;
}

.form-group.readonly {
  pointer-events: none;
}

label.readonly {
  left: 100% !important;
  transform: translateX(calc(-100% - 10px));
  color: var(--secondary-color) !important;
}

.form-control[readonly] {
  background-color: transparent;
}

.main-offer-request.solicita_info_section input.unitate-locativa {
  color: var(--secondary-color);
  text-transform: capitalize;
}

.cf_row .form-group label {
  color: #fff;
}

.cf_row.dark .form-group label {
  color: #000;
}

.apartment_info_form .form-group label {
  font-size: 14px;
  color: #fff;
}

.apartment_info_form .form-group.focus label {
  color: var(--secondary-color);
}

.solicita_info_section label {
  color: #fff;
}

.form-group:not(.item-acceptance) label {
  position: absolute;
  margin-bottom: 0;
  bottom: 7px;
  transition: all 0.4s ease-in-out;
  left: 0;
  white-space: nowrap;
  /* pointer-events: none; */


.cf_row .form-group:not(.item-acceptance) input,
.cf_row .form-group:not(.item-acceptance) textarea {
  border: none;
  border-bottom: 1px solid var(--primary-color);
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding-left: 10px;
  padding-right: 0;
  height: calc(1.5em + 0.75rem + 2px);
  background-color: rgb(242 242 242 / 10%);
  color: white;
}

.cf_row.dark .form-group:not(.item-acceptance) input,
.cf_row.dark .form-group:not(.item-acceptance) textarea {
  border-color: #000;
}

.apartment_info_form .form-group:not(.item-acceptance) input,
.apartment_info_form .form-group:not(.item-acceptance) textarea {
  border: none;
  border-bottom: 1px solid #ffffff52;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  height: calc(1.5em + 0.75rem + 2px);
}

.apartment_info_form .form-group:not(.item-acceptance) textarea {
  padding-right: 35px;
  min-height: 70px;
}

.cf_row .form-group:not(.item-acceptance).focus label,
.apartment_info_form .form-group:not(.item-acceptance).focus label {
  left: 100%;
  transform: translateX(-100%);
  font-size: 0.675rem;
  opacity: 0.6;
}

.cf_row button[type="submit"] {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  padding: 8px 0;
  outline: none;
  box-shadow: none;
  letter-spacing: 1px;
  width: 100%;
  border-radius: 3px;
  margin: 30px 0;
}

.cf_row.dark button[type="submit"] {
  border-color: #000;
  color: #000 !important;
}

.item-acceptance {
  margin-bottom: 30px;
}

.cf_row .acceptance label {
  display: flex;
  align-items: center;
  color: #fff;
}

.cf_row.dark .acceptance label {
  color: #000;
}

.cf_row .acceptance label input {
  margin-right: 10px;
}

.contact .c-error {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  left: 1rem;
  margin: 20px 5px;
  color: orangered;
}

.cf_row input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]+.checkbox-text {
  position: relative;
  cursor: pointer;
}

/* input[type="checkbox"] + .checkbox-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  position: absolute;
  left: 0;
  transition: all 0.12s, border-color 0.08s;
} */

input[type="checkbox"]:checked+.checkbox-text:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.cf_row.dark input[type="checkbox"]+.checkbox-text:before {
  border: 2px solid #000;
}

.cf_row.dark input[type="checkbox"]:checked+.checkbox-text:before {
  border-top-color: transparent;
  border-left-color: transparent;
}

.contact-map-col .module-code {
  height: 100%;
  overflow: hidden;
}

.contact-map-col .module-code iframe {
  height: 70vh;
  min-height: 300px;
  border-radius: 5px;
}

.contact .page-header-background {
  background-image: url(/uploads/imagini_hero/antreuri-reci.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 30vh;
}

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

.contact .addres-pin {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.contact .wrap-pin {
  gap: 20px;
}

.fly-effect img {
  animation: fly 3s ease-in-out infinite;
}

@keyframes fly {
  0% {
    transform: translateX(-15px);
  }

  50% {
    transform: translateX(15px);
  }

  100% {
    transform: translateX(-15px);
  }
}

.contact-section .container {
  padding: 0 !important;
}

.contact input[type="checkbox"]+.checkbox-text {
  position: relative;
  cursor: pointer;
  padding-left: 2.2rem;
}

.contact input[type="checkbox"]+.checkbox-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  position: absolute;
  left: 0;
  transition: all 0.12s, border-color 0.08s;
}

.contact input[type="checkbox"]:checked+.checkbox-text:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.contact .item-acceptance {
  padding: 1rem;
}

.contact .cf_row {
  border: 1px solid var(--primary-color);
  padding: 10px;
  border-radius: 5px;
}

div#\#verifyCode-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

div.modules-wrapper.sticky .section-title h2,
.section-title h2 {
  color: #fff;
}

.threesixtytour-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.lightbox {
  z-index: 100000;
}

body:not(.acasa) {
  margin-top: var(--header-height)
}




/* 
.page-id- input[type="checkbox"]+.checkbox-text {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

.page-id- input[type="checkbox"]+.checkbox-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.12s, border-color 0.08s;
}

.page-id- input[type="checkbox"]:checked+.checkbox-text:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
    border-bottom-color: var(--secondary-color);
    border-right-color: var(--secondary-color);
} */

input[type="radio"]:checked {
  accent-color: BurlyWood;
}

.page-id- [type="checkbox"]
/* .page-id-0 [type="checkbox"] */
 {
  display: none;
}


.page-id- input[type="checkbox"]+.checkbox-text {
  position: relative;
  cursor: pointer;
  padding-left: 2.2rem;
}

.page-id- input[type="checkbox"]+.checkbox-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  transition: all 0.12s, border-color 0.08s;
}

.page-id- input[type="checkbox"]:checked+.checkbox-text:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.select2-container--default .select2-selection--single {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: #191919 !important; 
  background-clip: padding-box;
  border: 1px solid var(--primary-color);
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
}
.select2-container--default .select2-results>.select2-results__options {
    background-color: #191919 !important; 
}
.page-id- .form-control {
  color: #fff !important;
}

.page-id- .help-block {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 5px;
  color: orangered;
}

.page-id- .item-qty {
  position: absolute;
  top: -2px;
  right: -1px;
  background-color: #333;
  color: #fff;
  /* padding: 5px; */
  border-radius: 50%;
  font-size: 13px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-id- .sumary-item {
  /* background-color: #fff; */
}
.page-id- .sumary-item-image-wrapper {
  position: relative;
  flex: 0 0 auto;
  margin-right: 30px;
  background-color: #000;
  padding: 10px;
  border-radius: 10px;
}

.page-id- #checkoutform-persontype {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sumary-item {
  display: flex;
  align-items: center;
  padding: 10px;
  /* border: 1px solid #ddd; */
  margin-bottom: 10px;
  flex-wrap: nowrap;
}

.not-found-page-header {
  margin-top: 50px;
  text-align: center;
}

.phone-svg {
  stroke: black;
}

.checkout-details-col {
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  background: linear-gradient(135deg, rgb(255 255 255 / 28%) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 20px ;
}

.page-id- .btn.btn-primary  {
  margin-block: 0;
}

.col-lg-8.checkout-form-col {
  padding-right: 40px;
}

.pagination li .page-link {
  /* background: linear-gradient(135deg, rgb(255 255 255 / 28%) 0%, rgba(255, 255, 255, 0) 100%); */

}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #000;
  background-color: #fff;
  border: 1px solid var(--primary-color);
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem var(--primary-color);
}

.pagination li.disabled {
  opacity: 0.8;
}

.btn:focus, .btn.focus {
  box-shadow: none
}

.navbar .dropdown ul li {
  margin-block: 0;
}